/* ===========================
   TIPOGRAFÍAS
   =========================== */
   @font-face {
    font-family: "Agrandir";
    src: url("../fonts/Agrandir-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: "Agrandir";
    src: url("../fonts/Agrandir-TextBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
  }
  @font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
  }
  @font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
  }
  @font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
    font-style: italic;
    font-weight: 400 700;
  }
  
  /* ===========================
     VARIABLES & BASE
     =========================== */
  :root {
    --flow-pink: #ff5ba7;
    --flow-orange: #ff9b4a;
    --flow-yellow: #ffd86b;
    --flow-purple: #9a63ff;
    --flow-blue: #6cc6ff;
    --flow-dark: #141414;
    --flow-text: #252525;
    --flow-muted: #6f6f6f;
    --flow-radius-xl: 26px;
    --blob-pink:   #dd6893; /* magenta/rosa */
    --blob-purple: #9575a9; /* violeta */
    --blob-blue:   #5d99c8; /* azul */
    --blob-orange: #ebaa58; /* naranja */
    --floatDur: 12s;
    --hueDur: 8s;
    --bs-backdrop-zindex: 1050;
    --bs-modal-zindex: 1055;
      
  }
  
a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

/* ===== PATCH: blobs con vida + parallax OK (sin pelearse con transform) ===== */

.global-blobs{
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
  }
  
  .page-content{
    position: relative;
    z-index: auto; /* o directamente sacá la línea */
  }
  
  
  /* El PADRE solo posiciona (parallax) */
  .parallax-blob{
    position: absolute;
    left: 0;
    top: 0;
  
    width: 520px;
    height: 520px;
    border-radius: 999px;
  
    /* IMPORTANTE: centramos el blob en la coordenada tx/ty */
    transform:
      translate3d(var(--tx, 0px), var(--ty, 0px), 0)
      translate3d(-50%, -50%, 0)
      scale(var(--scale, 1));
  
    opacity: .65;
    filter: blur(80px) saturate(1.9) brightness(1.12);
    will-change: transform;
  }
  
  /* El HIJO “vive” (solo wobble: sin hue-rotate) */
  .parallax-blob::before{
    content:"";
    position:absolute;
    inset: -18%;
    border-radius: inherit;
  
    background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.06), transparent 45%),
    conic-gradient(
      from 0deg,
      var(--blob-pink),
      var(--blob-purple),
      var(--blob-blue),
      var(--blob-orange),
      var(--blob-pink)
    );
    filter: saturate(1.25) contrast(1.08);
    animation: blobWobble var(--floatDur) cubic-bezier(.42,0,.28,1) infinite;
    will-change: transform;
  }
  
  /* BACK vs FRONT (PERF: sin mix-blend-mode) */
  .blob-back{
    z-index: 1;
    opacity: .40;
    mix-blend-mode: normal;
  }
  
  .blob-front{
    z-index: 3;
    opacity: .22;
    filter: blur(45px) saturate(1.5) brightness(1.05);
    mix-blend-mode: normal;
  }
  
  /* tamaños variados */
  .blob-back-2{ width: 720px; height: 720px; }
  .blob-back-3{ width: 460px; height: 460px; }
  .blob-front-1{ width: 380px; height: 380px; }
  .blob-front-2{ width: 560px; height: 560px; }
  
  /* duraciones distintas (ok) */
  .blob-back-1{ --floatDur: 4s;  --hueDur: 4s; }
  .blob-back-2{ --floatDur: 4s;  --hueDur: 8s; }
  .blob-back-3{ --floatDur: 4s;  --hueDur: 6s; }
  .blob-front-1{--floatDur: 3s;  --hueDur: 4s; }
  .blob-front-2{--floatDur: 3s;  --hueDur: 5s; }
  
  /* Animación transform-only */
  @keyframes blobWobble{
    0%   { transform: rotate(0deg)   scale(1); }
    50%  { transform: rotate(22deg)  scale(1.12); }
    100% { transform: rotate(0deg)   scale(1); }
  }
  
  /* PERF: si el usuario pide menos movimiento, apagamos animaciones */
  @media (prefers-reduced-motion: reduce){
    .parallax-blob::before,
    .hero-poster-blob{
      animation: none !important;
    }
    .parallax-blob{
      filter: blur(40px) saturate(1.2) brightness(1.03);
    }
  }
  
  /* BONUS PERF: en pantallas medianas/chicas, escondemos 2 blobs */
  @media (max-width: 991.98px){
    .blob-back-3,
    .blob-front-2{
      display: none;
    }
    .blob-back-2{ width: 520px; height: 520px; }
    .blob-front-1{ width: 300px; height: 300px; }
  }

b,
strong {
    font-weight: 700;color: inherit;font-family:inherit;
}

small,span {
    font-size: inherit;
    color: inherit;
    font-family: inherit;
}
input[type*="text"],input[type*="email"],
input[type*="password"],input[type*="number"],
input[type*="button"],textarea,select{box-shadow:none;padding:5px 15px;line-height:1em;border:solid 1px #333!important;}
textarea{height:auto;}

body.register #content {
    background-color: transparent;
}

body.register header, body.flatpage header, body.speaker-list header {
    background-image: url(/media/2026/img/back-punta-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 13rem;
}

.hero-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #111;
    padding-top: 1rem;
}

body.register .footer, body.flatpage .footer, body.speaker-list .footer {
    background: #fff;
    color:#000;
    justify-content: center;
    position: relative; /* Contenedor relativo para los elementos posicionados dentro */
    overflow: hidden; /* Recorta cualquier contenido que se desborde */
    height: 250px; /* Ajusta según el diseño necesario */
    display: flex;
    justify-content: right; /* derecha horizontalmente */
    align-items: center; /* Centra verticalmente */
}

body.register .footer, body.flatpage .footer, body.speaker-list .footer {
    height: auto; /* Ajusta según el diseño necesario */
    justify-content: center; /* centrar horizontalmente */
    padding: 1rem 2rem;
}


body.register header .logo img, body.flatpage header .logo img, body.speaker-list header .logo img {
    height: 10rem;
    padding: 1rem;
}

body.register .alert-info {
    color: #690851;
    background-color: rgba(166, 8, 126, 0.2); 
    border-color: #690851;
}

body.register .alert-info .label, body.register .alert-info .form-control {
    margin-right: 1rem;
}

body.register .alert-info .btn.btn-info {
    background: #a6087e;
    color: #FFF;
    border-color: #690851;
    border-radius: .25rem;
    padding: 0.35rem 1.5rem;
    font-size: 1rem;
}

.col-centered{float: none;margin: 0 auto;}

.ttl_, .ttl_attendants_ {
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 3em;
    line-height: 0.9em;
    padding: 0 15px;
    margin-bottom: 40px;
    letter-spacing: 4px;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    text-align: center;
}

.ttl_2 {
    font-size: 3em;
}

.ttl_ span, .ttl_attendants_ span {
    font-family: inherit;
    color: inherit;
    font-size: inherit;
}
.ttl_2 {
font-size: 3em;
}

/* attendants css*/

.leisure header {
margin-bottom: 60px;
}
/* 
h1.green2.ttl_ {
color: #4f3786;
text-shadow: -6px -5px 0 rgba(0, 0, 0, 0.2);
line-height: 63px;
padding: 30px 0px 0px;
}
*/
.leisure .game-info {
text-align: center;
font-size: 20px;
color: rgb(236 1 95);
font-weight: bold;
}

.clearfix.leisure-fields {
text-align: left;
padding: 15px 200px;
}
.leisure-fields label {
margin-bottom: 15px;
}

.leisure ul {
list-style-type: none;
text-align: center;
}

.leisure ul li {
display: inline-block;
margin-right: 20px;
}

.leisure label {
cursor: pointer;
}

.leisure .btn-success {
font-weight: bold;
}
.leisure-fields label {
margin-bottom: 15px;
}

.leisure hr {
margin-top: 50px;
border-top: 1px solid #B2ADAD;
}
.invalid-form {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}

.leisure h4 {
color: rgb(247, 0, 76);
font-weight: bold;
font-size: 22px;
margin-bottom: 0px;
}

.leisure p {
line-height: 17px;
}

.leisure b {
opacity: 0.9;
}

input#id_companion_fullname {
width: 300px;
margin: 15px auto;
}

.btn.btn-default,.btn.btn-info {
    background: #a6087e;
    color: #FFF;
    border-color: #690851;
    border-radius: .25rem;
    padding: 0.35rem 1.5rem;
    font-size: 1.5rem ;
}

body.register a.terms {
    border-radius: .25rem;
}

.dateConference {
    position: absolute;
    top: 0;
    left: 390px;
    padding-left: 100px;
    background: url(../img/imgDate.svg) no-repeat top left;
    background-size: auto 100%;
}

.dateConference h4 {
    color: #F51F69;
    font-family: 'Figtree';
    font-size: 2.6em;
    line-height: 0.95em;
    margin-top: -5px;
    /* opacity: .4; */
    margin-bottom: 0;
}

.dateConference h4 span {
    display: block;
    font-family: inherit;
    color: inherit;
}
.dateConference h4 small{color:inherit;}
.dateConference h4 b {
    font-family: inherit;
    color: inherit;
    font-weight: inherit;
    font-size: 1.3em;
}

.home header{position:absolute;    background-color: transparent;}

header .left,
header .right {
    order: 0;
    flex: 0 1 auto;
    align-self: center;
}

header nav {
    display: block;
}

header nav ul {
    display: table;
    width: 100%;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
}

header nav ul li a {
    display: block;
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Figtree';
}

header nav ul li a:hover {
    text-decoration: underline;
    font-family: 'Figtree';
}

header nav ul li a.login_ {padding:5px;}

header nav ul li a:before {
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
    background: #000;
    border-radius: 50px;
}

header nav ul li:nth-child(1) a:before {
    background: #e43819;
}

header nav ul li:nth-child(2) a:before {
    background: #174377;
}

header nav ul li:nth-child(3) a:before {
    background: #acc32c;
}

header nav ul li:nth-child(4) a:before {
    background: #5a162b;
}

header nav ul li:nth-child(5) a:before {
    background: #f0ac17; 
}

header nav ul li:nth-child(6) a:before {
    background: #499c48;
}

header nav ul li:nth-child(7) a:before {
    background: #4f3786;
}

header nav ul li:last-child a:before {
    display: none;
}

footer {
    background: #FAC638;
    padding:30px 0;z-index: 1;
    position: relative;
}

footer address{margin-bottom: 0;}
footer .logo_footer{
    margin-bottom: 20px;
    margin-top: 10px;
}
footer address p {margin-bottom:0;font-weight:300;font-size: 14px!important;color: #4f3786;}
footer > .container {width:100%;max-width:1170px;}

.botonera{}
.botonera ul{display: table;margin:100px auto 50px;float: none;padding: 0;}
.botonera ul li{display:inline-block;margin: 0 15px;padding: 0;list-style: none;}
.botonera ul li a{display: block;/* height: 50px; */font-family: 'Figtree';font-weight: 700;border: solid 1px #000;font-size: 16px;text-transform: uppercase;padding: 12px 20px;}

.cont_newsletter {
    display: table;
    width: 100%;
}

.cont_newsletter .newsletter {
    background: url(../img/news_back.svg) no-repeat 103% bottom, #1f9638;
    height: 180px;
    width: 180px;
    float: left;
    position: relative;
    padding: 15px;
    background-size: 150px auto;
}

.cont_newsletter .newsletter p {
    color: #FFF;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 19px;
}
.cont_newsletter .newsletter p b {
  display: block;
  font-weight:700;
  color: #FFF;
    letter-spacing: 2px;
}

.formulario_news {
    /* width: calc(100% - 180px); */
    width:0;
    float: left;
    background:#FFF;
    overflow: hidden;

    height: 180px;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}
.formulario_news .formulario{margin:0 -5px;}

.formulario_news .cont_padd{
    padding:15px;
    opacity: 0;
    display: none;
    overflow: hidden;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}
.formulario_news h3{margin-top:0;font-size:30px;color:#1f9638;font-weight: 700;}
.formulario_news h4{margin-top:0;font-size: 18px;}

.formulario_news .form-group{float:left;padding:0 5px;}
.formulario_news .form-group *{display:block;width:100%}
.formulario_news .id_title{width:90px!important;margin-bottom:10px}
.formulario_news .id_first_name,
.formulario_news .id_last_name{width:calc(50% - 45px);margin-bottom:10px}
.formulario_news .id_legal_name,
.formulario_news .id_email{width: calc(50% - 65px)}
.formulario_news .btn_ok{width:130px}
.formulario_news .btn_ok input{ border:0!important; }
.flex_center {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.flex_center .item_flex_center {
    order: 0;
    flex: 0 1 auto;
    align-self: center;
}

#logo_section {
    background: rgb(252, 252, 252);
    background: -moz-radial-gradient(center, ellipse cover, rgba(252, 252, 252, 1) 0%, rgba(214, 214, 214, 1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(252, 252, 252, 1) 0%, rgba(214, 214, 214, 1) 100%);
    background: radial-gradient(ellipse at center, rgba(252, 252, 252, 1) 0%, rgba(214, 214, 214, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#d6d6d6', GradientType=1);
    height: 100vh;
}

#logo_section .flex_center .item_flex_center {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

#logo_section .brasil {
    position: absolute;
    bottom: 0;
    right: 20px;
}

#logo_section .txt_central {
    display: block;
    width: 100%;
    height: auto;
    max-width: 700px;
}

/* #listado_principal {
    position: relative;
    padding: 240px 0 420px;
}

#listado_principal .arrow {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -52px;
}
 */
/* .listado_dinamico {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%
}

.listado_dinamico .left,
.listado_dinamico .right {
    position: relative;
    order: 0;
    flex: 1 1 50%;
    align-self: stretch;
} */

/* #listado_principal .flex_center .item_flex_center {
    width: 100%
} */

/* .listado_dinamico .icon {
    margin-left: auto;
    display: block;
    position: relative;
    max-width: 395px;
} */

#squear_text {
    position: absolute;
/*     top: 0;
right: 0;
width: 0;
height: 0; */
    overflow: hidden;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    z-index:2;
}

#squear_text .info_ {
    padding:140px;

}
#squear_text.open {
    width: 50%;
    height: 66.667%;
}

#squear_text .flex_center {
    padding: 60px;
}

#squear_text p {
    margin: 0;
    line-height: 1em;
    color: #FFF;
    font-size: 24px;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
    opacity: 0;
    text-align: justify;
}
#squear_text h3 {
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
    margin-bottom: 30px;
    opacity: 0;
    text-align: center;
}

#squear_text.open p,#squear_text.open h3 {
    opacity: 1;
}
/*
.listado_dinamico .square_one {
    display: block;
    background: #5c297a;
    width: 100px;
    height: 100px;
    position: absolute;
    right: -100px;
    top: -100px;
}

.listado_dinamico .square_two {
    display: block;
    background: #feba00;
    width: 190px;
    height: 190px;
    position: absolute;
    right: -190px;
    bottom: -190px;
}

.listado_dinamico .square_three {
    display: block;
    background: #484848;
    width: 100px;
    height: 100px;
    position: absolute;
    right: 0;
    bottom: -290px;
}

.listado_dinamico ul {
    margin: 0;
    padding: 0;
}

.listado_dinamico ul li {
    display: block;
    list-style: none;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.listado_dinamico ul:hover li a {
    opacity: 0.3
}

.listado_dinamico ul li:hover a {
    opacity: 1
}

.listado_dinamico ul li a {
    display: inline-block;
    font-size: 28px;
    font-family: 'Figtree';
    font-weight: 700;
    line-height: 1em;
    padding: 15px 30px;
}

.listado_dinamico ul li:nth-child(1) a {
    color: #5c297a
}

.listado_dinamico ul li:nth-child(2) a {
    color: #f5257c
}

.listado_dinamico ul li:nth-child(3) a {
    color: #f7004c
}

.listado_dinamico ul li:nth-child(4) a {
    color: #000000
}

.listado_dinamico ul li:nth-child(5) a {
    color: #e5623f
}

.listado_dinamico ul li:nth-child(6) a {
    color: #feba00
}

.listado_dinamico ul li:nth-child(7) a {
    color: #f7004c
}

.listado_dinamico ul li:nth-child(8) a {
    color: #83bfe8
} */
#wednesday .event a {
    color: black;
}

#agenda {
    /* background: url(../img/agenda_back.jpg); */
    background: #5c297a;
    background-size: cover;
    position: relative;overflow:hidden;
}

.event p {
text-align: justify !important;
}

#agenda .line_ {
    position: absolute;
    top: 0;
    opacity: 0.8;
    left: 50%;
    margin-left: -550px;}
#agenda .arrow {
    display: table;
    margin: 0 auto;
}

#agenda .ttl_ {
    color: rgba(255, 208, 0, 0.8);
    text-align: left;
    /* font-size: 90px; */
    text-shadow: -6px -5px 0 rgba(255, 255, 255, 0.2);
    margin: 0 0 20px;
    padding: 0;
}

#agenda .ttl_ span {
    display: block;
}

#agenda p {
    color: #FFF;
    font-size: 19px;
    font-weight: 500;
    margin: 0;
}

#agenda p+p {
    margin-top: 30px;
}

#agenda .cont_ttl_,
#agenda .cont_p {
    display: table;
    margin: 170px auto 20px;
    float: none;
}

#agenda .cont_p {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 140px;
}

.ttl_down {
    font-size: 30px;
    margin: 0;
    margin-bottom: 60px;
    font-family: 'Figtree';
    font-weight: 700;
    color: #ffcc00;
}

.ttl_down i {
    font-weight: 300;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

#sponsor_slider {
    padding: 90px 0 70px;
}

#sponsor_slider h3 {
    font-size: 60px;
    color: #1f9638;
    font-family: 'Figtree';
    font-weight: 700;
    text-align: center;
    letter-spacing: 5px;
    margin-bottom: 30px;
    margin-top: 0;
    line-height: 1em;
}

.cont_slider {
    position: relative;
}

.cont_slider .controls {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    z-index: 1
}

.cont_slider .controls.prev {
    left: -34px;
}

.cont_slider .controls.next {
    right: -34px;
}

.cont_slider.sponsor_slider .item {
    padding: 15px;
}

.cont_slider.sponsor_slider .item a {
    display: block;
    border: solid 8px #000;
}

.cont_slider.sponsor_slider .item .color1 {
    border-color: #5c297a;
}

.cont_slider.sponsor_slider .item .color2 {
    border-color: #f5257c;
}

.cont_slider.sponsor_slider .item .color3 {
    border-color: #f7004c;
}

.cont_slider.sponsor_slider .item .color4 {
    border-color: #e5623f;
}

.cont_slider.sponsor_slider .item .color5 {
    border-color: #feba00;
}

.cont_slider.sponsor_slider .item .color6 {
    border-color: #484848;
}

.article_list_item.color1 .article_img img {border:solid 6px #5c297a;}
.article_list_item.color2 .article_img img {border:solid 6px #f5257c;}
.article_list_item.color3 .article_img img {border:solid 6px #f7004c;}
.article_list_item.color4 .article_img img {border:solid 6px #e5623f;}
.article_list_item.color5 .article_img img {border:solid 6px #feba00;}
.article_list_item.color6 .article_img img {border:solid 6px #484848;}
.article-detail .article_img img {border:solid 6px rgb(179, 53, 127);}

.article_list_item.color1 h2 a {color: #5c297a;}
.article_list_item.color2 h2 a {color: #f5257c;}
.article_list_item.color3 h2 a {color: #f7004c;}
.article_list_item.color4 h2 a {color: #e5623f;}
.article_list_item.color5 h2 a {color: #feba00;}
.article_list_item.color6 h2 a {color: #484848;}
.article_list_item h2  {margin-top:0;font-weight:700;}
.article_list_item .date,.article_content .date{margin:0;}

.cont_slider.sponsor_slider .item a img {
    width: 100%;
    height: auto;
    display: block;
}
.conference_base #content,
.stands #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #c91b6a;padding-bottom:120px;}
.conference_base .ttl_,
.stands .ttl_{color:#5c297a;font-family: 'Figtree';/* font-size:110px; */text-align:center;text-shadow: -6px -5px 0 rgba(255,255,255,0.2);}
.conference_base .cont_flatPages{position:relative;}
.conference_base .cont_flatPages #cuadros_svg{position:absolute;top:0;left:-100px;}
.conference_base .botonera ul li a {border-color: #FFF;color:#FFF;}
.conference_base .cont_flatPages p {color:#FFF;/* font-size:16px; */font-weight:300;}

.signature{display:table;width: 100%;}
.signature img{clear:both;display: block;margin:0 auto -30px;}
.signature p{margin-bottom:0;float:right;clear:both;display: block;text-align:center;}

.about2017 #content {
    background: url(../img/arrow_down_white.svg) no-repeat top center, #663366;
    padding-bottom: 120px;
}
.about2017 #content .container .botonera ul li a {
    border: solid 1px #fff;
    color: #fff;
}
.about2017 #content .container .botonera ul li a:hover, .hotel_info #content .container .botonera ul li a:hover {
    border: solid 1px #663366;
    color: #663366;
    background-color: #fff;
}
.stands #content .container .botonera ul li a ,
.conference_base #content .container .botonera ul li a {
    border: solid 1px #fff;
    color: #fff;
}
.stands #content .container .botonera ul li a:hover ,
.conference_base #content .container .botonera ul li a:hover {
    border: solid 1px #c91b6a;
    color: #c91b6a;
    background-color: #fff;
}
.about .ttl_{
    color: rgba(255, 21, 9, 0.6);
    /* text-align: left; */
    /* font-size: 90px; */
    text-shadow: -6px -5px 0 rgba(255,255,255,0.2);
    margin: 0 0 40px;
    padding: 0;
}
.about.sponsors  .ttl_,
.about.stands  .ttl_{text-shadow: -6px -5px 0 rgba(84, 83, 83, 0.2);}
.default .ttl_ {
    text-shadow: -6px -5px 0 rgba(0,0,0,0.08);
}
.about .cont_flatPages p {
    color: #FFF;
    /* font-size: 16px; */
    /* font-weight: 300; */
}
.networking #content {
    background: url(../img/arrow_down_white.svg) no-repeat top center, #ffcc00;
    padding-bottom: 120px;
}
.networking .ttl_ {
    color: #4f3786;
    /* text-align: left; */
    /* font-size: 90px; */
    text-shadow: -6px -5px 0 rgba(255, 255, 255, 0.45);
    margin: 0 0 40px;
    padding: 0;
}

.networking .cont_flatPages{position:relative;}
.networking .cont_flatPages #cuadros_svg{position:absolute;top:0;left:-100px;}
.networking .cont_flatPages p, .default p {
    color: #231f20;
    /* font-size: 16px; */
    /* font-weight: 300; */
}
.networking .cont_flatPages hr {
    border-top: 1px solid #231f20;
}
.networking.theme6 #content .container .botonera ul li a {
border: solid 1px #FFF;
color: #FFF;
}
.networking.theme6 #content .container .botonera ul li a:hover {
border: solid 1px #FFF;
color: #C5C6C8;
background-color: #FFF;
}
.default #content {
/*     background: url(../img/arrow_down_white.svg) no-repeat top center, #cc6633; */
    padding-bottom: 120px;
}
.default .ttl_ {
    /* color: rgba(255, 3, 2, 0.6); */
    text-align: left;
    /* font-size: 90px; */
    text-shadow: -6px -5px 0 rgba(255, 255, 255, 0.2);
    margin: 0 0 40px;
    padding: 0;
}
.default .cont_flatPages p {
    /* color: #fff; */
    /* font-size: 19px; */
    font-weight: 300;
}
.default .cont_flatPages hr {
    border-top: 1px solid #fff;
}
.default #content .container .botonera ul li a {
/*     border: solid 1px #fff;
color: #fff; */
}
.default #content .container .botonera ul li a:hover {
/*     border: solid 1px #cc6633;
color: #cc6633;
background-color: #fff; */
}
.sponsors #content {
    background: url(../img/arrow_down_colors.svg) no-repeat top center;
    padding-bottom: 120px;
}

.stands .cont_flatPages {position:relative;}
.stands .cont_flatPages #cuadros_svg{position:absolute;top: 0;left: -100px;}
.stands .ttl_ {
/*     color: rgba(200, 28, 211, 0.6);
text-align: left;
font-size: 90px;
text-shadow: -6px -5px 0 rgba(255, 255, 255, 0.5);
margin: 0 0 40px;
padding: 0; */
}
.stands .cont_flatPages p {
    color: #FFF;
    /* font-size: 19px; */
    font-weight: 300;
}
.stands .cont_flatPages hr {
    border-top: 1px solid #FFF;
}
/* .stands #content .container .botonera ul li a , */
.sponsors #content .container .botonera ul li a {
    border: solid 1px #231f20;
    color: #231f20;
}
/* .stands #content .container .botonera ul li a:hover , */
.sponsors #content .container .botonera ul li a:hover {
    border: solid 1px #cccccc;
    color: #cccccc;
    background-color: #231f20;
}

.help-block {
    font-size: 12px !important;
    color: #333;
    font-weight: normal;
    margin-top: 5px;
}

.register #content, .contact #content ,
.accounts  #content,.contact  #content ,.logout  #content,.password-instructions-sent #content,.default #content {
    padding-bottom: 100px;
    padding-top: 100px;
}
.register #square{
    position: absolute;
    left: -260px;
    top: 0;
}
.register .help-at{color: #4f3786;}
.register .ttl_, .contact .ttl_,.accounts .ttl_,.contact .ttl_,.logout .ttl_,.list-attendants .ttl_,.list-speakers .ttl_{
    color: #a6087e;
    /* font-size: 4.5em; */
    line-height: normal;
}
.list-speakers h2 {
    color: #acc32c;
}
.register hr {
    border-top: 1px solid rgb(199, 198, 198);
    margin: 40px 0 20px;

}
.register p#id_emergency_email {display: none;}
.register h2, .account-login h2, .password-reset h2, .password-instructions-sent h2, .password-reset-complete h2, .account-logout h2 {
    color: #000;
    font-family: 'Agrandir';
}
.default h2, .video h2, body.register .email-sent h1 {
    font-weight: 800;
    line-height: normal;
    margin-bottom: 1.2rem;
    font-size: 4rem;
    color: #000;
    font-family: 'Agrandir';
}

body.register .email-sent .big-notice {
    font-size: 1.2rem;
}

.links-zoom h2 {
    color: #f0ac17;
}

.links-zoom hr {
    border: 1px solid #333;
    border-top: none !important;
}

.default a.btn {
    background-color: #499C48;
    color: #fff;
    border: none;
}

.default a.btn:hover {
    background-color: #205220;
    color: #fff;
}

.register h3 {
    color: #a6087e ;
}

.register #id_notes{height:100px;}
.panel-info>.panel-heading {
    color: #231f20;
    background-color: rgba(254, 186, 0, 0.2);
    border-color: rgba(254, 286, 0, 1);
}
.panel-info {
    border-color: rgba(254, 286, 0, 1);
}
.btn-info {
    color: #fff;
    background-color: #337ab7;
    border-color: #46b8da;
}
.errorlist li {
    color: #e5623f;
    font-size: 12px;
}
.hotel_info #content {
    background: url(../img/arrow_down_colors.svg) no-repeat top center;
    padding-bottom: 120px;
}
.hotel_info .ttl_ {
color: rgba(255, 208, 0, 1);
text-align: center;
/* font-size: 90px; */
font-size: 4.5em;
}
.hotel_info:hover .ttl_ {
/* text-shadow: -6px -5px 0 rgba(0,0,0,1); */
}
.hotel_info #content .container .botonera ul li a {
    border: solid 1px #f5257c;
    color: #f5257c;
}
.hotel_info #content .container .botonera ul li a:hover {
    border: solid 1px #f5257c;
    background-color: #f5257c;
    color: #fff;
}
.hotel_info .cont_flatPages a{color: #BD20E3}
.hotel_info .cont_flatPages p, .hotel_info .cont_flatPages div, .hotel_info .cont_flatPages ul li {
    color: #FFF;
    /* font-size: 19px; */
}
.speaker #content {
    background: url(../img/arrow_down_colors.svg) no-repeat top center;
    padding-bottom: 120px;
}
.speaker #content .speakers .ttl_ {
    color: rgba(160, 3, 95,1);
    text-align: left;
    /* font-size: 90px; */
    text-shadow: -6px -5px 0 rgba(0, 0, 0, 0.2);
    margin: 0 0 40px;
    padding: 0;
    padding-top: 120px;
}
.speaker #content .speakers p {
    color: #231f20;
    font-size: 19px;
    font-weight: 300;
}
.speakers, .attendants {
    text-align: left;
    padding-bottom: 30px;
    /* margin-bottom: 10px; */
    /* float: left; */
    /* height: 400px; */
    display: inline-block;
}

.work p {
font-size: 14px !important;
}

.speakers .photo, .attendants .photo {position:relative;}
.speakers .photo a , .attendants .photo a{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
}

.speakers .photo img, .attendants .photo img  {
    margin: 0 auto;max-width:245px;width:100%;height:auto;display: block;
}

.speakers .text-center .ttl, .attendants .text-center .ttl {
    font-size: 16px;
    font-weight: bold;
    padding-top: 10px;
}
.attendants h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.attendants p.ttl {
margin-bottom: 3px !important;
}

.speakers .social{margin: 10px auto 0;display:table;padding:0;}
.speakers .social li,.speakers_modal .social li{display:block;float:left;list-style:none;}
.speakers .social li a,.speakers_modal .social li a{display:block;}

.speakers_modal .social{margin:0;margin-top:15px;padding:0;display:table;}
.cont_speakers, .cont_attendants{position:relative;padding-top: 50px;}
.cont_speakers  p, .cont_attendants  p  {
    text-align: center;
    font-size: 16px;
}
.cont_speakers #square, .cont_attendants #square{position: absolute;top: 40px;left: -320px;}
.cont_speakers .speakers  p, .cont_attendants .speakers  p{margin-bottom:0;}

.flex-speakers{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
}
.flex-speakers .flex-speakers-item{
    order: 0;
    flex: 0 1 auto;
    align-self: stretch;
    padding:0 30px;
    padding-bottom: 30px;
}
.color1 .photo img {
    border: 6px solid #e43819;
}
.color2 .photo img {
    border: 6px solid #174377;
}
.color3 .photo img {
    border: 6px solid #acc32c;
}
.color4 .photo img {
    border: 6px solid #5a162b;
}
.color5 .photo img {
    border: 6px solid #f0ac17;
}
.color6 .photo img {
    border: 6px solid #499c48;
}

.color1 .text-center .ttl {
    color: #1f9638;
}
.color2 .text-center .ttl {
    color: #4f3786;
}
.color3 .text-center .ttl {
    color: #fadd45;
}
.color4 .text-center .ttl {
    color: #1f9638;
}
.color5 .text-center .ttl {
    color: #4f3786;
}
.color6 .text-center .ttl {
    color: #fadd45;
}
.article-list #cuadros_svg{position:absolute;left:-100px;top: 30px;}
.article-list #cuadros_svg_bajo{position: absolute;right: -140px;bottom: -40px;}
.article-list .cont_flatPages,
.contact .cont_flatPages{position:relative;}
.contact  .btn.btn-info{margin-top:10px;}
.contact #cuadros_svg{position:absolute;left:-330px;top: 30px;}
.contact #cuadros_svg_bajo{position: absolute;right: -300px;bottom: 0;}
.article-list #content, .article-detail #content {
    background: url(../img/arrow_down_colors.svg) no-repeat top center;
    padding-bottom: 120px;
    padding-top: 100px;
}

.article-list #content .botonera ul {
    margin-top: 0px;
}

.article-list .ttl_, .article-detail .ttl_ {
    color: #4f3786;
    text-shadow: -6px -5px 0 rgba(0, 0, 0, 0.2);
    /* font-size: 4.5em; */
    line-height: normal;
    padding:0;
}
.article-list hr, .article-detail hr {
    border-top: 1px solid #ccc;
}
.article-list h2, .article-detail h2 {
    color: rgb(179, 53, 127) ;font-weight:700;margin-top:0;
}
/* ===== AGENDA (Bootstrap 5) ===== */

.cont_agenda {
    margin-top: 60px;
    --agenda-color: #f5257c; /* fallback */
  }
  
  .cont_agenda .agenda-tabs {
    border-bottom: 0;
    gap: 10px;
  }
  
  .cont_agenda .agenda-tabs .nav-item {
    min-width: 180px;
  }
  
  .cont_agenda .agenda-tabs .nav-link {
    border-width: 3px;
    border-style: solid;
    border-radius: 0;
    text-align: center;
    font-size: 20px;
    padding: 10px 16px;
    white-space: nowrap;
  }
  
  .cont_agenda .agenda-tabs .nav-link.active {
    color: #fff !important;
  }
  
  /* Colores por pestaña (como tu CSS viejo) */
  .cont_agenda .agenda-tabs .nav-link.tab-1 { border-color: #f5257c; color: #f5257c; }
  .cont_agenda .agenda-tabs .nav-link.tab-1.active { background: #f5257c; border-color: #f5257c; }
  .cont_agenda .agenda-tabs .nav-link.tab-1:hover { background: #f5257c; color: #fff; border-color: #f5257c; }
  
  .cont_agenda .agenda-tabs .nav-link.tab-2 { border-color: #e5623f; color: #e5623f; }
  .cont_agenda .agenda-tabs .nav-link.tab-2.active { background: #e5623f; border-color: #e5623f; }
  .cont_agenda .agenda-tabs .nav-link.tab-2:hover { background: #e5623f; color: #fff; border-color: #e5623f; }
  
  .cont_agenda .agenda-tabs .nav-link.tab-3 { border-color: #5d2b7a; color: #5d2b7a; }
  .cont_agenda .agenda-tabs .nav-link.tab-3.active { background: #5d2b7a; border-color: #5d2b7a; }
  .cont_agenda .agenda-tabs .nav-link.tab-3:hover { background: #5d2b7a; color: #fff; border-color: #5d2b7a; }
  
  .cont_agenda .agenda-tabs .nav-link.tab-4 { border-color: #f7004c; color: #f7004c; }
  .cont_agenda .agenda-tabs .nav-link.tab-4.active { background: #f7004c; border-color: #f7004c; }
  .cont_agenda .agenda-tabs .nav-link.tab-4:hover { background: #f7004c; color: #fff; border-color: #f7004c; }
  
  
  /* ===== Tabla tipo "cards" con bordes redondeados por fila ===== */
  
  .cont_agenda .agenda-table-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .cont_agenda .agenda-table {
    border-collapse: separate;
    border-spacing: 0 14px; /* separación entre filas */
  }
  
  .cont_agenda .agenda-row td {
    border: 3px solid var(--agenda-color);
    background: transparent;
    vertical-align: middle;
  }
  
  /* Redondeo externo por fila */
  .cont_agenda .agenda-row td:first-child {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
  }
  .cont_agenda .agenda-row td:last-child {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
  }
  
  /* Anchos */
  .cont_agenda .agenda-time { width: 140px; }
  /* Ocultar columna MORE INFO */
    .cont_agenda .agenda-cta {
        display: none;
    }
  .cont_agenda .agenda-sponsor { width: 180px; }
  
  /* Hora */
  .cont_agenda .hour {
    margin: 0;
    padding: 10px 12px;
    font-size: 18px;
    text-align: center;
    color: var(--agenda-color);
    font-weight: 700;
  }
  .cont_agenda .hour .to {
    font-size: 12px;
    opacity: .9;
    font-weight: 600;
  }
  
  /* Columna principal con fondo del color del día */
  .cont_agenda .agenda-main {
    background: var(--agenda-color) !important;
    color: #fff;
    padding: 16px 18px !important;
  }
  
  .cont_agenda .event-title {
    font-size: 18px;
    line-height: 1.1em;
    color: #fff;
    font-weight: 800;
  }
  
  .cont_agenda .event-title .saloon {
    display: block;
    font-size: 16px;
    font-weight: 400;
    opacity: .95;
    margin-top: 6px;
  }
  
  /* Bloque desplegable */
  .cont_agenda .hidden-info {
    margin-top: 12px;
  }
  
  .cont_agenda .event-description {
    color: #fff;
    opacity: .95;
  }
  
  .cont_agenda .title-person {
    color: #fff;
  }
  
  .cont_agenda .person-line {
    color: #fff;
    padding: 3px 0;
  }
  
  .cont_agenda .person-line .title {
    opacity: .95;
  }
  
  /* Acciones */
  .cont_agenda .action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border: 2px solid rgba(255,255,255,.85);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
  }
  .cont_agenda .action-link:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
  }
  
  /* Botón "MORE INFO" */
  .cont_agenda .agenda-btn {
    border: 2px solid #fff !important;
    color: #fff !important;
    background: transparent !important;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    letter-spacing: .2px;
  }
  .cont_agenda .agenda-btn:hover {
    background: #fff !important;
  }
  
  /* Sponsor */
  .cont_agenda .agenda-sponsor {
    color: var(--agenda-color);
    text-align: center;
    background: transparent !important;
  }
  .cont_agenda .sponsor-img {
    max-height: 110px;
    width: auto;
    margin: 10px auto;
    display: block;
  }
  
  /* Responsive */
  @media (max-width: 767.98px) {
    .cont_agenda .agenda-tabs .nav-item { min-width: 0; }
    .cont_agenda .agenda-tabs .nav-link { font-size: 16px; padding: 10px 10px; }
    .cont_agenda .agenda-time { width: 110px; }
    .cont_agenda .agenda-cta { width: 80px; }
  }

  /* ================================
   AGENDA: FILAS BLANCAS + TEXTO COLOR DÍA
   SIN LÍNEAS INTERNAS
=================================== */

/* 1) Toda la fila blanca y texto color del día */
.cont_agenda .agenda-row td{
    background: #fff !important;
    color: var(--agenda-color) !important;
  
    /* sacamos el borde completo que poníamos antes */
    border: none !important;
  
    /* dibujamos SOLO borde superior e inferior (no separa columnas) */
    border-top: 3px solid var(--agenda-color) !important;
    border-bottom: 3px solid var(--agenda-color) !important;
  }
  
  /* 2) Solo los extremos tienen borde izquierdo/derecho (borde exterior) + radio */
  .cont_agenda .agenda-row td:first-child{
    border-left: 3px solid var(--agenda-color) !important;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
  }
  
  .cont_agenda .agenda-row td:last-child{
    border-right: 3px solid var(--agenda-color) !important;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
  }
  
  /* 3) Columna principal (antes era de color): ahora blanca */
  .cont_agenda .agenda-main{
    background: #fff !important;
    color: var(--agenda-color) !important;
  }
  
  /* 4) Textos internos: que no queden blancos por reglas viejas */
  .cont_agenda .event-title,
  .cont_agenda .event-title .saloon,
  .cont_agenda .event-description,
  .cont_agenda .title-person,
  .cont_agenda .person-line,
  .cont_agenda .person-line .title{
    color: var(--agenda-color) !important;
  }
  
  /* 5) Separadores/HR: si los querés, muy sutiles (o los podés ocultar) */
  .cont_agenda .hidden-info hr{
    border-color: rgba(0,0,0,0.08) !important;
  }
  
  /* 6) Si querés que la descripción sea más “gris” para jerarquía */
  .cont_agenda .event-description{
    opacity: .9;
  }
  
  /* 7) Sponsor: blanco también */
  .cont_agenda .agenda-sponsor{
    background: #fff !important;
  }
  
  /* 8) Botones de acciones (si están): que sigan el color del día */
  .cont_agenda .action-link{
    border-color: var(--agenda-color) !important;
    color: var(--agenda-color) !important;
  }
  .cont_agenda .action-link:hover{
    background: rgba(0,0,0,0.03) !important;
  }
/* ================================
   TABS DE DÍAS – FONDO BLANCO + BORDES CURVOS
=================================== */

.cont_agenda .agenda-tabs {
    gap: 12px;
  }
  
  /* Estado base (NO activo) */
  .cont_agenda .agenda-tabs .nav-link {
    background: #fff !important;
    border-radius: 14px !important;
    border-width: 3px;
    border-style: solid;
    font-weight: 600;
    transition: all .2s ease;
  }
  
  /* Hover */
  .cont_agenda .agenda-tabs .nav-link:hover {
    color: #fff !important;
  }
  
  /* Activo */
  .cont_agenda .agenda-tabs .nav-link.active {
    color: #fff !important;
  }
  
  /* === Colores por día === */
  
  /* Día 1 */
  .cont_agenda .agenda-tabs .nav-link.tab-1 {
    border-color: #f5257c;
    color: #f5257c;
  }
  .cont_agenda .agenda-tabs .nav-link.tab-1:hover,
  .cont_agenda .agenda-tabs .nav-link.tab-1.active {
    background: #f5257c !important;
    border-color: #f5257c;
  }
  
  /* Día 2 */
  .cont_agenda .agenda-tabs .nav-link.tab-2 {
    border-color: #e5623f;
    color: #e5623f;
  }
  .cont_agenda .agenda-tabs .nav-link.tab-2:hover,
  .cont_agenda .agenda-tabs .nav-link.tab-2.active {
    background: #e5623f !important;
    border-color: #e5623f;
  }
  
  /* Día 3 */
  .cont_agenda .agenda-tabs .nav-link.tab-3 {
    border-color: #5d2b7a;
    color: #5d2b7a;
  }
  .cont_agenda .agenda-tabs .nav-link.tab-3:hover,
  .cont_agenda .agenda-tabs .nav-link.tab-3.active {
    background: #5d2b7a !important;
    border-color: #5d2b7a;
  }
  
  /* Día 4 */
  .cont_agenda .agenda-tabs .nav-link.tab-4 {
    border-color: #f7004c;
    color: #f7004c;
  }
  .cont_agenda .agenda-tabs .nav-link.tab-4:hover,
  .cont_agenda .agenda-tabs .nav-link.tab-4.active {
    background: #f7004c !important;
    border-color: #f7004c;
  }
  
  /* Mobile: que no queden tan altos */
  @media (max-width: 767.98px) {
    .cont_agenda .agenda-tabs .nav-link {
      font-size: 15px;
      padding: 10px 12px;
      border-radius: 12px !important;
    }
  }
    

.hotel_info #content .container .botonera ul li a {
    border: solid 1px #f5257c;
    color: #f5257c;
}
.hotel_info #content .container .botonera ul li a:hover {
    border: solid 1px #f5257c;
    background-color: #f5257c;
    color: #fff;
}

.documents {
    margin-bottom: 90px;
    text-align: left;
}

.documents h2 {
font-size: small;
font-weight: bold;
}

.documents li {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.documents .col-md-12{
    margin-left: -15px;
}

.documents li a {
font-family: 'Figtree';
border: solid 1px #000;
font-size: 13px;
text-transform: none;
padding: 10px 12px;
font-weight: 700;
border-radius: 3px;
margin: 10px 0px 10px -10px;
}

ul.documents {
margin-left: -30px;
margin-top: 20px;
}

.square-attendant{
    top: 165px !important;
}

.cont_attendants p.profs {
font-size: 14px;
margin-top: -6px;
}

#content .container .botonera ul li a, .documents li a {
    border: solid 1px #4f3786;
    color: #4f3786;
}
#content .container .botonera ul li a:hover, .documents li a:hover {
    border: solid 1px #4f3786;
    background-color: #4f3786;
    color: #fff;
}
.item_sponsor img {
    height: 80px;
    max-height: 80px;
}
.cont_agenda .tab-content .tab-pane table .btn:hover {
    background-color: #fff;
}
.cont_agenda .tab-content .tab-pane table td .hidden-info a, .cont_agenda .tab-content .tab-pane table td .hidden-info a .glyphicon {
    color: #fff;
}
.cont_agenda .tab-content .tab-pane table td .hidden-info .actions {
    padding-top: 15px;
    margin-top: 15px;
}

.logo_hotel{display: block;margin-top:50px;text-align: center;width: 120px;height:auto;}


.cont_speakers {position: relative;}
.cont_speakers .back,
.cont_speakers .speakers_modal{position: absolute;top:0;left: 0;display:none;width:100%;height:100%;}
.cont_speakers .back{background:#FFF;z-index:15;}
.cont_speakers .speakers_modal{z-index:16;}

.speakers_modal .photo {border:solid 6px}
.speakers_modal .photo img{width:100%;max-width:250px;height:auto;display: block;}
.speakers_modal .flex_item_text_{padding:0 30px 0;}
.speakers_modal .name{margin-top:0;text-align:left;margin-bottom:0;}
.speakers_modal .work{text-align:left;}
.speakers_modal .work p{margin:0;text-align: left;}
.speakers_modal .texto{text-align: left;}
.speakers_modal .texto p{text-align: left; font-size: 14px;}
.speakers_modal .cont_close{display:table;width:100%;padding-bottom:15px;border-bottom:solid 1px #ccc;margin-bottom:15px;}
.speakers_modal .cont_close a{border:solid 1px;display:block;padding:10px;opacity:1;background:#FFF;float: right;height: 45px;}
.speakers_modal .cont_close a.btn.close {float:left;}
.speakers_modal .cont_close a.btn_x {float:right;width:45px;height: 45px;}
.speakers_modal .cont_close a.btn_x img{width:auto;height:100%;display:block;}
.speakers_modal .texto ul li {font-size: 14px;}

.flex_modal_person{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
}
.flex_modal_person .flex_item_photo_{
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
    width: 100%;
    max-width: 200px;
}
.flex_modal_person .flex_item_text_{
    order: 0;
    flex: 1 1 auto;
    align-self: auto;
}

.message_form{}
.modal .modal-content{
        border: 0;
    border-radius: 0;
}
.message_form .text_description_modal{padding:15px;}
.message_form .modal-dialog{width:300px;}
.message_form .icon_msg svg{display:block;margin:0 auto 15px;text-align:center;}
.message_form .media-heading{text-align:center;font-family:1.2em;}
.modal .modal-footer{border:0;}
.message_form .modal-footer button,
.contact  .btn.btn-info,
.accounts  .btn.btn-info{
    border-radius: 0!important;
    box-shadow: none;
    height: 34px;
    padding: 5px 15px;
    line-height: 1em;
    border: solid 1px #666!important;
    background: #1f9638;
    color: #FFF;
    border-color: #1f9638!important;
    width:100%;
    max-width:100%;
}

.info.error{font-size: 12px;color: #e5623f;}
.btn_menu{position:absolute;width:50px;height:40px;border:solid 5px #f7004c;background: #FFF;z-index: 91;top: 15px;right: 15px;display:none;padding:5px;}
.btn_menu span{background:#f7004c;display:block;height:4px;}
.btn_menu span+span{margin-top:4px}
.help-at {color: #f7004c;cursor: pointer;font-size: 12px;font-weight: bold;}

.visor_map .logo1{float: left;}
.visor_map .logo2{float:right;}
.visor_map .txt{text-align:center;}
.visor_map .close{position:absolute;top:0;right:0;}

.modal .close {
    position: absolute;
    top: -10px;
    right: -10px;
    display: block;
    background: #770c28;
    opacity: 1;
    text-align: center;
    color: #FFF;
    text-shadow: none;
    /* padding: 5px; */
    line-height: 25px;
    font-family: 'Figtree';
    font-weight: normal;
    height: 30px;
    width: 30px;
    border-radius: 15px;
    z-index: 10;
    /* padding: 9px; */
}

.cont_p p,
.flatpage p,
.cont_flatPages p,
.cont_txt_flatpage,
.help-block{text-align:justify;}
.cont_flatPages p{font-size:16px;}
.cont_flatPages {display:table;width: 100%;height: 100%;}
.grid_square .cont_grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    background: url(../img/background_brasil/back_brasil4.jpg) no-repeat center;;
    background-size: cover!important;
    background-repeat: no-repeat;
    background-position: center;
    position:relative;
    animation: colorbox 20s infinite ease-in-out;
    /* animation-delay: 5s; */
    animation-direction: alternate;
}
.btn-outline-agenda {
    color: #46388D;
    border-color: #46388D;
}
.btn-outline-agenda:hover {
    background-color: #46388D;
    color: #FAC638;
}

@keyframes colorbox {
  0% {
    background: url(../img/background_brasil/back_brasil.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
  }/*
  25% {
    background: url(../img/background_brasil/back_brasil.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
  } */
  40% {
    background: url(../img/background_brasil/back_brasil2.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
  }/*
  65% {
    background: url(../img/background_brasil/back_brasil2.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
  } */
  80% {
    background: url(../img/background_brasil/back_brasil3.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
  }/*
  90% {
    background: url(../img/background_brasil/back_brasil3.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
  } */
  100% {
    background: url(../img/background_brasil/back_brasil4.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
  }
}
.cont_flatPages p sup{color: inherit;font-family: inherit;}
.grid_square .cont_grid .item_grid{
    order: 0;
    align-self: stretch;
    flex: 0 1 16.66666666666667%;
    padding-bottom: 16.66666666666667%;
    position: relative;
}
.grid_square .cont_grid .item_grid.doble{
    flex: 0 1 33.33333333333334%;
}
.grid_square .info_.empty {cursor: auto}
.grid_square .info_ {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}
.grid_square:hover .info_ {opacity:0.6;}
.grid_square #squear_text .info_ {opacity:1;}
.grid_square .info_:hover {opacity:1;}
.grid_square .info_ .center_{
    order: 0;
    flex: 0 1 auto;
    align-self: center;
}
.grid_square .info_ h3{
    margin: 0;
    color: #FFF;
    font-size: 1.6vw;
    text-align: center;
    font-weight: 700;
    letter-spacing: 3px;
}
.grid_square .info_ h3 a:before{display: block;position: absolute;top: 0;left: 0;width: 100%;height: 100%; content: "";z-index: 1;}
#social.info_{background: #F16226;}
#about.info_{background: #F5257C;}
#regisration.info_{background: #FEBA00;}
#welcome.info_{background: #5C297A;}
#network.info_{background: #B13885;}
#conference_past.info_{background: #595CA8;}
#stands.info_{background: #F7004C;}
#city_info.info_{background: #484848;}

#summit.info_{background: #F16226;}




body[class*="theme"] .cont_flatPages {position:relative;display: table;width: 100%;}
body[class*="theme"] .cont_flatPages #cuadros_svg{position:absolute;top:0;left:-100px;}
body[class*="theme"] .cont_flatPages #cuadros_svg_bajo{position:absolute;bottom:-40px;right:-140px;}
body[class*="theme"] #content{padding-top:100px;}
body.stands #content{padding-top:100px;}
body[class*="theme"] #content .botonera ul{margin-top:0px;}

.theme1 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #F5257B;padding-bottom:120px;}
.theme1 .ttl_{text-shadow: -6px -5px 0 rgba(249, 99, 162, 1); color: rgba(146, 4, 114, 1)}
.theme1 #content p{color:#FFF;}

.theme2 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #595CA9;padding-bottom:120px;}
.theme2 .ttl_{text-shadow: -6px -5px 0 #858CBA; color: #FFC300}
.theme2 #content p{color:#FFF;}

.theme3 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #5D297B;padding-bottom:120px;}
.theme3 .ttl_{text-shadow: -6px -5px 0 #7A5092; color: #F91B10}
.theme3 #content p{color:#FFF;}
.theme3 #content a{color:#F91B10;}

.theme4 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #FEBA01;padding-bottom:120px;}
.theme4 .ttl_{text-shadow: -6px -5px 0 #FFD464; color: #F5061D}
.theme4 #content p{color:#FFF;}

.theme5 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #F16226;padding-bottom:120px;}
.theme5 .ttl_{text-shadow: -6px -5px 0 #F3814D; color: #F5061D}
.theme5 #content p{color:#FFF;}

.theme6 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #96979a;padding-bottom:120px;}
.theme6 .ttl_{text-shadow: -6px -5px 0 #DADBDD; color: #BD20E3}
.theme6 #content p{color:#FFF;}

.theme7 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #484848;padding-bottom:120px;}
.theme7 .ttl_{text-shadow: -6px -5px 0 #6A696E; color: #FB4110}
.theme7 #content p{color:#FFF;}

.theme8 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #F7014C;padding-bottom:120px;}
.theme8 .ttl_{text-shadow: -6px -5px 0 #FA477E; color: #A01676}
.theme8 #content p{color:#FFF;}

.theme9 #content{background:url(../img/arrow_down_white.svg) no-repeat top center, #B13885;padding-bottom:120px;}
.theme9 .ttl_{text-shadow: -6px -5px 0 #C471A9; color: #FFCC03}
.theme9 #content p{color:#FFF;}


.account-login #square{position:absolute;left: -300px;top: 20px;}


.info_agenda{margin: 0;padding: 30px;text-align: center;font-size: 18px;}

.panel-primary>.panel-heading{background-color: #acadaf;border-color: #737373;}
.panel-primary {border-color: #737373;}

.flatpage.default #content{padding-top:100px;}
.g-recaptcha{display: table;margin: 0 auto;float: none;}

#help_text_attendant_type ul li+li{margin-top:10px;}

.contact_sent .ttl_{color: #5c297a;margin-bottom:15px;}
.contact_sent .icon_big{font-size:4em;}
.contact_sent.contact #cuadros_svg_bajo{bottom: -210px}

.password-reset .form__{max-width:400px;margin:0 auto;}
.password-reset .ttl_{font-size:3.2em!important;}

.modal-footer ul{
    list-style-type: none;
}

.green-c p{
    color:#a3d165;
}

.red-c p{
    color:rgb(144, 61, 64);;
}

.visor_map .txt {
text-align: center;
font-size: 18px;
color: rgb(48, 45, 45);
}

.visor_map .txt span{
font-weight: bold;
}

span#siteseal {
    padding: 50px 0 0;
    display: block;
    text-align: center;
}

@media (min-width: 768px){
.modal-dialog {
width: 80%;
margin: 30px auto;
}
}

#site_subscription_form .col-md-12 {

margin-top: 130px;

}

#help_text_attendant_type .modal-dialog .modal-content .modal-body ul li {
    font-size: 0.9rem;
    list-style-type: none;
}
#help_text_attendant_type .modal-dialog .modal-content .modal-body ul {
    padding-left: 0;
}

.registration_done .btn.btn-info {
    padding: 0.35rem 0.85rem !important;
    font-size: 1.1rem !important;
}

.waiting-list p {
    text-align: center !important;
}

.regis_form {
    border-radius: var(--flow-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    padding: 1.3rem;
}

.hero-poster-fade {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 25%, rgba(255, 255, 255, 0.45) 55%, #ffffff 95%);
    pointer-events: none;
    z-index: 0;
    height: 13rem;
}

/* ================================
   SPEAKERS (Bootstrap 5)
=================================== */

.speakers-page .speakers-title {
    color: #acc32c; /* tu verde */
    font-weight: 800;
    letter-spacing: .5px;
  }
  
  .speakers-page .speakers-subtitle {
    opacity: .85;
  }
  
  .speakers-grid {
    margin-top: 6px;
  }
  
  /* Card clickeable */
  .speaker-card {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }
  
  .speaker-card-inner {
    border-radius: 16px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    min-height: 220px;
    position: relative;
    overflow: hidden;
  }
  
  .speaker-card:hover .speaker-card-inner {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
  }
  
  /* Si tu include trae una imagen con class img-responsive, no existe en BS5 */
  .speaker-card-inner .img-responsive {
    width: 100%;
    height: auto;
  }
  
  /* Un acento de color arriba (si querés look tipo “identidad”) */
  .speaker-card-inner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: #a6087e; /* tu violeta */
    opacity: .9;
  }
  
  /* ===== Modal custom (compatible con tu JS) ===== */

  .speakers_modal.js_modal {
    display: none; /* tu JS lo muestra */
    position: fixed;
    inset: 0;
    z-index: 1050;
    overflow: auto;
    padding: 18px;
  }
  
  .speakers_modal_dialog {
    max-width: 980px;
    margin: 40px auto;
  }
  
  .speakers_modal_content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0,0,0,.25);
    overflow: hidden;
  }
  
  .speakers_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  
  .speakers_modal_header .btn_x img {
    width: 18px;
    height: 18px;
  }
  
  .speakers_modal_body {
    padding: 18px;
  }
  
  .speakers_modal_grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 18px;
    align-items: start;
  }
  
  .speakers_modal_photo .photo {
    border-radius: 16px;
    overflow: hidden;
    background: #f4f4f4;
  }
  
  .speakers_modal_text .name {
    color: #a6087e;
    font-weight: 900;
  }
  
  @media (max-width: 767.98px) {
    .speakers_modal_dialog { margin: 20px auto; }
    .speakers_modal_grid {
      grid-template-columns: 1fr;
    }
  }
  .speaker-detail-card .person_full_name {
    color: #a6087e; /* tu violeta de marca */
  }
  
  .speaker-detail-card .learn-more {
    font-weight: 600;
  }
  
  .speaker-detail-card .learn-more:hover {
    text-decoration: underline;
  }

  .speaker-card-inner{
    border-radius: 16px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    min-height: 220px;
    overflow: hidden;
  }
  .speaker-card:hover .speaker-card-inner{
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
  }
/* Speaker snippet */
.speaker-img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    background: #f3f3f3;
  }
  
  .social-icon{
    width: 22px;
    height: 22px;
  }
  
  .social-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .modal-backdrop { z-index: 9998 !important; }
  .modal { z-index: 9999 !important; }
  
  #speakerModalBody .speaker-photo {
    width: 50%;
    margin: 0 auto;
  }

  #speakerModalBody .ttl {
    display: none;
  }