
/* Administradores */
.errorConsulta{
    color:red;
    margin: -12px 0px 8px 10px;
    font-size: 12px;
}

.fontTrebuchet{
    font-family: "Trebuchet MS",Helvetica,sans-serif;
}
.horizontal{
    display: flex;
    flex-direction: row;
}

.btnRedondeadoUser{
    margin:5px;
    padding: 15px 28px;
    border-radius: 11px;
}

.padding0{
    padding: 0;
}


/* Botones Bootbox */
.btn.btn-confirm-bootbox.bootbox-accept{
    color:white;
}
.btn-cancel-bootbox{
    background-color: #e9ecf0;
}

.btn-confirm-bootbox{
    background-color: #1E97A0;
}

.colorEmpresa{
    background-color: #1E97A0;
}

.fontWhite{
    color: white
}


.form-floating-label {
    position: relative; 
}

    .form-floating-label .placeholder.disabled{
      /* position: absolute;
      padding: .375rem .75rem;
      transition: all .2s;
      opacity: 0.8;
      margin-bottom: 0 !important;
      font-size: 14px !important;
      font-weight: 400;
      top: 12px;  */


      font-size: 85% !important;
    transform: translate3d(0, -10px, 0);
    top: 0;
    opacity: 1;
    padding: .375rem 0 .75rem;
    font-weight: 600; 
}


/********************* Switch CSS **********************/

.switch{
    /* top: 50%;
    left: 50%;
    width: 75px;
    height: 40px; */
    top: 7%;
    left: 40%;
    width: 75px;
    height: 40px;
}

.toggle{
    position: absolute;
    border: 2px solid #444249;
    border-radius: 20px;
    -webkit-transition: border-color .6s  ease-out;
    transition: border-color .6s  ease-out;
    box-sizing: border-box;
}

.toggle.toggle-on{
    border-color: rgba(137, 194, 217, .4);
    -webkit-transition: all .5s .15s ease-out;
    transition: all .5s .15s ease-out;
}

.toggle-button{
    position: absolute;
    top: 4px;
    width: 28px;
    bottom: 4px;
    right: 39px;
    background-color: #444249;
    border-radius: 19px; 
    cursor: pointer;
    -webkit-transition: all .3s .1s, width .1s, top .1s, bottom .1s;
    transition: all .3s .1s, width .1s, top .1s, bottom .1s;
}

.toggle-on .toggle-button{
    top: 3px;
    width: 65px;
    bottom: 3px;
    right: 3px;
    border-radius: 23px;
    /* background-color: #89c2da; */
    /* box-shadow: 0 0 16px #4b7a8d; */
    background-color: #1e97a0;
    /* box-shadow: 0 0 5px #1e97a0; */
    box-shadow: 0 0 16px #4b7a8d;

    -webkit-transition: all .2s .1s, right .1s;
    transition: all .2s .1s, right .1s;
}


.toggle-text-on{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 36px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: normal;
    cursor: pointer;
    -webkit-user-select: none; /* Chrome/Safari */    
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */


    color: rgba(0,0,0,0);

}
/* Color letra SI */
.toggle-on .toggle-text-on{
    /* color: #3b6a7d; */
    color: white;
    -webkit-transition: color .3s .15s ;
    transition: color .3s .15s ;
}

.toggle-text-off{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 6px;
    line-height: 36px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: bold;
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    cursor: pointer;

    color: #444249;
}

.toggle-on .toggle-text-off{
    color: rgba(0,0,0,0);
}

.glow-comp{
    position: absolute;
    opacity: 0;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 6px;
    background-color: rgba(75, 122, 141, .1);
    box-shadow: 0 0 12px rgba(75, 122, 141, .2);
    -webkit-transition: opacity 4.5s 1s;
    transition: opacity 4.5s 1s;
}

.toggle-on .glow-comp{
    opacity: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

@media screen and (max-width:1440px){
    /* .toogleStyle{
        padding-bottom: 40px;
    } */
    
    .switch{
        /* top: 50%;
        left: 50%;
        width: 75px;
        height: 40px; */
        top: 7%;
        left: 60%;
        width: 75px;
        height: 40px;
    }
}
@media screen and (max-width:1024px){
    .toogleStyle{
        padding-bottom: 40px;
    }
}


@media screen and (max-width:425px){
    .toogleStyle{
        padding-bottom: 100px;
    }
}

.centrarHorizontal{
    display:flex; 
    align-items:center;
}