<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  #asean_consumer_overlay{
      display: none;
      position: fixed;
      z-index: 1998;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      min-height: 550px;
      overflow: hidden;
      background-color: rgba(0, 0, 0, 0.7);
  }

  #asean_consumer.modal {
    position: absolute;
    display: none;
    z-index: 1999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 550px;
  }

  #asean_consumer.modal .modal-content {
    font-family: "Noto Sans Light",sans-serif;
    color: #0060B9;
    background-image: url('/assets/web-resources/asean-insights/images/desktop-background.jpg'); /* Replace the image with the URL or file path of your desired background image */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    padding: 15px;
    border: 0px;
    max-width: 900px; /* Set a maximum width for desktop screens */
    width: 90%; /* Set a default width for larger screens */
    min-height: 500px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #asean_consumer.modal .modal-content h1{
    margin-bottom: 0px;
    font-size: 32px;
    font-weight: bold;
  }
  #asean_consumer.modal .modal-content h2{
    margin-top: 5px;
    margin-bottom: 25px;
    font-weight: 400;
  }

  #asean_consumer.modal .modal-content p{
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
  }
  #asean_consumer.modal .modal-content .content-wrapper{
    padding: 20px 30px;
    width: 85%;
  }

  #asean_consumer.modal .btn-link{

    background-color: #0060B9;
    border: 2px solid #0060B9;
    padding: 15px 25px;
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
  }

  #asean_consumer.modal .btn-link:hover{

    background-color: #ffffff;
    border: 2px solid #0060B9;
    padding: 15px 25px;
    border-radius: 15px;
    color: #0060B9;
    text-decoration: none;
    font-weight: 600;
  }

  .mt-20{
    margin-top: 20px;
  }
  .pt-20{
    padding-top: 20px;
  }

  #asean_consumer.modal .close {
    color: #0060B9;
    position: absolute;
    font-size: 40px;
    font-weight: 500;
    right: 25px;
    top: 15px;
    text-shadow: none;
  }

  #asean_consumer.modal .close:hover,
  #asean_consumer.modal .close:focus {
    color: #2483df;
    text-decoration: none;
    cursor: pointer;
  }

  @media screen and (max-width: 600px) {

    #asean_consumer.modal .modal-content .content-wrapper{
      padding: 20px 30px;
      padding-top: 80px;
      width: fit-content;
    }

    #asean_consumer.modal .modal-content {
        background-image: url('/assets/web-resources/asean-insights/images/mobile-background.jpg'); /* Replace the image with the URL or file path of your desired background image */
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
        margin: 15% auto;
        padding: 20px;
        border: 0px;
        max-width: initial; /* Set a maximum width for desktop screens */
        width: 90%; /* Set a default width for larger screens */
        /* min-height: 620px; */
      }

      #asean_consumer.modal .modal-content h1{
        font-size: 22px;
      }
      #asean_consumer.modal .modal-content h2{
        font-size: 20px;
      }

      #asean_consumer.modal .modal-content p {
        font-weight: 400;
        line-height: 1.5;
        font-size: 14px;
      }

    #asean_consumer.modal .modal-content {
      margin: 0% auto;
      padding: 10px;
      width: 90%;
    }
  }


  @media (max-height: 550px) {
    #asean_consumer.modal .modal-content {
      top: 15px;
      left: 50%;
      transform: translate(-50%, 0%);
    }
  }

  @media (max-height: 350px) {
    #asean_consumer.modal .modal-content {
      top: 15px;
      position: relative;
    }
  }


  /* By default, show the desktop content and hide the mobile content */
.desktop {
  display: block;
}
.mobile {
  display: none;
}

/* When the screen size is 768 pixels or smaller, hide the desktop content and show the mobile content */
@media screen and (max-width: 768px) {
  .desktop {
      display: none;
  }
  .mobile {
      display: block;
  }
}
</pre></body></html>