
.med-request-modal-unique-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.med-request-modal-unique-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 999;
}

  .med-request-modal-unique {
    background: #ffffff;
    max-width: 500px;
    width: 92%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
 /*   overflow: hidden; */
    font-family: system-ui, -apple-system, sans-serif;
  }
  .med-request-modal-unique img {
    width: 100%;
  }
  .med-request-modal-unique-header {
    padding: 20px 24px 0;
   
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .med-request-modal-unique-header h2 {
    margin: auto;
    font-size: 36px;
    color: #1f1f1f;
     font-family: 'TildaSans', Arial, sans-serif;
  }

  .med-request-modal-unique-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f1f1;
    color: #333;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
        top: 3%;
    right: 5%;
  }

  .med-request-modal-unique-close:hover {
    background: #e0e0e0;
  }

  .med-request-modal-unique-body {
    padding: 24px;
  }

  .med-request-modal-unique-instruction,
  .med-request-modal-unique-field label {
    margin: auto;
    text-align: center;
    font-weight: 300;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    font-family: 'TildaSans', Arial, sans-serif;
  }
  .med-request-modal-unique-field label  {
    font-size: 16px;
    text-align: left;
  }
  .med-request-modal-unique-list {
    text-align: center;
    margin: 0 0 24px 0;
    padding: 0;
    color: #444;
    line-height: 1.5;
        font-size: 14px;
    font-family: 'TildaSans', Arial, sans-serif;
    list-style-type: none; 
  }

  .med-request-modal-unique-field {
    margin-bottom: 18px;
  }

  .med-request-modal-unique-field input,
  .med-request-modal-unique-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-family: 'TildaSans', Arial, sans-serif;
    font-size: 16px;
  }

  .med-request-modal-unique-field textarea {
    resize: vertical;
    min-height: 110px;
  }

  .med-request-modal-unique-phone-wrapper {
    display: flex;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
   /* overflow: hidden; */
  }

  .med-request-modal-unique-country {
    padding: 12px 14px;
    background: #f8f8f8;
    border-right: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
  }

  .med-request-modal-unique-submit {
    width: 100%;
    background: #000000;
    color: white;
    border: none;
    padding: 15px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
  }

  .med-request-modal-unique-footer {
    padding: 16px 24px;
    background: #f9f9f9;
    font-size: 13.5px;
    color: #555;
    text-align: center;
    border-top: 1px solid #eee;
  }

  .privacy-link {
    color: #0066cc;
    text-decoration: underline;
  }
  .med-request-modal-unique-country-select {
  position: relative;
  cursor: pointer;
  min-width: 95px;
  background: #f8f8f8;
  border-right: 1px solid #d0d0d0;
}

.med-request-modal-unique-country-select .selected {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
}

.med-request-modal-unique-country-select .dropdown123 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  max-height: 220px;
  overflow-y: auto;
  background: white;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  display: none;
  z-index: 999;
}

.med-request-modal-unique-country-select.open .dropdown123 {
  display: block;
}

.med-request-modal-unique-country-select .option {
  padding: 10px 12px;
  cursor: pointer;
}

.med-request-modal-unique-country-select .option:hover {
  background: #f1f1f1;
}
/*
.med-request-modal-unique-country-select {

    font-family: 
    "Noto Color Emoji",
    "Twemoji Mozilla",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "EmojiOne Color",
   sans-serif !important;

} */
 .med-request-modal-unique {
  background: #ffffff;
  max-width: 500px;
  width: 92%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

  transform: translateY(25px) scale(0.96);
  opacity: 0;

  transition: transform 0.25s ease, opacity 0.25s ease;
}

.med-request-modal-unique-overlay.show .med-request-modal-unique {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.med-request-modal-unique-country-select .flag {
    font-family: 
    "Noto Color Emoji",
    "Twemoji Mozilla",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "EmojiOne Color",
   sans-serif !important;
}

  @media (max-width: 480px) {
  .med-request-modal-unique {
    width: 450px;
  }
  }