:root {
    --rojo-afp: #D7282F;
    --blanco-afp: #ffffff;
    --gris-afp: #707070;
    --azul-link: #0080FF;
}



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
  
@font-face {
    font-family: 'NunitoSans';
    src: url("") format('truetype');
}

@font-face {
    font-family: 'NunitoSans';
    src: url("") format('truetype');
}

@font-face {
    font-family: 'NunitoSans';
    src: url("") format('truetype');
}



/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
    margin: 0px; 
    padding: 0px; 
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'NunitoSans', sans-serif;
}

/*---------------------------------------------*/
a {
    font-family: 'NunitoSans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: var(--gris-afp);
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
    margin: 0px;
}

p {
    font-family: 'NunitoSans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}


/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus, input:focus {
    border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

textarea::-webkit-input-placeholder { color: #999999; }
textarea:-moz-placeholder { color: #999999; }
textarea::-moz-placeholder { color: #999999; }
textarea:-ms-input-placeholder { color: #999999; }

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
    font-family: 'NunitoSans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gris-afp);
    padding-top: 12px;
}

.txt2 {
    font-family: 'NunitoSans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--azul-link);
}

.custom-text-link {
    padding-top: 136px;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-image: url(../../../images/section-2.png);
    background-size: cover;
}

.wrap-login100 {
    width: 960px;
    background: var(--blanco-afp);
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 50px 33px 50px;
}

/*------------------------------------------------------------------
[  ]*/


/*------------------------------------------------------------------
[  ]*/
.header,
.footer {
    height: 90px;
}

.header img {
    width: 12%;
}

.login100-form {
    width: 350px;
}

.footer-text p{
    color: var(--blanco-afp);
    margin-top: 40px;
    font-size: 22px;
}

.login100-form-title {
    font-family: 'NunitoSans', sans-serif;
    font-size: 36px;
    color: var(--gris-afp);
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 24px;
}

.login100-form-subtitle {
    font-family: 'NunitoSans', sans-serif;
    font-size: 24px;
    color: var(--gris-afp);
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 35px;
}


/*---------------------------------------------*/
.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
}

.input100 {
    font-family: 'NunitoSans', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 50px;
    border-radius: 9px;
    padding: 0 30px 0 68px;
}


/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
    display: block;
    position: absolute;
    border-radius: 9px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    color: var(--rojo-afp);
}

.input100:focus + .focus-input100 {
    -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
    animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 70px 25px;
        opacity: 0;
    }
}

@keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 70px 25px;
        opacity: 0;
    }
}

.symbol-input100 {
    font-size: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 35px;
    pointer-events: none;
    color: #666666;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
    color: var(--rojo-afp);
    padding-left: 28px;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0px;
    margin-bottom: 30px;
}

.login100-form-btn {
    font-family: 'NunitoSans', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 50px;
    border-radius: 9px;
    background: var(--rojo-afp);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-bottom: 10px;
}

.login100-form-btn:hover {
    background: #333333;
}


.wrap-table100 {
    font-size: 28px;
    color: var(--gris-afp);
    margin: 0px 225px;
}

input[type="checkbox"]:checked+label {
    background-color: red;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 1440px) {

    .header,
    .footer {
        height: 110px;
    }

    .header img {
        width: 17%;
    }

    .footer-text p {
        color: var(--blanco-afp);
        margin-top: 30px;
        font-size: 24px;
    }

    .container-login100 {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-image: url(../../../images/section-2.png);
        background-size: cover;
    }

    .wrap-login100 {
        width: 750px;
        height: 650px;
        background: var(--blanco-afp);
        border-radius: 9px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 40px 3px 40px;
    }

    .login100-form-title {
        font-size: 36px;
        padding-bottom: 14px;
    }

    .login100-form-subtitle {
        font-size: 24px;
        padding-bottom: 15px;
    }

    .wrap-table100 {
        font-size: 24px;
        margin: 0px 225px;
    }

    /*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
    .txt1 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 18px;
        line-height: 1.5;
        color: var(--gris-afp);
    }

    .txt2 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: var(--azul-link);
    }

    .custom-text-link {
        padding-top: 70px;
        margin-bottom: 100px;
    }
}

@media (max-width: 1366px) {

    .header,
    .footer {
        height: 110px;
    }

    .header img {
        width: 17%;
    }

    .footer-text p {
        color: var(--blanco-afp);
        margin-top: 10px;
        font-size: 24px;
    }

    .container-login100 {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-image: url(../../../images/section-2.png);
        background-size: cover;
    }

    .wrap-login100 {
        width: 992px;
        height: 600px;
        background: var(--blanco-afp);
        border-radius: 10px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 50px 33px 50px;
    }

    .login100-form-title {
        font-size: 36px;
        padding-bottom: 14px;
    }

    .login100-form-subtitle {
        font-size: 24px;
        padding-bottom: 15px;
    }

    .wrap-table100 {
        font-size: 24px;
        margin: 0px 225px;
    }

    /*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
    .txt1 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 18px;
        line-height: 1.5;
        color: var(--gris-afp);
    }

    .txt2 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: var(--azul-link);
    }

    .custom-text-link {
        padding-top: 30px;
        margin-bottom: 100px;
    }



}

@media (max-width: 1280px) {

    .header,
    .footer {
        height: 110px;
    }

    .header img {
        width: 22%;
    }

    .footer-text p {
        color: var(--blanco-afp);
        margin-top: 10px;
        font-size: 20px;
    }

    .container-login100 {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-image: url(../../../images/section-2.png);
        background-size: cover;
    }

    .wrap-login100 {
        width: 960px;
        height: 700px;
        background: var(--blanco-afp);
        border-radius: 10px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 40px 33px 40px;
    }

    .login100-form-title {
        font-size: 36px;
        padding-bottom: 14px;
    }

    .login100-form-subtitle {
        font-size: 24px;
        padding-bottom: 15px;
    }

    .wrap-table100 {
        font-size: 24px;
        margin: 0px 225px;
    }

    /*//////////////////////////////////////////////////////////////////
[ Utility ]*/
    .txt1 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 18px;
        line-height: 1.5;
        color: var(--gris-afp);
    }

    .txt2 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: var(--azul-link);
    }

    .custom-text-link {
        padding-top: 120px;
        margin-bottom: 100px;
    }


}


@media (max-width: 1024px) {

    .header img {
        width: 24%;
    }

    .container-login100 {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-image: url(../../../images/section-2.png);
        background-size: cover;
    }

    .wrap-login100 {
        width: 940px;
        height: 550px;
        background: var(--blanco-afp);
        border-radius: 10px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 30px 33px 30px;
    }

    .login100-form-title {
        font-size: 28px;
        padding-bottom: 14px;
    }

    .login100-form-subtitle {
        font-size: 20px;
        padding-bottom: 15px;
    }

    .wrap-table100 {
        font-size: 20px;
        margin: 0px 225px;
    }

    /*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
    .txt1 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 14px;
        line-height: 1.5;
        color: var(--gris-afp);
    }

    .txt2 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 14px;
        line-height: 1.5;
        color: var(--azul-link);
    }

    .custom-text-link {
        padding-top: 40px;
        margin-bottom: 100px;
    }



}

@media (max-width: 992px) {

    .header,
    .footer {
        height: 50px;
    }

    .header img {
        width: 25%;
    }

    .footer-text p {
        color: var(--blanco-afp);
        margin-top: -60px;
        font-size: 18px;
    }

    .container-login100 {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-image: url(../../../images/section-2.png);
        background-size: cover;
    }

    .wrap-login100 {
        width: 750px;
        height: 650px;
        background: var(--blanco-afp);
        border-radius: 9px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 40px 3px 40px;
    }

    .login100-form-title {
        font-size: 32px;
        padding-bottom: 14px;
    }

    .login100-form-subtitle {
        font-size: 24px;
        padding-bottom: 15px;
    }

    .wrap-table100 {
        font-size: 22px;
        margin: 0px 220px;
    }

    /*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
    .txt1 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: var(--gris-afp);
    }

    .txt2 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: var(--azul-link);
    }

    .custom-text-link {
        padding-top: 80px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {

    .header,
    .footer {
        height: 50px;
        margin-top: 30px;
    }

    .header img {
        width: 25%;
    }

    .footer-text p {
        color: var(--blanco-afp);
        margin-top: -20px;
        font-size: 18px;
    }

    .container-login100 {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-image: url(../../../images/section-2.png);
        background-size: cover;
    }

    .wrap-login100 {
        width: 700px;
        height: 700px;
        background: var(--blanco-afp);
        border-radius: 9px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 40px 3px 40px;
    }

    .login100-form-title {
        font-size: 32px;
        padding-bottom: 14px;
    }

    .login100-form-subtitle {
        font-size: 24px;
        padding-bottom: 15px;
    }

    .wrap-table100 {
        font-size: 22px;
        margin: 0px 195px;
    }

    /*//////////////////////////////////////////////////////////////////
[ Utility ]*/
    .txt1 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: var(--gris-afp);
    }

    .txt2 {
        font-family: 'NunitoSans', sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: var(--azul-link);
    }

    .custom-text-link {
        padding-top: 60px;
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {

    .header,
    .footer {
        height: 70px;
    }

    .header img {
        width: 46%;
    }

    .footer-text p {
        color: var(--blanco-afp);
        margin-top: 20px;
        font-size: 12px;
        text-align: center;
    }

    .container-login100 {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-image: url(../../../images/section-2.png);
        background-size: cover;
    }

    .wrap-login100 {
        width: 700px;
        height: 550px;
        background: var(--blanco-afp);
        border-radius: 9px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px 20px 3px 20px;
    }

    .login100-form-title {
        font-size: 26px;
        padding-bottom: 10px;
    }

    .login100-form-subtitle {
        font-size: 12px;
        padding-bottom: 10px;
    }

    .wrap-table100 {
        font-size: 12px;
        margin: 0px 50px;
    }

    .input100 {
        font-size: 12px;
        line-height: 1.5;
        color: #666666;
        height: 40px;
        padding: 0 10px 0 50px;
    }

    .login100-form-btn {
        font-size: 12px;
        line-height: 1.5;
        text-transform: uppercase;
        width: 100%;
        height: 40px;
        padding: 0 25px;
        margin-bottom: 5px;
    }

    /*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
    .txt1 {
        font-size: 11px;
        line-height: 0.5;
        padding-top: 0px;
        margin-top: 0px;
    }

    .txt2 {
        font-size: 12px;
        line-height: 1.5;
    }

    .custom-text-link {
        padding-top:10px;
        margin-bottom: 0px;
    }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: white;
    border: 1px solid var(--rojo-afp);
    border-radius: 13px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
    pointer-events: none;

    font-family: 'NunitoSans', sans-serif;
    color: var(--rojo-afp);
    font-size: 13px;
    line-height: 1.4;
    text-align: left;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 13px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }

}

/*-------------------POP UPS-------------------*/
.waitpopup{
    color: #BA2B31;
    cursor: wait;
    border: none;
    padding: 5px;
    /*  -webkit-border-radius: 10px;
      -moz-border-radius: 10px;*/
    border-radius: 10px;
    /* color: #fff ;*/
    opacity: .85;

}

.waitpopup::backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.container-p {
    width: 26rem;
}

.container-pop-up {
    background-color: #D9272E;

    color: #FFF;
    border-radius: 1rem;
    text-align: center;
    font-size: 80%;
    padding-top: 1.5rem;

}


.container-pop-up::backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}
.container-pop-up p {
    color: #FFF;
    padding: 0 1rem;
}

.container-pop-up a {
    background-color: #FFF;
    color: #D9272E;
    padding: 0.5rem;
    border-radius: 0.5rem;
}
.container-pop-up input {
    background-color: #FFF;
    color: #D9272E;
    padding: 0.5rem;
    border-radius: 0.5rem;
}
.border-fff {
    background: #d9272e;
    padding: 0.6rem;
    border-radius: 1rem;
    border-color: white;
}
