::-webkit-scrollbar-track {
    background-color: #e9edf0;
    border-left: 1px solid #ededed;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #232E5C;
}

::-webkit-scrollbar-thumb {
    background: #232E5C;
}


.topBar {
    color: #fff;
    min-height: 33px;
    border-bottom: #00528c;
    border-bottom-style: solid;
    border-width: 1px;
}

.iconRedes {
    background-color: #fff;
    color: #232E5C;
    border-radius: 25px;
    margin: 3px;
    padding: 7px;
    padding-left: 10px;
}

.bodyConFondo {
    /* background-color: #ffffff; */
    -webkit-font-smoothing: antialiased;
    padding-bottom: 50px;
    background: url('../images/fondo.jpg') no-repeat fixed bottom center;
    background-color: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #fff !important;
    /* color: #002060 !important; */
    padding: 0;
    position: relative;
    margin: 0;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

.logoPrincipal {
    border-radius: 10px;
    width: 200px;
    max-width: 100%;
    padding: 10px;
}

.form-control {
    margin-top: 8px;
}

.btnEnviar {
    background-color: #232E5C;
    /* border-color: #232E5C; */
    color: #fff;
    cursor: pointer;
}

.btnEnviar:hover {
    background-color: #fff;
    /* border-color: #232E5C; */
    color: #232E5C;
}

.btnEnviar2 {
    background-color: #232E5C;
    /* 232E5C */
    background-color: #232E5C;
    /* border-color: #232E5C; */
    color: #fff;
    cursor: pointer;
}

.btnEnviar2:hover {
    background-color: #fff;
    /* border-color: #232E5C; */
    color: #232E5C;
}

.btnMemorias {
    background-color: #232E5C;
    border-color: #232E5C;
    color: #fff;
    cursor: pointer;
}

.btnMemorias:hover {
    background-color: #fff;
    border-color: #232E5C;
    color: #232E5C;
}

.headerBienvenidos {
    color: #232E5C;
    text-align: center;
    font-weight: 900;
    background: url('../images/fondoHeader.png') no-repeat fixed top center;
    padding-bottom: 5px;
    padding-top: 10px;
    background-size: inherit;
    font-size: 28px;
    text-transform: uppercase;
}

.imgLogoEmpresa {
    width: 200px;
    max-width: 100%;
}

.divLogoEmpresa {
    display: none;
}

.tituloLogin {
    color: #000;
}

.imgAgenda {
    max-width: 100%;
}

.tituloAgenda {
    font-weight: 900;
}

.textAgenda {
    font-family: "SohoGothicPro-Regular";
    text-align: justify;
}

.divIconUp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
}

.iconUp {
    font-size: 35px;
    color: #232E5C;
}

.divTitulo {
    background-color: #232E5C;
    /* width: 600px; */
    text-align: center;
    margin: 0 auto;
    font-size: 33px;
    color: #fff;
    padding: 5px 10px;
    margin: 20px;
}

.fondoTitulo {
    background-color: #232E5C;
}


/*==================================
    Loader
===================================*/

.loader {
    background: #fff;
    text-align: center;
    height: 100vh;
    z-index: 999;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading {
    position: absolute;
    top: 40%;
    left: 48%;
}

.loading:after {
    content: '';
    width: 50px;
    height: 50px;
    background: #232E5C;
    -moz-animation: preloader 500ms linear infinite;
    -webkit-animation: preloader 500ms linear infinite;
    animation: preloader 500ms linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

.loading:before {
    content: '';
    width: 50px;
    height: 5px;
    background: #232E5C;
    -moz-animation: preloader-shadow 500ms linear infinite;
    -webkit-animation: preloader-shadow 500ms linear infinite;
    animation: preloader-shadow 500ms linear infinite;
    opacity: 0.1;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
}

.imgIeb {
    border-color: #fff;
    border-style: solid;
    border-radius: 7px;
    border-width: 1px;
    width: 90px;
    margin-top: 30px;
}

@-moz-keyframes preloader {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        -moz-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        -moz-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        -moz-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        -moz-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}

@-webkit-keyframes preloader {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        -webkit-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes preloader {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        -moz-transform: translateY(9px) rotate(22.5deg);
        -ms-transform: translateY(9px) rotate(22.5deg);
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        -moz-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        -ms-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        -webkit-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        -moz-transform: translateY(9px) rotate(67.5deg);
        -ms-transform: translateY(9px) rotate(67.5deg);
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        -moz-transform: translateY(0) rotate(90deg);
        -ms-transform: translateY(0) rotate(90deg);
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}

@-moz-keyframes preloader-shadow {
    50% {
        -moz-transform: scale(1.2, 1);
        transform: scale(1.2, 1);
    }
}

@-webkit-keyframes preloader-shadow {
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1);
    }
}

@keyframes preloader-shadow {
    50% {
        -moz-transform: scale(1.2, 1);
        -ms-transform: scale(1.2, 1);
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1);
    }
}

@media screen and (max-width: 991px) {
    .divLogoEmpresa {
        display: block;
    }
    .form {
        margin: 6vh auto 100px;
        margin-bottom: 20px;
    }
}


/* fin Loader  */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    height: 50%;
    width: 50%;
    /* outline: black; */
    background-size: 100%, 100%;
    border-radius: 50%;
    /* border: 1px solid black; */
    background-image: none;
}

.carousel-control-next-icon:after {
    content: '>';
    font-size: 40px;
    color: #232E5C;
}

.carousel-control-prev-icon:after {
    content: '<';
    font-size: 40px;
    color: #232E5C;
}

.carousel-indicators .active {
    background-color: #232E5C;
}

.carousel-indicators li {
    background-color: #000;
}

.carouselPerfil {
    min-height: 500px;
}

.divContentForm {
    width: 450px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    /* background-color: #cdde0087; */
    padding: 20px; 
    color:#fff;
    /* border-radius: 20px; */
}

.divContentForm h3{
    color:#fff;
    font-weight: 900;
}

/* .logopersonaindex img {
    width: 40%;
    margin-top: -70px;
} */

.login-form{
    margin-top: 200px;    
    /* transform: skewX(-41.5deg); */
    width: 1200px;
    padding: 35px;    
    /* background: linear-gradient(90deg, rgb(35 46 92 / 50%) 0%, rgb(0 166 221 / 50%) 100%); */
    max-width: 90%;
}
.divContentLoginForm{
    /* transform: skewX(41.5deg); */
}

.register-form{
    margin-top: 20px;
    margin-left: 170px;
    width: 500px;
    padding: 25px;
    background: linear-gradient(90deg, rgb(35 46 92 / 50%) 0%, rgb(0 166 221 / 50%) 100%);
    max-width: 99%;
}

.linkSinEstilo, .linkSinEstilo:hover{
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}


.logopersonaindex input {
    background-color: #ffffff;
    color: #000000;
}

.logopersonaindex input::placeholder {
    color: #000;
}

.message a {
    color:#fff;
    text-decoration: underline;
}

/* Whatsapp Inicio */

.whatsapp {
    position: fixed;
    width: 218px;
    height: 50px;
    bottom: 10px;
    left: 10px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 8px;
}

.whatsapp:hover {
    background-color: #FFF;
    border-color: #25d366;
    border-style: solid;
    border-width: 1px;
    color: #25d366;
}

span.textWhatsapp {
    font-size: 15px;
}


/* Whatsapp Fin */

label {
    margin-bottom: 0px;
}

.imgPatrocinador {
    max-width: 100%;
}

.register-form {
    display: none;
}
.carousel-control-next, .carousel-control-prev {
    width: 3%!important;
}

.btnEnviar{
    width: 100%;
}

.form-group{
    text-align: left;
}

.container-fluid{
    padding: 0px;
    overflow-x: hidden;
}


.logoIzq{
    position: fixed;
    max-width: 45%;
}

@media screen and (max-width: 991px) {
    .divLogoEmpresa {
        display: block;
    }
    .form {
        margin: 6vh auto 100px;
        margin-bottom: 20px;
    }
    .tituloAgenda {
        text-align: center;
    }
    .imgAgenda {
        width: 25vh;
    }
    .logopersonaindex button {
        width: 60%;
    }
    .carousel-control-next, .carousel-control-prev {
        width: 6%!important;
    }

    .login-form {
        margin-top: 10px;
        transform: none;
        margin: 0 auto;
    }
    .divContentLoginForm {
        transform: none;
    }

    .register-form{
        margin-top: 10px;
        transform: none;
        margin: 0 auto;
    }

}
