@charset "UTF-8";
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s; }
  .hidden-b {
    display: none; }

#progress-bar {
  height: 8px;
  background: #333;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden; }

#progress-bar::before {
  content: '';
  display: block;
  height: 100%;
  background: #ffd700;
  width: 0%;
  transition: width 0.3s ease; }

.step {
  display: none;
  padding: 0 20px 40px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between; }
  .step h2 {
    text-align: center;
    margin: 34px 15px 5px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600; }
  .step__sub-text {
    font-size: 12px;
    color: #FFFFFF;
    margin-left: 15px;
    text-align: center; }
  .step__wrap .br {
    width: 100%;
    height: 20px; }

/* Стили для кнопки "Далее" */
button.btn {
  width: 260px;
  height: 45px;
  border-radius: 20px;
  margin: 20px auto; }
  button.btn:disabled {
    border-color: #464646;
    background-color: #464646;
    color: #858589;
    cursor: not-allowed; }

/* Стили для полей ввода */
input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #2d2d2d;
  color: #ffffff;
  font-size: 16px;
  transition: border-color 0.2s ease; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2); }

/* Стили для чекбоксов — как на картинке */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.checkbox-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  background: #464646;
  padding: 12px 16px;
  height: 50px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.2s ease; }
  .checkbox-item:hover {
    background: #3a3a3a; }
  .checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    background: transparent;
    margin: 0; }
    .checkbox-item input[type="checkbox"]:checked {
      background: #353535;
      border-color: #353535; }
      .checkbox-item input[type="checkbox"]:checked:after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #D6FF27;
        font-weight: bold;
        font-size: 20px; }
  .checkbox-item label {
    margin-left: 10px;
    font-size: 16px;
    cursor: pointer;
    flex-grow: 1; }

/* Стили для стрелки назад */
.navigation-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; }
  .navigation-container img {
    margin-top: 7px; }

.nav-arrow-btn {
  position: absolute;
  left: 25px;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease; }

.nav-arrow-btn:hover {
  background: rgba(255, 215, 0, 0.1); }

.nav-arrow-btn:disabled {
  color: #555;
  cursor: not-allowed; }

/* Стили для выпадающего списка */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  background-color: #464646;
  background-size: 12px;
  height: 50px;
  border-radius: 25px; }
  select:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #000;
    right: 4px;
    top: 14px;
    pointer-events: none; }

/* Стиль подсчёта выбранных дней */
.selected-count {
  font-size: 18px;
  color: #FFFFFF;
  font-family: var(--family--black);
  margin: 10px 15px; }
  .selected-count span {
    color: #FF3145;
    font-style: unset; }
  .selected-count em {
    color: #D6FF27; }

/* Для заголовков полей */
.field-label {
  display: block;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #bbbbbb; }

/* Прогресс-бар как на картинке */
.progress-container {
  padding: 20px;
  border-radius: 8px; }
  .progress-container h2 {
    margin: 0 0 10px 0;
    font-size: 15px;
    color: #ffffff;
    font-weight: 600; }

.progress-steps {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 4px; }

.progress-step {
  flex: 1;
  height: 100%;
  background: #5B5B5B;
  transition: background-color 0.3s ease; }
  .progress-step:first-child {
    border-radius: 3px 0 0 3px; }
  .progress-step:last-child {
    border-radius: 0 3px 3px 0; }
  .progress-step.active {
    background: #D6FF27; }

.form__label {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  min-height: 25px;
  height: max-content;
  justify-content: flex-start;
  margin-right: 25px; }

.form__placeholder {
  color: #ffffff;
  margin-left: 15px; }

.form__container .invalid-feedback {
  padding: 4px 15px;
  display: block;
  font-size: 14px;
  color: #e61818 !important; }

.form__radio-point {
  position: absolute;
  top: auto;
  right: 10px;
  left: auto;
  transform: translate(0px, 50%);
  bottom: 50%;
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid #858589;
  border-radius: 50%;
  background-color: #D9D9D9; }
  .form__radio-point:before {
    background-color: #FFFFFF; }

.form__input {
  height: 50px;
  border-radius: 25px;
  background: #464646;
  border: 1px solid #464646;
  color: #FFFFFF; }
  .form__input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: relative;
    width: 20px;
    height: 20px;
    background: #353535;
    top: 18px; }
    .form__input[type="radio"]:checked + .form__radio-point:before {
      top: 3px;
      left: 3px;
      width: 12px;
      height: 12px;
      background-color: #D6FF27; }

.form__radio .form__flex {
  position: relative;
  width: 100%;
  min-height: 50px;
  margin: 5px;
  padding: 5px 35px 5px 11px;
  background-color: #464646;
  border-radius: 25px;
  flex-wrap: wrap; }

.form__radio .form__label {
  width: 100%;
  flex: 0 0 100%;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-right: 3px;
  margin-bottom: 0;
  position: unset; }
  .form__radio .form__label span {
    color: #FFFFFF; }

.form__radio .form__text {
  font-size: 13px;
  color: #FFFFFF; }

.form__radio .form__sub-text {
  flex: 1 1 auto;
  text-align: right;
  font-size: 10px;
  padding-right: 24px;
  font-family: var(--family--light);
  opacity: .25; }
  .form__radio .form__sub-text--full {
    flex: 0 0 100%;
    opacity: .5;
    margin-bottom: 10px;
    text-align: left; }

.form-group span {
  display: block;
  color: #ffffff;
  margin-left: 15px;
  margin-bottom: 10px; }

.join-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.select {
  height: 50px;
  border-radius: 25px;
  background-color: #464646; }
  .select__top.active:after {
    background: #464646;
    border-left: 0 solid #858589;
    border-right: 0 solid #858589; }
  .select__top i {
    background: #353535;
    top: 11px;
    right: 10px; }
    .select__top i:before {
      color: #FFFFFF; }
  .select__top span {
    height: 50px;
    background: #464646;
    padding: 15px 20px; }
  .select__options {
    background: #464646; }
  .select__option {
    color: #FFFFFF; }
