@charset "UTF-8";
:root {
  --font-family: "Graph", Arial, sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Graph";
  src: url("../fonts/ae_graph-webfont.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 20px;
  color: #1f232e;
  line-height: 150%;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.container--thin {
  max-width: 800px;
  margin: 30px auto;
  padding: 15px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 45px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
input[type=time],
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 20px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  border-color: #3498db;
  outline: none;
}

.radio-group {
  margin: 15px 0;
}

.radio-option {
  display: inline-block;
  margin-right: 20px;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.checkbox-label input {
  margin-right: 10px;
  margin-top: 3px;
}

.btn-submit {
  background-color: #009fe3;
  color: white;
  border: none;
  padding: 20px 25px;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-weight: 600;
  display: block;
  width: 100%;
  margin-top: 2rem;
}

.btn-submit:hover {
  background-color: #2980b9;
}

.required-field::after {
  content: " *";
  color: #e74c3c;
   font-weight: bold;
}

.flight-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.flight-details .form-group {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 600px) {
  .flight-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.footer {
  background-color: #1080E8;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 576px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer__col {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.footer__logo {
  width: 500px;
}
@media (max-width: 576px) {
  .footer__logo {
    width: 300px;
  }
}
.footer__link {
  color: #fff;
  text-decoration: underline;
  font-size: 1.5rem;
}

.checkbox-text {
  font-size: 1rem;
}

.req {
  text-align: center;
}

/* Увеличенные чекбоксы */
.checkbox-label input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #3498db;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 12px;
}

.checkbox-label input[type=checkbox]:checked {
  background-color: #3498db;
}

.checkbox-label input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 16px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.checkbox-label span {
  font-size: 16px;
  line-height: 1.4;
}

/* Увеличенные радиокнопки */
.radio-option input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #3498db;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}

.radio-option input[type=radio]:checked {
  background-color: white;
}

.radio-option input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #3498db;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.radio-option label {
  font-size: 16px;
  vertical-align: middle;
  cursor: pointer;
}

/* Увеличиваем отступы между опциями */
.radio-option {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header {
  background-color: #1080E8;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 250px;
}
@media (max-width: 576px) {
  .header__container {
    height: 150px;
  }
}
@media (max-width: 576px) {
  .header__logo {
    width: 200px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.header__link {
  color: #fff;
  border-radius: 30px;
  border: 1px solid #fff;
  font-size: 13px;
  padding: 10px 25px;
  font-weight: 600;
}

.header__link--black {
    border: 1px solid #333333 !important;
    color: #1080E8 !important;
}
@media (any-hover: hover) {
  .header__link:hover {
    background-color: #fff;
    color: #1080E8;
  }
}

.content__subtitle {
  text-align: center;
  font-size: 76px;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .content__subtitle {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

.reg-text {
  margin-bottom: 2rem;
  border-radius: 6px;
}


.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.submit-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-submit.processing {
    opacity: 0.7;
    cursor: not-allowed;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-dialog {
    position: relative;
    margin: 10% auto;
    max-width: 500px;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    /*color: #28a745;*/
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    margin-top: 15px;
    text-align: right;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.form-group input.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.agree-link {
    text-decoration: underline;
    color: #1080E8;
}


/*.select-search-wrapper {*/
/*    position: relative;*/
/*}*/

/*.region-dropdown {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    right: 0;*/
/*    background: white;*/
/*    border: 1px solid #ccc;*/
/*    border-top: none;*/
/*    max-height: 200px;*/
/*    overflow-y: auto;*/
/*    z-index: 1000;*/
/*    box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
/*}*/

/*.region-option {*/
/*    padding: 8px 12px;*/
/*    cursor: pointer;*/
/*    border-bottom: 1px solid #eee;*/
/*}*/

/*.region-option:hover,*/
/*.region-option.highlighted {*/
/*    background-color: #f0f0f0;*/
/*}*/

/*.region-option:last-child {*/
/*    border-bottom: none;*/
/*}*/

.select-search-wrapper {
    position: relative;
}

.region-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.region-option {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.region-option:hover,
.region-option.highlighted {
    background-color: #f0f0f0;
}

.region-option:last-child {
    border-bottom: none;
}
