/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	float: left;
	margin: 20px 0 10px;
}
.checkbox2 {
	width: 100%;
	float: left;
	margin: 0 0 22px;
}
.checkbox1 a, .checkbox2 a {
	color: #497482;
}
.checkbox1 a:hover, .checkbox2 a:hover {
	color: #b58150;
}
.checkbox1 span, .checkbox2 span {
	font-size: 13px;
	font-weight: 400;
	color: #497482;
	letter-spacing: 0;
	line-height: 18px;
	display: inherit;
	position: relative;
	top: -6px;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    line-height: 20px;
    display: inline;
    color: #666;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 13px;
	background: #7d9ba6;
	border: 1px solid #7d9ba6;
	border-radius: 50%;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 5px;
    height: 5px;
    background: #7d9ba6;
	border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
[type="checkbox"]:checked + label:before {
    background: rgba(255,255,255,0.0);
}

.sidbar-wrapp .checkbox1 a, .sidbar-wrapp .checkbox2 a {
	color: #ffffff;
}
.sidbar-wrapp .checkbox1 a:hover, .sidbar-wrapp .checkbox2 a:hover {
	color: #b58150;
}
.sidbar-wrapp .checkbox1 span, .sidbar-wrapp .checkbox2 span {
	color: #ffffff;
}

.sidbar-wrapp [type="checkbox"]:checked + label:before,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:before {
	background: #c9d6da;
	border: 1px solid #c9d6da;
}
.sidbar-wrapp [type="checkbox"]:checked + label:after,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:after {
    background: #b58150;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
.mac-os .checkbox1 span {top: -1px;}
.mac-os .checkbox2 span {top: -1px;}
}