<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
Variables
--------------------------------------------------------------*/
:root{
  --background-black: #000000;
  --background-white: #FFFFFF;
  --background-yellow: #F4C752;
  --background-rojo: #E44C4A;
  
  --color-menu-lateral: #F4C752;
  --color-text-body: #222222;
  --color-text-white: #FFFFFF;
  --color-text-red: #e22716;
  --color-text-red-dark: #971d12;
  
  --altura-de-video-lg: 65vh;
}

/*--------------------------------------------------------------
Basic
--------------------------------------------------------------*/
body, html {
  background: var(--background-white);
  height:100%;
}

body, input, select, textarea {
  color: var(--color-text-body);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

em, i {
  font-style: italic;
}

p {
  margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-body);
  font-family: "Roboto Slab", serif;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}

a{
  color: var(--color-text-red);
  text-decoration: none;
  &amp;:hover{
    color: var(--color-text-red);
  }
}

blockquote {
  border-left: solid 3px rgba(210, 215, 217, 0.75);
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 0.5em 0 0.5em 2em;
}

code {
  background: rgba(230, 235, 237, 0.25);
  border-radius: 0.375em;
  border: solid 1px rgba(210, 215, 217, 0.75);
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0.25em;
  padding: 0.25em 0.65em;
}

pre {
  -webkit-overflow-scrolling: touch;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0 2em 0;
}

pre code {
  display: block;
  line-height: 1.75;
  padding: 1em 1.5em;
  overflow-x: auto;
}

/*--------------------------------------------------------------
Custom CSS
--------------------------------------------------------------*/
.wrapper {
  padding: 50px 0 0 0;
}

@media only screen and (min-width:1100px) {
  .wrapper {
    padding: 60px 0 0 0;
  }
}

.side-menu{
  background: var(--color-menu-lateral);
  position: fixed;
  left: 0;
  top: 0;
  right: auto;
  bottom: 0;
  z-index: 999;
  overflow: hidden;
  width: 50px;
  height: 100%;
  padding-top: 42px;
  padding-bottom: 24px;
  border-right: 1px solid var(--background-black) ;
}

.side-menu-elements {
  width: 100%;
  display: flex;
  height: calc(100vh - 60px);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0 50px 0;
}

@media only screen and (min-width: 768px){
  .side-menu{
    width: 90px;
  }
}

.btn-ingreso-login a{
  /* display: none;  dejar none pra finales regionales*/
  position: absolute;
  right: 1rem;
  top: 5rem;
  color: white;
  z-index: 9;
  border: 1px solid var(--color-text-white);
  padding: 5px 20px;
  border-radius: 20px;
  transition: .3s;
  opacity: .8;
}

.btn-ingreso-login a:hover{
  background: rgb(255, 255, 255, .2);
}

.image-portada{
  width: 100%;
  height: 80vh;
  background: url(../img/portada1.png);
  background-repeat: none;
  background-size: cover;
  background-position: center;
}

.video-header{
  width: 100%;
  /* height: 60vh; */
}

.video-header .video-pattern{
  position: absolute;
  width: 100%;
  height: 60vh;
  background: url(/img/noise-effect.gif);
  opacity: .1;
}

.video-header .video-gradient {
  position: absolute;
  left: 50px;
  width: calc(100% - 50px);
  height: 60vh;
  background: radial-gradient(circle, rgba(2, 0, 36, 0) 0%, rgba(2, 0, 36, .8) 100%);
}

.video-header video{
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 60vh;
  top: 0;
  left: 0;
}

.image-portada-title {
  position: absolute;
  padding: 55px 10px 55px 80px;
  z-index: 1;
}

.image-portada-title img {
  width: 70%;
}

@media only screen and (min-width: 768px) {
  .video-header{
    height: var(--altura-de-video-lg);
  }
  
  .video-header .video-pattern{
    height: var(--altura-de-video-lg);
  }
  
  .video-header .video-gradient{
    left: 90px;
    width: calc(100% - 90px);
    height: var(--altura-de-video-lg);
  }
  
  .video-header video {
    height: var(--altura-de-video-lg);
  }
  
  .image-portada-title {
    width: 100%;
    padding: 70px 80px 100px 170px;
  }
  
  .image-portada-title img {
    width: 50%;
    opacity: .9;
  }
}

.wrapper-inscripciones,
.wrapper-reglamento,
.wrapper-mapa,
.wrapper-noticias,
.wrapper-experiencia-delibera,
.wrapper-torneos-anteriores,
.wrapper-recursos,
.wrapper-organizan {
  padding: 40px 40px 40px 90px;
}

.wrapper-inscripciones{
  display: flex;
  flex-direction: no-wrap;
  justify-content: space-between;
  align-items: center;
  background: var(--background-yellow);
}

.wrapper-inscripciones h2{
  font-size: 24px;
  color: var(--color-text-body);
}

.wrapper-inscripciones p{
  color: var(--color-text-body);
}

.wrapper-inscripciones i{
  font-size: 55px;
  color: var(--color-text-body);
}

.wrapper-reglamento{
  display: flex;
  flex-direction: no-wrap;
  justify-content: space-between;
  align-items: center;
  background: var(--background-black);
}

.wrapper-reglamento h2{
  font-size: 24px;
  color: var(--color-text-white);
}

.wrapper-reglamento p{
  color: var(--color-text-white);
}

.wrapper-reglamento i{
  font-size: 55px;
  color: var(--color-text-white);
}

.wrapper-experiencia-delibera{
  display: flex;
  flex-direction: column;
  background-color: var(--background-black);
}

.wrapper-experiencia-delibera h2{
  font-size: 24px;
  color: var(--color-text-white);
}

.wrapper-experiencia-delibera p{
  color: var(--color-text-white);
}

.wrapper-experiencia-delibera a{
  color: var(--color-text-white);
  transition: .3s;
}

.wrapper-experiencia-delibera a:hover{
  opacity: .5;
}

.textos-experiencia-delibera{
  width: 100%;
}

.imagen-experiencia-delibera {
  display: block;
  padding-top: 1rem;
}

@media only screen and (min-width: 992px){
  .wrapper-experiencia-delibera {
    background-image: url('/delibera/img/experiencia-delibera.png');
      background-position: right;
      background-repeat: no-repeat;
      background-size: contain;
    background-position: right -300px top 0;
  }

  .textos-experiencia-delibera {
    width: 50%;
  }

  .imagen-experiencia-delibera{
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .wrapper-experiencia-delibera {
    background-position: right;
  }

  .textos-experiencia-delibera {
    width: 70%;
  }
}

.wrapper-mapa{
  background: var(--background-yellow);
  border-bottom: 1px solid var(--color-text-body);
  transition: .3s;
}

.wrapper-mapa:hover{
  border-bottom: 5px solid var(--color-text-body);
}

.wrapper-mapa h2{
  font-size: 24px;
}

.wrapper-mapa i{
  font-size: 2rem;
}

.wrapper-mapa .card-body{
  border-radius: 0;
  text-align: center;
  background: var(--background-yellow);
  display: flex;
  align-items: center;
  padding: 2rem 0 0 0;
}

.wrapper-mapa .card-body svg{
  width: 100%;
  display: block;
}

@media only screen and (min-width: 768px){
  .wrapper-mapa i {
    font-size: 4rem;
  }
    
  /* .wrapper-mapa .card-body svg {
    width: 40%;
  } */
}

.wrapper-mapa .card-body a path{
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  display: block;
}

.wrapper-mapa .card-body a:hover path{
  fill: var(--background-rojo);
}

.wrapper-mapa .wrapper-regiones{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.wrapper-mapa .wrapper-regiones .region-item {
  flex: 1 1 0;
  padding: 0 1rem 0 0;
}

.wrapper-recursos{
  display: flex;
  flex-direction: no-wrap;
  justify-content: space-between;
  align-items: center;
  background: var(--background-yellow);
}

.wrapper-recursos  h2{
  font-size: 24px;
  color: var(--color-text-body);
}

.wrapper-recursos  p{
  color: var(--color-text-body);
}

.wrapper-recursos  i{
  font-size: 55px;
  color: var(--color-text-body);
}

.wrapper-noticias{
  min-height: 100vh;
}

.wrapper-noticias h2{
  color: var(--color-text-body);
  font-size: 24px;
}

.wrapper-noticias .card-img-top{
  width: 100%;
  height: 200px;
  border-radius: 0;
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  transition: .75s;
}

.wrapper-noticias .card-img-top:hover{
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media only screen and (min-width: 1200px){
  .wrapper-noticias .card-img-top {
    width: 100%;
    height: 250px;
  }
}

.wrapper-noticias .card .card-title{
  font-size: 1.4rem;
  line-height: 1.7rem;
}

.wrapper-noticias .card .card-body{
  padding: 1rem 0 0 0;
}

.wrapper-torneos-anteriores{
  min-height: 100vh;
  background: #E44C4A;
  color: var(--color-text-white);
}

.wrapper-torneos-anteriores h2 {
  color: var(--color-text-white);
  font-size: 24px;
}

.wrapper-organizan{
  min-height: 100vh;
  background: var(--background-white);
  color: var(--color-text-white);
}

.wrapper-organizan h2{
  color: var(--color-text-body);
  font-size: 24px;
}

@media only screen and (min-width: 768px){
  .wrapper-inscripciones{
    padding: 20px 80px 20px 170px;
  }

  .wrapper-reglamento{
    padding: 20px 80px 20px 170px;
  }
  
  .wrapper-experiencia-delibera{
    padding: 50px 80px 50px 170px;
  }
  
  .wrapper-recursos{
    padding: 50px 80px 50px 170px;
  }
  
  .wrapper-mapa{
    padding: 20px 80px 20px 170px
  }
  
  .wrapper-noticias,
  .wrapper-torneos-anteriores,
  .wrapper-organizan {
    padding: 100px 80px 100px 170px;
  }
  
  .wrapper-inscripciones h2{
    font-size: 64px;
  }

  .wrapper-reglamento h2,
  .wrapper-experiencia-delibera h2{
    font-size: 64px;
  }
  
  .wrapper-mapa h2 {
    font-size: 64px;
  }
  
  .wrapper-inscripciones i{
    font-size: 75px;
  }

  .wrapper-reglamento i{
    font-size: 75px;
  }
  
  .wrapper-recursos h2{
    font-size: 64px;
  }
  
  .wrapper-recursos i{
    font-size: 75px;
  }
  
  .wrapper-noticias h2{
    font-size: 64px;
  }
  
  .wrapper-torneos-anteriores h2{
    font-size: 64px;
  }
  
  .wrapper-organizan h2{
    font-size: 64px;
  }
}

/*--------------------------------------------------------------
Se quita borde negro al momento de hacer click sobre el boton
--------------------------------------------------------------*/
.navbar-toggler:focus{
  box-shadow: none;
}

/*--------------------------------------------------------------
Ajuste de footer unificado
--------------------------------------------------------------*/
#footerContainer {
  margin-left: 50px;
}

@media only screen and (min-width: 768px) {
  #footerContainer {
    margin-left: 90px;
  }
}

/*--------------------------------------------------------------
Menu
--------------------------------------------------------------*/
.wrapper-hamburger{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 99999;
}

.wrapper-logo{
  text-align: center;
}

.wrapper-logo img{
  width: 40px;
}

.wrapper-contacto{
  text-align: center;
  transform: rotate(270deg);
}

.wrapper-contacto i{
  font-size: 20px;
}

.wrapper-contacto a{
  color: var(--color-text-body);
}

.wrapper-contacto a:hover,
.wrapper-contacto i:hover{
  color: var(--color-text-red);
}

.wrapper-contacto span{
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 14px;
  padding: 0 0 0 5px;
}

.label-hamburger{
  color: var(--color-text-body);
  transform: rotate(-90deg);
  margin: 10px 0 0 0;
  letter-spacing: 1px;
}

@media only screen and (min-width: 768px){
  .wrapper-logo img{
    width: 70px;
  }
  
  .label-hamburger{
    margin: 15px 0 0 0;
  }
}

.hamburger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  outline: inherit;
}

.hamburger i{
  font-size: 2rem;
  color: var(--color-text-body);
}

.closeIcon {
  display: none;
}

.menu-over {
  position: fixed;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.2s;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgb(255, 255, 255, 1);
  color: var(--color-text-body);
  list-style: none;
  padding-top: 4rem;
}

.menuItem {
  display: block;
  margin: 0 2rem 0 4rem;
  font-size: 2rem;
  line-height: 2.2rem;
  padding: 1rem 0;
  color: var(--color-text-body);
  text-decoration: none;
  border-bottom: 1px solid #000;
  font-weight: bold;
}

.menuitem:hover {
  text-decoration: none;
  color: #E44C4A;
}

@media only screen and (min-width:768px){
  .menuItem{
    margin: 0 2rem 0 8rem;
    font-size: 4rem;
    line-height: 4.2rem;
    padding: 1.5rem 0;
  }
}

.showMenu {
  transform: translateY(0);
}

/*--------------------------------------------------------------
Grilla de Torneos Anteriores
--------------------------------------------------------------*/
.torneos-anteriores-container {
  display: flex;
  flex-wrap: wrap;
}

.torneos-anteriores-item {
  border: 1px solid #ffffff;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 200;
  margin: .5rem .5rem 0 0;
  color: var(--color-text-white);
  text-decoration: none;
  transition: transform .2s;
}

.torneos-anteriores-item:hover{
  color: var(--color-text-white);
  transform: scale(1.1);
}

@media only screen and (min-width: 768px){
  .torneos-anteriores-item{
    width: 180px;
    height: 180px;
    font-size: 36px;
    margin: 1.5rem 1.5rem 0 0;
  }
}

.wrapper-despliegue{
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0 0 3rem;
}

.despliegue-noticia-destaca{
  margin: 2rem 0;
  padding: 2rem;
  background: #F6F6F7;
  border-radius: 1rem;
  border-left: 3px solid #E8E8EA;
}

.wrapper-logo-interior{
  padding: 0 0 1rem 0;
  display:flex;
  flex-direction: row;
  align-items: bottom;
}

.wrapper-logo-interior h1{
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  line-height: 50px;
  font-weight: 200;
}

.wrapper-logo-interior h1 span{
  color: #E44C4A;
  font-weight: 600;
}

@media only screen and (min-width: 768px){
  .wrapper-despliegue {
    width: 75%;
  }
  
  .wrapper-logo-interior {
    padding: 0 0 1rem 0;
  }
  
  .wrapper-logo-interior h1 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 60px;
    line-height: 60px;
    font-weight: 200;
  }
}

@media only screen and (min-width: 1200px) {
  .wrapper-despliegue {
    width: 60%;
  }
}

.wrapper-login{
  display: flex;
  flex-direction: column;
}

.wrapper-login .wrapper-login-left{
  background: url(/img/portada2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
}

.wrapper-login .wrapper-login-right{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 0 4rem;
}

.wrapper-links-form{
  display: flex;
  justify-content: space-between;
}

.wrapper-links-form a {
  text-decoration: none;
  color: #E44C4A;
}

.wrapper-links-form a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 992px){
  .wrapper-login{
    flex-direction: row;
    .wrapper-login-left {
      flex: 1 1 0;
      height: calc(100vh - 60px);
    }
    .wrapper-login-right {
      flex: 1 1 0;
    }
  }
}

.wrapper-torneo{
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 20px 70px;
}

@media only screen and (min-width: 768px){
  .wrapper-torneo {
    width: 90%;
    padding: 50px 80px 100px 170px;
  }
}

.table-torneo{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  td {
    height: 50px;
    vertical-align: middle;
    text-align: left;
    position: relative;
  }
  tbody {
    td{
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      &amp;:first-child {
        border-left: 1px solid #eee;
        padding-left: 10px;
      }
      &amp;:last-child {
        border-right: 1px solid #eee;
        padding-right: 10px;
      }
    }
  }
  img{
    width: 20px;
  }
  .primer-lugar{
    background: rgb(244, 199, 82, .1);
    td{
      border-top: 1px solid #F4C752 !important;
      border-bottom: 1px solid #F4C752 !important;
      &amp;:first-child {
        border-left: 1px solid #F4C752 !important;
      }
      &amp;:last-child {
        border-right: 1px solid #F4C752 !important;
      }
    }
  }
  .segundo-lugar{
    background: rgb(141, 153, 174, .1);
    td{
      border-top: 1px solid #8D99AE !important;
      border-bottom: 1px solid #8D99AE !important;
      &amp;:first-child {
        border-left: 1px solid #8D99AE !important;
      }
      &amp;:last-child {
        border-right: 1px solid #8D99AE !important;
      }
    }
  }
  .tercer-lugar{
    background: rgb(247, 127, 0, .1);
    td{
      border-top: 1px solid #F77F00 !important;
      border-bottom: 1px solid #F77F00 !important;
      &amp;:first-child {
        border-left: 1px solid #F77F00 !important;
      }
      &amp;:last-child {
        border-right: 1px solid #F77F00 !important;
      }
    }
  }
}

.table-torneo tr.child.hidden {
  display: none;
}
.parent{
  cursor: pointer;
}

.child td{
  background: #f7f7f7;
}

.lista{
  margin: 0;
  padding: 0;
  list-style: none;
}

.show{
  background: #e1e1e1 !important;
}

.wrapper-torneo-info{
  display: flex;
  flex-direction: column;
  padding: 0 0 3rem 0;
  div{
    flex: 1 1 0;
  }
}

@media only screen and (min-width: 768px){
  .wrapper-torneo-info{
    flex-direction: row;
  }
}

/*--------------------------------------------------------------
Sociales / Herramientas accesibilidad
--------------------------------------------------------------*/
.barra__herramientas {
  display: flex;
  flex-direction: column;
  justify-content: left;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
  margin: 1rem 0;
}

.barra-herramientas-izquierda{
  display: flex;
  flex-direction: column;
}

.barra-herramientas-izquierda .barra-herramientas-izquierda-sociales{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.barra-herramientas-izquierda .barra-herramientas-izquierda-sociales div{
  margin: 0 10px 0 0;
}

.barra-herramientas-izquierda .barra-herramientas-izquierda-sociales div i {
  font-size: 24px;
  display: block;
  margin: 3px 0 0 0;
}

.barra-herramientas-izquierda &gt; .readspeaker{
  margin: 10px 0 0 0;
}

.barra-herramientas-derecha {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 0 0;
}

@media only screen and (min-width: 768px){
  .barra__herramientas{
    flex-direction: row;
    justify-content: space-between;
  }

  .barra-herramientas-izquierda {
    flex-direction: row;
  }

  .barra-herramientas-izquierda &gt;.readspeaker {
    margin: 0 0 0 10px;
  }

  .barra-herramientas-derecha {
    padding: 0;
    justify-content: end;
  }
}

#visor{
  padding: 0 1rem 0 0;
}

#visor i{
  font-size: 18px;
}

#visor a{
  color: var(--color-text-body);
  font-size: 1rem;
  line-height: 0;
}

#contrasteSwitch{
  display: flex;
  flex-direction: row;
  cursor: pointer;
  margin: 0;
}

#manageFonts{
  display: none;
}

@media only screen and (min-width:992px){
  #manageFonts{
    display: block;
  }
}

/*--------------------------------------------------------------
Switch alto contraste
--------------------------------------------------------------*/
.switch {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 15px;
  top: 2px;
  margin: 0 0;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #7f888f;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 11px;
  width: 11px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

input:checked+.slider {
  background-color: #34cb4d;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(11px);
  -ms-transform: translateX(11px);
  transform: translateX(11px);
}

.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}

/*--------------------------------------------------------------
Grilla de Universidades
--------------------------------------------------------------*/
.wrapper-universidades {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 18px;
  grid-auto-rows: minmax(100px, auto);
}

.wrapper-universidades .universidad {
  color: var(--color-text-body);
  text-decoration: none;
  padding: 10px;
  text-align: center;
  transition: transform .2s;
}

.wrapper-universidades .universidad:hover {
  transform: scale(1.1);
}

.wrapper-universidades .universidad img{
  width: 90px;
}

@media only screen and (min-width: 768px){
  .wrapper-universidades{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (min-width: 992px){
  .wrapper-universidades{
    grid-template-columns: repeat(7, 1fr);
  }
}

/*--------------------------------------------------------------
Listado de noticias
--------------------------------------------------------------*/
.listado-noticias-item{
  display: flex;
  flex-direction: column;
  padding: 1.8rem 0;
  border-bottom: 1px dotted var(--background-black)
}

.listado-noticias-item img{
  width: 100%;
}

.listado-noticias-item .listado-noticias-texto{
  padding: 1rem 0 0 0;
}

@media only screen and (min-width: 768px){
  .listado-noticias-item{
    flex-direction: row;
  }
  
  .listado-noticias-item img {
    width: 250px;
  }
  
  .listado-noticias-item .listado-noticias-texto {
    padding: 0 0 0 1rem;
  }
}

/*--------------------------------------------------------------
Ajustes en el texto de PLone
--------------------------------------------------------------*/
.wrapper-despliegue p a &gt; img{
  width: 100% !important;
}

/*--------------------------------------------------------------
Selector region
--------------------------------------------------------------*/
.wrapper-selector{
  padding: 0 0 3rem 0; 
  /*display: flex;*/
}

.selector-region{
  width: 100%;
  height: 60px;
  padding: 0 1rem;
  font-size: 1.2rem;
}

.selector-region:focus{
  outline: none;
}

@media only screen and (min-width: 768px){
  .selector-region{
    width: 450px;
  }
}

.boton-region{
  width: 60px;
  height: 60px;
  border: 1px solid #000;
  margin: 0 0 0 -1px;
  background-color: #E44C4A;
  color: #fff;
}

/*--------------------------------------------------------------
Ajuste en elementos Plone
--------------------------------------------------------------*/
.wrapper-despliegue p &gt; iframe {
  width: 100% !important;
  min-height: 460px !important;
}

.wrapper-despliegue p &gt; strong iframe {
  width: 100% !important;
  min-height: 460px !important;
}

.wrapper-despliegue p &gt;  img {
  max-width: 80% !important;
  height: auto !important;
}

.wrapper-despliegue p &gt; strong img{
  max-width: 80% !important;
  height: auto !important;
}

/*--------------------------------------------------------------
Se oculta icono contacto
--------------------------------------------------------------*/
#unificado-contacto{
  display: none !important;
}

#arrow{
  transition: transform 0.3s ease;
}

.rotated {
  transform: rotate(180deg);
  /* Gira 180 grados */
}

/*--------------------------------------------------------------
Custom acordion reglamento
--------------------------------------------------------------*/

.accordion-button:not(.collapsed) {
  color: var(--color-text-body);
  background-color: var(--background-yellow);
  box-shadow: none;
}

.accordion-bg-body{
  background: var(--background-white);
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,&lt;svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'&gt;&lt;path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/&gt;&lt;/svg&gt;") !important;
}

/*--------------------------------------------------------------
Btn Visor
--------------------------------------------------------------*/
#visor-img {
  display: none;
  position: absolute;
  padding: 7px;
  background: #333;
  border-radius: 5px;
  transform: translate(-40%, -110%);
  z-index: 99999;
}

#visor-img img{
  width: 280px;
}

#visor-img::before{
  content: '';
  border-top: 20px solid #333;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-40%, 0%);
}

/*--------------------------------------------------------------
Contenedor de sdelector de Torneos Regionales stream
--------------------------------------------------------------*/
.wrapper-finales-regionales{
    height: 50px;
    background: var(--background-black);
    color: var(--color-text-white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 .5rem 0 0;
    
    margin: 0 0 0 50px;
}

#torneos-regionales{
    width: auto;
    height: 50px;
    padding: 0 .5rem;

    background-color: #171e21;
    color: var(--color-text-white);
    outline: none;
    border: none;
}

#torneos-regionales option{
  color: var(--color-text-body);
}


.wrapper-finales-regionales-texto{
    display: flex;
}

.wrapper-finales-regionales-texto span{
    display: flex;
    align-items: center;
}

.wrapper-finales-regionales-texto span i{ 
    padding: 0 .25rem 0 0;
}

.video-youtube-vh{
    height: 35vh !important;
}

.video-youtube iframe{
    width: calc(100% - 50px);
    height: 30vh;
    margin: 0 0 0 50px ;
}

@media only screen and (min-width: 768px){
    .wrapper-finales-regionales{
        margin: 0 0 0 90px;
    }

    .wrapper-finales-regionales-texto span:first-child span{
        display: flex;
    }

    .video-youtube iframe{
        width: calc(100% - 90px);
        height: 60vh;
        margin: 0 0 0 90px ;
    }

    .video-youtube-vh{
      height: 65vh !important;
  }
}

/* Grilla de videos en portada */
.grid-videos-youtube{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: .5rem;
  padding: .5rem;
  width: calc(100% - 50px);
  height: auto;
  background-color: #000;
}

.item-videos-youtube{
  width: 100%;
  height: 100%;
}

.item-videos-youtube iframe{
  width: 100%;
  height: 100%;
}

.video-header{
  display: flex;
  justify-content: right;
}

@media only screen and (min-width: 768px){
  .grid-videos-youtube{
    grid-template-columns: repeat(1, 1fr);
    grid-gap: .5rem;
    padding: .5rem;
    width: calc(100% - 90px);
    height: 65vh;
    background-color: #000;
  }

  .item-videos-youtube{
    width: 100%;
    height: 100%;
  }

  .item-videos-youtube iframe{
    width: 100%;
    height: 100%;
  }

  .video-header{
    display: flex;
    justify-content: right;
  }
}

.inscripciones-set{
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CONTADOR */
.flip-clock {
  text-align: center;
  perspective: 400px;
  /* margin: 20px auto; */
}

.flip-clock *,
.flip-clock *:before,
.flip-clock *:after {
  box-sizing: border-box;
}

.flip-clock__piece {
  display: inline-block;
  margin: 0 5px;
}

.flip-clock__slot {
  font-size: 1rem;
}

.card-item {
  display: block;
  position: relative;
  padding-bottom: 0.75em;
  font-size: 2.5rem;
  line-height: 0.95;
}

@media only screen and (min-width: 768px){
  .flip-clock__slot {
    font-size: 1rem;
  }

  .card-item {
    font-size: 3rem;
  }
}

.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
  display: block;
  height: 0.72em;
  color: #ccc;
  background: #222;
  padding: 0.25em 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visiblity: hidden;
  transform-style: preserve-3d;
  width: 1.8em;
  transform: translateZ(0);
}

.card__bottom {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px #000;
  background: #393939;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}

.card__bottom::after {
  display: block;
  margin-top: -0.72em;
}
.card__back::before,
.card__bottom::after {
  content: attr(data-value);
}
.card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}
.card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.flip .card__back::before {
  -webkit-animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
          animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  transform-origin: center bottom;
}
.flip .card__back .card__bottom {
  transform-origin: center top;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
          animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}
@-webkit-keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%,
  99% {
    opacity: 0.99;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%,
  99% {
    opacity: 0.99;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@-webkit-keyframes flipBottom {
  0%,
  50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}
@keyframes flipBottom {
  0%,
  50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}</pre></body></html>