@charset "utf-8";
/* CSS Document */
@media screen and (min-width : 1400px) {
}
@media screen and (min-width : 1200px) {
}
@media screen and (min-width : 992px) and (max-width : 1199px) {
}
@media screen and (min-width : 768px) and (max-width : 991px) {
}
@media screen and (max-width : 767px) {
}
@media screen and (max-width : 550px) {
}
@media screen and (max-width : 480px) {
}
@media screen and (max-width : 340px) {
}

.custom-check input[type="checkbox"] { display: none; }

.custom-check input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: #333;
  cursor: pointer;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.custom-check input[type="checkbox"] + label:last-child { margin-bottom: 0; }

.custom-check input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #1976d2;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.custom-check input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sml-checks.custom-check input[type="checkbox"] + label {
  padding-left: 18px;
}
.sml-checks.custom-check input[type="checkbox"] + label span {
  float: right;
  font-size: 10px;
  color: #777;
}
.sml-checks.custom-check input[type="checkbox"] + label::before {
  height: 10px;
  width: 10px;
  top:5px;
}
.sml-checks.custom-check input[type="checkbox"]:checked + label::before {
  width: 5px;
}
.sml-checks p, .sml-radios p {
  margin-bottom: 5px;
}


