﻿/* CSS Document */

/* Mulitple Item Checkboxes */

.multi_select {
    display: inline-block;
    position: relative;
	padding-left: 12px;
	padding-right: 30px;
	margin-bottom: 5px;
    cursor: pointer;
    font-size: 13px;
	font-weight:400;
	line-height: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.multi_select input {
    position: absolute;
    opacity: 0;
}

.checkmark {
    position: absolute;
    top: 4px;
    left: -12px;
	height: 16px;
    width: 16px;
    background-color: #FFFDFD;
    border:solid 1px;
	border-color: #ACACAC;
	border-radius: 2px;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
}

.multi_select input:checked ~ .checkmark {
    background-color: #5B78A5;
    border: solid 1px;
	border-color: #515151;

}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.multi_select input:checked ~ .checkmark:after {
    display: block;
}

.multi_select .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Single Item Checkboxes */

.single_select {
    display: block;
    position: relative;
	padding-left: 12px;
	padding-right: 30px;
	margin-bottom: 5px;
    cursor: pointer;
    font-size: 12px;
	font-weight:400;
	line-height: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.single_select input {
    position: absolute;
    opacity: 0;
}

.radio_button {
    position: absolute;
    top: 3px;
    left: -12px;
	height: 16px;
    width: 16px;
    background-color: #FFFDFD;
    border:solid 1px;
	border-color: #ACACAC;
	border-radius: 2px;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
}

.single_select input:checked ~ .radio_button {
    background-color: #5B78A5;
    border: solid 1px;
	border-color: #515151;

}

.radio_button:after {
    content: "";
    position: absolute;
    display: none;
}

.single_select input:checked ~ .radio_button:after {
    display: block;
}

.single_select .radio_button:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.help_filter {
    display: block;
    position: relative;
	padding-left: 20px;
	padding-right: 0px;
	margin-bottom: -3px;
    cursor: pointer;
    font-size: 12px;
	font-weight: 400;
	line-height: 28px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.help_filter input {
    position: absolute;
    opacity: 0;
}
.filter_button {
    position: absolute;
    top: 6px;
    left: -4px;
	height: 16px;
    width: 16px;
    background-color: #FFFDFD;
    border:solid 1px;
	border-color: #ACACAC;
	border-radius: 2px;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
}

.help_filter input:checked ~ .filter_button {
    background-color: #5B78A5;
    border: solid 1px;
	border-color: #515151;
}

.filter_button:after {
    content: "";
    position: absolute;
    display: none;
}

.help_filter input:checked ~ .filter_button:after {
    display: block;
}

.help_filter .filter_button:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


