body {
    font-family: 'NunitoSans-Regular';
    background-color: #ffff;
}


/*==================================
    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: #00E7DB;
    -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%;
}

::-webkit-scrollbar-track {
    background-color: #e9edf0;
    border-left: 1px solid #ededed;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #00E7DB;
}

::-webkit-scrollbar-thumb {
    background: #00E7DB;
}

@-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 top center; */
    background-color: #FCFCFC;
    -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-color: #00E7DBc9;
    max-width: 500px;
    margin: 1vh auto 40px;
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    border-color: #00E7DB;
    border-width: 1px;
    border-style: solid;
    margin-top: 10px; 
    color:#000;

    -webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.75);
}

.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: #fff;
    width: 100%;
    border: 0;
    margin: 0 0 5px;
    padding: 5px;
    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-radius: 5px;
}

.form button {
    outline: 0;
    background: #fff;
    width: 100%;
    padding: 5px;
    /* border-radius: 3px; */
    border-radius: 5px;    
    color: #000;   
    font-weight: 900; 
    font-size: 14px;
    transition: all 0.3 ease;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    border-color: #000;
}

.form button:hover {
    background: #00E7DB;
    border-style: solid;
    border-color: #fff;
    color: #000;
    border-width: 1px;
    font-size: 14px;
    transition: all 0.3 ease;
    cursor: pointer;
}

.form .message {
    margin: 15px 0 0;
    color: #000;
    font-size: 16px;
}

.form .message a {
    color: #000;
    /* background-color: #000; */
    text-decoration: none;
    padding: 3px;
    border-radius: 5px;
    margin: 8px;
    font-weight: 900;
}

.form .login-form {
    display: none;
}

/* .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;
}

#mensajeCedula{
    font-size: 14px;
}

/* END Form */

.headerBienvenidos {
    color: #00E7DB;
    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 {
    position: absolute;
    left: 0px;
    top: 20px;
    width: 280px;
    max-width: 100%;
}

.imgLineaFooter{
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 1000;
}

img{
    max-width:100%;
}

.imgFooter{
    width: 100%;
    /* position: absolute; */
    margin-top: -200px;
    bottom: 0px;
}

.divLogoEmpresa {
    display: none;
}

.tituloLogin {
    color: #000;
    font-weight: 900;
}

.logoMinEducacion {
    width: 300px;
    position: fixed;
    bottom: 15px;
    left: 0px;
}


.radio-inline {
    padding: 0px 10px;
}

.lineaFooter{
    height: 20px;
    width: 100%;
    background-color: #194534;
    position: fixed;
    bottom: 0px;
    left: 0px;
}

.logoFooter{
    width: 400px;
    position: fixed;
    bottom: 0px;
    right: 0px;
}

label {
    display: inline-block;
    margin-bottom: 1px;
}

.form-group {
    margin-bottom: 8px;
}

.divLogoFooterMovil{
    background-color: #00E7DB;   
}

.imgLogoBlanco{
    max-width: 100%;
    width: 250px;
    padding: 5px;
    text-align: center;
}

.sweet-alert p {
    font-weight: 700;
}

/*Div video inicio*/

.video-responsive {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 0px;
    position: relative;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/*Div video fin*/


.footerDer{
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 100px;
    z-index: 1000;
}

.footerIzq{
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 150px;
    z-index: 1000;
}
.headerIzq{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 40px;
    z-index: 1000;
}

.headerDer{
    position: fixed;
    top: 0px;
    right: 0px;
    width: 120px;
    z-index: 1000;
}

.espacioMd{
    margin-top: 60px;
}


@media screen and (max-width: 991px) {
    .imgFooter{
        margin-top: -80px;
    }
    .divLogoEmpresa {
        display: block;
    }

    .espacioMd{
        margin-top: 5px;
    }

    .form {
        margin: 2vh 20px 100px;
        margin-bottom: 20px;
        position: inherit;
    }
    .logoMinEducacion {
        position: inherit;
        text-align: center;
        margin: 0 auto;
    }
   
}

@font-face {
    font-family: 'NunitoSans-Regular';
    font-style: normal;
    font-weight: normal;
    src: local("?"), url("../assets/fonts/NunitoSans-Regular.ttf") format("ttf"), url("../assets/fonts/NunitoSans-Regular.ttf") format("truetype");
}