.banner_mobile {
    display: none;
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    width: 100%;
    background: #000 !important;
    color: white;
    padding: 8px 12px 24px 12px;
    padding-top: 16px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .banner_mobile {
      max-width: 100vw;
      border-radius: 0;
      padding-bottom: 32px;
    }
  }
  
  .banner_mobile .banner-content {
      width: 100%;
      position: relative;
      display: block;
      max-width: 100%;
      margin: auto;
  }
  
  .banner_mobile .banner-text h3 {
      margin: 0;
      font-size: 22px;
      line-height: 26px;
      color: rgb(255 255 255);
      margin-bottom: 4px;
  }
  
  .banner_mobile .banner-text p {
      margin-bottom: 4px;
      font-size: 14px;
      padding-bottom: 6px;;
  }
  
  .banner_mobile a {
      background-color: #df1717 !important;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 400;
      text-decoration: none;
      width: 100%;
      display: block;
      text-align: center;
      box-sizing: border-box;
      margin-bottom: 8px;
  }
  
  .banner_mobile .close-banner {
      position: absolute;
      top: 16px;
      right: 16px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1100;
      display: flex;
      align-items: center;
      justify-content: center;
  }