#pushNotification_ad {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Fondo negro con transparencia */
    display: none;
    font-family: 'Open Sans', sans-serif;
    z-index: 99999;
  }
  
  .pushNotification_ad-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .pushNotification_ad-modal {
    background-color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    /* Limitar el tamaño en pantallas grandes */
    margin: 10px;
    /* Espaciado en pantallas pequeñas */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  
  }
  
  .pushNotification_ad-header {
    background: #f9b233;
    padding: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .pushNotification_ad-header__logo {
    text-align: left;
    padding: 10px 0 0 10px;
  }
  
  .pushNotification_ad-header__bgimg {
    text-align: right;
  }
  
  .pushNotification_ad-header__bgimg img {
    width: 80%;
    margin-bottom: -5rem;
    margin-top: -2rem;
    max-width: 320px;
  }
  
  .pushNotification_ad-logo {
    width: 120px;
  }
  
  .pushNotification_ad-promo-section {
    background-color: #f4f4f4;
    padding: 15px;
    text-align: center;
  }
  
  .pushNotification_ad-promo-image {
    width: 100%;
    height: auto;
  }

.pushNotification_ad-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 1%;
  width: 98%;
  right: 1%;
}
  
  .pushNotification_ad-chrome {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-items: auto;
    flex-wrap: wrap;
  }
  
  .pushNotification_ad-chrome__left {
    width: 70%;
    font-size: 12px;
    text-align: left;
    line-height: initial;
  }
  
  .pushNotification_ad-chrome__left p {
    line-height: initial;
    margin-bottom: 5px;
  }
  
  .pushNotification_ad-chrome__right {
    width: 30%;
  }
  
  .pushNotification_ad-chrome__right img {
    width: calc(100% - 1rem);
    max-width: 120px;
    padding: 0.5rem;
  }
  
  .pushNotification_ad-chrome__top {
    width: 100%;
    margin-right: 10px;
  
    width: 100%;
    margin-right: 10px;
    text-align: left;
    font-size: 9px;
    margin-bottom: 0.2rem;
    color: gray;
  
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
  
  .pushNotification_ad-chrome__top svg {
    margin-right: 0.5rem;
  }
  
  .pushNotification_ad-chrome-text {
    font-size: 14px;
  }
  
  .pushNotification_ad-congrats {
    font-weight: bold;
    color: #333;
  }
  
  .pushNotification_ad-content {
    padding: 15px;
    text-align: center;
    color: #333;
  
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  
    min-height: 20vh;
    font-size: 1.6rem;
  }
  
  .pushNotification_ad-sample-request {
    margin-top: 15px;
  }
  
  .pushNotification_ad-sample-request p {
    font-size: 14px;
    color: #666;
  }
  
  .pushNotification_ad-sample-button {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
  }
  
  .pushNotification_ad-buttons {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }
  
  .pushNotification_ad-allow-button {
    background-color: #28a745;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
  }
  
  .pushNotification_ad-deny-button {
    background-color: #f5f5f5;
    color: #333;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Estilos para pantallas pequeñas (móviles) */
  @media (max-width: 768px) {
    .pushNotification_ad-modal {
      width: 100%;
      /* Abarca todo el ancho de la pantalla */
      margin: 0;
      border-radius: 0;
      /* Sin bordes redondeados para móviles */
      height: 100vh;
      overflow-y: auto;
    }
  
    .pushNotification_ad-modal {
      max-width: 100%;
    }
  }