:root {
    --negro: #111111;
    --rojo: #fc4c4c;
    --amarillo: #ffe600;
    --gris: #f3f4f6;
    --gris2: #333333;
    --azul: #1d49cc;
}

body {
    background-color: var(--negro);
    color: var(--gris);
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
ul,
li,
ol {
    padding: 0;
    margin: 0;
}

ul,
li,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

.btn {
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 36px;
    background-color: var(--azul);
    padding: 5px 35px;
    border-radius: 5px;
    color: var(--gris);
    box-shadow: 3px 3px 3px rgba(155, 155, 155, 0.3), -3px 3px 3px rgba(155, 155, 155, 0.3);
    display: inline-block;
    transition: all .2s;
    cursor: pointer;
    -webkit-user-select: none; /* Safari/Chromium */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+ */
    user-select: none;  
}

.btn:hover {
    box-shadow: 2px 2px 5px rgba(78, 78, 78, 0.3) inset, -2px 2px 5px rgba(98, 98, 98, 0.3) inset;
    transform: translateY(2px);
}

.ancho_1 {
    max-width: 1290px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.ancho_2 {
    max-width: 1604px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.ancho_3 {
    max-width: 1212px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.load1 {
    width: auto;
    height: 40px;
}

/**************************************************************/
.header {
    display: flex;
    align-items: center;
    height: 160px;
    justify-content: start;
}

.logo {
    position: relative;
    height: 100%;
    width: 400px;
}

.logo img {
    position: absolute;
    padding-top: 40px;
    top: 0;
}

.menu ul {
    display: flex;
}

.menu ul li a {
    padding: 10px 20px;
    display: block;
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 21px;
    position: relative;
}

.menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--rojo);
    transition: width 0.3s ease;
}

.menu ul li a:hover::after {
    width: 100%;
    /* se alarga */
}

/****************************************************/
/*bonton clave*/
.btn_menu {
    z-index: 9;
    display: none;
}

.btn_play {
    cursor: pointer;
    width: 40px;
    padding: 5px;
    position: relative;
}

.btn_play hr {
    border: 0;
    height: 5.5px;
    width: 100%;
    position: relative;
    transform: rotate(0deg);
    top: 0px;
    transition: all 0.5s;
    margin: 6px auto;
    background-color: var(--rojo);
    transition: all 0.3s;
}

.btn_play hr:nth-child(odd) {
    width: 32px;
    margin-right: 0;
}

.btn_close .btn_play hr:nth-child(1) {
    width: 100%;
    transform: rotate(45deg);
    position: relative;
    top: 10px;
}

.btn_close .btn_play hr:nth-child(2) {
    height: 0;
    transform: translate(50vh);
}

.btn_close .btn_play hr:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg);
    position: relative;
    top: -10px;
}

/****************************************************/
#slide {
    /* background-color: #1d49cc; */
    /* background-image: url(../img/slide1.png); */
    /* background-position: calc(40% - 200px) calc(0% + 0px); */
    /* background-size: auto 120%; */
    background-repeat: no-repeat;
    background-image: url(../img/slidecidga2025_2.png);
    background-position: center calc(0% + 0px);
    background-size: auto 140%;
}

.slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 160px - 20px);
}

.slide_dat1 {
    width: 100%;
    display: flex;
    justify-content: end;
}

.slide_dat1_fecha {
    text-align: right;
    margin-right: 100px;
}

.slide_dat1_fecha div:nth-child(1) {
    color: var(--amarillo);
    font-family: "bebas-neue-pro-expanded", sans-serif;
    font-weight: 800;
    font-size: 48px;
}

.slide_dat1_fecha div:nth-child(2) {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 24px;
}

.slide_dat1_fecha div:nth-child(3) {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.slide_dat1_logo {
    width: 160px;
}

.slide_dat1_logo img {
    width: 100%;
    display: block;
}

.slide_dat2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
}

.slide_dat2_tit {
    color: var(--amarillo);
    font-family: "gotham", sans-serif;
    font-weight: 900;
    font-size: 60px;
    display: none;
}

.slide_dat2_fecha {
    background-color: var(--rojo);
    color: var(--gris);
    padding: 0px 90px;
    border-radius: 80px 80px;
}

/***********************************************************************/
/* cronometro */

.conf_contador {
    color: var(--gris);
}

.conf_contador .cronometro_box {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.conf_contador .cronometro_box>div {
    padding: 10px 70px;
    margin: 0 5px;
    border-radius: 0px;
    flex-grow: 0;
    flex-shrink: 1;
    width: 110px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conf_contador .cronometro_box>div:nth-child(1) {
    margin-left: 0;
}

.conf_contador .cronometro_box hr {
    border: none;
    border-left: 3px solid var(--gris);
    border-radius: 0px;
    width: 0;
    height: 60px;
    color: var(--color2);
    transform: rotate(10deg);
}

.conf_contador .cronometro_num {
    font-family: "bebas-neue-pro-expanded", sans-serif;
    font-weight: 800;
    font-size: 60px;
}

.conf_contador .cronometro_tit {
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--negro);
}

/******************************************************************/
#confer {
    padding-top: 100px;
}

.confer_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.confer_item {
    min-width: 50%;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 0;
    flex-shrink: 0;
}

/* Estilo A para grupos: 1–2, 5–6, 9–10, etc. */
.confer_item:nth-child(4n - 3),
.confer_item:nth-child(4n - 2) {}

/* Estilo B para grupos: 3–4, 7–8, 11–12, etc. */
.confer_item:nth-child(4n - 1),
.confer_item:nth-child(4n) {
    flex-direction: row-reverse;
}

.confer_foto {
    width: 50%;
    height: 0;
    padding-bottom: 50%;
    position: relative;
    overflow: hidden;
}

.confer_foto img {
    position: absolute;
    top: 0;
    height: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.confer_foto img.confer_foto_ft {
    transition: all .3s ease-in;
    opacity: 0;
}

.confer_item:hover .confer_foto img.confer_foto_ft {
    opacity: 1;
}

.confer_dat {
    width: 50%;
    padding: 25px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 5px 0;
    position: relative;
}


.confer_dat_nombre {
    color: var(--gris);
    font-family: "thermal-variable", sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0 20px;
}

.confer_dat_rrss {
    display: flex;
    gap: 10px;
    padding-right: 5px;
}

.confer_dat_rrss a {
    display: block;
    background-color: var(--gris2);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
}

.confer_dat_rrss a:hover {
    background-color: var(--rojo);
}

.confer_dat_rrss i {
    font-size: 23px;
    color: var(--gris);
    transition: all .3s;
}

.confer_dat_rrss a:hover i {
    /* color: var(--rojo); */
}

.confer_dat_icon {
    width: 50px;
    height: 50px;
    flex-grow: 0;
    flex-shrink: 0;
    display: block;
    border: 1px solid var(--gris);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.icon_siguiente svg g {
    transition: all .2s ease-in-out;
    fill: var(--gris);
}

.icon_siguiente svg g:nth-child(1) {
    transform: translate(0, 0);
}

.icon_siguiente:hover svg g:nth-child(1) {
    transform: translate(30px, -30px);
}

.icon_siguiente svg g:nth-child(2) {
    transform: translate(-30px, 30px);
}

.icon_siguiente:hover svg g:nth-child(2) {
    transform: translate(0px, 0px);
}

.confer_dat_tit {
    color: var(--rojo);
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    padding: 13px 0 8px;
}

.confer_dat_cv {
    color: var(--gris);
}

.confer_dat_cv p {
    color: var(--gris);
    font-family: "barlow", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    padding: 3px 0 10px;
}

.confer_dat_fecha {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-top: 20px;
}

.confer_dat_loc {
    color: var(--rojo);
    font-family: "poppins", sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 140%;
}

.confer_dat_fun {
    color: var(--amarillo);
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    padding: 13px 0 8px;
}

.confer_dat_tem {
    color: var(--gris);
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
}

.confer_dat_desc {
    color: var(--gris);
}

.confer_dat_desc p {
    font-family: "barlow", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    padding: 3px 0 10px;
}

.confer_dat_desc h3 {
    color: var(--amarillo);
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    padding-top: 15px;
}

.confer_dat_desc li {
    font-family: "barlow", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    padding-bottom: 5px;
    text-align: justify;
    margin-left: 15px;
}

.confer_dat_desc li:before {
    content: "»";
    padding-right: 10px;

}

.confer_dat_desc iframe {
    border: none;

}


/* Estilo A para grupos: 1–2, 5–6, 9–10, etc. */
.confer_dat_puntero {
    position: absolute;
    left: -44px;
    top: 25%;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 5px solid transparent;
    border-right: 40px solid var(--negro);
}

/* Estilo B para grupos: 3–4, 7–8, 11–12, etc. */
.confer_item:nth-child(4n - 1) .confer_dat_puntero,
.confer_item:nth-child(4n) .confer_dat_puntero {
    position: absolute;
    left: auto;
    right: -44px;
    top: 25%;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid var(--negro);
    border-right: 5px solid transparent;
}

.confer_item .confer_dat {
    padding-bottom: 5px;
}

.confer_item .confer_dat_tit {
    padding: 5px 0 0;
}

.confer_item .confer_dat_fun {
    padding: 5px 0 1px;
}

.owl-carousel-confmod {
    padding: 20px 0px;
    box-sizing: border-box;
}

.confer_dat_owl_item {
    /* width: 300px; */
    /* height: 115px; */
    /* display: block; */
}

.confer_dat_owl_item img {
    width: auto !important;
    height: 115px;
    display: block;
}

.owl-carousel-confmod .owl-nav {
    position: absolute;
    left: -0px;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    /* evita que se bloqueen eventos si hay overlay */
}

.owl-carousel-confmod .owl-nav span {
    padding-left: 5px !important;
    padding-right: 5px !important;
    padding-top: 0px !important;
    padding-bottom: 4px !important;
    background-color: #00000022 !important;
}

.owl-carousel-confmod .owl-prev,
.owl-carousel-confmod .owl-next {
    color: var(--gris) !important;
    font-size: 2.5em !important;
    pointer-events: auto;
    /* necesario para que sean clickeables */
    transition: background-color 0.3s ease;
}

.owl-carousel-confmod .owl-prev {
    margin-left: -25px;
}

.owl-carousel-confmod .owl-next {
    margin-right: -25px;
}

.owl-carousel-confmod .owl-prev:hover,
.owl-carousel-confmod .owl-next:hover {
    background-color: #000;
}

/*****************************************/
.prog_titular {
    padding-top: 100px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--rojo);
}

.titular h2 {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 900;
    font-size: 60px;
}

.titular h3 {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 350;
    font-size: 36px;
}

.prog_item {
    position: relative;
    transition: all .3s;
}

.prog_item.receso {
    background-color: #33333355;
}

.prog_item:hover {
    background-color: var(--rojo);
}

.prog_item.receso:hover {
    background-color: #e07d14;
}

.prog_item>div {
    border-bottom: solid 1px var(--rojo);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 50px;
}

.prog_item>div>div {
    display: flex;
    justify-content: space-between;
    width: calc(50% - 25px);
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;
    align-items: center;
}

.prog_item>div>div:nth-child(1) {
    padding-left: 50px;
}

.prog_hora {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 900;
    font-size: 36px;
}

.prog_hora span {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-size: 30px;
    padding-left: 10px;
}

.prog_nombre {
    color: var(--amarillo);
    font-family: "thermal-variable", sans-serif;
    font-weight: 900;
    font-size: 36px;
    text-align: right;
}

.prog_tit {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 900;
    font-size: 30px;
}

.prog_tit span {
    display: block;
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.prog_item .confer_dat_icon {
    position: relative;
    top: -30px;
}

/*********************/
.contac iframe {
    width: 100%;
    height: 100%;
}

.contac {
    display: flex;
    flex-wrap: wrap;
    padding-right: 0;
    padding-left: 0;
    padding-top: 100px;
}

.contac>div {
    width: 50%;
    flex-grow: 1;
    flex-shrink: 0;
}

.contac>div:nth-child(2) {
    padding: 50px;
    box-sizing: border-box;
    background-color: var(--azul);
    color: var(--gris);
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.contac h2 {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 38px;
}

.contac>div {
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.contac .contact_boton {
    background-color: var(--rojo);
    display: inline-block;
    width: min-content;
}

/****************************************************************************/
.tallem_cat {
    display: flex;
    justify-content: space-evenly;
    padding: 40px 0 0;
}

.tallem_cat>div {
    display: flex;
    gap: 0 10px;
    align-items: center;
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 21px;
}

.tallem_cat .tallem_cat_box {
    background-color: var(--rojo);
    width: 30px;
    height: 30px;
}

.tallem_cat div:nth-child(2) .tallem_cat_box {
    background-color: var(--amarillo);
    width: 30px;
    height: 30px;
}

.tallem_cat div:nth-child(3) .tallem_cat_box {
    background-color: var(--azul);
    width: 30px;
    height: 30px;
}

.tallem_box {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 50px;
}

.tallem_item {
    width: 25%;
    height: 0;
    padding-bottom: 25%;
    display: flex;
    position: relative;
    transition: all .3s;
    /* cursor: pointer; */
    overflow: hidden;
}

.tallem_item a {
    color: var(--gris);
}

.tallem_letra {
    position: absolute;
    font-family: "gotham", sans-serif;
    font-weight: 900;
    font-size: 200px;
    color: var(--rojo);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.tallem_letra:hover {
    text-shadow: 3px 3px 0 var(--celeste);
    animation: tiembla 0.1s infinite;
}

@-webkit-keyframes tiembla {
    0% {
        -webkit-transform: translate(0px, 0px);
    }

    10% {
        -webkit-transform: translate(2px, 0px);
    }

    20% {
        -webkit-transform: translate(0px, 0px);
    }

    30% {
        -webkit-transform: translate(2px, 0px);
    }

    40% {
        -webkit-transform: translate(0px, 0px);
    }

    50% {
        -webkit-transform: translate(2px, 0px);
    }

    60% {
        -webkit-transform: translate(0px, 0px);
    }

    70% {
        -webkit-transform: translate(2px, 0px);
    }

    80% {
        -webkit-transform: translate(0px, 0px);
    }

    90% {
        -webkit-transform: translate(2px, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
    }
}

.tallem_item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: all .3s;
}

.tallem_item_fondo {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    /* filter: contrast(350%) brightness(75%) opacity(60%) saturate(200%); */
    filter: contrast(350%) brightness(75%) opacity(60%) saturate(100%);
    background-color: var(--amarillo);
    transition: all .3s;
    transform: translateX(50%);
}

.tallem_item.tipo2 .tallem_item_fondo {
    filter: contrast(350%) brightness(35%) opacity(60%) saturate(200%);
    background-color: var(--azul);

}

.tallem_item.tipo3 .tallem_item_fondo {
    filter: contrast(350%) brightness(35%) opacity(60%) saturate(200%);
    background-color: var(--rojo);

}

.tallem_item_dat {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 18px;
    box-sizing: border-box;
    z-index: 1;
    transition: all .3s;
    transform: translateX(-30%);
}

.tallem_item_dat .icon_siguiente {
    margin-right: 10px;
    margin-left: auto;
    margin-top: calc(-10%);
}

.tallem_item:hover .tallem_item_fondo,
.tallem_item:hover .tallem_item_dat {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.tallem_item:hover img {
    transform: scale(1.1);
}

.tallem_item_dat h3 {
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 26px;
    text-align: center;
    line-height: 110%;
}

.tallem_item_dat .tallem_item_dat_sub {
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.tallem_item_dat .tallem_item_dat_hrs {
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-align: center;
    line-height: 110%;
}

/***** CUPOS AGOTADOS */
.tallem_item .sin_cupos {
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    background-size: contain;
    width: 100%;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    font-family: gotham-black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .3s;
    cursor: pointer;
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 1.6em;
    z-index: 2;
}

.tallem_item .sin_cupos:hover {
    color: #fff;
    /* background-color:rgba(0, 0, 0, .9); */
    opacity: 0;
}

/**********************************************************************/
.costom_box {
    display: flex;
    gap: 0 40px;
    justify-content: space-evenly;
    padding: 50px 0;
    align-items: start;
}

.costom_box>div:nth-child(odd) {
    background-color: var(--azul);
}

.costom_box>div:nth-child(odd) .costom_btn .btn {
    background-color: var(--rojo);
}

.costom_item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: center;
    background-color: var(--rojo);
    flex-grow: 1;
    flex-shrink: 0;
    width: calc(33.33% - 25px);
}

.costom_titular {
    background-color: var(--gris2);
    padding: 30px 15px;
    text-align: center;
}

.costom_titular>div:nth-child(1) {
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 42px;
    line-height: 100%;
}

.costom_titular>div:nth-child(2) {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 24px;
}

.costom_dat {
    padding: 30px 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.costom_costo>div:nth-child(1) {
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 60px;
    line-height: 100%;
}

.costom_costo>div:nth-child(2) {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
}

.costom_desc {
    padding-left: 10px;
    margin: 0 auto;
}

.costom_desc li {
    padding: 10px 0;
    text-align: left;
    list-style: square;
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.costom_btn {
    display: inline-block;
    padding: 0;
}

.costom_tipo {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.costom_tipo>div {
    display: flex;
    align-items: center;
}

.costom_tipo>div>div strong {
    display: flex;
}

.costom_tipo>div>div:nth-child(1) {
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-size: 50px;
    width: 60px;
}

.costom_tipo>div>div:nth-child(2) {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
    line-height: 110%;
}

/********************************************/
.footer {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px 70px;
    border-top: 2px solid var(--rojo);
    margin-top: 50px;
    gap: 20px;
}

.footer>div {
    box-sizing: border-box;
}

.footer h3 {
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--amarillo);
    padding-bottom: 20px;
}

.footer_logos {
    display: flex;
    flex-direction: row;
    gap: 0 0px;
    width: 100%;
    box-sizing: border-box;
}

.footer_logos>div {
    width: auto;
    /* width:50%; */
    position: relative;
    /* overflow: hidden; */
    /* background-color: #1d49cc99; */
}

.footer_logos img {
    /* object-fit: contain; */
    object-position: center bottom;
    width: auto;
    height: 80%;
    /* background-color: #ffe60033; */
    display: block;
}

.footer_men {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 21px;
}

.footer_men a {
    color: var(--gris);
    transition: all .3s;
}

.footer_men a:hover {
    color: var(--rojo);
    font-weight: 400;
}

.footer_copy {
    background-color: var(--rojo);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-size: 21px;
}

.footer_copy a {
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: var(--gris);
}

/*******************************************************/
.multiscrolljr-scroll {
    position: relative;
    overflow: auto;
    height: 100vh !important;
    display: block !important;
    -webkit-overflow-scrolling: touch;
    /* importante para iOS */

    background-image: url(../img/fondo_modal.png);
    background-size: cover;
    background-position: left center;
    background-color: rgba(0, 0, 0, 0.75);
    /* capa oscura encima */
    background-blend-mode: saturation;
}

.ms-left .ms-tableCell {
    position: relative;
    overflow: hidden;
}

.ms-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ms-right .ms-tableCell {
    padding: 60px 70px 100px;
    box-sizing: border-box;
}

.ms-right .confer_dat_close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--gris);
    border-radius: 50%;
    stroke: var(--gris);
    z-index: 1;
    transition: all .3s;
}

.ms-right .confer_dat_close:hover {
    transform: rotate(90deg);
}

.ms-right .confer_dat_nombre br {
    display: none;
}

.ms-right .confer_dat_tit br {
    display: none;
}

.ms-right .confer_dat_cv p {
    font-size: 18px;
    text-align: justify;
    hyphens: auto;
}

.ms-right .confer_dat_desc p {
    font-size: 21px;
    text-align: justify;
    hyphens: auto;
}

.ms-right .confer_dat_desc_2 p {
    font-size: 18px;
}

#multiscroll-nav span {
    background-color: #444444 !important;
    border: solid 1px transparent !important;
}

#multiscroll-nav .active span {
    background-color: #777777 !important;
    border: solid 1px #777777;
}

#miMenu {
    display: flex;
    justify-content: end;
    padding: 20px 30px;
}

#miMenu>div {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gris);
    border-radius: 50%;
    stroke: var(--gris);
    z-index: 1;
    transition: all .3s;
}

#miMenu>div:hover {
    transform: rotate(90deg);
}

/****************************MODAL CONF***********************/
#modal_conf {
    background-color: var(--negro);
}

#modal_conf>div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#modal_conf .ms-left,
#modal_conf .ms-right {
    width: 50%;
}

#modal_conf .ms-right>div {
    padding: 60px 70px 100px;
    box-sizing: border-box;
}

#modal_conf .ms-left .ms-section {
    position: relative;
    height: 100%;
    width: auto;
    overflow: hidden;
}

#modal_conf .ms-left .ms-section img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#modal_conf .ms-left .ms-section-playpause {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index: 1;
}

#modal_conf .ms-left .ms-section-playpause svg {
    transition: all .3s;
    cursor: pointer;
}

#modal_conf .ms-left .ms-section-playpause svg:hover {
    transform: scale(1.3);
}

#modal_conf .ms-left .ms-section #ms-section-tiktok {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
}
#modal_conf .btn {
    font-size: 1.5em;
    background-color: var(--amarillo);
    color: var(--gris2);
    margin-top: 8px;
}
.fancybox-close {
    top: 20px !important;
    right: 28px !important;
    z-index: 10000;
    background-image: none !important;
    width: 50px !important;
    height: 50px !important;
}

.fancybox-close div {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gris);
    border-radius: 50%;
    stroke: var(--gris);
    z-index: 1;
    transition: all .3s;
}

.fancybox-close div.icon-close-estilo2 {
    position: relative;
    top: -45px;
    right: -50px;
}

.fancybox-close div:hover {
    transform: rotate(90deg);
}

.fancybox-inner {
    overflow: hidden !important;
}

.fancybox-overlay {
    overflow: hidden !important;
}

#fancybox-loading {
    background-image: none !important;
    opacity: 1 !important;
    margin-top: -65px !important;
    margin-left: -60px !important;
}

#fancybox-loading div {
    width: 130px !important;
    height: 130px !important;
    background: url('../img/logo.para.animar.javier.svg') no-repeat center center !important;
    /* background-size: contain; */
    /* animation: none !important; */
    /* elimina el spinner animado */
}






































/************************************CARRITO**********************/
.slide_carrito {
    background-image: none !important;
}

.slide_carrito .slide {
    min-height: auto;
}

.cart_checkout .prog_titular {
    padding-top: 50px;
}

.cart_checkout {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cargando_alto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
    box-sizing: border-box;
}

.carrito input,
.carrito select {
    box-sizing: border-box;
    padding: 10px 20px;
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 18px;
    border: none;
    color: var(--gris2);
    border-radius: 3px;
    outline-color: var(--amarillo);
}

.carrito .btn_submit,
.carrito button.btn_submit {
    background-color: var(--rojo);
    color: var(--gris);
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 1.8em;
    padding: 10px 30px;
    margin: 50px auto;
    margin-top: 35px !important;
    width: initial;
    display: block;
    box-shadow: 3px 3px 3px rgba(155, 155, 155, 0.3), -3px 3px 3px rgba(155, 155, 155, 0.3);
    /* box-shadow: 3px 3px 3px rgba(0, 0, 0, .3); */
    transition: all .3s;
    cursor: pointer;
    border: none;
    border-radius: 3px;
}

.carrito .btn_submit:hover {
    box-shadow: 4px 4px 10px rgba(78, 78, 78, 0.3) inset, -4px 4px 10px rgba(98, 98, 98, 0.3) inset;
    transform: translateY(1px);
    /* box-shadow: 4px 4px 0 var(--color0), -4px 4px 0 var(--color0); */
}

.carrito .owl-nav button {
    display: block !important;
    width: 25px;
    height: 80px;
    position: absolute;
    top: 30%;
    font-size: 2em !important;
    border: 0px;

}

.carrito .owl-nav button span {
    padding: 10px 0;
    background: var(--azul) !important;
    text-align: center;
    opacity: 1;
    box-shadow: 0 0 2px 2px var(--azul);
    margin: 0;
    color: var(--gris);
    box-sizing: border-box;
    display: block;
    width: 100%;
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 24px;
}

.carrito .owl-nav button.owl-prev {
    left: 0px;
}

.carrito .owl-nav button.owl-next {
    right: 0px;
}





.spkr {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 20px;
    padding: 20px 0;
}

.spkr_dat {
    width: calc(55% - 10px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.spkr .spkr_dat .formAlerta {
    display: none;
}

.spkr .spkr_dat .formAlerta>div {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--negro);
    font-family: "gotham", sans-serif;
    font-size: 1.5em;
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spkr_dat input,
.spkr_dat select,
.spkr_dat div.input {
    width: calc(50% - 10px);
}

.spkr_dat div.input {
    display: flex;
    align-items: center;
    padding-left: 10px;
    box-sizing: border-box;
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 30px;
}

.spkr_dat div.input span {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding-left: 5px;
}

.spkr_dat>div {
    width: 100%;
}

.spkr .title {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 24px;
    display: flex;
    gap: 20px;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
}

.spkr_conf {
    width: calc(45% - 10px);
}

.spkr_item {
    max-width: 100%;
    width: 125px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spkr_item input[type="checkbox"] {
    display: none;
}

.spkr_item label {
    position: relative;
}

.spkr_item label .tick {
    display: none;
    position: absolute;
    top: calc(96% - 40px);
    right: calc(50% - 20px);
    font-size: .9em;
    line-height: 100%;
    background: var(--azul);
    box-shadow: 0 0 5px var(--azul);
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.spkr_item label .tick::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: .9em;
    line-height: 100%;
    border: solid var(--gris);
    border-width: 0 4px 4px 0;
    width: 8px;
    height: 16px;
    transform: rotate(45deg);
}

.spkr_item input:checked~.tick {
    display: block;
}

.spkr_textoalt {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 10px 0 20px;
    border-top: 2px solid var(--rojo);
}

.spkr_textoalt .spkr_total_box {
    font-family: "gotham", sans-serif;
    font-weight: 900;
    font-size: 36px;
}

.spkr_textoalt strong {
    font-weight: 800;
}

.spkr_textoalt:nth-child(1) {
    border: none;
}

.spkr_textoalt>div {
    padding: 4px 0;
}

.spkr_textoalt button.btn_submit {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all .3s;
}

.spkr_textoalt .btn_editar {
    margin: 0;
    background-color: var(--azul);
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 10px !important;
}

.spkr_resum {
    background-color: var(--gris);
    color: var(--gris2);
    padding: 20px 30px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.spkr_resum .spkr_textoalt {
    border: none;
    padding: 0 0 20px;
}

.spkr_resum .spkr_textoalt h4 {
    font-family: "gotham", sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 120%;
    color: var(--rojo);
}






.work_title45 {
    width: 100%;
    border-top: 2px solid var(--rojo);
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-size: 24px;
    display: flex;
    gap: 20px;
    padding: 30px 0 20px;
    align-items: center;
    justify-content: center;
}

.work_title45 strong {
    font-weight: 800;
}

.work_title45>div {
    width: 55%;
    text-align: center;
}

.work_title45>input {
    width: 45%;
}

.work_caja {
    border-bottom: 2px solid var(--rojo);
    padding-bottom: 40px;
    position: relative;
}

#checkout .work_caja {
    border-bottom: none;
    padding-bottom: 10px;
}

.work_caja .formAlertaWork {
    display: none;
}

.work_caja .formAlertaWork>div {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.95);
    font-family: "gotham", sans-serif;
    font-size: 1.5em;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;

}

.work_caja .formAlertaWork {
    display: none;
}

.work_caja .formAlertaWork>div {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.95);
    font-size: 1.5em;
    font-family: "gotham", sans-serif;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work_caja .work-item {
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.105);
    position: relative;
    font-family: "gotham", sans-serif;
    cursor: pointer;
}

.work_caja .work-item label {
    position: relative;
    cursor: pointer;
}

.work_caja .work-item label .tick {
    display: none;
    position: absolute;
    top: calc(50% - 20px);
    right: calc(50% - 20px);
    font-size: .9em;
    line-height: 100%;
    background-color: var(--azul);
    box-shadow: 0 0 15px 5px var(--azul);
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.work_caja .work-item label .tick::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: .9em;
    line-height: 100%;
    border: solid var(--gris);
    border-width: 0 4px 4px 0;
    width: 8px;
    height: 16px;
    transform: rotate(45deg);
}

.work_caja .work-item input[type="checkbox"] {
    display: none;
}

.carrito input:checked~.tick {
    display: block;
}

.work_caja .work-item img {
    width: 100%;
    display: block;
}

.owl-stage {
    display: flex;
}

.work-item input:disabled {
    opacity: .3;
}

.work_disabled .work_disabled_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    text-shadow: 0 0 20px #000, 0 0 20px #000;
    background-color: rgba(0, 0, 0, .7);
    cursor: grabbing;
    font-family: "gotham", sans-serif;
    font-weight: 800;
    text-align: center;
}

.work_disabled_box {
    display: none;
}

/************************************************************************/
.infomodalbox {
    background-color: var(--gris2);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    padding: 10px 1px;
    box-sizing: border-box;
    font-family: "gotham", sans-serif;
    font-weight: 500;
    font-size: .6em !important;
    text-align: center;
    align-items: center !important;
    font-size: 1.1em !important;
    padding: 40px 20px;
    max-width: 450px;
    line-height: 150%;
    border-radius: 3px;
}

.infomodalbox i {
    font-size: 3em;
    padding-bottom: 20px;
    color: var(--amarillo);
}

.infomodalbox>div {
    text-align: center !important;
}

.infomodal .infomodalbtn a {
    background-color: var(--rojo);
    color: var(--color3);
    padding: 15px 25px;
    border-radius: 3px;
    margin-top: 20px;
    display: inline-block;
    transition: all .3s;
    cursor: pointer;
    font-family: "gotham", sans-serif;
    font-weight: 800;
    font-size: 1.5em;

}

.infomodal .infomodalbtn a:hover {
    box-shadow: 4px 5px 2px var(--negro), -4px 5px 2px var(--negro);
}

/***************************************************************/
/* Quitar flechitas en Chrome, Safari, Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Quitar flechitas en Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


/*** MODAL BOX */
.modalbox {
    max-width: 1000px;
}

.modalbox>div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: var(--negro);
    color: var(--gris);
}

.modalbox1 {
    width: 40%;
    height: 0;
    padding-bottom: 64%;
}

.modalbox1 img {
    width: 100%;
    object-position: center center;
}

.modalbox2 {
    width: 60%;
    background-color: var(--rojo);
}

.modalbox2>div {
    width: 100%;
}

.modalbox_close.fancybox-close {
    top: -25px !important;
    right: -20px !important;
}

.modalbox_scroll_y.fancybox-inner {
    overflow-y: auto !important;
}

.modalbox .costom_tipo {
    flex-direction: row;
    gap: 20px;
}

/********** VOTACION CONFE ***/
.moduloVotacion{
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background:
        linear-gradient(0deg,
            #111111aa 0%,
            #11111166 14%,
            #11111100 20%),
        linear-gradient(180deg,
            #111111aa 0%,
            #11111166 6%,
            #11111100 15%);
    transition: all .3s ease-in;
}
.moduloVotacion .valEstrellasTotal{
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    padding: 10px 20px;
    text-align: left;
}
.moduloVotacion .ec-stars-wrapper{
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    padding: 5px 15px;
    text-align: left;

}
.moduloVotacion .valEstrellasTotal span{
    color: var(--gris);
    font-size: 2.1em;
    font-family: 'gotham', sans-serif;
    font-weight: 800;
}