
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
    overflow-y: auto;
  }
  
  
  /* Общие стили для попапов */
  .popup {
    display: none;
    position: fixed; 
    z-index: 1001;
    background: #fff;
    padding: clamp(1.25rem, 1.0518rem + 0.8130vw, 1.875rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    width: 100%;
    border-radius: clamp(0.938rem, 0.6409rem + 1.2189vw, 1.875rem);
  }
  .pop-title {
    font-size: clamp(1.25rem, 1.0122rem + 0.9756vw, 2rem);
    line-height: 120%;
    font-weight: 700;
    text-transform: uppercase;
    color: #1B1B68;
    margin-bottom: clamp(1.25rem, 0.8537rem + 1.6260vw, 2.5rem);
  }
  span.wpcf7-spinner {
    display: none;
  }
  input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
    outline: none;
}

  
  /* Центрирование попапа */
  .popup-center { 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Попап у верхней части экрана */
  .popup-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Кнопка закрытия */
  .close-popup {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
  } 
  .mob-menu-popup {
    top: 0;
    width: 100%;
    background: #EBF3FF;
    padding: 10px 16px 40px;
  }
  nav#mob-nav {
    margin-top: 40px;
  }
  ul#mob-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 40px;
  }
  ul#mob-menu .menu-item a {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    color: #1B1B68;
  }

  @media (max-width: 768px) {

  }