.cb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }

  .popup-card {
    position: relative;
    background: url('../images/modal-bg-min.jpg') no-repeat center;
    background-size: cover;
    width: 80%;
    max-width: 800px;
    min-height: 428px;
    padding: 60px 97px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cb-close {
    position: absolute;
    top: 15px;
    right: 19px;
    background: url("../images/close-icon.svg") no-repeat center;
    background-size: cover;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    filter: invert(1);
    transition: all .3s;
  }

  .cb-close:hover {
    background-image: url("../images/close-icon-hover.svg");
    filter: none;
  }

  .alert-heading {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-top: 24px;
    color: #fff;
    font-family: 'SupremeLL-BoldFlat';
  }

  .alert-heading span{
    color: #F99;
    letter-spacing: 1px;
  }

  .alert-message {
    color: #fff;
    padding: 10px 0 40px;
    font-size: 16px;
    line-height: normal;
    font-family: 'SupremeLL-Regular';
  }

  /* Button */
  .instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00ff00;
    color: #000;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    font-family: 'SupremeLL-BoldFlat';
    min-width: 270px;
    height: 60px;
  }

  .instagram-btn img {
    margin-right: 8px;
    width: 20px;
  }

  .alert-icon {display: flex;align-items: center;justify-content: center;}
  /* .cb-modal-open .news-ticker {
    background: linear-gradient(90deg, #E73324 0%, #E933A8 100%);
  } */

  @media only screen and (max-width: 1200px) {
    .popup-card {
      padding: 40px;
    }
  }
  @media only screen and (max-width: 779px) {
    .popup-card {
      padding: 320px 16px 50px 16px;
      background: url('../images/Modal-mob-min.jpg') no-repeat center;
      max-width: 350px;
    }
    .alert-message {
        padding: 10px 0 24px;
        text-align: center;
        font-size: 46px !important;
    }
    .alert-heading {
        font-size: 12px;
        text-align: center;
    }
    .alert-heading span {
      display: block;
      letter-spacing: normal;
    }
    
  }