<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.jquery-checkbox       {
display: inline-block; 
font-size: 20px; 
line-height: 20px; 
cursor: pointer; 
width: 20px;
height: 20px;
background: white;
border: 1px solid rgb(135, 190, 207);
cursor: hand;
overflow: hidden;
}
.jquery-checkbox .mark {display: inline;}

/* .jquery-checkbox img {vertical-align: -3px; width: 20px; height: 20px;} */
/* .jquery-checkbox img{background: transparent url(../img/checkbox_stm.png) no-repeat;} */

.jquery-checkbox img{
		width: 100%;
	height: 100%;
	border-radius: 4px;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;

}
.jquery-checkbox-hover img{
	-webkit-transform: scale(0.4);
	-moz-transform: scale(0.4);
	-o-transform: scale(0.4);
	-ms-transform: scale(0.4);
	transform: scale(0.4);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	border-radius: 4px;
	background: rgb(135, 190, 207);
}
.jquery-checkbox-checked img{
	background-color: #2582a4;
		-webkit-transform: scale(0.6) !important;
	-moz-transform: scale(0.6) !important;
	-o-transform: scale(0.6) !important;
	-ms-transform: scale(0.6) !important;
	transform: scale(0.6) !important;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;

}
.jquery-checkbox-checked img{
		background: #2582a4;
		
}
.jquery-checkbox-checked{border: 1px solid #2582a4;}
.jquery-checkbox-checked .jquery-checkbox-hover img {
		background: #2582a4;
}

.jquery-checkbox-disabled img{
	background-position: 0px -80px;
}
.jquery-checkbox-checked .jquery-checkbox-disabled img{
	background-position: 0px -100px;
}</pre></body></html>