.rizo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 9999;
  }
  
  .rizo-popup {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    max-height: 400px;
    position: relative;
    overflow: hidden;
  }
  
  .rizo-popup-content {
    display: flex;
    flex-direction: column;
    height: 29rem;
    max-height: 390px;
    
  }
  
  .rizo-popup-text span{
    color: #1F5555;
    font-weight: 900;
  }
  .rizo-popup-span {
    padding: 1rem;
    width: 79%;
  }
  .rizo-popup-text h2 {
    color: #1F5555;
    font-size: 1.4rem;
    margin: 0 0 3rem;
    font-weight: 900;
    font-family: system-ui, -apple-system, sans-serif;
    text-align: center;
    line-height: normal;
  }
  .rizo-popup-close-container{
    top: 10px;
    right: 10px;
    position: absolute;
    z-index: 1;
    cursor:pointer;
    padding: 0.5rem;
    }
  
  .rizo-popup-text p {
    margin: 0 0 2rem;
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
  }
  
  .rizo-popup-btn {
    background-color: #1F5555;
    color: white!important;
    border: none;
    padding: 0.50rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none!important;
    transition: background-color 0.3s ease;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
    width: 60%;
    text-align: center;
  }
  
  .rizo-popup-btn:hover {
    background-color: #276C6C;
  }
  .rizo-popup-text {
      width: 79%;
      padding: 1rem;
      padding-top:4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  .rizo-popup-image {
    width: 79%;
    background-image: url('/themes/bolivia/images/comex-popup0.jpg');
    background-size: contain;
    background-position: center;
    background-repeat:no-repeat;
    height: 100%;
    min-height: 300px;
  }
  
  .rizo-popup-close {
   fill: rgba(84, 169, 221, 1);
    height: 17px;
    width: 17px;
  }
  @media (max-width: 768px) {
    .rizo-popup {
      max-width: 100%; /* Ancho máximo para pantallas pequeñas */
      width: 100%;
      border-radius: 20px; /* Elimina bordes redondeados */
    }
  
    .rizo-popup-text h2 {
      font-size: 2rem; /* Reduce tamaño de fuente */
    }
    .rizo-popup-text {
      width: 100%;
    }
    .rizo-popup-text p {
      font-size: 1.5rem;
      width: 100%;
    }
  
    .rizo-popup-btn {
      font-size: 1rem;
      padding: 1rem;
      width: 75%;
      margin-bottom: 2rem;
    }
    .rizo-popup-content {
      height: auto;
    }
    .rizo-popup-image {
      height: 150px;
      background-size: cover;
      display: none; /* Reduce altura de la imagen */
    }
  }
  @media (max-width: 360px) {
    .rizo-popup-text {
      padding-top:1rem;
    }
  }
  @media (min-width: 768px) {
    .rizo-popup-content {
      flex-direction: row;
    }
    
    .rizo-popup-text {
      width: 79%;
      padding: 1rem;
      padding-top:4rem;
    }
    
    .rizo-popup-image {
      min-height: auto;
      
    }
  }