/* when screen is minor than 808px */
@media screen and (max-width: 808px) {
    #mes{
        margin-top: 10px;
    }
    .cartel-evento, .titulos {
        text-align: center;
    }
    .titulos p{
        width: 100%;
    }

}

@media screen and (max-width: 1130px) {
    .cardSubActividad{
        width: 100% !important;
    }
}

select{
    text-transform: capitalize;
}

.page-header i{
  color: #ffcb40
}

.sendButton{
    background-color: white;
    color: #ffcb40;
    border: 2px solid #ffcb40;
    border-radius: 10px;
}

.sendButton:active{
    background-color: #ffcb40 !important;
    color: white !important;
    border: 2px solid transparent;
}

.sendButton:focus{
    background-color: #ffcb40;
    color: white;
    border: 2px solid transparent;
}

.sendButton:hover{
    background-color: #ffcb40;
    color: white;
    border: 2px solid transparent;
}

.titulo-instalacion {
    position: relative;
    overflow: hidden;
  }
  
  #cabecera {
    position: relative;
    animation: aparecer 2s forwards;
  }
  
@keyframes aparecer {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}


@import url("https://fonts.googleapis.com/css2?family=Asap&display=swap");



.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.inputNumber div {
  margin-top: 10px;
}


.create_button{
  /* success button outline bootstrap */
  background: #fff !important;
  border: 1px solid #28a745 !important;
  color: #28a745 !important;
  padding: 5px 10px !important;
  font-size: 16px  !important;
  border-radius: 5px !important;
  transition: all 0.3s ease-in-out;
}

.delete_button{
  background: #fff !important;
  border: 1px solid #a72828 !important;
  padding: 5px 10px !important;
  font-size: 16px  !important;
  color: #a72828 !important;
  border-radius: 5px !important;
  transition: all 0.3s ease-in-out;
}

/* when screen is minor 400px */
@media screen and (max-width: 400px) {
  .dt-buttons button:not(.buttons-html5){
    margin-bottom: 15px;
  }
}

.buttons-html5{
  background: #fff !important;
  border: 1px solid #0f98f5 !important;
  color: #0f98f5 !important;
  padding: 5px 10px !important;
  font-size: 16px  !important;
  border-radius: 5px !important;
  transition: all 0.3s ease-in-out;
}

.buttons-print{
  display: none !important;
}

.buttons-html5:hover{
  background: #0f98f5 !important;
  border: 1px solid #0f98f5 !important;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}

.create_button:hover {
  background: #28a745 !important;
  border: 1px solid #28a745 !important;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}

.dt-buttons>.delete_button:not(.buttons-html5):hover {
  background: #a72828 !important;
  border: 1px solid #a72828 !important;
  transition: all 0.3s ease-in-out;
  color: #fff !important;
}

.etapaTag{
  background-color: #ffcb40;
  color: white;
  padding: 5px;
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  text-align: center;
}

.etapaSolicitud{
  text-wrap: nowrap;
  padding: 10px !important;
}
.etapasContainer{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.BACH {
  background-color: #c45a4c;
}

.Ciclos {
  background-color: #45c4ab;
}

.Otros {
  background-color: #c94fa9;
}

.General {
  background-color: #4c8fc4;
}

.ESO {
  background-color: #e8ae5e;
}

.Primaria {
  background-color: #4cc771;
}

.Infantil {
  background-color: #e06d6d;
}
.tox-notifications-container {
  display: none !important;
}

/* Estos estilos sirven para el switch de los productos */
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #4caf50;
}

input:checked + .slider:before {
  transform: translateX(14px);
}

.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}