input, button, select, optgroup, textarea {
    margin: 10px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
}

/*---------------Pop up css------------*/
  #auto-modal {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      animation: showModal 0.5s ease forwards;
      animation-delay: 1s; /* Delay to simulate auto open after 2 seconds */
      z-index: 9999;
    }

    /* Modal content */
    .modal-pop-up {
      background: #fff;
      padding: 40px 30px;
      max-width: 580px;
      width: 90%;
      text-align: center;
      position: relative;
      border-top: 10px solid #CE0F0F !important;
      border-bottom: 10px solid #CE0F0F !important;
    }

    .modal-pop-up h2 {
      margin-top: 0;
    }

    .modal-pop-up p {
      color: #333;
      font-weight: bold;
    }

    /* Close button (optional) */
    .close-btn {
        position: absolute;
        top: 4px;
        right: -256px;
        background: transparent;
        color: #030303;
        border: none;
        border-radius: 50%;
        font-size: 43px;
        cursor: pointer;
        line-height: 29px;
    }

    button.close-btn:hover {
        font-size: 40px;
    }

    a.covid-cta {
        background-color: #383838;
        color: #fff !important;
        font-family: 'Lato', sans-serif;
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        text-decoration: none;
        margin: 34px 0 0 0;
        display: inline-block;
        padding: 13px 30.5px;
    }
    a.covid-close-link {
        margin: 20px 0 0 0;
        display: inline-block;
        color: #878787 !important;
        font-family: 'Lato', sans-serif;
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        text-decoration: none;
        cursor: pointer;
    }

    /* Animation to fade in modal */
    @keyframes showModal {
      to {
        opacity: 1;
        pointer-events: auto;
      }
    }

    @media(max-width: 768px)
{
    .modal-pop-up {
        padding: 45px 30px !important;
    }
    .close-btn {
        top: 6px !important;
        right: 5px !important;
    }
}
/*------------End pop up css------*/