.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-semibold {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
}



.font-bold {font-weight: bold;}
.size-13 {font-size:0.67vw;}
.size-14 {font-size:0.72vw;}
.size-15 {font-size:0.78vw;}
.size-18 {font-size:0.93vw;}
.size-19 {font-size:0.98vw;}
.size-24 {font-size:1.2vw;}
.size-26 {font-size:1.35vw;}
.size-30 {font-size:1.56vw;}
.size-32 {font-size:1.7vw;}
.size-37 {font-size:1.9vw;}
.size-40 {font-size:2vw;}
.size-42 {font-size:2.2vw;}
.size-50 {font-size:2.6vw;}
.size-60 {font-size:3.12vw;}

.color-red {color:#9C1F1E;}
.cinza-claro {color:#676363;}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #9C1F1E;
}

input:focus + .slider {
  box-shadow: 0 0 1px #9C1F1E;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}




.checkbox-form .form-check-input:checked {
  background-color: #ff5722; /* Cor de fundo desejada */
  border-color: #ff5722;     /* Cor da borda desejada */
}

.d-flex .form-check-input:checked {
  background-color: #ff5722; /* Change to your desired background color */
  border-color: #ff5722;     /* Match the border to the background */
}