.regModalFinal{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background-color: #2020208e;
    display: none;
    justify-content: center;
    align-items: center; 
    
}
.regModalFinal .regcontainer{
    background-color: #ffb819;    
    border-radius: 12px;
    width: auto;
    height: auto;    
    padding: 3rem;
}
.reginner{
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 400px;
    
}

#politica_form label p{
    line-height: 1.1;
    margin-bottom: 0;
}

.reginnerLoading{
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; 
}
.reginnerLoading img{
    width: 100px;
    height: auto;
    animation: loadingSpin 1s ease-in-out infinite;
}
@keyframes loadingSpin {
    0%{transform:rotate(0);}
    100%{transform: rotate(360deg);}
}





.formButtonsDiv-register{
    text-align: center;
    margin-bottom: 3rem;
}

.regbtn{
    background-color: #ffb819;
    border: none;
    border-radius: 0px;
    color: white;   
    position: relative;
    /* font-size: 12px; */
    font-family: SharpGrotesk-SemiBold;
    padding: 0.5rem 2rem;
}

.regbtn:hover{
    background-color: #ffb819;
    color: black;
}



/* .regbtn::after{   
    content: ''; 
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -4px;
    right: -4px;    
    border: 1px solid #E50A17;
} */



#horarios-modal{
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #3C3C3C;
    overflow-y: auto;
    animation: hmodal 0.2s ease-in-out;
}
@keyframes hmodal {
    0% {transform: scale(0.5);opacity: 0;}
    100% {transform: scale(1);opacity: 1;}
}
.horarios-left{
    background-color: #202020;
    padding: 3rem;
}

.scrollpart{
    overflow-y: auto;
}
.horario-facultad{
    visibility: hidden;
}
.horario-facultad span{
    color: #FF4053;
    font-weight: bold;
}

.close-cModal{
    color: white;
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.borderb{
    border-bottom: 1px solid #333333;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.horarioOpen{
    color: #FF4053;
}
.horarioOpen button{
    background-color: transparent;
    border: none;
    outline: none;
    color: #8D80FA;
    visibility: visible;
}
.horarioClose{
    color: white;
}
.horarioClose button{
    visibility: hidden;
}
.loadingHorario{
    margin-top: 3rem;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
}
.loadingHorario img{
    height: 100%;
    animation: loadingSpin 1s ease-in-out infinite;
}
@keyframes loadingSpin {
    0%{transform:rotate(0);}
    100%{transform: rotate(360deg);}
}

.horarios-right{
    padding: 3rem;
}

@media (max-width: 768px) {
    
    .offset-3{
        margin-left: 0;
    }
    .horarios-right{
        padding: 2rem;
    }    
    .borderb{
        margin-bottom: 1rem;
    }
    .horario-list{        
        border: none;
        padding: 0;
    }        
    
    .horario-list ul{
        padding: 1rem;
        padding-right: 3rem!important;
        list-style-type: none;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0;
        border-top: 1px solid rgb(97, 97, 97);
    }
    .horario-list ul::after{
        position: absolute;
        right: 1rem;
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
        font-size: 100%;
    }
    .horario-list ul li{
        padding-right: 20px;
    }
    
    .horario-list ul li:nth-child(1){
        width: 100%;
    }
    .horario-list ul li:nth-child(2){
        width: 100%;   
    }
    .horario-list ul li:nth-child(3){
        width: 100%;
    }
    .horario-list ul li:nth-child(4){
        width: 100%;
    }
    .topTable{
        display: none;
    }
    .horarioClose button {
        visibility: hidden;
        display: none;
    }
    .horario-facultad{
        display: none;
    }
    #peruTime{
        display: none;
    }
    .close-cModal{
        padding-right: 0.5rem;
    }
}