@font-face {
  font-family: 'ocr_a';
  src: url('../fonts/OCRAExtended.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'inter';
  src: url('../fonts/Inter-Bold') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg-color: #2F4C54;
  --bg-color-white: #fff;
  --bg-color-light: #F5F5F5;

  --additional-color: #518B9A;

  --font-color-dark: #000000;
  --font-color-light: #fff;
  --font-color-grey: #4F4F4F;

  --attention-color: #ED0853;
  --later-color: #FDB805; 
  --success-color: #0C9A5E;
  --spinner-color: #e3eef0;

  --line-color: #828282;
  --transition: all 300ms ease;
}


html {
  height: 100%;
}
body {
  height: 100%;
  font-size: 12px;
  font-weight: 400;
  font-family: 'inter', sans-serif;
  color: var(--font-color-dark);
}
header,
nav,
section,
article,
aside,
figure,
hgroup,
footer,
time {
  display: block;
}
a {
  color: var(--font-color-grey);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
a:hover,
a:active,
a:focus {
  color: var(--font-color-grey);
  text-decoration: none;
}
.hidden {
  display: none;
}
.color-green { color: green !important; }
.color-white { color: white !important; }
.color-red { color: red !important; }
.color-blue { color: blue !important; }
.main-bg-color { color: var(--bg-color) !important; }
.additional-color { color: var(--additional-color) !important; }
.mt-10 { margin-top: 1em !important; }
body {
  position: relative;
  overflow-x: hidden;
}
.flex-align {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.screen {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.25);
  top: 0;
  left: 0;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;   
  padding-bottom: 20px;
  background-color: var(--bg-color);
  color: var(--font-color-light);
  font-size: 1.2rem; 
}
.main-header .header__new-orders-wrapper {
  margin-right: 24px;
}
.header__logo-main {
  display: block;
  height: 40px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  font-size: 1.2rem;
  line-height: 1;
}
.header__logo-text {
  display: block;
  font-size: 0.7rem;
}
.nav__wrapper {
  width: 266px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--bg-color-light);
  color: var(--font-color-grey);
  padding: 0 0 20px;
  -webkit-transition: 400ms;
  transition: 400ms;
  -webkit-transform: translateX(-320px);
  transform: translateX(-320px);
  z-index: 10;
  font-size: 1.2rem;
  line-height: 2;
  overflow-y: auto;
}
.nav__user-block {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 6px 0 20px;
  background: var(--additional-color);
  color: var(--bg-color);
  font-size: 12px;
}
.nav__user-photo {
  width: 26px;
  height: 26px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--bg-color-white);
  display: inline-block;
  background-size: cover;
}
.nav__user-text-circle {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  margin-right: 5px;
  text-align: center;
  display: inline-block;
  background: var(--bg-color-white);
  line-height: 26px;
}
.nav__user-name {
  line-height: 1.1;
  float: right;
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  overflow: hidden;
  color: var(--bg-color-light);
}
.nav__list {
  margin: 0;
  padding: 20px;
  width: 100%;
  list-style: none;
}
.nav__list-item {
  display: block;
  color: var(--font-color-grey);
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
.nav__list-item:hover,
.nav__list-item:active {
  color: var(--additional-color);
  text-decoration: none;
}
.nav__list-item.exit-btn {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* .nav__list-item:hover .nav__order-counter,
.nav__list-item:active .nav__order-counter {
  background-color: #a2b587;
} */
.nav__list-item .nav__list-icon {
  margin-right: 10px;
  color: var(--additional-color);
}
.nav__list-radio {
  position: absolute;
  opacity: 0;
}
.nav__list-radio:checked ~ .nav__list-label::after {
  display: block;
}
.nav__list-label {
  margin: 0;
  padding-left: 60px;
}
.nav__list-label::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 7px;
  width: 15px;
  height: 15px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--bg-color);
}
.nav__list-label::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 10px;
  width: 9px;
  height: 9px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--bg-color);
  display: none;
}
.nav__line {
  width: 100%;
  height: 1px;
  background-color: var(--line-color);
  margin: 20px 0 15px;
}
.nav__order-text {
  margin-right: 40px;
}
.nav__order-counter {
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 30%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--additional-color);
  color: var(--font-color-light);
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 10px;
}
.header__logo {
  text-align: center;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 1.2rem;
}
.header__icon {
  cursor: pointer;
  position: relative;
}
.header__icon {
  font-size: 1.8rem;
  margin-left: 20px;
  margin-top: 2px;
}
.header__icon--chat {
  right: 10px;
  top: -5px;
}
.header__icon .new-orders__link,
.header__icon .refresh-counters__link {
  color: #fff;
}
.icon-disc {
  width: 18px;
  height: 18px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--attention-color);
  color: var(--font-color-light);
  font-size: 10px;
  text-align: center;
  margin-top: 2px;
  line-height: 18px;
  position: absolute;
}
.header__icon-disc {
  top: 3px;
  left: 10px;
}
.article_link__icon-disc {
  top: -8px;
  right: -5px;
}
section {
  height: 100%;
}
.section__header {
  height: 60px;
  line-height: 60px;
  width: 100%;
  /* margin: 0 auto; */
  /* background-color: var(--additional-color);
  color: var(--font-color-light); */
  /* text-align: center; */
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
  /* border-top-left-radius: 20px;
  border-top-right-radius: 20px; */
  color: var(--font-color-dark);
}
.section__header a {
  color: var(--font-color-dark);
}
.section__header a:hover,
.section__header a:active,
.section__header a:focus {
  color: var(--additional-color);
  outline: none;
  text-decoration: none;
}
.section__header a .fa {
  color: var(--additional-color);
}
.section__header-refresh {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}
.content {
  flex: 1;
  height: 100%;
  margin-top: 70px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  background: var(--bg-color-white);
  box-shadow: 0px -5px 15px 0px #1015046E;
}
.errorlist {
  list-style: none;
  color: var(--attention-color);
  margin: 0;
  padding: 0;
  font-size: 1.4em;
}
.links-block {
  padding: 30px 20px;
}
.article_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-bottom: 20px;
  font-size: 1.4em;  
  font-weight: 500;
  background-color: var(--bg-color-light);  
  text-align: center;    
  border-radius: 10px;
  color: var(--font-color-dark);
  box-shadow: 0px 6px 15px 0px #1E303545;
}
.article_link:hover,
.article_link:active {
  text-decoration: none;
  background: var(--additional-color);
  color: var(--font-color-dark);
  box-shadow: 0px 6px 15px 0px #1E303545;
}
.article_link-icon {
  display: inline-block;
  position: absolute;
  left: 20px;
}
.article_link-icon .fas{
  color: var(--bg-color);
}
.article_link:hover .article_link-icon .fas,
.article_link:active .article_link-icon .fas{
  color: var(--bg-color);
}

.section__checkbox {
  position: absolute;
  opacity: 0;
}
.section__checkbox:checked ~ .section__label::after {
  display: block;
}
.section__label {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}
.section__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: transparent;
  border: 2px solid #626262;
}
.section__label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  background-color: #626262;
  display: none;
}
.btn {
  width: 280px;
  height: 35px;
  border: none;
  background: var(--bg-color);
  color: var(--font-color-light);
  border-radius: 5px;
  transition: var(--transition);
  font-size: 16px;
  margin: 10px 0;
}
.btn:hover,
.btn:active,
.btn:focus {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background: var(--additional-color);
  color: var(--font-color-light);
}
.btn--lang {
  margin-right: 10px;
  float: left;
  line-height: 1;
}
.app.open-refund-form.btn {
  width: 100%;
}
.form-control {
  height: 35px;
  border-radius: 5px;
  border-color: #E6E5E5;
}
.profile-lang__list {
  padding: 0;
  margin: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.profile-lang__list li {
  width: 100px;
  margin-right: 6px;
  position: relative;
  overflow: hidden;
}
.profile__input-cancel {
  position: absolute;
  right: 4px;
  top: 10px;
}

/* bootstrap alerts restyling */
.alert {
  font-size: 1.3em;
  position: relative;
  margin-bottom: 0;
}
.icon-mir { margin-right: 1em; }
.bill-delete-btn { font-size: 1.4em; display: block; width: 100%; }
.checkmark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline;
  stroke-width: 2;
  stroke: #4bb71b;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4bb71b;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  position:relative;
  left: 5px;
  margin: 0 auto;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb71b;
  fill: #fff;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4bb71b;
  }
}

#chat-messager__container {
  border-bottom: 3px solid #f7f7f7;
}
#content-top-nav {
  background-color: var(--additional-color);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

/* Партнерка HotelPay*/
#hotel_pay #returnModal button { padding: 0; }
#hotel_pay #returnModal [name=refund_type] { position: relative; top: .15em; }
#hotel_pay #returnModal .close { margin: unset; }
#hotel_pay .header__logo img.company-logo-img { height: 1.5em; }
#hotel_pay .nav__user-name a { color: white; }
#hotel_pay label[for='sign-in__stay-logged'] {font-size: 1em;}
#hotel_pay .invited-users { padding: 3em; }
#hotel_pay .btn-enter { margin: .5em; }
#hotel_pay .btn-enter.login-page-btn { background: #249DD6; }
#hotel_pay .firstmeet-btn { background: cadetblue; }
#hotel_pay .input-group.agreement-group { display: inline-table; }
#hotel_pay .main-page-link { color: white; }
#hotel_pay .invitation-link { text-align: center; }
#hotel_pay .invitation-link .copy-link { margin-top: 3em; font-size: 1.1em; color: var(--bg-color);}
#hotel_pay .back-link { color: var(--bg-color);}
#hotel_pay .bill-pay-options.hotel-pay { display: block; }
#hotel_pay .header__logo-text.hotel-pay {margin-top: 1em; font-size: 1rem; }
#hotel_pay .card-history-ul { padding: 1.4em; }
#hotel_pay .card-history-error { color: red; }
#hotel_pay .bill-card { margin-bottom: 1em; }
#hotel_pay .close-card-btn { padding: .3em .7em; }
#hotel_pay .open-add-funds-form-btn { margin-bottom: 1em; }
#hotel_pay .card-data-spinner { color: var(--additional-color); font-size: 1.2em; }
#hotel_pay .active-card-text { color: var(--success-color); font-size: 1.2em; }
#hotel_pay .found-hotels { font-size: 1.1em; }
#hotel_pay .found-hotels .found-hotel-block { margin-top: 1em; }
#hotel_pay .found-hotels label { font-size: 1em; position: relative; left: .5em; bottom: .15em; margin: 0; display: inline; }
#hotel_pay .find-nearest-hotels { color: blue; }
#hotel_pay .find-flight-spinner{ color: var(--additional-color); font-size: 1.2em; opacity: .7; }
#hotel_pay .find-flight-wrapper,
#hotel_pay .found-flights .row { margin-top: .5em; }
#hotel_pay .find-flight { color: blue; }
#hotel_pay .found-flights { font-size: 1.2em; }
#hotel_pay .order-creation-block { color: var(--additional-color); }
#hotel_pay .order-creation-spinner { font-size: 1.7em; opacity: .7; }
#hotel_pay .card-balance { line-height: min(3em); }
#hotel_pay .card-balance .card-balance-text { position: absolute; bottom: 0; font-weight: bold; line-height: 1; }
#hotel_pay .operation-amount-block { position: absolute; right: 1.2em; top: -.25em; }
#hotel_pay .operation-amount-block .operation-amount { font-size: 1.2em; }
#hotel_pay .how-to-use { margin: 1em; }
#hotel_pay .pay-link-btn { line-height: 3em;  height: 4em; background: #468A00; }
#hotel_pay a.offer-terms-link { color: var(--bg-color); }
#hotel_pay .orders-type a.active { color: var(--font-color-light); background-color: var(--additional-color);}
#hotel_pay .profile-settings-section { padding: 1.5em; }
#hotel_pay .invitation-link .copy-link { margin-top: 3em; font-size: 1.1em; color: var(--bg-color);}
#hotel_pay .invited-users-section { margin: 0 auto; max-width: fit-content; }
#hotel_pay .invited-users-item { text-align: left; }
#hotel_pay .invited-users-item small { color: var(--additional-color); }
#hotel_pay .back-link { color: var(--bg-color);}
#hotel_pay .captcha-check-animation { display: none; }
#hotel_pay .balance { position: relative; bottom: 1em; }
#hotel_pay .show-card { margin: 1em 0; }
#hotel_pay .invitation-tabs a,
#hotel_pay .orders-type a { 
  display: inline-block;
  line-height: 1;
  padding: 8px 16px;
  color: var(--line-color); 
  font-size: 14px;
  font-weight: 400;
  background-color: #f5f4f2;
  border-radius: 14px;
  margin-right: 4px;
}
#hotel_pay .invitation-tabs a.active,
#hotel_pay .orders-type a.active { 
  background-color: var(--additional-color);
  color: var(--font-color-light);
}
a.offer-terms-link {
  color: var(--bg-color);
}
#hotel_pay .nav__footer { position: absolute; bottom: 0; }
#hotel_pay .nav__footer { position: absolute; bottom: 0; }
#hotel_pay .nav__orders li { line-height: 2em; }
#hotel_pay .password-reset-page {
  background: #f5f7fa;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
  min-height: 100vh;
  margin: 0;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#hotel_pay .password-reset-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
#hotel_pay .password-reset-card__header {
  text-align: center;
  margin-bottom: 30px;
}
#hotel_pay .password-reset-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
}
#hotel_pay .password-reset-card__input-block {
  margin-bottom: 20px;
}
#hotel_pay .password-reset-card__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#hotel_pay .password-reset-card__input:focus {
  border-color: #2f4c54;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.25);
}
#hotel_pay .password-reset-card__button {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: #2f4c54;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
#hotel_pay .password-reset-card__button:hover {
  background: #0056b3;
}
#hotel_pay .password-reset-card__links {
  margin-top: 20px;
  text-align: center;
}

#hotel_pay .password-reset-card__links a {
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}

#hotel_pay .password-reset-card__links a:hover {
  text-decoration: underline;
}

#hotel_pay .password-reset-card__error {
  color: #d9534f;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: none;
}
#hotel_pay .password-reset-done-page {
  background: #f5f7fa;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
  min-height: 100vh;
  margin: 0;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#hotel_pay .password-reset-done-card {
  max-width: 420px;
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
#hotel_pay .password-reset-done-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}
#hotel_pay .password-reset-done-card__message {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
}
#hotel_pay .password-reset-done-card::before {
  content: "✔";
  display: block;
  font-size: 40px;
  color: #28a745;
  margin-bottom: 20px;
}
#hotel_pay .password-reset-confirm-page {
  background: #f5f7fa;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
  min-height: 100vh;
  margin: 0;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#hotel_pay .password-reset-confirm-card {
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
#hotel_pay .password-reset-confirm-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}
#hotel_pay .password-reset-confirm-card__subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}
#hotel_pay .password-reset-confirm-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#hotel_pay .password-reset-confirm-form__field {
  flex: 1 1 100%;
  position: relative;
}
#hotel_pay .password-reset-confirm-input {
  width: 100%;
  padding: 12px 40px 12px 14px; /* место под иконку справа */
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#hotel_pay .password-reset-confirm-input:focus {
  border-color: #2f4c54;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.25);
}
#hotel_pay .password-reset-confirm-addon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #888;
  cursor: pointer;
}
#hotel_pay .password-reset-confirm-button {
  flex: 1 1 100%;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: #2f4c54;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
#hotel_pay .password-reset-confirm-button:hover {
  background: #0056b3;
}
#hotel_pay .password-info {
  font-size: 0.9rem;
  color: #555;
  margin-top: 15px;
  text-align: center;
}
#hotel_pay .password-reset-invalid {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 80px 15px;
}
#hotel_pay .password-reset-invalid::before {
  content: "✖";
  display: block;
  font-size: 40px;
  color: #dc3545; /* красный Bootstrap danger */
  margin-bottom: 20px;
}
#hotel_pay .password-reset-success-page {
  background: #f5f7fa;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
  min-height: 100vh;
  margin: 0;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#hotel_pay .password-reset-success-card {
  max-width: 420px;
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
#hotel_pay .password-reset-success-card::before {
  content: "✔";
  display: block;
  font-size: 48px;
  color: #28a745;
  margin-bottom: 20px;
}
#hotel_pay .password-reset-success-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}
#hotel_pay .password-reset-success-message {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
}
#hotel_pay .find-nearest-hotels {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2f4c54;
  background: #f0f4f5;           
  border: 1px solid #d0d8da; 
  border-radius: 8px;
  text-decoration: none;
  line-height: .8;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
#hotel_pay .find-nearest-hotels:hover {
  background: #e4eaec;    
  color: #243c42;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
#hotel_pay .find-nearest-hotels:active {
  background: #d9e1e3;
  transform: translateY(1px);
}
#hotel_pay .find-nearest-hotels-spinner { 
  color: var(--additional-color); 
  font-size: 1.5em; 
  opacity: .5;
  position: relative;
  top: .15em;
  margin-left: .3em;
}
#hotel_pay .bill-row {
  border: none;
  background: #fff;
  border-radius: 16px;  
  padding: 20px 20px 50px 20px;
  margin: 20px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}
#hotel_pay .checkbox-label {
  display: flex;
  align-items: flex-start; 
  gap: 8px;
  cursor: pointer;
}
#hotel_pay .checkbox-label input[type="checkbox"] {
  margin-top: 3px;
}
#hotel_pay .checkbox-text {
  display: inline-block;
  line-height: 1.5;
  color: #333;
}
#hotel_pay .checkbox-label a {
  color: #007bff !important;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}
#hotel_pay .checkbox-label a:hover {
  color: #0056b3;
  text-decoration: none;
}

/* #hotel_pay .issued-bill {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}
#hotel_pay .issued-bill-purpose {
  font-size: 0.75rem;
  color: grey;
}
#hotel_pay .bill-row .col-4 span {
  font-weight: 600;
  font-size: .9rem;
  color: #000;
}
#hotel_pay .bill-row p {
  font-size: 0.8rem;
  line-height: 1.;
  color: #444;
  margin: 0.6rem 0 1rem;
}
#hotel_pay .all-bill-cards {
  border-top: 1px solid #eee;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}
#hotel_pay .bill-card .get-card-data {
  color: #2f80ed;
  font-weight: 500;
  text-decoration: none;
}
#hotel_pay .show-operations-text {
  font-size: 0.8rem;
  margin-top: 0.3rem;
}
#hotel_pay .card-balance-block {
  margin-top: 0.8rem;
  padding: 0.6rem 0;
  border-top: 1px solid #eee;
}
#hotel_pay .card-balance-label {
  font-weight: 600;
  font-size: 0.9rem;
}
#hotel_pay .card-balance-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e7e34;
}
#hotel_pay .refund-info {
  font-size: 0.85rem;
  color: #1e7e34;
  margin: 0.4rem 0 0.8rem;
  line-height: 1.4;
}
#hotel_pay .operation-block {
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px dashed #ddd;
} */
#hotel_pay .open-add-funds-form-btn {
  background: #2f80ed;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px; 
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.1s ease;
}
#hotel_pay .close-card-btn {
  background: #fff;
  color: #e63946;
  border: 1px solid #e63946;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* Страница Заказов */
.section__list {
  height: 80vh;
  overflow-y: auto;
  padding: 0 20px;
  scrollbar-color: var(--additional-color) var(--bg-color-white);
  scrollbar-width: thin;
}
.section__list::-webkit-scrollbar {
  width: 5px; /* Ширина всего элемента навигации */
}

.section__list::-webkit-scrollbar-track {
  background: var(--bg-color-white); /* Цвет дорожки */
}

.section__list::-webkit-scrollbar-thumb {
  background-color: var(--additional-color); /* Цвет бегунка */
  border-radius: 5px; /* Округление бегунка */
  /* border: 3px solid #050c26;  Оформление границ бегунка */
}
.section__list-item {
  height: 60px;
  font-size: 12px;
  background-color: var(--bg-color-white);
  border-bottom: 1px solid var(--line-color);  
  transition: var(--transition);
}
.section__list-item:not(.section__list-item--single):hover,
.section__list-item:not(.section__list-item--single):focus,
.section__list-item:not(.section__list-item--single):active {
  text-decoration: none;
  background-color: var(--bg-color-light);
}
.list-item__block--main {
  min-width: 45%;
}
.list-item__text {
  font-size: 1.2rem;
  text-transform: uppercase;
}
.list-item__number {
  font-size: 16px;
  font-weight: 500;
  color: var(--bg-color);
}
section form {
  height: 100%;
}
.header__icon--back {
  width: 20px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  margin-left: 20px;
}
.header__icon--back::after {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: -6px;
}
.header__icon--back a {
  display: block;
  width: inherit;
  height: 40px;
  margin-top: -20px;
}
.service-wrapper {
  padding: 0 20px;
}
.service-wrapper .section__header {
  padding: 0;
}
.order-excursion-wrapper { 
  border-bottom: 1px solid grey; 
}
.tab-switcher-row { 
  margin-top: 1.5em; 
}
.tab-switcher-header .tab-switcher-row { 
  margin-top: .5em; 
}

.order-tab { 
  margin-top: 3em; 
}
.order-tab .service-row { 
  margin-top: 1.5em; 
}
.order-tab .delete-service { 
  color: var(--attention-color); 
}
.order-tab .customer-link-block {
  padding: 1em;
  width: 100%
}
.order-tab .customer-link-block .text-link {
  word-wrap: break-word
}
.section__article {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
.switch-tabs a { 
  display: inline-block;
  line-height: 1;
  padding: 8px 16px;
  color: var(--line-color); 
  font-size: 14px;
  font-weight: 400;
  background-color: #f5f4f2;
  border-radius: 14px;
  margin-right: 4px;
}
.switch-tabs a.active,
.switch-tabs a.active { 
  background-color: var(--additional-color);
  color: var(--font-color-light);
}

.section__article-block {
  width: 100%;
  padding: 10px 20px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.section__article-item:first-child {
  width: 65%;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.section__article-item:last-child {
  width: 25%;
  text-align: right;
}
.section__article-h4 {
  position: relative;
  font-size: 16px;
  font-weight: 400;
}
.article-item__amount {
  font-size: 16px;
}
.article-item__amount--sm {
  color: rgba(98,98,98,0.6);
}
.section__transfer-description {
  margin: 10px 0;
  font-size: 16px;
}
.section__transfer-cost {
  padding: 0 20px;
  font-size: 2em;
  margin-top: 15px;
  font-weight: bold;
  text-align: right;
}
.footer__block {
  margin-bottom: 10px;
}
.footer__block.error__block {
  height: auto;
}
.cancellation_reason__form textarea {
  width: 100%;
  font-size: 1.4em;
}
.cancellation_reason__form label {
  font-size: 1.4em;
}
.cancellation_reason__block span {
  font-weight: bold;
}
.footer__button {
  margin: 0;
}
.footer__button--accept {
  width: 100%;
  background-color: var(--success-color);
}
.footer__button--add-another-excursion {
  width: 100%;
  background-color: var(--additional-color);
}
.footer__button--show-revision {
  width: 100%;
  background-color: var(--additional-color);
}
.revision-block {
  margin-top: 50px;
}
.revision-block__form {
  padding: 0 20px;
}
.revision-block__form textarea {
  width: 100%;
  height: 100px;
  font-size: 12px;
}
.revision-block__messages {
  padding: 0 20px;
}
.revision-block__messages .revision-block__messages__item {
  font-size: 1.6em;
  margin-bottom: 10px;
  line-height: 1.4;
}
.revision-block__messages .revision-block__messages__item-date {
  font-size: 0.85rem;
  color: #999;
}
.revision-block__messages .revision-block__messages__item-creator {
  font-size: 0.9em;
}
.footer__button--revise {
  width: 100%;
}
.footer__button--reject,
.footer__button--later {
  width: 20%;
  width: calc(50% - 10px);
  float: left;
  background-color: var(--attention-color);
}
.footer__button--later {
  float: right;
  background-color: var(--later-color);
}
.font-size-8 {
  font-size: .8em;
}
.font-size-9 {
  font-size: .9em;
}
.font-size-12 {
  font-size: 1.1 0.4rem;
}
.font-size-14 {
  font-size: 1.4rem;
}
.font-size-16 {
  font-size: 1.6rem;
}
.font-size-18 {
  font-size: 1.8rem;
}
.font-size-20 {
  font-size: 1.4rem;
}
.font-size-30 {
  font-size: 3rem;
}
.status-to-parent_nav {
  position: absolute; 
  top: 20px;
  left: 0;
  width: 180px;
  margin: 0;
  padding: 0 20px;
  list-style: none;
  background-color: var(--bg-color);
  color: var(--font-color-light);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 4px 4px 15px 0px #1015046E;
  z-index: 1;
}
.status-to-parent_nav a {
  display: block;
  padding: 3px 0;
  font-size: 16px;
  color: var(--font-color-light);
  transition: var(--transition);
}
.status-to-parent_nav a:hover,
.status-to-parent_nav a:active,
.status-to-parent_nav a:focus {
  color: var(--additional-color);
}
#map {
  width: auto;
  height: 300px;
  margin: 20px;
}
.map-link {
  display: inline-block;
  margin: 0 20px;
  padding: 4px 10px;
  border: 1px solid #a2b587;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-size: 1.2em;
  float: right;
}
.map-link:hover,
.map-link:focus,
.map-link:active {
  text-decoration: none;
  color: #a2b587;
}
.service-time {
  padding-left: 20px;
  font-size: 2em;
  color: #333;
}
.rate-confirmation {
  text-align: center;
  font-size: 40px;
}
.rate-confirmation input {
  height: 70px;
  width: 180px;
  padding: 5px;
  text-align: right;
}
a.order-add-for-user{
  position: fixed;
  right: 30px;
  bottom: 20px;   
}

.user-bills-container { padding: 50px 0 0; }
.issued-bill { 
  height: fit-content;
  font-size: 12px;  
  transition: var(--transition);
}
.refund-block, .refund-block > * { padding: 0; }
.bill-row .bill-refund-element { 
  padding: 0;
  margin: 0;
  display: none;
}
.request-refund.btn, .open-refund-form.btn { width: unset; margin-top: 0; }
.ill-summ-after-refund { display: inline-flex; }

.issued-bill .card-btn { 
  width: unset; 
  height: unset; 
  margin: unset; 
  font-size: 1em; 
  padding: .4em .7em;
}
.bill-status-col { font-size: 1em; }
.bill-status-col .fa-check  { color: --var(--success-color); margin-top: .3em; font-size: 1.2em; }
.bill-row { border-top: 1px solid var(--line-color); border-bottom: 1px solid var(--line-color); padding: 3em 0; }
.bill-row .bill-payed-symbol { color: green; }
.bill-row--active {
  background: var(--bg-color-light);
}
.bill-pay-options { margin-bottom: 1.5em; }
.bill-pay-options-toggle-btn { color: var(--attention-color); cursor: pointer; margin-top: .3em; font-size: 1.2em; }
.bill-pay-options a.pay-cash-link { text-align: left;}
.bill-pay-options .btn span.bill-pay-amount { float: right; margin-right: 0; position: relative; top: -.15em;  }
.bill-pay-options .bill-pay-option { padding: 0; }
.bill-pay-options .bill-pay-option .bill-action-btn { height: 3.5em; }
.bill-pay-options .bill-pay-option .bill-action-btn a { margin-top: .7em }
.bill-pay-options .bill-pay-option .bill-action-btn .bill-pay-amount { margin-top: .7em }
.bill-pay-options { display: none; margin-top: 1em; }
.bill-pay-options .qr-sbp-pay-link-image-block,
.bill-pay-options .qr-card-pay-link-image-block,
.bill-pay-options .qr-image-block { display: none; margin-top: 1em; }
.bill-pay-options .base-amount-sbp-to-high-text { display: none; margin: 1em 0; color: red; }
.active-card  { 
  width: 300px;
  min-height: 194px;
  height: fit;
  border-radius: 15px;
  margin: 20px auto;
  background: linear-gradient(to left, #5D4157, #A8CABA);
  box-shadow: 2px 2px rgba(0, 0, 0, .4);
  color: var(--bg-color);
}
.active-card__inner {
  padding: 16px;
  width: inherit;
  height: inherit;
  position: relative;
}
.active-card__font {
  color: #fff;
  font-size: 18px;
  font-family: ocr_a, sans-serif;
  text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.8);
}
.active-card__header {
  font-size: 20px;
  font-weight: 500;     
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, .8);
}
.active-card__icon-sim {
  width: 55px;
  height: 40px;
  margin: 20px 0;
  border-radius: 8px;
  background-color: #fdd76f;
  background-size: 55px;
  background-image: url('data:image/svg+xml,%3Csvg version="1.1" xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" xmlns%3Axlink="http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink" x="0px" y="0px" width="52.603px" height="27.424px" viewBox="22.897 64.288 52.603 27.424" enable-background="new 22.897 64.288 52.603 27.424" xml%3Aspace="preserve"%3E%3Crect x="72.407" y="79.211" fill="none" width="1.025" height="6.497"%2F%3E%3Cpath fill="%23444" d="M41.963%2C84.221v4.517c0%2C0.546-0.445%2C0.993-0.991%2C0.993H22.897v1.981h18.075h26.153H75.5v-1.981h-8.375 c-0.546%2C0-0.991-0.447-0.991-0.993v-4.517c0-0.546%2C0.445-0.989%2C0.991-0.989H75.5v-1.984c-1.865%2C0-8.375%2C0-8.375%2C0 c-0.546%2C0-0.991-0.444-0.991-0.99V75.74c0-0.546%2C0.445-0.989%2C0.991-0.989H75.5v-1.985h-8.375c-1.64%2C0-2.975%2C1.335-2.975%2C2.973v4.518 c0%2C0.764%2C0.302%2C1.455%2C0.776%2C1.981c-0.474%2C0.527-0.776%2C1.22-0.776%2C1.982v4.517c0%2C0.35%2C0.072%2C0.68%2C0.185%2C0.993H43.763 c0.111-0.313%2C0.182-0.642%2C0.182-0.993V84.22c0-0.761-0.297-1.455-0.771-1.982c0.474-0.526%2C0.771-1.216%2C0.771-1.981v-4.518 c0-0.762-0.297-1.453-0.771-1.981c0.474-0.527%2C0.771-1.217%2C0.771-1.982V67.26c0-0.349-0.071-0.678-0.182-0.99H75.5v-1.982H40.971 H22.897v1.982h18.075c0.546%2C0%2C0.991%2C0.444%2C0.991%2C0.99v4.516c0%2C0.546-0.445%2C0.991-0.991%2C0.991H22.897v1.984h18.075 c0.546%2C0%2C0.991%2C0.443%2C0.991%2C0.989v4.518c0%2C0.546-0.445%2C0.99-0.991%2C0.99H22.897v1.984h18.075 C41.518%2C83.232%2C41.963%2C83.675%2C41.963%2C84.221z"%2F%3E%3C%2Fsvg%3E');
}
.active-card__number {
  font-size: 20px;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  margin-bottom: 16px;
  white-space: nowrap;
}
.copy-card-number {     
  opacity: .6;
  position: relative;
  bottom: .3em;
  left: .2em;
  font-size: .60em;
}

.copied-to-clipboard-text { 
  position: absolute;
  top: 6em;
  display: none; 
}
.order-tab .copied-to-clipboard-text { 
  top: .5em;
  position: relative;
}
.active-card__person {
  margin-top: 8px;
}

.bill-pay-options .bill-link,
.bill-pay-options .card-pay-link { display: block; word-break: break-all; }
.bill-row .bill-pay-option-spinner {
  font-size: 1.1em; position: relative; opacity: .4; color: var(--spinner-color);
}
.create-virtual-card-spinner { 
  position: relative;
  /* margin-right: 8em;
  margin-top: .3em; */
  top: .17em;
  left: .1em;
}
.add-card-funds-spinner { 
  position: relative;
  font-size: 1.1em;
  left: .5em;
}
.btn-bill {
  height: 25px;
  min-width: 100%;
  margin: 0 0 5px;
  background: var(--bg-color-white);
  border: 1px solid var(--additional-color);
  padding: 5px 10px;  
  color: var(--font-color-dark);
  font-weight: 600; 
  font-size: 12px;
  line-height: 1.2;
}
.btn-bill a{
  float: left;
  color: var(--font-color-dark);
}
.btn-bill:hover a,
.btn-bill:active a,
.btn-bill:focus a {
  color: var(--bg-color-white);
}

/* Страница Заказов end */
.modal-wrapper {
  width: 270px;
  height: 120px;
  background: var(--bg-color-white);
  position: absolute;
  left: calc(50% - 135px);
  top: calc(50% - 60px);
  padding: 30px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 15;
}
.modal-wrapper .btn {
  width: auto;
  background: var(--additional-color);
}

/* Страница Профиля */
#save-photo-btn {
  display: inline-block;
}
#choose-photo-input {
  display: none;
}
.profile__file-remove {
  cursor: pointer;
  color: var(--bg-color);
  transition: var(--transition);
}
.profile__file-remove:hover,
.profile__file-remove:active,
.profile__file-remove:focus {
  color: var(--additional-color);
}
.profile__user-block {
  margin-bottom: 10px;
  padding: 15px;  
  font-size: 12px;
  color: var(--font-color-dark);
}
.profile__user-block:not(:last-child) {
  border-bottom: 1px solid var(--bg-color);
}
.profile__user-block .nav__user-photo {
  float: right;
  width: 50px;
  height: 50px;
  border: 1px solif var(--additional-color);
}
.profile__user-description {
  display: inline-block;
  width: -webkit-calc(100% - 110px);
  width: calc(100% - 110px);
}
.profile__user-description-p {
  font-size: 1rem;
}
.filename {
  display: none;
  position: relative;
  padding: 10px 0;
  width: -webkit-calc(100% - 110px);
  width: calc(100% - 110px);
}
.filename span {
  padding: 10px;
}
.profile__section-content {
  padding-bottom: 100px;
}
.profile__lang-list {
  margin: 0;
  padding: 0 20px 0 0;
}
.profile__lang-item {
  list-style: none;
  display: block;
}
.profile__lang-label {
  width: 100%;
  padding-right: 30px;
}
.profile__lang-label::before {
  float: right;
  position: relative;
  margin-right: -20px;
}
.profile__lang-label::after {
  left: -webkit-calc(100% - 25px);
  left: calc(100% - 25px);
}
.profile__user-password-item-wrapper,
.profile__user-car-item-wrapper {
  margin-top: 10px;
}
.profile__user-password-item-wrapper .profile__user-password-label,
.profile__user-car-item-wrapper .profile__user-car-label {
  color: var(--font-color-grey);
}
/* Страница Профиля end */


/* To-do list */
.to-do-form-label {
  margin-top: 10px;
}
.todo-filter {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 6px;
}
.todo-filter .form-control {
  font-size: 0.8rem;
  padding-left: 0.3px;
  padding-right: 0.3px;
}
.todo-filter div {
  margin-left: 6px;
}
.delete-task {
  float: none !important;
}
.show-add-task-form {
  position: fixed;
  right: 10px;
  bottom: 10px;
  margin: 0;
  z-index: 100;
}
.filter-btn {
  margin: 0 6px;
}
.task-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.add-form-wrap {
  width: 100%;
  padding: 15px;
}
label.form-control {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.icon-edit2::before {
  content: "\f044";
  font-family: 'FontAwesome';
}
.icon-ok::before {
  content: "\f046";
  font-family: 'FontAwesome';
}
.action a {
  padding: 2px 3px;
  font-size: 20px;
}
.action a::before {
  width: 20px;
  height: 20px;
}
@media all and (max-width: 400px) {
  .table-wrapper {
    overflow-x: auto;
  }
}
.instance-row.deleted,
.instance-row.done {
  opacity: 0.6;
}
.instance-row.urgent {
  background-color: #d6fee2;
}
.instance-row.expired {
  background-color: #ffffc8;
}
.instanse-string {
  padding: 0.2rem 0;
  line-height: 1.4;
  display: -webkit-flex;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.instanse-string--cutted {
  height: auto;
  max-height: 36px;
  overflow: hidden;
}
.instanse-string--edit {
  display: none;
  text-align: right;
}
.instanse-string-name {
  width: 60px;
  min-width: 60px;
}
.nowrap {
  white-space: nowrap;
}
.todo-instance-open .instanse-string--cutted {
  max-height: 100%;
}
.todo-instance-open .instanse-string--edit {
  display: block;
}
.show-edit-form,
.done-task {
  margin-left: 10px;
  font-size: 1.2rem;
}
.todo-table-wrapper {
  padding-bottom: 20px;
}
.instanse-task-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
/* To-do list end */

#toggleFilters,
#filtersForm {
  margin-bottom: 2em;
}
/*# sourceMappingURL=style.css.map */
