/* --------------------------- */
/* FONTS                       */
/* --------------------------- */

@font-face {
    font-family: 'relaybold';
    src: url('/assets/fonts/relay-bold-webfont.eot');
    src: url('/assets/fonts/relay-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/relay-bold-webfont.woff2') format('woff2'),
         url('/assets/fonts/relay-bold-webfont.woff') format('woff'),
         url('/assets/fonts/relay-bold-webfont.ttf') format('truetype'),
         url('/assets/fonts/relay-bold-webfont.svg#relaybold') format('svg');
  }
  
  @font-face {
    font-family: 'relayblack';
    src: url('/assets/fonts/relay-black-webfont.eot');
    src: url('/assets/fonts/relay-black-webfont.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/relay-black-webfont.woff2') format('woff2'),
         url('/assets/fonts/relay-black-webfont.woff') format('woff'),
         url('/assets/fonts/relay-black-webfont.ttf') format('truetype'),
         url('/assets/fonts/relay-black-webfont.svg#relayblack') format('svg');
  }
  
  @font-face {
    font-family: 'relaymedium';
    src: url('/assets/fonts/relay-medium-webfont.eot');
    src: url('/assets/fonts/relay-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/relay-medium-webfont.woff2') format('woff2'),
         url('/assets/fonts/relay-medium-webfont.woff') format('woff'),
         url('/assets/fonts/relay-medium-webfont.ttf') format('truetype'),
         url('/assets/fonts/relay-medium-webfont.svg#relaymedium') format('svg');
  }
  
/* --------------------------- */
/* GLOBAL STYLES               */
/* --------------------------- */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  
body {
    font-family: 'relaymedium', 'Arial', sans-serif;
    background: #F6F6ED;
    margin: 0;
    padding: 0;
    text-align: center;
}
  
h1{
  font-size: 1.75rem;
}

a {
  text-decoration: none;
  color: #fff;
  margin: 20px;
}

/* --------------------------- */
/* HEADER                      */
/* --------------------------- */

  
.lp-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  top: 0;
  background: #B09E33;
  width: 100%;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 120px;
}

.logo {
  max-height: 50px;
}

.burger-menu {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
  cursor: pointer;
}

.burger-icon {
  width: 25px;
  height: 17px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}
    
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.modal-content p {
  margin: 0;
}

.title {
  margin-top: 20px;
}

.intro {
  max-width: 500px;
  margin: 25px auto;
  margin-top: 120px;
}

.intro > p {
  font-size: 1.2rem;
  color: #b39623;
  font-weight: lighter;
} 

.intro > h1 {
  color: #000;
  margin-top: 20px;
  text-transform: uppercase;
}

.intro-ganadores-2025 {
  margin-top: 100px;
}

.intro-ganadores-2025 > h1 {
  margin-bottom: 50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 90px;
}

.categorias-grid {
  display: grid;
  padding: 20px;
  justify-content: center;
}

.candidatos-grid {
  display: grid;
  padding: 20px;
  justify-content: center;
}

.grid-item {
  background: #B09E33;
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.grid-item:hover {
  transform: scale(1.05);
  border: #000 8px solid;
  transform-origin: center center;
}

.cat-name {
  color: white;
  background: black;
  padding: 10px;
  margin: 15px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  text-align: center;
  min-height: 20px; 
  transition: opacity 0.3s ease-in-out;
}

.grid-item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.grid-item-container:hover .cat-name {
  visibility: visible;
  opacity: 1;
}

/* mobile */
  
@media (max-width: 767px) {
  .container {
    margin-top: 40px;
  }

  .categorias-grid { grid-template-columns: repeat(3, 3fr); }
  .candidatos-grid { 
    grid-template-columns: repeat(1, 1fr); 
    margin-bottom: 150px;
  }

  .ganadores-grid { 
    margin-bottom: 150px;
  }

  .card-container > .card {
    margin: 0 auto;
  }

  .card-container {
    display: flex;
    justify-content: center;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr)!important;
    /* gap: 10px; */
    /* margin-bottom: 200px; */
    margin-bottom: 100px!important;
  }

  .gallery-grid > img {
    width: 300px!important;
    height: 300px!important;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto!important;
  }

  .card-image {
    position: relative;
    /* width: 24vw;
    height: 18vh; */
    /* width: 250px!important;
    height: 250px!important; */
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .video-background {
    margin-top: 0 !important;;
    height: 400px!important;
  }

  .card-container{
    /* margin: 0 auto; */
    margin: 40px;
  }

  .card-content {
    top: 70%!important;
    left: 20%!important; 
    width: 250px!important;
  }
  
  .cat-name {
    visibility: visible !important;
    opacity: 1 !important;
  }    
  .intro > p {
    font-size: 0.9rem;
    padding: 10px;
  }

  .footer-buttons{
    margin: 0 0 5px 0!important;
  }

  .seleccionado, .votar, .borrar {
    padding: 10px!important;
    font-size: 0.75rem!important;
  }
  
  .footer-intro {
    margin: 5px!important;
  }

  .intro {
    margin-top: 85px;
  }

  .intro > h1 {
    margin-top: 0!important;
    font-size: 1.35rem;
  }

  .lp-header > h1 {
    margin: 0;
  }

  .footer-legal-text {
    font-size: 0.75rem!important;
    font-weight: lighter!important;
    text-transform: uppercase;
  }

  .footer-bottom {
    background-color: #000;
    color: white;
    display: grid!important;
    margin: 0 auto;
    align-items: center;
    gap: 10px;
    padding: 50px;
  }

  .footer-legal-text {
    padding-bottom: 30px;
  }
  
  .footer-logo-2 {
    width: 100%!important;
    max-width: 350px!important;
    margin: 20px auto;
  }

  #categoria-descripcion {
    max-width: 350px!important;
  }

  .category-icon{
    width: 40px!important;
    height: 40px!important;
  }

  .back-icon {
    margin-left: 5px;
  }

  h1#categoria-nombre {
    text-align: left;
  }

  #candidato-descripcion {
    margin: 10px;
    padding: 20px!important;
  }

  .lp-header > .header-links {
    display: none;
    visibility: none;
  }

  .lp-header {
    justify-content: center;
    padding: 0;
    position: relative;
  }

  .countdown {
    font-family: 'relaybold', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
  }

  #days, #hours, #minutes, #seconds {
    font-size: 4rem;
    font-weight: bold;
    color: #B09E33;
  }
  
  .countdown p, .counter-title  {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  #countdown {
    justify-content: center;
    align-items: center;
  }
  
  #countdown h1{
    text-transform: uppercase;
    font-size: 1.5rem;
    background-color: #B09E33;
    padding: 10px;
  }
  
  #timer p{
    font-size: 1rem;
    /* font-weight: bold;
    color: #B09E33;
    margin: 30px 0; */
  }
  
  .candidatos-gallery {
    flex: 1;
    /* max-height: 300px!important; */
    min-width: 300px!important;
    /* overflow-x: block!important; */
    display: grid;
    grid-template-columns: repeat(1, 1fr)!important;
    gap: 10px;
    margin-bottom: 50px;
  }


  .category-container {
    margin-top: 0!important;
  }

  #board-section {
    background-position: center!important;
   }

   /* 6th addition */

  .carousel {
    margin: 0 auto;
    max-width: 80%;
  }

  .carousel-cell {
    width: 66%;
    height: 150px; /* Ensure each carousel cell has a fixed height */
    margin-right: 10px;
    border-radius: 5px;
    counter-increment: carousel-cell;
    display: flex;
    justify-content: center; /* Horizontally centers the image */
    align-items: center; /* Vertically centers the image */
    overflow: hidden; /* Ensures image doesn't overflow the cell */
  }

  .carousel-cell img {
    max-width: 100%; /* Ensures image width adjusts to the cell */
    max-height: 100%; /* Ensures image height adjusts within the fixed height */
    object-fit: contain; /* Ensures images scale without distortion */
    border-radius: 5px;
    padding: 20px;
  }

  /* .footer-bottom {
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
  } */

  .detalle-candidato {
    padding: 10px;
    margin: 10px;
  }

  #detalle-imagen {
    margin-bottom: 20px;
  }

  #detalle-descripcion {
    margin-bottom: 20px;
  }

}
  
  /* tablet */
  
@media (min-width: 768px) {
    .categorias-grid { grid-template-columns: repeat(4, 1fr); }
    .candidatos-grid { grid-template-columns: repeat(3, 1fr); }

    .ganadores-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 20px;
      padding-left: 65px;
      padding-bottom: 100px;
    }

    .carousel-cell {
      width: 66%;
      height: 150px;
      margin-right: 10px;
      border-radius: 5px;
      counter-increment: carousel-cell;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
  
    .carousel-cell img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 5px;
      padding: 20px;
    }

    .candidatos-gallery {
      flex: 1;
      max-height: 600px;
      min-width: 600px;
      overflow-y: auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin: 20px;
      padding: 20px;
    }

    .footer-legal-text {
      font-size: 0.75rem!important;
      font-weight: lighter!important;
      text-transform: uppercase;
    }
  
    .footer-bottom {
      background-color: #000;
      color: white;
      display: grid!important;
      margin: 0 auto;
      align-items: center;
      gap: 10px;
      padding: 50px;
    }
  
    .footer-logo-2 {
      width: 100%!important;
      max-width: 300px;
      margin: 20px auto;

    }
}
  
/* desktop */
  
@media (min-width: 1024px) {
  .grid-item-container {
    margin: 10px 0 10px 0;
  }

  .categorias-grid { 
    grid-template-columns: repeat(4, 200px);
    justify-content: center;
  }
  
  .candidatos-grid { 
    grid-template-columns: repeat(3, 1fr); 
    margin: 0 10px 0 10px;
    max-width: 1200px;
    padding-left: 140px;
    margin-bottom: 200px;
  }
  .ganadores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
    padding-left: 65px;
    padding-bottom: 100px;
  }

  /* Styling the gallery container */
  .gallery-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  /* Left gallery - making it scrollable */
  .candidatos-gallery {
    flex: 1;
    max-height: 600px;
    min-width: 600px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #detalle-imagen {
    max-width:600px;
    height: 400px;
    border-radius: 40px;
    padding: 20px;
  }

  .detalle-candidato h3 {
    font-size: 1.5rem;
    color: #333;
  }

  .detalle-candidato p {
    max-width: 560px;
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
  }

  .detalle-candidato a {
    color: #007bff;
    text-decoration: none;
  }

  .card-content p {
    font-size: 0.9rem;
    color: #666;
  }

  .carousel-cell {
    width: 66%;
    height: 150px;
    margin-right: 10px;
    border-radius: 5px;
    counter-increment: carousel-cell;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .carousel-cell img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    padding: 20px;
  }

  .footer-bottom {
    background-color: #000;
    color: white;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
  }
  
  .footer-logo-1 {
    width: 12%;
    height: 15%;
    max-height: 50px;
    width: auto;
  }
  
  .footer-logo-2 {
    width: 14%;
    min-width: 100px;
    height: auto;
    max-width: 300px;
  }
  
  .footer-legal-text {
    text-transform: uppercase;
    font-size: 0.6rem;
  }
  
  
}

#board-section {
  margin: 0 auto;
  background: url('/assets/imagenes/fondos/bg-board.png'), #B09E33;
}

#board {
  margin: 0 auto;
  max-width: 900px;
}

.intro-board > h1{
  padding-top: 100px;
  padding-bottom: 30px;
  color: #fff
}

/* .ganadores-grid {
  display: grid;
  padding-bottom: 150px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-left: 65px;
}

.ganadores-grid > :last-child {
  grid-column: 2;
} */

/* .categorias-grid > :nth-last-child(2) { 
  grid-column: 2;
}

.categorias-grid > :last-child {
  grid-column: 3;
}

.categorias-grid > :last-child p {
  background-color:#B09E33;
  color: #000;
  border-radius: 0;
}

.categorias-grid > :last-child img {
  display: none;
  visibility: hidden;
} */

.ganadores-grid .card {
  margin-bottom: 70px;
}

.ganadores-grid a {
  margin: 0;
  padding: 0;
}

.ganadores-card {
  width: 200px!important;
  height: 280px!important;
}

.ganadores-card-content {
  top: 70%!important;
  left: 30%!important;
}

.image-card {
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-card p {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
}

.footer {
  background-color: #F6F6ED;
}

.alianzas > h1 {
  margin-top: 50px;
}

.footer-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  padding: 50px 0;
}

.footer-intro {
  color: #b39623;
  font-size: 1rem;
  margin: 10px;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 5px 0!important;
}

.footer-buttons .seleccionado {
  background: #b39623;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: 'relaymedium';
  font-weight: lighter;
  text-transform: uppercase;
}

.footer-buttons .votar, .footer-buttons .borrar {
  background: #000;
  color: #997f17;
  border: none;
  border-radius: 25px;
  padding: 10px;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: 'relaymedium';
  font-weight: lighter;
  text-transform: uppercase;
}
  

.footer-black {
  background-color: #000;
  color: white;
  padding: 50px 0;
}


.card {
  position: relative; 
  width: 70%; 
  margin: 20px 0 70px 0; 
  cursor: pointer;
}

.card-content {
  position: absolute;
  top: 60%;
  left: 10%; 
  width: 200px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); 
  padding: 15px;
  text-align: center;
}

.card-image {
  width: 180px; 
  height: 180px; 
  overflow: hidden;
  border-radius: 15px;
}

.card-image img {
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  object-position: center; 
  max-height: unset; 
}

.card-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 8px 0;
  color: #000;
}

.card-subtitle {
  font-size: 0.875rem;
  color: #B09E33;
  margin: 4px 0 12px;
}

.divider {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 12px 0;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vote-button {
  background-color: #000;
  text-transform: uppercase;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.75rem;
}

.vote-button:hover {
  background-color: #444;
}

.read-more {
  color: #000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: lighter;
}

.read-more:hover {
  color: #555;
}

.read-more::after {
  content: " →";
}


.categoria-imagen {
  background: #B09E33;
  color: white;
  height: 68px;
  width: 68px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

#categorias{
  padding: 0 10px 0 20px;
  margin-bottom: 100px;
}

.categoria-texto {
  font-family: 'relaymedium';
  font-weight: 100;
  color: white;
  padding: 10px;
  /* margin: 15px; */
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.7rem !important;
  text-transform: uppercase;
}

.gallery-container {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 200px;
}

.gallery-grid img {
  width: 240px;
  height: 240px;
  border-radius: 5px;
  object-fit: cover;
  margin: 10px;
}

#candidato-nombre {
  margin: 20px;
  border-radius: 10px;
  font-size: 1.5rem;
}

#candidato-imagen {
  max-width:70%;
  margin: 0 auto;
}

#categoria-descripcion {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
}

#candidato-descripcion {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 40px;
}

#candidato-descripcion p {
  font-size: 1rem;
  font-weight: lighter;
  text-align: left!important;
}

.category-container {
  display: flex;
  align-items: center; 
  justify-content: center;
  text-align: center;
  gap: 10px; 
  width: 100%;
  margin: 0 auto;
  margin-top: 150px;
}

.category-icon {
  background-color: #c2a24b; 
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-icon img {
  visibility: hidden; 
  width: 30px;
  height: auto;
}

.category-icon img.loaded {
  visibility: visible; 
}

#categoria-nombre {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  max-width: 300px;
  text-align: left;
}

#voto-final{
  margin: 10px;
}

.vote-summary {
  margin-top: 75px;
  margin-bottom: 100px;
}

.video-background {
  height: 800px;
  margin: 0 auto;
  margin-top: 120px;
  object-fit: cover;
  z-index: -1;
  background-color: #000;
}
.video-background iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* Second edit */

.gastrolab-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-container {
  width: 100%;
  background-color: #000;
  position: relative;
  padding-bottom: 56.25%; 
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.awards-bg {
  background-color: rgba(30, 30, 30, 0.3);
  background-image: url('/assets/imagenes/fondos/bg_espana.jpg'); 
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  margin: 0 auto;
  padding: 100px 0;


}
.awards-bg-2 {
  background-color: rgba(30, 30, 30, 0.3);
  background-image: url('/assets/imagenes/fondos/fondo_espana.jpg'); 
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  margin: 0 auto;
  padding: 100px 0;

}

.awards-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.awards-title {
  font-family: 'relaymedium', 'Arial', sans-serif;
  font-size: 2.15rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.awards-title span {
  font-weight: 300;
  color: #fff;
}

.awards-subtitle {
  font-family: 'relaymedium', 'Arial', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
}

.awards-description {
  font-family: 'relaymedium', 'Arial', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.awards-welcome {
  font-family: 'relaymedium', 'Arial', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .awards-title {
    font-size: 2rem;
  }
  
  .awards-subtitle {
    font-size: 1.2rem;
  }
  
  .awards-description {
    font-size: 1rem;
  }
  
  .awards-welcome {
    font-size: 1.1rem;
  }
  
  .awards-bg {
      padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .awards-title {
    font-size: 1.6rem;
  }
  
  .awards-subtitle {
    font-size: 1rem;
  }
  
  .awards-description {
    font-size: 0.9rem;
  }
  
  .awards-welcome {
    font-size: 1rem;
  }
  
  .awards-bg {
    padding: 30px 10px;
  }
}

/* third addition */


@media (max-width: 767px) {
  .gallery-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .candidatos-gallery {
    grid-template-columns: repeat(1, 1fr);
    max-height: auto;
    width: 100%;
  }

  .gallery-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  #detalle-imagen {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .detalle-candidato {
    text-align: center;
    padding: 10px;
  }

  .detalle-candidato h3 {
    font-size: 1.2rem;
  }

  .detalle-candidato p {
    font-size: 0.9rem;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* countdown */

.countdown {
  font-family: 'relaybold', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}
.countdown span {
  font-size: 6rem;
  color: #000;
}
.countdown p, .counter-title  {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
}

#countdown {
  justify-content: center;
  align-items: center;
}

#countdown h1{
  text-transform: uppercase;
  font-size: 1.5rem;
  background-color: #B09E33;
  padding: 10px;
}

#timer{
  font-size: 6rem;
  font-weight: bold;
  color: #B09E33;
  margin: 30px 0;
}

.spacer {
  margin: 0 20px;
}

.counter-title {
  margin: 10px;
}

.logo-premios-gl-awards {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 40px;
}

div.category-card:nth-child(14) > div:nth-child(1) > p:nth-child(2) {
  font-size: 1.2rem!important;
  font-weight: bold;
}

div.category-card:nth-child(13) p {
  display: none;
  visibility: hidden;
}

/* div.category-card:nth-child(13) {
  display: none;
  visibility: hidden;
} */

.lp-header {
  background-color: #B09E33;
  transition: background-color 0.3s ease-in-out;}

.lp-header.black-header {
  background-color: black !important;
}

/* fourth addition */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  /* width: 100%;
  height: 100%; */
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  padding-top: 60px;
}

.modal-content {
  background-color: rgba(0, 0, 0, 0);
  /* margin: 5% auto; */
  /* padding: 20px; */
  /* border: 1px solid #888; */
  /* width: 100vw; */
}

.modal-content p {
  padding: 10px;
}

.modal-link {
  font-size: 1.2rem;
  text-transform: uppercase;
}

#close-modal {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}

#close-modal:hover,
#close-modal:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}