@charset "utf-8";
/* Simtec CSS Document */




/*################## Override the Modal default ########################*/

.modal-content{
	/*background-color:#000 !important;	<--- this looks baaaaad*/
	font-family: 'Open Sans', sans-serif !important;
}

.modal-content h6{
	font-weight:700;
	color:#0099a9;
}
.modal-content h6{
	font-weight:700;
}


/*override footer distance to top*/
.cid-rmFM3YSIXI{
	padding-top:30px !important;
}


/*new margin for Checbox wrapper*/
.checkbox-wrap{
	padding-top:20px;
	padding-bottom:20px;	
}

/*override the bootsrap margin-left for Checkbox*/
.form-check-input{
	margin-left:0px !important;
}
/*set the checkbox label to same type then the rest of the page*/
.form-check-label {
   	font-family: 'Open Sans', sans-serif;
   	font-weight: 300;
	font-size: 1.2rem;
   	color:#FFF;
}

/*do some magic checkbox skinning*/
#myPrivacy[type="checkbox"] {
  display:none;
}
#myPrivacy[type="checkbox"] + label::before {
  width: 23px;
  height: 17px;
  background-image: url("../img/check-off.png");
  display: block;
  content: "";
  float: left;
  margin-right: 5px;
  margin-top:7px;
}
#myPrivacy[type="checkbox"]:checked+label::before {
  background-image: url("../img/check-on.png");
}



/*

#subscribeNews6[type="checkbox"] {
  display:none;
}
#subscribeNews6[type="checkbox"] + label::before {
  width: 22px;
  height: 18px;
  background-image: url("https://boolie.org/wp-content/uploads/2017/11/unchecked.png");
  display: block;
  content: "";
  float: left;
  margin-right: 5px;
}
#subscribeNews6[type="checkbox"]:checked+label::before {
  background-image: url("https://boolie.org/wp-content/uploads/2017/11/checked.png");
}


*/