	/*FONTS*/
    @font-face {
        font-family: 'Nunito';
        src: url('../fonts/Nunito-Regular.woff2') format('woff2');
        font-weight: normal;font-style: normal;
    }
    
    @font-face {
        font-family: 'Popins';
        src: url('../fonts/Poppins-Regular.woff2') format('woff2');
        font-weight: normal;font-style: normal;font-display:swap;
    }
    @font-face {
        font-family: 'Popins';
        src: url('../fonts/Poppins-Bold.woff2') format('woff2');
        font-weight: bold;font-style: normal;font-display:swap;
    }
    
    /*COLORS*/
    .bg-white{background: #ffffff;}
    .bg-black{background: #000000;}
    .bg-blue{background: #2C216D;}
    .bg-yellow{background: #FFE200;}
    .bg-grey{background: #34353E;}
    .bg-yellow-2{background: #FFB205;}
    .bg-white-2{background: #F7F6F6;}
    .bg-red{background: #FF1D38;}
    .bg-red-2{background: #E22E32;}

    .text-white{color: #ffffff;}
    .text-black{ color: #000000;}
    .text-blue{color: #2C216D;}
    .text-yellow{color: #FFE200;}
    .text-grey{color: #34353E;}
    .text-yellow-2{color: #FFB205;}
    .text-white-2{color: #F7F6F6;}
    .text-red{color: #FF1D38;}
    .text-red-2{color: #E22E32;}

    .border-white{border:solid 2px #ffffff;}
    .border-black{ border:solid 2px #000000;}
    .border-blue{border:solid 2px #2C216D;}
    .border-yellow{border:solid 2px #FFE200;}
    .border-grey{border:solid 2px #34353E;}
    .border-yellow-2{border:solid 2px #FFB205;}
    .border-white-2{border:solid 2px #F7F6F6;}
    .border-red{border:solid 2px #FF1D38;}
    .border-red-2{border:solid 2px #E22E32;}
    
    /*CONTENT*/
    body{
        overflow-x: hidden;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    p,a,span,h1,h2,h3,h4,h5,h6,div,input,textarea,button,label{
        font-family:"Popins";
        color: #34353E;
    }
    .popins{font-family:"Popins";}
    .nunito{font-family:"Nunito";}

    
    /*SECTIONS*/

    footer{
        clear: both;
        position: relative;
        bottom: 0;
        width: 100%;
    }

    .fs-01{font-size: 5rem!important;}
    .fs-0{font-size: 3rem!important;}
    .fs-7 {font-size: 0.75rem!important;}
    .fs-8 {font-size: 0.5rem!important;}
    .fs-9 {font-size: 0.25rem!important;}
    .fw-bold{font-weight: bold;}

    .popup{
        position:fixed !important;
        width: 100%;
        top:0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 103vh;
        background: #000000DD;
        z-index:9999;
    }
    .hidden{
        display:none;
    }
    .sticky{
        position:-webkit-sticky;
        position: sticky;
        top: 0;
          z-index:999;
    }
.listButton {
    border: none;
    border-radius: 15px;
    color: #FF1D38;
    background: #ffffff;
    width: 100%;
    padding: 5px 20px;
    margin: 5px;
    text-align: left;
    font-size:0.8em;
}
.listButton:hover{
    font-weight:bold;
}
.pmiButton.active {
    background: #272727;
    color: #ffffff;
}
.competenciaButton.active {
    background: #272727;
    color: #ffffff;
}
.textCompetencia {
    max-width: 80px;
    border: none;
    color: #FF1D38;
    font-weight: bold;
}
.textCompetencia:focus-visible {
    border: none;
}
.button-white .active {
    color: #ffffff;
    background: #34353E;
}
.button {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    padding: 0.4em;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    font-size: 1em;
    z-index: 1;
    height: auto;
    min-width: 100px;
    margin: 10px 0;
    white-space: nowrap;
    display: inline-block;
    line-height: normal;
    background: transparent;
    border: none;
}
    .button:before{
        content: "";
        width: 150%;
        height: 100%;
        top: 0;
        display: block;
    }
    .button-white{
        color:#FF1D38;
        background: #ffffff;
    }
    .button-white:hover {
        color: #ffffff;
        background: #34353E;
    }
    .button-white:disabled{
        opacity: 0.5;
    }
    .button-red-border{
        background:transparent;
        color:#FF1D38;
        border: solid 1px #FF1D38;
    }
    .button-red-border;hover {
        background: #FF1D38;
        color: #FFFFFF;
    }
    .button-red {
        background: #FF1D38;
        color: #FFFFFF;
    }
    .button-black {
        background: #34353E;
        color: #FFFFFF;
    }
    .cursor-pointer{
        cursor: pointer !important;
    }

    /*Custom CHK*/
    .custom-ch-label {
        display: block;
        position: relative;
        padding-left: 35px;
        padding-top: 5px;
        margin: 5px 0;
        cursor: pointer;
        font-size: 1em !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        color: #BA181F;
    }
    .custom-ch-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    .custom-ch-label input:checked ~ .custom-checkmark {
        background-color: #BA181F;
    }
    .custom-checkmark {
        position: absolute;
        top: 5px;
        left: 0;
        height: 25px;
        width: 25px;
        background: #fff;
        border: solid 2px #BA181F;
        border-radius: 5px;
    }
    .custom-ch-label input:checked ~ .custom-checkmark:after {
        display: block;
    }
    .custom-ch-label .custom-checkmark:after {
        left: 9px;
        top: 5px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .custom-checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .custom-ch-red{
        color: #151515;
        font-style: italic;
    }
    .custom-ch-red input:checked ~ .custom-checkmark {
        background-color: #9A030F;
        border: solid 2px #9A030F;
    }
    .custom-ch-red .custom-checkmark {
        background: #151515;
        border: solid 2px #151515;
    }

    .custom-ch-white{
        color: #fff;
        font-style: italic;
    }
    .custom-ch-white input:checked ~ .custom-checkmark {
        background-color: #151515;
        border: solid 2px #151515;
    }
    .custom-ch-white .custom-checkmark {
        background: #fff;
        border: solid 2px #fff;
    }

    
    /*Responsive styles*/
    /*Escritorio*/
    @media (min-width: 1399.98px) {
        
    }
    /*Tablet Portrait*/
    @media (min-width: 576px) and (max-width: 991.98px) and (orientation:portrait) {
        
        
    }
    /*Tablet landscape*/
    @media (min-width: 991.98px) and (max-width: 1199.98px)and (orientation:landscape) {
        
        
    }
    /*Movil Portrait*/
    @media (max-width: 575.98px)and (orientation:portrait) {
        p{font-size: 0.8em;}
        .legal-text{font-size: 0.5em;}
        .legal-title{font-size: 1em;}
        .listButton {font-size: 0.5em;}
    }
    /*Movil landscape*/
    @media (min-width: 576px) and (max-width: 991.98px) and (orientation:landscape) {
        p{font-size: 0.8em;}
        .legal-text{font-size: 0.7em;}
        .legal-title{font-size: 1em;}
    }
    