.single-exc{
    margin-top: 180px;
}
.single-exc .svg_divider {
    margin: 20px 0 20px !important;
}
.single-exc img {
    margin: 20px 0;
}
/**//* Базовые стили */
  .cta-bron {
    position: static;
    display: flex ;
    justify-content: center;
    opacity: 1;
    /*transform: translateY(0);*/
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Стили для фиксированного состояния */
  .cta-bron.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
   /* animation: shake 0.5s ease-in-out;*/
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Плавное исчезание при скролле вниз */
  .cta-bron.fixed.hide {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
  }
  
  /* Анимация контента */
  .cta-bron .cta-bron-content {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
  }
  
  .cta-bron.fixed .cta-bron-content {
    max-width: 400px;
    opacity: 1;
    margin-right: 20px;
  }
  
  /* Анимация тряски */
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
  }

.detail-text {
    margin-top: 24px;
}

.cta-bron-title {
    font-size: 20px;
    margin: 0;
    line-height: 1;
}
.cta-bron-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #8f8f8f;
}




@media only screen and (max-width: 768px) {
 
    .cta-bron.fixed{
        flex-direction: column;
        gap: 10px;

    }
    .cta-bron-content {
        text-align: center;
    }
    .cta-bron-title {
        font-size: 18px;
      
    }
    
}


/* форма= */
/* Боковая модалка */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 500px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Прокрутка при необходимости */
  }
  
  .modal-overlay.active .modal-sidebar {
    right: 0;
  }
  
  .modal-sidebar .modal-content {
    padding: 25px;
    flex-grow: 1;
    border: none;
    box-shadow: none;
  }
  
  .modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
  }
  
  /* Форма */
  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-group label {
    font-weight: 500;
    color: #333;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 80px;
  }
  .modal-close-container {
    text-align: right;
    width: 100%;
    padding-right: 30px;
}
  .modal-sidebar .modal-close-container button.modal-close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    font-size: 25px;
    right: 0;
}
.modal-sidebar .modal-close-container button.modal-close::before {

    border-radius: 50%;
   
}
.modal-sidebar h4,.modal-sidebar  .h4 {
    font-size: 14px;
}
.modal-sidebar form.booking-form input{
    margin-bottom: 12px;
}
.modal-sidebar form.booking-form input[type="checkbox"],.modal-sidebar form.booking-form input[type="radio"] {
    margin-bottom: 0px;
}
.modal-sidebar .cta-bron-title {
    font-size: 25px;}
  /* Адаптив */
  @media (max-width: 500px) {
    .modal-sidebar {
      width: 90%;
    }
  }
  /* =форма */