body {
    font-family: 'HelveticaNeue';
}


/*==================================
    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: #C0242B;
    -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: #000;
    -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%;
}

@-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);
    }
}

.bodyConFondo {
    /* background: url('../images/fondo.jpg') no-repeat fixed top center; */
    background: url('../images/fondo.jpg') no-repeat fixed bottom center;
    /* background-color: #C0242B; */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #000 !important;
    /* padding: 0;
    position: relative;
    margin: 0;
    height: 100%; */
    -webkit-font-smoothing: antialiased;
    /* padding-bottom: 50px; */
}

.logoPrincipal {
    /* background-color: white; */
    border-radius: 10px;
    width: 200px;
    max-width: 100%;
    padding: 10px;
    /* margin: 15px 0px; */
    /* border-color: black; */
    /* border-style: solid; */
    /* border-width: 1px;*/
}


/* Form */

.form {
    position: relative;
    z-index: 1;
    background: #1D1D1B;
    max-width: 350px;
    margin: 1vh auto 40px;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    border-color: #fff;
    border-width: 1px;
    border-style: solid;    
}

.form .thumbnail {
    background: #EF3B3A;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    padding: 50px 30px;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    box-sizing: border-box;
}

.form .thumbnail img {
    display: block;
    width: 100%;
}

.input {
    outline: 0;
    background: #f2f2f2;
    width: 85%;
    border: 0;
    margin: 0 0 5px;
    padding: 20px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
    border-style: solid;
    border-width: 1px;
    border-color: #fff;
    border-radius: 10px;
    text-align: center;
    margin: 5px auto;
}

.form button {
    outline: 0;
    background: #C0242B;
    width: 100%;
    border: 0;
    padding: 15px;
    /* border-radius: 3px; */
    border-radius: 10px;
    border-style: solid;
    border-color: #000;
    color: #fff;
    border-width: 1px;
    font-size: 14px;
    transition: all 0.3 ease;
    cursor: pointer;
}

.form button:hover {
    background: #fff;
    border-style: solid;
    border-color: #C0242B;
    color: #C0242B;
    border-width: 1px;
    font-size: 14px;
    transition: all 0.3 ease;
    cursor: pointer;
}

.form .message {
    margin: 15px 0 0;
    color: #fff;
    font-size: 16px;
}

.form .message a {
    color: #fff;
    /* background-color: #000; */
    text-decoration: underline;
    padding: 3px;
    border-radius: 5px;
    margin: 8px;
    font-weight: 900;
}

.form .login-form {
    display: none;
}

.linkForm {
    cursor: pointer;
}

.btnPrimario {
    outline: 0;
    background: #C0242B;
    width: 100%;
    border: 0;
    padding: 15px;
    /* border-radius: 3px; */
    border-radius: 10px;
    border-style: solid;
    border-color: #000;
    color: #fff;
    border-width: 1px;
    font-size: 14px;
    transition: all 0.3 ease;
    cursor: pointer;
}

.btnPrimario:hover {
    background: #fff;
    border-style: solid;
    border-color: #C0242B;
    color: #C0242B;
    border-width: 1px;
    font-size: 14px;
    transition: all 0.3 ease;
    cursor: pointer;
}


/* 



/* 
.container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
}

.container:before,
.container:after {
    content: "";
    display: block;
    clear: both;
}

.container .info {
    margin: 50px auto;
    text-align: center;
}

.container .info h1 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
}

.container .info span {
    color: #4d4d4d;
    font-size: 12px;
}

.container .info span a {
    color: #000000;
    text-decoration: none;
}

.container .info span .fa {
    color: #EF3B3A;
} */


/* END Form */

.headerBienvenidos {
    color: #C0242B;
    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: #fff;
    font-weight: 700;
}

.logoMinEducacion {
    width: 300px;
    position: fixed;
    bottom: 15px;
    left: 0px;
}

.divlogoIcfes {
    text-align: right;
}

.logoIcfes {
    max-width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    width: 250px;
}

.radio-inline {
    padding: 0px 10px;
}


/* inicio Scroll */

.scroll-downs {
    position: absolute;
    right: 20px;
    bottom: 20px;
    margin: auto;
    width: 34px;
    height: 55px;
    cursor: pointer;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #CF4D27;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #CF4D27;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.arrow {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.arrow span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #000;
    border-right: 5px solid #000;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}


/* fin scroll  */

.btnPrincipal {
    outline: 0;
    background: #C0242B;
    /* width: 100%; */
    border: 0;
    padding: 15px;
    /* border-radius: 3px; */
    border-radius: 5px;
    border-style: solid;
    border-color: #000;
    color: #fff;
    border-width: 1px;
    font-size: 20px;
    transition: all 0.3 ease;
    cursor: pointer;
}

.btnPrincipal:hover {
    background: #fff;
    border-style: solid;
    border-color: #C0242B;
    color: #C0242B;
    border-width: 1px;
    /* font-size: 14px; */
    transition: all 0.3 ease;
    cursor: pointer;
}


.imgLogoDavivienda {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 120px;
    max-width: 90%;    
}

.imgLegalDavivienda{
    position: fixed;
    top: 5px;
    right: 5px;
    width: 28px;
    max-width: 90%;
}

.imgLegalColpensiones {
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 150px;
    max-width: 90%; 
}

.imgLegalVigilado {
    position: fixed;
    bottom: 5px;
    left: 5px;
    width: 23px;
    max-width: 90%;
}

.imgIngresar {
    /* margin-top: 15px; */
    max-width: 90%;
    margin: 5px;
    cursor: pointer;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    font-size: 12px;
}

a {
    color: #fff;
    text-decoration: underline;    
}

a:hover {
    color: #fff;
    text-decoration: underline;    
}

.imgConcepto{
    max-width:100%;
}

@media screen and (max-width: 991px) {
    .imgConcepto{
        max-width:100%; width: 100%;
    }
    .imgLogoDavivienda {
        position: inherit;
        top: 0px;
        left: 0px;
        width: 80px;
        max-width: 90%;
    }
    .imgLegalColpensiones {
        position: initial;
    }
    .divLogoEmpresa {
        display: block;
    }
    .form {
        margin: 2vh auto 100px;
        margin-bottom: 20px;
    }
    .logoMinEducacion {
        position: inherit;
        text-align: center;
        margin: 0 auto;
    }
    .divlogoIcfes {
        margin-top: 13px;
        text-align: center;
    }
}

@font-face {
    font-family: 'HelveticaNeue';
    font-style: normal;
    font-weight: normal;
    src: local("?"), url("../assets/fonts/HelveticaNeue.otf") format("otf"), url("../assets/fonts/HelveticaNeue.otf") format("truetype");
}