﻿
/*==================================================================*/
/************* ../fonts ************************/
/*===================================================================*/


@font-face {
    font-family: 'AvenirLTStd-Medium';
    src: url('fonts/AvenirLTStd-Medium.eot');
    src: url('fonts/AvenirLTStd-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/AvenirLTStd-Medium.woff2') format('woff2'), url('fonts/AvenirLTStd-Medium.woff') format('woff'), url('fonts/AvenirLTStd-Medium.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'AvenirLTStd-Book';
    src: url('fonts/AvenirLTStd-Book.eot');
    src: url('fonts/AvenirLTStd-Book.eot?#iefix') format('embedded-opentype'), url('fonts/AvenirLTStd-Book.woff2') format('woff2'), url('fonts/AvenirLTStd-Book.woff') format('woff'), url('fonts/AvenirLTStd-Book.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'MADEMirage-Thin';
    src: url('fonts/MADEMirage Thin.eot');
    src: url('fonts/MADEMirage Thin.eot?#iefix') format('embedded-opentype'), url('fonts/MADEMirage Thin.woff2') format('woff2'), url('fonts/MADEMirage Thin.woff') format('woff'), url('fonts/MADEMirage Thin.ttf') format('truetype');
    font-weight: normal;
}
@font-face {
    font-family: 'MADEMirage-Bold';
    src: url('fonts/MADEMirage Bold.eot');
    src: url('fonts/MADEMirage Bold.eot?#iefix') format('embedded-opentype'), url('fonts/MADEMirage Bold.woff2') format('woff2'), url('fonts/MADEMirage Bold.woff') format('woff'), url('fonts/MADEMirage Bold.ttf') format('truetype');
    font-weight: normal;
}

.text-justify {
    text-align: justify;
}

strong {
    /*font-family: 'AvenirLTStd-Book';*/
    font-weight: bolder;
}
/* CSS Document */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: #ffffff;
    /*font-family: 'AvenirLTStd-Medium', sans-serif;*/
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #0a1119;
}


form {
    height: 100%;
}

.textUnderline {
    text-decoration: underline;
}

.scrollView {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}



@media(min-width:969px) {
    .scrollView::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #eee;
    }

    .scrollView::-webkit-scrollbar {
        width: 16px;
        background-color: #eee;
    }

    .scrollView::-webkit-scrollbar-thumb {
        background-color: #f59e40;
        border: 0px solid #f59e40;
    }
}



.containerWeb {
    width: 100%;
    margin: 0 auto;
    min-height: 100%;
    position: relative;
}

.content {
    width: 90%;
    margin: 0 auto;
}

.contentSmall {
    width: 70%;
    margin: 0 auto;
}

@media(max-width:1600px) {
    .contentSmall {
        width: 90%;
        margin: 0 auto;
    }
}

.contentForm {
}

::selection {
    background: #f59e40;
}


/*********************************************************************************************/
/*6. CLASES DE ESTRUCTURA GENERAL ( COLUMNAS, ROWS...) ****************************************/
/*********************************************************************************************/

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.wAuto{
    width:auto!important;
}
.gap10 {
    grid-gap: 10px;
}

.gap15 {
    grid-gap: 15px;
}

.gap20 {
    grid-gap: 20px;
}

.gap30 {
    grid-gap: 30px;
}

.gap40 {
    grid-gap: 40px;
}

.gap50 {
    grid-gap: 50px;
}

.nowrap {
    flex-wrap: nowrap;
}

.row-space-between {
    justify-content: space-between;
}

.centerVerticalHorizontal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-space-beetween {
    justify-content: space-between;
}

.col-space-evenly {
    justify-content: space-evenly;
}

.row-space-evenly {
    justify-content: space-evenly;
}

.row-flex-end {
    justify-content: flex-end;
}

.rowCenter {
    justify-content: center;
}

.rowCenterVertical {
    align-items: center;
}

.h100pc {
    height: 100%;
}

.w100 {
    width: 100%;
}

.flex1 {
    flex: 1;
}

.colTextLeft {
    align-items: flex-start;
}

.colTextCenter {
    align-items: center;
}

.colTextRight {
    align-items: flex-end;
}

.colVerticalTop {
    justify-content: flex-start;
}

.colVerticalCenter {
    justify-content: center;
}

.colVerticalBottom {
    justify-content: flex-end;
}


.col, .col-7, .col-8, .col-10, .col-11 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col-md, .col-md-7, .col-md-8, .col-md-10, .col-md-11 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col-lg {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col {
    flex: 1
}

.col-7 {
    flex: 1.5
}


.col-8 {
    flex: 2
}

.col-10 {
    flex: 3.3;
}

.col-11 {
    flex: 4;
}

/*pantallas de pc*/

@media screen and (orientation:landscape) and ( min-width:1000px) {
    .col-md {
        flex: 1
    }

    .col-md-7 {
        flex: 1.5
    }


    .col-md-8 {
        flex: 2
    }

    .col-md-10 {
        flex: 3.3;
    }

    .col-md-11 {
        flex: 4;
    }
}



/*@media screen and (orientation:landscape) and (min-width:1000px) {
    .col-lg {
        flex: 2
    }
}*/
/*@media screen and (orientation:landscape) and (min-width:1000px) {
    .col-lg {
        flex: 0 0 100%
    }
}*/

@media screen and (orientation:landscape) and (min-width:1000px) {
  
        .col-lg {
            flex: 1
        }
    }

    /**********************************************************************************/
    /*7. CLASES DE ANCHOS, MÁRGENES, PADDINGS....  *********************/
    /*********************************************************************************/

    .rwd {
        max-width: 100%;
        height: auto;
    }

    .mauto {
        margin: auto;
    }

    .mlrauto {
        margin-left: auto;
        margin-right: auto;
    }

    .ml10 {
        margin-left: 10px;
    }

    .mt10 {
        margin-top: 10px;
    }

    .mt6vh {
        margin-top: 6vh;
    }

    .mt20 {
        margin-top: 20px;
    }

    .mb20 {
        margin-bottom: 20px;
    }

    .mt30 {
        margin-top: 30px;
    }

    .mt40 {
        margin-top: 40px;
    }

    .mt50 {
        margin-top: 50px;
    }

    .mtb10vh {
        margin-top: 10vh;
        margin-bottom: 10vh;
    }

    .mr5 {
        margin-right: 5px;
    }

    .ml5 {
        margin-left: 5px;
    }

    .pb8vh {
        padding-bottom: 8vh;
    }

    .pl10 {
        padding-left: 10px;
    }
  
    .pl20 {
        padding-left: 20px;
    }

    .pl30 {
        padding-left: 30px;
    }

    .pt4vh {
        padding-top: 4vh;
    }

    .pt6vh {
        padding-top: 6vh;
    }

    .mb50 {
        margin-bottom: 50px;
    }

    .mb80 {
        margin-bottom: 80px;
    }
    /**********************************************************************/
    /* 8. CLASES PARA TEXTOS, COLORES DE FONDO  *****************************/
    /************************************************************************/

    a {
        text-decoration: none;
        color: #c0e135
    }



        a.whiteA {
            color: #ffffff;
        }

            a.whiteA:hover {
                color: #c3e40d;
            }

    .text-right {
        text-align: right !important;
    }

    .text-center {
        text-align: center;
    }

    .text-left {
        text-align: left;
    }

    .uppercase {
        text-transform: uppercase;
    }

    .whiteColor {
        color: #ffffff !important;
    }

    .orangeColor {
        color: #f59e40!important;
    }

    .blackColor {
        color: #0a1119;
    }

    .primaryTranpColor {
        color: #0a111988;
    }
    /**********************************************************************/
    /* 9. ELEMETOS botones **********************************************/
    /***********************************************************************/

    .btn {
        border-radius: 50px;
        width: fit-content;
        padding: 0px 30px;
        min-height: 50px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        color: #0a1119;
        font-weight: 600;
        /*font-size: 22px;*/
        font-size: 18px;
        cursor: pointer;
        transition: all linear 200ms;
        text-align: center;
    }

    .btn-primary {
        background-color: #ffffff;
        color: #0a1119;
    }

        .btn-primary:hover {
            background-color: #f59e40;
        }
.btnOrange {
    background-color: #f59e40;
}
    .btnOrange:hover {
        background-color: #ffffff;
        color: #0a1119;
    }
    .btn-secondary {
        background-color: #f59e40;
        color: #0a1119;
        min-height: 70px;
        font-size: 28px;
    }

        .btn-secondary:hover {
            background-color: #ffffff;
        }

    .btnMoreInfo {
        background-color: #f59e40;
        color: #0a1119;
        min-height: 70px;
        font-size: 28px;
        grid-gap: 20px;
    }

        .btnMoreInfo:hover {
            background-color: #131b25;
            color: #ffffff;
        }

.btnMedium {
    min-height: 50px;
    font-size: 18px;
    grid-gap: 10px;
}
    /*****************/
    section {
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    .bgDark {
        background-color: #131b25;
    }

    .bgWhite {
        background-color: #ffffff !important;
    }


    .sectionHeightScreen {
        flex: 1;
        height: 100%;
    }



    .cabecera {
        background-image: url("../../images/cabecera.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left top;
        justify-content: center;
        grid-gap: 6vh;
        padding-top: calc(8vh + 80px);
        position: relative;
    }


.premios2024 {
    background-color: #131b25; background-image: url("../../images/cabecera.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left;
    /*justify-content: center;*/
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: calc(8vh + 80px);
    /*grid-gap: 6vh;
    padding-top: 8vh;*/
    position: relative;
}

.fondoLegales {

    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: calc(8vh + 80px);
  
    position: relative;
}

    /*.cabecera p{
    font-size:22px;
}*/

    .cabecera .logo {
        /*width:30vw;*/
        width: 576px;
    }

    .logoPremios {
        width: 400px;
    }

    .mt8vhPc {
        margin-top: 8vh;
    }

    .mt4vhPc {
        margin-top: 4vh;
    }

    .mt2vhPc {
        margin-top: 2vh;
    }

    .parrafoMaxWidth {
        max-width: 900px;
    }

    .faldon-container {
        overflow: hidden;
        width: 100%;
        position: relative;
        height: 80px;
    }

    .cabecera:after,
    .cabecera:after {
        z-index: 1;
        position: absolute;
        top: 100%;
        /*left: 70%;
    margin-left: -25%;*/
        left: 50%;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        content: '';
        width: 0;
        height: 0;
        border-top: solid 50px #131b25;
        border-left: solid 50px transparent;
        border-right: solid 50px transparent;
    }


    .faldonTex {
        top: 50%;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        width: auto;
        color: #ffffff;
        font-size: 40px;
        overflow: hidden;
        position: absolute;
        white-space: nowrap;
        animation: textInfinite 20s linear infinite;
        font-family: 'MADEMirage-Thin',sans-serif;
        font-weight: lighter;
    }



    @keyframes textInfinite {
        0% {
            left: 0;
        }

        100% {
            left: -100%
        }
    }


    /***OBJETIVOS**********/

    .objetivos {
        background-color: #ffffff;
        background-image: url("../../images/fondo-aros.png");
        /*background-size: 35vw auto;*/
        background-size: initial;
        background-repeat: no-repeat;
        background-position: 2% 9vh;
        justify-content: flex-start;
        grid-gap: 6vh;
        padding-top: 8vh;
        padding-bottom: 8vh;
        min-height: 80%;
        position: relative;
    }

    .pt0 {
        padding-top: 0;
    }

    .objetivos:after, .objetivos:after {
        z-index: 1;
        position: absolute;
        top: 100%;
        /*left: 70%;
        margin-left: -25%;*/
        left: 50%;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        content: '';
        width: 0;
        height: 0;
        border-top: solid 50px #ffffff;
        border-left: solid 50px transparent;
        border-right: solid 50px transparent;
    }






    /***JUNTA DIRECTIVA**********/
    .lineTitle {
        width: 20px;
        height: 3px;
        background-color: #0a1119;
    }

    .juntaDirectiva {
        background-color: #f5f6f6;
        padding-top: 8vh;
        padding-bottom: 8vh;
        position: relative;
    }

        .juntaDirectiva:after,
        .juntaDirectiva:after {
            position: absolute;
            top: 100%;
            z-index: 1;
            left: 50%;
            -moz-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            content: '';
            width: 0;
            height: 0;
            border-top: solid 50px #f5f6f6;
            border-left: solid 50px transparent;
            border-right: solid 50px transparent;
        }





    .ch-grid {
        margin: 40px 0 0 0;
        padding: 0;
        list-style: none;
        display: block;
        text-align: center;
        width: 100%;
    }

        .ch-grid:after,
        .ch-item:before {
            content: '';
            display: table;
        }

        .ch-grid:after {
            clear: both;
        }

        .ch-grid li {
            width: 220px;
            height: 220px;
            display: inline-block;
            margin: 30px 20px;
        }

            .ch-grid li p {
                font-size: 1em;
                margin-top: 15px !important;
            }



    .ch-item {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        cursor: default;
        /*box-shadow: inset 0 0 0 5px rgba(255,255,255,0.6), 0 1px 2px rgba(0,0,0,0.1);*/
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.8);
        -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.8);
        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.8);
        transition: all 0.4s ease-in-out;
        background-repeat: no-repeat;
        background-size: cover;
        cursor: pointer;
    }


    .ch-info {
        position: absolute;
        background: rgba(245,158,64, 0.9);
        width: inherit;
        height: inherit;
        border-radius: 50%;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease-in-out;
        transform: scale(0);
    }

        .ch-info h3 {
            /*color: #fff;*/
            color: #131b25;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 22px;
            line-height: 24px;
            margin: 0 30px;
            padding: 45px 0 0 0;
            /*padding: 70px 0 0 0;*/
            /*height: 120px;*/
            font-family: "Open Sans", Arial, sans-serif;
            /*text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.3);*/
            text-align: center;
        }

        .ch-info p {
            /*color: #fff;*/
            color: #131b25;
            display: flex;
            justify-content: center;
            padding: 8px 5px;
            font-style: italic;
            margin: 5px 30px;
            font-size: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.5);
            opacity: 0;
            transition: all 0.4s ease-in-out 0.4s;
            text-align: center;
        }



    .ch-item:hover {
        /*box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);*/
    }

        .ch-item:hover .ch-info {
            transform: scale(1);
            opacity: 1;
        }

            .ch-item:hover .ch-info p {
                opacity: 1;
            }


    .ch-img-1 {
        background-image: url("../../images/1.jpg");
    }

    .ch-img-2 {
        background-image: url("../../images/2.jpg");
    }

    .ch-img-3 {
        background-image: url("../../images/3.jpg");
    }

    .ch-img-4 {
        background-image: url("../../images/4.jpg");
    }

    .ch-img-5 {
        background-image: url("../../images/5.jpg");
    }

    .ch-img-6 {
        background-image: url("../../images/6.jpg");
    }

    .ch-img-7 {
        background-image: url("../../images/7.jpg");
    }

    .ch-img-8 {
        background-image: url("../../images/8.jpg");
    }

    .ch-img-9 {
        background-image: url("../../images/9.jpg");
    }

    .ch-img-10 {
        background-image: url("../../images/10.jpg");
    }

    .ch-img-11 {
        background-image: url("../../images/11.jpg");
    }

    .ch-img-12 {
        background-image: url("../../images/12.jpg");
    }

    .ch-img-13 {
        background-image: url("../../images/13.jpg");
    }

    .ch-img-14 {
        background-image: url("../../images/14.jpg");
    }

    .ch-img-15 {
        background-image: url("../../images/15.jpg");
    }

    .ch-img-16 {
        background-image: url("../../images/16.jpg");
    }

    .ch-img-17 {
        background-image: url("../../images/17.jpg");
    }

    .ch-img-18 {
        background-image: url("../../images/18.jpg");
    }

    .ch-img-19 {
        background-image: url("../../images/19.jpg");
    }

    .ch-img-20 {
        background-image: url("../../images/20.jpg");
    }

    .ch-img-21 {
        background-image: url("../../images/21.jpg");
    }

    .ch-img-22 {
        background-image: url("../../images/22.jpg");
    }

    .ch-img-23 {
        background-image: url("../../images/23.jpg");
    }


    /******************HAZTE SOCIO****************************/
    .boxHazteSocioListado {
    }


    .hazteSocio {
        background-color: #131b25;
        padding-top: 8vh;
        padding-bottom: 8vh;
    }

    /*.hazteSocio p{
        font-size:22px;
    }*/

    #checkout-progress {
        width: 80%;
        max-width: 700px;
        margin: 0px auto;
        font-size: 2.5em;
        font-weight: 900;
        position: relative;
    }



    @media (max-width: 767px) {
        #checkout-progress {
            font-size: 1.5em;
            width: 90%;
        }
    }

    #checkout-progress:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        height: 6px;
        width: 100%;
        background-color: #ccc;
        -webkit-transform: translateY(-50%) perspective(1000px);
        transform: translateY(-50%) perspective(1000px);
    }

    #checkout-progress:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        height: 6px;
        width: 100%;
        background-color: #f59e40;
        -webkit-transform: scaleX(0) translateY(-50%) perspective(1000px);
        transform: scaleX(0) translateY(-50%) perspective(1000px);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    }

    #checkout-progress.step-2:after {
        /*-webkit-transform: scaleX(0.333) translateY(-50%) perspective(1000px);
    transform: scaleX(0.333) translateY(-50%) perspective(1000px);*/
        -webkit-transform: scaleX(0.5) translateY(-50%) perspective(1000px);
        transform: scaleX(0.5) translateY(-50%) perspective(1000px);
    }

    #checkout-progress.step-3:after {
        /*-webkit-transform: scaleX(0.666) translateY(-50%) perspective(1000px);
    transform: scaleX(0.666) translateY(-50%) perspective(1000px);*/
        -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
        transform: scaleX(1) translateY(-50%) perspective(1000px);
    }

    /*#checkout-progress.step-4:after {
    -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
    transform: scaleX(1) translateY(-50%) perspective(1000px);
}

#checkout-progress.step-5:after {
    -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
    transform: scaleX(1) translateY(-50%) perspective(1000px);
}

#checkout-progress.step-6:after {
    -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
    transform: scaleX(1) translateY(-50%) perspective(1000px);
}*/

    #checkout-progress .progress-bar {
        width: 100%;
        display: flex;
        height: 100px;
        justify-content: space-between;
        align-items: center;
    }

        #checkout-progress .progress-bar .step {
            z-index: 2;
            position: relative;
        }

            #checkout-progress .progress-bar .step .step-label {
                position: absolute;
                top: calc(100% + 25px);
                left: 50%;
                -webkit-transform: translateX(-50%) perspective(1000px);
                transform: translateX(-50%) perspective(1000px);
                white-space: nowrap;
                font-size: 0.4em;
                font-weight: 600;
                color: #ccc;
                transition: 0.3s ease;
            }

    @media (max-width: 767px) {
        #checkout-progress .progress-bar .step .step-label {
            top: calc(100% + 15px);
        }
    }

    #checkout-progress .progress-bar .step span {
        color: #ccc;
        transition: 0.3s ease;
        display: block;
        -webkit-transform: translate3d(0, 0, 0) scale(1) perspective(1000px);
        transform: translate3d(0, 0, 0) scale(1) perspective(1000px);
    }

    #checkout-progress .progress-bar .step .fa-check {
        color: #fff;
        position: absolute;
        left: 50%;
        top: 50%;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        -webkit-transform: translate3d(-50%, -50%, 0) scale(0) perspective(1000px);
        transform: translate3d(-50%, -50%, 0) scale(0) perspective(1000px);
    }

    #checkout-progress .progress-bar .step.active span, #checkout-progress .progress-bar .step.active .step-label {
        color: #f59e40;
    }

    #checkout-progress .progress-bar .step.valid .fa-check {
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1) perspective(1000px);
        transform: translate3d(-50%, -50%, 0) scale(1) perspective(1000px);
    }

    #checkout-progress .progress-bar .step.valid span {
        color: #2C3E50;
        -webkit-transform: translate3d(0, 0, 0) scale(1.3) perspective(1000px);
        transform: translate3d(0, 0, 0) scale(1.3) perspective(1000px);
    }

    #checkout-progress .progress-bar .step.valid .step-label {
        color: #ffffff !important;
    }

    #checkout-progress .progress-bar .step:after {
        content: "";
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%) perspective(1000px);
        transform: translate(-50%, -50%) perspective(1000px);
        width: 75px;
        height: 75px;
        background-color: #131b25;
        border-radius: 50%;
        border: 5px solid #ccc;
        transition: 0.3s ease;
    }

    @media (max-width: 767px) {
        #checkout-progress .progress-bar .step:after {
            width: 40px;
            height: 40px;
        }
    }

    #checkout-progress .progress-bar .step.active:after {
        border: 5px solid #f59e40;
    }

    #checkout-progress .progress-bar .step.valid:after {
        background-color: #f59e40;
        border: 5px solid #f59e40;
    }

    .button-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
        margin: 20px auto 0px;
    }

        .button-container .btn {
            display: inline-block;
            background-color: transparent;
            color: #f59e40;
            padding: 10px 15px;
            border-radius: 10px;
            text-transform: uppercase;
            font-weight: normal;
            /*border: 3px solid #2C3E50;*/
            transition: 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

    .btn.btn-prev.disabled {
        display: none;
    }

    @media (max-width: 767px) {
        .button-container .btn {
            width: 100%;
            margin-bottom: 15px;
        }
    }


    @media(max-width:500px) {
        .button-container .btn {
            font-size: 1.2em;
        }
    }

    @media(max-width:379px) {
        .button-container .btn {
            font-size: 1em;
        }
    }

    .button-container .btn:hover {
        background-color: transparent;
        color: #FFFFFF;
        -webkit-transform: scale(1.02) perspective(1000px);
        transform: scale(1.02) perspective(1000px);
    }


    .col30pcLandscape {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 0 0 30%;
        position: relative;
    }

    .col22pcLandscape {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 0 0 22%;
        position: relative;
    }

    @supports (-webkit-touch-callout: none) {
        .form-control {
            -webkit-appearance: none;
        }
        /*input[type="date"]:before {
        content: 'dd/mm/aaaa' !important;
    }

    input[type="date"]:focus:before {
        content: '' !important;
    }

    input[type="date"]:active:before {
        content: '' !important;
    }

    input[type="date"] {
        display: flex;
    }*/
    }



    .form-control {
        border-radius: 50px;
        width: 100%;
        padding: 0px 30px;
        min-height: 50px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        color: #0a1119;
        font-weight: normal;
        font-size: 18px;
        cursor: pointer;
        transition: all linear 200ms;
    }



    @media(max-width:768px) {
        .col30pcLandscape {
            flex: 0 0 100%;
        }

        .col22pcLandscape {
            flex: 0 0 100%;
        }
    }


    .hidden {
        visibility: hidden;
    }


    .form-control-file::-webkit-file-upload-button {
        /*visibility: hidden;*/
        display: none;
    }



    .form-control-file::before {
        font-family: "Font Awesome 5 Brands";
        content: "\f0c6  Adjuntar archivo";
        border-radius: 50px;
        width: 100%;
        padding: 0px 30px;
        min-height: 50px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        color: #0a1119;
        font-weight: normal;
        font-size: 18px;
        cursor: pointer;
        transition: all linear 200ms;
        font-family: Arial, FontAwesome;
        background: -webkit-linear-gradient(top, #f59e40, #f59e40);
    }

    @-moz-document url-prefix() {
        .containerFirefox {
            position: relative;
            width: 100%;
            height: 100%;
        }

            .containerFirefox .form-control-file {
                -moz-opacity: 0;
                filter: alpha(opacity: 0);
                opacity: 0;
                cursor: pointer;
                position: absolute;
                z-index: 999;
                width: 100%;
                height: 50px;
                left: 0;
            }

            .containerFirefox::before {
                font-family: "Font Awesome 5 Brands";
                content: "\f0c6  Adjuntar archivo";
                border-radius: 50px;
                width: 100%;
                padding: 0px 30px;
                min-height: 50px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                box-sizing: border-box;
                color: #0a1119;
                font-weight: normal;
                font-size: 18px;
                cursor: pointer;
                transition: all linear 200ms;
                font-family: Arial, FontAwesome;
                background: -webkit-linear-gradient(top, #f59e40, #f59e40);
                position: absolute;
                z-index: 99;
                cursor: pointer;
            }
    }
    /****************************************************/
    /* Customize the label (the container) */
    /******************************/
    .containerCheckbox {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 0px;
        cursor: pointer;
        font-size: 17px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        color: #ffffff;
        opacity: 1;
    }
        /* Hide the browser's default checkbox */
        .containerCheckbox input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
    /* Create a custom checkbox */
    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: #fff;
    }
    /* On mouse-over, add a grey background color */
    .containerCheckbox:hover input ~ .checkmark {
        background-color: #fff;
    }
    /* When the checkbox is checked, add a blue background */
    .containerCheckbox input:checked ~ .checkmark {
        background-color: #fff;
    }
    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    /* Show the checkmark when checked */
    .containerCheckbox input:checked ~ .checkmark:after {
        display: block;
    }
    /* Style the checkmark/indicator */
    .containerCheckbox .checkmark:after {
        left: 9px;
        top: 1px;
        width: 5px;
        height: 18px;
        border: solid #f59e40;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }




    .boxBorder {
        padding: 40px 40px 20px 40px;
        margin: 6vh auto 4vh auto;
        border: 1px solid #ffffff;
        border-radius: 30px;
    }
    /****************RADIO BUTTONS*************************************************/
    /* Customize the label (the container) */
    .containerRadio {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 22px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        opacity: 1;
        color: #ffffff;
    }
        /* Hide the browser's default radio button */
        .containerRadio input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        /* Create a custom radio button */
        .containerRadio .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 25px;
            width: 25px;
            background-color: #fff;
            border-radius: 50%;
        }
        /* On mouse-over, add a grey background color */
        .containerRadio:hover input ~ .checkmark {
            background-color: #ccc;
        }
        /* When the radio button is checked, add a blue background */
        .containerRadio input:checked ~ .checkmark {
            background-color: #ffffff;
        }
        /* Create the indicator (the dot/circle - hidden when not checked) */
        .containerRadio .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }
        /* Show the indicator (dot/circle) when checked */
        .containerRadio input:checked ~ .checkmark:after {
            display: block;
        }
        /* Style the indicator (dot/circle) */
        .containerRadio .checkmark:after {
            top: 5px;
            left: 5px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            /*background: #131b25;*/
            background: #f59e40;
        }


    .boxBorderOrange {
        border: 2px solid #f59e40;
        padding: 40px;
        box-sizing: border-box;
    }

    .w100 {
        width: 100% !important;
    }

    .boxOrange {
        background-color: #f59e40;
        padding: 40px;
        box-sizing: border-box;
    }

    @media(max-width:600px) {
        .boxOrange {
            padding: 30px 10px 30px 10px;
        }
    }

    .bgOrange {
        background-color: #f59e40 !important;
    }


    p {
        /*font-size: 22px;*/
        font-size: 18px;
        font-family: 'Arial', sans-serif;
    }

    .pSmall {
        font-size: 16px;
    }

label {
    padding-left: 10px;
    margin-bottom: 6px;
    /*font-size: 20px;*/
    font-size: 18px;
    /*opacity:0.6;*/
}

    .title {
        font-family: 'MADEMirage-Thin',sans-serif;
        /*font-size: 72px;*/
        font-size: 62px;
        font-weight: lighter;
    }
.titleMed {
    font-family: 'MADEMirage-Bold',sans-serif;
    /*font-size: 72px;*/
    font-size: 52px;
    font-weight: bolder;
}

    .subtitle {
        font-family: 'MADEMirage-Thin',sans-serif;
        font-size: 36px;
        font-weight: bold;
    }

    @media(orientation:landscape) and (max-height:768px) {
        /*p {
        font-size: 18px;
    }*/
        p {
            font-size: 16px;
        }

        .subtitle {
            font-size: 26px;
        }

        .pSmall {
            font-size: 14px;
        }

        label {
            font-size: 16px;
        }
        .form-control {
            font-size: 16px;
        }
       
            .cabecera .logo {
            width: 400px;
        }

        .logoPremios {
            width: 300px;
        }

        .title {
            /*font-size: 60px;*/
            font-size: 50px;
        }
        .titleMed {
          
            font-size: 48px;
           
        }
        .btn {
            font-size: 18px;
        }
    }

    /*@media(orientation:landscape) and (max-width:1281px) {*/
    @media (max-width:1366px) {
        /*p {
        font-size: 18px;
    }*/
        p {
            font-size: 16px;
        }

        .pSmall {
            font-size: 14px;
        }

        label {
            font-size: 16px;
        }
        .form-control {
            font-size: 16px;
        }
        .cabecera .logo {
            width: 400px;
        }

        .logoPremios {
            width: 300px;
        }

        .title {
            /*font-size: 60px;*/
            font-size: 50px;
        }
        .titleMed {
            font-size: 48px;
        }
        .subtitle {
            font-family: 'MADEMirage-Thin',sans-serif;
            font-size: 28px;
            font-weight: bold;
        }
        .btn {
            font-size: 18px;
        }
    }

    @media(orientation:portrait) and (max-width:768px) {
        /*p {
        font-size: 18px;
    }*/

        p {
            font-size: 16px;
        }

        .pSmall {
            font-size: 14px;
        }

        label {
            font-size: 16px;
        }

        .form-control {
            font-size: 16px;
        }
        .title {
            /*font-size: 60px;*/
            font-size: 50px;
        }

        .subtitle {
            font-size: 26px;
        }
        .titleMed {
            font-size: 48px;
        }
        .btn {
            font-size: 18px;
        }
    }

    @media (max-width:500px) {
        /*p {
        font-size: 16px;
    }*/

        p {
            font-size: 16px;
        }

        .pSmall {
            font-size: 14px;
        }

        label {
            font-size: 16px;
        }
        .form-control {
            font-size: 16px;
        }

        .title {
            /*font-size: 40px;*/
            font-size: 40px;
        }
        .titleMed {
            font-size: 38px;
        }
        .btn {
            font-size: 16px;
        }
    }

    @media(orientation:portrait) {
        .cabecera .logo {
            width: 70vw;
        }

        .logoPremios {
            width: 70vw;
        }
    }

    .separatorFooter {
        margin: auto;
        width: 100%;
        background-color: #ffffff;
        height: 1px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footerBg {
        background-image: url("../../images/IMAGEN-footer.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left top;
        justify-content: center;
        grid-gap: 6vh;
        padding-top: 8vh;
        min-height: 400px;
    }

    .logoFooter {
        width: 250px;
    }

    footer a {
        text-decoration: none;
        color: #ffffff !important;
    }

    footer {
        padding-top: 40px;
        padding-bottom: 40px;
        color: #ffffff;
    }

        footer a:hover {
            text-decoration: none;
            color: orange !important;
        }
    /********************************************************************/
    /***************************avisos********************************/
    /*******************************************************************/
    .overlay {
        position: fixed;
        z-index: 1010;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: rgba(0,0,0,0.9);
        display: none;
    }

    .alert {
        width: 80%;
        max-width: 500px;
        padding: 15px 30px 30px 30px;
        position: fixed;
        z-index: 1011;
        background-color: rgba(255,255,255,1);
        top: 50%;
        left: 50%;
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        -webkit-border-radius: 5px;
        border-radius: 5px;
        display: none;
        line-height: 1.4em;
        -webkit-box-shadow: -1px 4px 38px -6px rgba(0,0,0,0.75);
        -moz-box-shadow: -1px 4px 38px -6px rgba(0,0,0,0.75);
        box-shadow: -1px 4px 38px -6px rgba(0,0,0,0.75);
    }

        .alert .txt {
            text-align: left;
            padding: 0;
            font-size: 14px;
            color: black;
        }



    .msg {
        background-color: #f2f2f2;
        text-align: center;
        padding: 50px 0;
    }
    /******NOTICIAS***********/
    .noticias {
        background-color: #ffffff;
        background-image: url("../../images/fondo-aros.png");
        /*background-size: 35vw auto;*/
        background-size: initial;
        background-repeat: no-repeat;
        background-position: 2% 9vh;
        justify-content: flex-start;
        grid-gap: 6vh;
        padding-top: 8vh;
        padding-bottom: 8vh;
        min-height: 80%;
        position: relative;
    }

    .divNoticias {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 50px;
        grid-gap: 50px;
    }

    .noticia h3 {
        font-size: 25px;
        padding: 10px 10px 10px 10px;
    }

    p.subTituloNoticia {
        padding: 0px 10px 10px 10px;
        font-size: 16px;
    }

    img.imgNoticia {
        max-width: 350px;
    }

    .noticia {
        max-width: 350px;
        box-shadow: inset 0 0 8px -1px rgb(255 255 255 / 60%), 0 1px 8px 6px rgb(0 0 0 / 10%);
        transition: 500ms;
        margin-bottom: 35px;
    }

        .noticia:hover {
            transform: scale(1.1);
            transition: 500ms;
            cursor: pointer;
        }






    /***INFO PREVIA**********/

    .infoPrevia {
        background-color: #ffffff;
        background-image: url("../../images/fondo-aros.png");
        background-size: initial;
        background-repeat: no-repeat;
        background-position: 2% 9vh;
        justify-content: flex-start;
        grid-gap: 6vh;
        padding-top: 8vh;
        padding-bottom: 8vh;
        min-height: 80%;
        position: relative;
    }

        .infoPrevia:after, .infoPrevia:after {
            z-index: 1;
            position: absolute;
            top: 100%;
            left: 50%;
            -moz-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            content: '';
            width: 0;
            height: 0;
            border-top: solid 50px #ffffff;
            border-left: solid 50px transparent;
            border-right: solid 50px transparent;
        }

    .listInfo {
        list-style: none;
        /*margin-top:20px;*/
        margin-left: 20px;
    }

        .listInfo li {
            margin-top: 20px;
        }

            .listInfo li:first-child {
                margin-top: 0px;
            }

            .listInfo li i {
                font-size: 20px;
            }


    .ml20 {
        margin-left: 20px;
    }

    .boxInstrucciones {
        background-color: #131b25;
        padding: 40px 60px;
        margin-top: 30px;
        border-radius: 15px;
        width: 90%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        color: #ffffff;
    }

        .boxInstrucciones p {
            color: #ffffff;
        }



    .boxObjetivos {
        background-color: #eeeeee;
        padding: 50px 60px;
        margin-top: 30px;
        border-radius: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .boxHazteSocioListado {
        background-color: #131b25;
        padding: 40px 20px;
        margin-top: 30px;
        border-radius: 15px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        color: #ffffff;
        border: 1px solid #ffffff
    }

        .boxHazteSocioListado p {
            /*font-size:1em;*/
            color: #ffffff;
        }

        .boxHazteSocioListado i {
            /*font-size: 1em;*/
            color: #ffffff;
        }

    .colIco {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 0 0 30px;
    }
.pMed {
    font-size: 1.6em;
    line-height: 1em;
}
    .pBig {
        font-size: 2em;
        line-height: 1em;
    }

    .contentListadoImportancia {
        width: 90%;
        margin: 0 auto;
    }

    @media(max-width:640px) {
        .boxInstrucciones {
            padding: 40px 30px;
            width: 100%;
        }

        .boxObjetivos {
            padding: 30px 15px;
            width: 100%;
        }

        .boxHazteSocioListado {
            padding: 20px 15px;
            width: 100%;
        }

        .listInfo li i {
            font-size: 16px;
        }

        .colIco {
            display: flex;
            flex-direction: column;
            flex-basis: 100%;
            flex: 0 0 20px;
        }

        .listInfo {
            margin-left: 0;
        }

        .contentListadoImportancia {
            width: 100%;
            margin: 0 auto;
        }
    }


    /*/darse de baja*/

    .bgImage {
        background-image: url("/images/BACKEND/cabecera.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    }

    .w600 {
        width: 90%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /*loading file*/



    .lds-dual-ring {
        display: inline-block;
        width: 50px;
        height: 50px;
    }

        .lds-dual-ring:after {
            content: " ";
            display: block;
            width: 30px;
            height: 30px;
            margin: 0;
            border-radius: 50%;
            border: 6px solid #f59e40;
            border-color: #f59e40 transparent #f59e40 transparent;
            animation: lds-dual-ring 1.2s linear infinite;
        }

    @keyframes lds-dual-ring {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }



    /*QTIP*/
    .qtip {
        position: absolute;
        left: -28000px;
        top: -28000px;
        display: none;
        max-width: 280px;
        min-width: 50px;
        font-size: 10.5px;
        line-height: 12px;
        direction: ltr;
        box-shadow: none;
        padding: 0
    }

    .qtip-content, .qtip-titlebar {
        position: relative;
        overflow: hidden
    }

    .qtip-content {
        padding: 5px 9px;
        text-align: left;
        word-wrap: break-word
    }

    .qtip-titlebar {
        padding: 5px 35px 5px 10px;
        border-width: 0 0 1px;
        font-weight: 700
    }

        .qtip-titlebar + .qtip-content {
            border-top-width: 0 !important
        }

    .qtip-close {
        position: absolute;
        right: -9px;
        top: -9px;
        z-index: 11;
        cursor: pointer;
        outline: 0;
        border: 1px solid transparent
    }

    .qtip-titlebar .qtip-close {
        right: 4px;
        top: 50%;
        margin-top: -9px
    }

    * html .qtip-titlebar .qtip-close {
        top: 16px
    }

    .qtip-icon .ui-icon, .qtip-titlebar .ui-icon {
        display: block;
        text-indent: -1000em;
        direction: ltr
    }

    .qtip-icon, .qtip-icon .ui-icon {
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        text-decoration: none
    }

        .qtip-icon .ui-icon {
            width: 18px;
            height: 14px;
            line-height: 14px;
            text-align: center;
            text-indent: 0;
            font: normal 700 10px/13px Tahoma,sans-serif;
            color: inherit;
            background: -100em -100em no-repeat
        }

    .qtip-default {
        border: 1px solid #f59e40;
        background-color: #f59e40;
        color: #000;
    }

        .qtip-default .qtip-titlebar {
            background-color: #FFEF93
        }

        .qtip-default .qtip-icon {
            border-color: #CCC;
            background: #F1F1F1;
            color: #777
        }

        .qtip-default .qtip-titlebar .qtip-close {
            border-color: #AAA;
            color: #111
        }
    /*QTIP*/

    .wordNoBreak {
        white-space: nowrap;
    }

    .icoMetodoPago {
        max-width: 90px;
    }


.bannerPremios {
    background-color: #101d2a;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    margin-top:80px;
    /*display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;*/
}
.plrbannerPremiosCol {
    padding-left: 5%;
    padding-right: 4%;
    box-sizing: border-box;
}
    /*@media (orientation:portrait) {
        .bannerPremios {
            background-image: url(/images/premios2024/telon.jpg);
            background-size: cover;
            width: 100vw;
            min-height: 200px;
            background-position: center top;
            background-repeat: no-repeat;
            padding: 80px 0;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center
        }
    }*/


    /*galeria*/

    .containerSliderGaleria {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        max-width: 1000px;
    }

    .swiper-button-prev, .swiper-button-next {
        color: #131b25 !important;
    }

    .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 0 !important;
    }

    .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 0px !important;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .swiper-pagination-bullet {
        background: #131b25 !important;
        opacity: 0.5 !important;
    }

    .swiper-pagination-bullet-active {
        opacity: 1 !important;
        background: #131b25 !important;
    }

    .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
        /*background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%236eea81'%2F%3E%3C%2Fsvg%3E") !important;*/
        left: 10px;
        right: auto;
        width: 20px !important;
    }

    .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        /*background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%236eea81'%2F%3E%3C%2Fsvg%3E") !important;*/
        right: 10px;
        left: auto;
        width: 20px !important;
    }

    .imgSliderGaleria {
        width: calc(100% - 90px);
    }

    .linkWhiteOrange {
        color: #ffffff;
    }

        .linkWhiteOrange:hover {
            color: orange;
        }

    /*menu*/



.menu {
    position: fixed;
    color: #ffffff;
    z-index: 9999;
    width:100%;
    /*width: calc(100% - 16px);*/
    min-height: 80px;
    padding: 10px 0px;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    -webkit-box-shadow: 0px 8px 17px -3px rgba(255,255,255,0.3);
    -moz-box-shadow: 0px 8px 17px -3px rgba(255,255,255,0.3);
    box-shadow: 0px 8px 17px -3px rgba(255,255,255,0.3);
}



.menuPc {
    display: none;
}
.showPc{
    display:none;
}
.menuMobile {
    display: flex;
}
.showMobile{
    display:flex;
}



@media(min-width:969px) {
    .menuPc {
        display: flex;
    }
    .showPc {
        display: flex;
    }
    .menuMobile {
        display: none;
    }
    .showMobile {
        display: none;
    }
    .menu {
     
        width: calc(100% - 16px);
    
    }
}

@supports (-webkit-touch-callout: none) {
    /*ios*/
    .menu {
        width: calc(100%);
    }
}

/*@supports not (-webkit-touch-callout: none) {
}*/

.menu a {
    color: #ffffff;
    font-size: 18px;
    font-family: 'AvenirLTStd-Book';
    font-weight:bold;
}

            .menu a:hover {
                color: orange;
            }

    .logoMenu {
        height: 50px;
    }

.ptMenuFixed {
    padding-top: calc(3vh + 80px);
    padding-bottom: calc(2vh + 80px);
}

@media(max-width:1016px){
    .menu a {
        color: #ffffff;
        font-size: 16px;
    }
}

.sideBar {
    position: fixed;
    top: 80px;
 
    right: calc(-300px);
    width: 200px;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: row;
    transition: right ease-in-out 600ms;
    z-index: 998;
    box-sizing: border-box;
}




    .sideBar.show {
        /*right: 16px;*/
        right: 0;
    }


@media(min-width:969px) {
    .sideBar.show {
        right: 16px;
       
    }
}

    @supports (-webkit-touch-callout: none) {
        .sideBar.show {
            right: 0;
        }
    }



    .sideBarContainer {
        position: relative;
        padding: 60px 20px;
        box-sizing: border-box;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: #131b25;
        flex: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        box-sizing: border-box;
        text-align: left;
        border-left: 1px solid #ffffff55;
    }
        /***********scrpll sideBarContainer***********/
        .sideBarContainer::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
            background-color: transparent;
        }

        .sideBarContainer::-webkit-scrollbar {
            width: 6px;
            background-color: transparent;
        }

        .sideBarContainer::-webkit-scrollbar-thumb {
            background-color: #000000;
            border: 2px solid #000000;
        }

    .containerButtonsMenu {
        display: flex;
        flex-direction: column;
        grid-gap: 40px;
        justify-content: center;
        align-items: flex-start;
    }

        .containerButtonsMenu a {
            color: #ffffff;
        }

    .iconMenu:before {
        display: inline-block;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        font: var(--fa-font-solid);
        content: "\f0c9";
        font-size: 40px;
        color: var(--quaternary-color);
    }

    .iconMenu.close:before {
        content: "\f00d";
    }

    @media(max-width:600px) {
        .iconMenu:before {
            font-size: 30px;
        }
    }





    /*LISTADO INSCRITOS*/

.borderList{
    border-bottom:1px solid #ffffff88;
}
.contenedorCategorias {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 40px;
}
.itemCollapsePremios {
    display: flex;
    flex-direction: row;
    /*grid-gap: 5px;*/
    flex-wrap: wrap;
    justify-content: center;
}

.itemCandidato{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    /*flex-wrap:nowrap;*/
    /*margin-bottom:20px;*/
    padding:10px 0px;
    border-bottom:1px solid #ffffffbb;
    grid-gap:10px;
}
.colorwhiteTransp{
    color:#ffffff88;
}
.cabeceraPremiosCollapse {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px;
    box-sizing: border-box;
    background-color: #eeeeee;
    /*margin-bottom: 5px;*/
    margin-top: 10px;
    /*text-transform: uppercase;*/
    width: 100%;
    cursor:pointer;
    text-align:left;
}
.cabeceraPremiosCollapste_openClose{
    cursor:pointer;
}
.cabeceraPremiosCollapste_openClose::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
}

.ContenidoPremiosCollapse {
    display: none;
    padding: 15px;
    box-sizing: border-box;
    background-color: #131b25;
    color: #ffffff;
    width: 100%;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.cabeceraPremiosCollapste_openClose.closeIcon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f077";
}

.btnMenu {
    background-color: orange;
    color: #131b25;
  line-height:1em;
    border-radius: 3px;
    display:flex;
    justify-content:center;
    align-items:center;
        padding:3px 5px 5px 5px;
}

    .btnMenu:hover {
        background-color: #ffffff;
        color: #131b25;
    }


    .wVideoPremios{
        width:90%;
        max-width:1000px;
    }