:root {
  --colorVerde: #8fd24c;
  --colorAzul: #186ed1;
  --colorRojo: #d62b2b;
  --colorAmalrillo: #d9cc0c;
  --colorGris: #efefef;
  --colorGrisOscuro: #c3c3c3;
  --colorAzulOscuro: #002855;
}
/* ------ */
p {
  margin: 0;
}
.form-control:focus {
  box-shadow: none;
}
.btn:focus {
  box-shadow: none;
}
.page-link:focus {
  box-shadow: none;
}
.custom-select:focus {
  box-shadow: none;
}
/* ------ */
.bg-textura {
  background: url(../img/textura.jpg);
}
.bg-login {
  background: url(../img/img1.jpg);
  background-repeat: no-repeat;
  background-position: 50% 90%;
  background-size: cover;
}
.bg-grises {
  background: linear-gradient(
    40deg,
    #f5fbfe 39%,
    #e6f1fd 39%,
    #e6f1fd 45%,
    #e0f0f5 45%,
    #e0f0f5 50%,
    #e6f1fd 50%,
    #e6f1fd 71%,
    #f5fbfe 71%
  );
  background-attachment: fixed;
}
.height-max {
  min-height: 100vh;
}
.width-max {
  width: 100%;
}
.bg-gris {
  background: #f3f3f3;
}
.borde-redius-izquierda {
  border-radius: 15px 0 0 15px;
}
.borde-redius-derecha {
  border-radius: 0 15px 15px 0;
}
@media screen and (max-width: 767px) {
  .borde-redius-derecha,
  .borde-redius-izquierda {
    border-radius: 15px;
  }
}
.border-redius {
  border-radius: 15px;
}
.border-redondo {
  border-radius: 100%;
}
.border-circular {
  border-radius: 50px;
}
.btn-verde {
  background: var(--colorVerde);
}
.text-azul {
  color: var(--colorAzul);
}
.sombra {
  box-shadow: 0 3px 10px #0000004d;
}
.sombra-text {
  text-shadow: 0 3px 10px #0000004d;
}
.bg-verde {
  background: var(--colorVerde);
}
.gradiante-verde {
  background: linear-gradient(
    162deg,
    rgba(143, 210, 76, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.bg-amarillo {
  background: var(--colorAmalrillo);
}
.gradiante-amarillo {
  background: linear-gradient(
    162deg,
    rgba(217, 204, 12, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.bg-rojo {
  background: var(--colorRojo);
}
.gradiante-rojo {
  background: linear-gradient(
    162deg,
    rgba(214, 43, 43, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.bg-azul {
  background: var(--colorAzul);
}
.gradiante-azul {
  background: linear-gradient(
    162deg,
    rgba(24, 110, 209, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.bg-azul-o {
  background: var(--colorAzulOscuro);
}
.bg-gris {
  background: var(--colorGris);
}
.bg-gris-o {
  background: var(--colorGrisOscuro);
}
.label-img {
  background: #c3c3c3;
  height: 80px;
  width: 100%;
}
.border-bot {
  border-bottom: 2px solid var(--colorAzul);
}
.border-solid {
  border: 1px solid #000;
}
/* ------------- CSS PERSONALIZADOS --------------- */
.carpeta {
  background: #fff;
  box-shadow: 0 3px 10px #0000004d;
  border-radius: 0 20px 20px 20px;
  position: relative;
  z-index: auto;
}
.carpeta:before {
  content: "";
  position: absolute;
  border-radius: 20px 20px 0 0;
  height: 30px;
  width: 60%;
  background: #fff;
  box-shadow: 0 -3px 5px #0000004d;
  top: -30px;
  left: 0;
}
.options {
  width: 200px;
  display: none;
  right: 0;
  z-index: 400;
}
.options-congi {
  top: 50px;
  z-index: 400;
  width: 180px;
  display: none;
}
.btn-buscar {
  right: 0px;
}
.padding-top {
  padding-top: 150px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .btn-buscar {
    right: 30px;
  }
  .padding-top {
    padding-top: 180px;
  }
}
/* ---------------------------- */
input[type="checkbox"] {
  position: relative;
  width: 40px;
  height: 20px;
  -webkit-appearance: none;
  background: #c6c6c6;
  outline: none;
  border-radius: 20px;
  transition: 0.3s;
}
input:checked[type="checkbox"] {
  background: #03a9f4;
}
input[type="checkbox"]:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  top: 0;
  left: 0;
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
input:checked[type="checkbox"]:before {
  left: 20px;
}
