@charset "UTF-8";
@font-face {
  font-family: "Raleway";
  src: url(/fonts/Raleway-Light.woff2?45e75ce1eef39d0cb547f1b1ebcab252) format("woff2"), url(/fonts/Raleway-Light.woff?d6488db1ccfc4e748f344051180e27a3) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url(/fonts/Raleway-ExtraBold.woff2?2beb9188ded6ecf04caf864d53cc3913) format("woff2"), url(/fonts/Raleway-ExtraBold.woff?ca25a2b19d5dd0b257876f1744e6131d) format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url(/fonts/Raleway-Bold.woff2?0ec2e848783463e7ebfa3332fe2a7b2c) format("woff2"), url(/fonts/Raleway-Bold.woff?24df9add62b475756c3d7c9a5189508d) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/fonts/OpenSans-Regular.woff2?403af3bc2c6126fb5ceff6c4112ab055) format("woff2"), url(/fonts/OpenSans-Regular.woff?1a2ff0afe928f70557f484f33944ffa9) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/fonts/OpenSans-Bold.woff2?b87be75f5095e2b4ffe9b3b69aac5438) format("woff2"), url(/fonts/OpenSans-Bold.woff?d8c999d213d87b68612d85b0e26490bb) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url(/fonts/Cinzel-Bold.woff2?112b68c69e1adb51f9f8806572a4fbfb) format("woff2"), url(/fonts/Cinzel-Bold.woff?70e3fd7935424897bb21b426701446b1) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url(/fonts/Cinzel-Regular.woff2?8dae07e83f3e4308fdf2a3a49ba608b6) format("woff2"), url(/fonts/Cinzel-Regular.woff?86ffea20079c255eee232309007d9f78) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --main-color: #009DDC;
  --btns-color: #F26430;
  --main-gradient: linear-gradient(94.35deg, #009DDC 17.13%, #008AC2 82.87%);
}

html {
  box-sizing: border-box;
}

body {
  position: relative;
  background: #EBEBEB;
}
body.modal-open {
  overflow: hidden;
}
body.polyana-tours {
  --main-color: #175B2A;
  --main-gradient: linear-gradient(94.35deg, #175B2A 17.13%, #0F4A1F 82.87%);
}
body.polyana-tours #tour_partnership_form .container.partnership .intro .wrap img.partners-image {
  display: none;
}
body.polyana-tours #tour_partnership_form .container.partnership .intro .wrap img.partners-image.polyana {
  display: block;
}

* {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.svg-image path {
  fill: var(--main-color);
}

.svg-path {
  fill: var(--main-color);
}

.svg-anim {
  animation: shakeLoader 0.5s linear forwards infinite;
}

@keyframes shakeLoader {
  0% {
    transform: translate(-3px, 0);
  }
  50% {
    transform: translate(3px, 0);
  }
  100% {
    transform: translate(-3px, 0);
  }
}
.loader {
  display: none;
}
.loader.active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f7f7f7;
  z-index: 99999;
  overflow: hidden;
  opacity: 1;
}
.loader.active .icon {
  display: flex;
}
@media (max-width: 550px) {
  .loader.active .icon img {
    max-width: 100px;
  }
}
.loader.small {
  position: static;
  height: 200px;
  border-radius: 10px;
  background: #fff;
}
@media (min-width: 1141px) {
  .loader.small {
    height: 300px;
    border-radius: 0;
  }
}
.loader.form-loader {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

ul li {
  list-style: none;
}

input {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

.form textarea {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  background: none;
  border: none;
  resize: none;
  height: 19px;
  width: 100%;
  font-size: 15px;
}

textarea.rent-data {
  overflow: hidden;
  cursor: pointer;
  border: none;
  outline: none;
}

.form textarea[disabled].rent-data {
  color: #14080e;
  opacity: 1;
  -webkit-text-fill-color: #14080e;
}

.tour-footer-title input[disabled] {
  color: #fff;
  opacity: 1;
  -webkit-text-fill-color: #fff;
}

[type=checkbox]:checked,
[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

[type=checkbox] + label {
  position: relative;
  top: -5px;
  left: -5px;
  cursor: pointer;
}

[type=checkbox].filled-in + label:after {
  height: 16px;
  width: 16px;
  background: #fff;
}

[type=checkbox].filled-in + label:after,
[type=checkbox].filled-in + label:before {
  content: "";
  top: calc(50% - 4px);
  left: 6px;
  position: absolute;
  transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  z-index: 1;
  border: 1px solid #14080E;
  border-radius: 100%;
  width: 16px;
  height: 16px;
}

[type=checkbox].filled-in:checked + label:before {
  background-image: url(/images/сheck-green.svg?022f270ff84c6e9910eb55126442c7dd);
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
}

[type=checkbox].filled-in:checked + label:after {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  top: calc(50% - 4px);
  border: none;
  background-color: var(--main-color);
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

h2, .menu-links {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

h3 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

p, label {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

p.small {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

button, a {
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #000000;
  outline: none;
  text-decoration: none;
  background: none;
  border: none;
}

button[disabled] {
  cursor: not-allowed;
}

a.phone-desktop {
  position: relative;
}
a.phone-desktop:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-image: url(/images/line.png?5cb5f2c015faa85354912cd2bd31d196);
  height: 1px;
  background-repeat: no-repeat;
  background-size: cover;
}

.btn {
  display: block;
  background: var(--btns-color);
  border-radius: 5px;
  color: #fff;
  padding: 15px;
}
.btn:disabled, .btn[disabled] {
  opacity: 0.6;
}

.btn:hover {
  background: #FC7A1E;
  transition: 0.3s ease;
}

.btn:active,
.btn:focus {
  background: var(--btns-color);
  box-shadow: 0 4px 6px rgba(20, 8, 14, 0.07);
  transition: 0.3s ease;
}

.disabled-btn {
  background: var(--btns-color);
  opacity: 0.6;
  cursor: default;
}

button.gray-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 13px 20px;
  background: #EBEBEB;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #F26430;
}

button.gray-btn:hover,
button.gray-btn:active,
button.gray-btn:focus {
  transition: 0.3s ease;
  background: #D4D4D4;
}

.disabled-gray-btn {
  cursor: default;
  opacity: 0.45;
}

.blue-btn {
  background-color: var(--main-color);
  border-radius: 5px;
  padding: 8px 18px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}

button.blue-btn:hover,
button.blue-btn:active,
button.blue-btn:focus {
  transition: 0.3s ease;
  box-shadow: 0 4px 6px rgba(20, 8, 14, 0.07);
}

.text {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  line-height: 9px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #111111;
}

.form .v-select .vs__dropdown-toggle {
  border: none;
  padding: 0;
  height: auto;
  cursor: pointer;
}

.form .v-select .vs__dropdown-toggle input {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.form .v-select .vs__dropdown-toggle .vs__selected-options {
  position: relative;
}

.form .v-select .vs__dropdown-toggle .vs__selected {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  border: none;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

.form .v-select .vs__dropdown-toggle .vs__actions,
.form .v-select .vs__dropdown-toggle .vs__selected-options {
  padding: 0;
}

.form .v-select .vs__dropdown-toggle .vs__actions svg {
  margin-left: 5px;
}

.form .v-select .vs__dropdown-menu {
  margin: 0;
  padding: 0;
  border: none;
}

.form .v-select .vs__dropdown-menu li {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: normal;
  font-feature-settings: "pnum" on, "lnum" on;
}
.form .v-select .vs__dropdown-menu li:hover {
  background: var(--main-color);
}

.form .v-select .vs__dropdown-menu li[aria-selected] {
  background: var(--main-color);
}

.form .add-numbers.rooms-modal .v-select .vs__dropdown-toggle .vs__selected {
  font-weight: 400;
  position: relative;
  top: unset;
  transform: unset;
}

.form .add-numbers.rooms-modal .v-select .vs__dropdown-menu {
  left: unset;
  right: 0;
}

.rooms-modal,
.rooms-modal label,
.rooms-modal input {
  cursor: pointer;
}

.rooms-overlay {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
}

.rooms-modal.open + .rooms-overlay {
  display: block;
}

.many-people-modal.open + .rooms-overlay {
  display: block;
}

.content {
  overflow: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 500;
  padding: 14px 4px;
  background: var(--main-color);
  box-shadow: 0 4px 4px rgba(20, 8, 14, 0.07);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrap-hrefs {
  width: 38%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 1024px) {
  .header-wrap-hrefs {
    width: 47%;
  }
}
@media (max-width: 870px) {
  .header-wrap-hrefs {
    display: none;
  }
}
.header-wrap-hrefs a {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .header-wrap-hrefs a {
    font-size: 12px;
  }
}
@media (max-width: 870px) {
  .header-wrap-hrefs a {
    font-size: 10px;
  }
}
.header-wrap-hrefs a:after {
  display: block;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  content: "";
  transition: width 0.3s ease-out;
}
.header-wrap-hrefs a:hover:after,
.header-wrap-hrefs a.active:after,
.header-wrap-hrefs a:focus:after {
  width: 100%;
}

.header-lang {
  position: relative;
}
.header-lang .has-img-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-lang .has-img-text:hover {
  cursor: pointer;
}
.header-lang .has-img-text .lang-img {
  width: 25px;
  height: 25px;
  background-image: url(/images/lang-ico.svg?9bd03ce2bbee4b3b88b81fae1604993d);
  background-size: 100%;
}
.header-lang .has-img-text .lang-text {
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 0 10px;
}
.header-lang .one-pix-lang {
  width: 0px;
  height: 0px;
  display: none;
  font-size: 0;
  background-color: transparent;
  letter-spacing: 0;
  position: relative;
  bottom: 0;
}
.header-lang .one-pix-lang.active {
  display: block;
}
.header-lang .one-pix-lang .lang-list {
  background-color: #ffffff;
  padding: 6px;
  border-radius: 6px;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 1000;
}
.header-lang .one-pix-lang .lang-list li a {
  display: block;
  color: #000000;
  padding: 10px 20px 10px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 18px;
  font-weight: normal;
}
.header-lang .one-pix-lang .lang-list li a:hover {
  background-color: #459BD7;
}

.links {
  display: flex;
  align-items: center;
}

.phone button,
.login button,
.menu button {
  cursor: pointer;
}

.phone,
.login {
  margin-right: 30px;
}

.overlay {
  background-color: #fff;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  transition: 0.5s ease;
}

.phone-bar.open + .overlay,
.nav-bar.open + .overlay {
  right: 0;
  opacity: 1;
  transition: 0.5s ease;
}

.phone-bar,
.nav-bar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  overflow: auto;
  transition: 0.5s ease;
  z-index: 99999;
  background-color: #fff;
}

.phone-bar.open,
.nav-bar.open {
  left: 0;
  transition: 0.5s ease;
}
.phone-bar.open .nav-bar_wrap .login-alt .login a span,
.nav-bar.open .nav-bar_wrap .login-alt .login a span {
  color: black;
  font-size: 16px;
  padding-bottom: 0;
  overflow: visible;
}
@media (max-width: 767px) {
  .phone-bar.open .nav-bar_wrap .login-alt .login a,
  .nav-bar.open .nav-bar_wrap .login-alt .login a {
    display: none;
  }
}
.phone-bar.open .nav-bar_wrap .login-alt .logout-href-icon,
.nav-bar.open .nav-bar_wrap .login-alt .logout-href-icon {
  display: none;
}
@media (max-width: 767px) {
  .phone-bar.open .nav-bar_wrap .login-alt .logout-href-icon,
  .nav-bar.open .nav-bar_wrap .login-alt .logout-href-icon {
    display: block;
  }
}
@media (max-width: 767px) {
  .phone-bar.open .nav-bar_wrap .nav-list,
  .nav-bar.open .nav-bar_wrap .nav-list {
    overflow-y: scroll;
    height: 700px;
  }
}
@media (min-width: 768px) {
  .phone-bar.open .nav-bar_wrap,
  .nav-bar.open .nav-bar_wrap {
    overflow-y: scroll;
    height: 450px;
  }
}

.nav-bar-top {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--main-color);
  box-shadow: 0 4px 4px rgba(20, 8, 14, 0.07);
}

#menu_close,
#phone-close {
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #D0D0D0;
}

.login-alt img {
  margin-right: 15px;
}

.login-alt a,
.login-alt span {
  display: flex;
  align-items: center;
}

.login-alt a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

.nav-list li {
  border-bottom: 1px solid #D0D0D0;
}

.nav-list a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 25px;
}

.nav-list a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

.phone-bar-wrap {
  padding: 40px 20px 34px;
  position: relative;
}

.phone-bar-date-wrap {
  padding: 30px 20px;
  position: relative;
}

.phone-bar-date-wrap p {
  margin-bottom: 10px;
}

.phone-bar-date-wrap .phone-bar-date {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #111111;
  margin-bottom: 10px;
}

.phone-bar-date-wrap .phone-bar-date:last-child {
  margin-bottom: 0;
}

.phone-bar-date-wrap:after,
.phone-bar-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #D0D0D0;
}

.phone-bar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.phone-bar-top p {
  max-width: 160px;
}

.phone-bar-list li a {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #111111;
}

.phone-bar-list li a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

.phone-bar-form-wrap {
  padding: 30px 20px 28px;
}

.phone-form .phone-input-wrap {
  margin-bottom: 8px;
}

.phone-form label {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #14080E;
  margin-bottom: 15px;
}

.phone-form input {
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  color: rgba(20, 8, 14, 0.45);
  padding: 17px 20px;
  width: 100%;
}

.phone-form input::-moz-placeholder {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  color: rgba(20, 8, 14, 0.45);
}

.phone-form input::placeholder {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  color: rgba(20, 8, 14, 0.45);
}

.phone-form .btn {
  width: 100%;
  padding: 17px;
  color: #fff;
}

.phone-bar-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.phone-bar-socials a {
  margin-right: 16px;
  max-width: 40px;
  width: 100%;
}

.phone-bar-socials a:last-child {
  margin-right: 0;
}

.container {
  position: relative;
  max-width: 735px;
  margin: 0 auto;
}

.glory-tour {
  position: relative;
  padding: 28px 0 31px;
  margin-bottom: 0;
  background-image: url(/images/glory-tour-bg.png?83734ee1c2dc05732b8fc428256f0020);
  background-color: var(--main-color);
  background-repeat: repeat;
  background-size: cover;
}
.glory-tour .form textarea {
  overflow: hidden;
}

.slide-down {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-color);
  box-shadow: 0 4px 4px rgba(20, 8, 14, 0.07);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.logo {
  position: relative;
}
.logo.beta:after {
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 12px;
  line-height: 12px;
  position: absolute;
  right: -84px;
  width: 80px;
}
@media (max-width: 767px) {
  .logo.beta:after {
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .logo.beta:after {
    top: 0;
  }
}
.logo .title {
  color: white;
}

.logo-wrap {
  margin-bottom: 15px;
}
.logo-wrap p {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.logo-wrap img {
  max-width: 211px;
  margin: 0 auto;
  display: block;
  margin-bottom: 10px;
}

.glory-tour h1 {
  color: #fff;
  text-align: center;
  justify-content: center;
  margin-bottom: 26px;
}

.form {
  padding: 16px;
  background: #FFFFFF;
  box-shadow: 0 15px 20px rgba(20, 8, 14, 0.07);
  border-radius: 10px;
}

.modal {
  -webkit-overflow-scrolling: touch;
}

.modal .form,
.glory-tour .form {
  margin-bottom: 30px;
}
.modal .form .vfc-multiple-input,
.glory-tour .form .vfc-multiple-input {
  display: flex;
  justify-content: flex-start;
}
.modal .form .vfc-multiple-input input, .modal .form .vfc-multiple-input textarea,
.glory-tour .form .vfc-multiple-input input,
.glory-tour .form .vfc-multiple-input textarea {
  border: none;
  width: 90px;
  font-size: 15px;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #14080E;
}
.modal .form .vfc-multiple-input input:first-child, .modal .form .vfc-multiple-input textarea:first-child,
.glory-tour .form .vfc-multiple-input input:first-child,
.glory-tour .form .vfc-multiple-input textarea:first-child {
  text-align: left;
  width: 80px;
  margin-right: 20px;
  padding-right: 8px;
}
@media (max-width: 500px) {
  .modal .form .vfc-multiple-input input:first-child, .modal .form .vfc-multiple-input textarea:first-child,
  .glory-tour .form .vfc-multiple-input input:first-child,
  .glory-tour .form .vfc-multiple-input textarea:first-child {
    padding: 0;
    margin: 0;
    width: 100px;
    text-align: left;
  }
}
.modal .form .input-wrap.search,
.glory-tour .form .input-wrap.search {
  padding: 15px 12px;
}

.input-wrap {
  margin-bottom: 16px;
  border: 1px solid #D0D0D0;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 16px 12px;
}

.input-wrap input {
  width: 100%;
}

input::-moz-placeholder {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

input,
input::placeholder {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

.search-icon {
  margin-right: 11px;
}
@media (max-width: 991px) {
  .search-icon {
    min-width: 10px;
  }
}

.input-wrap.search {
  display: flex;
  align-items: center;
}

.vfc-calendars-container {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
}
.vfc-calendars-container div, .vfc-calendars-container span, .vfc-calendars-container p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
}
.vfc-calendars-container .vfc-top-date.vfc-center {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
}
.vfc-calendars-container .vfc-dayNames span {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
}
.vfc-calendars-container .vfc-week .vfc-day span {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
}

@media (max-width: 500px) {
  #main-form .input-wrap.with-label .vfc-multiple-input {
    display: grid;
    grid-template-columns: 45% 12% 47%;
    align-items: center;
    max-width: 154px;
  }
  #main-form .input-wrap.with-label .vfc-multiple-input:after {
    content: "—";
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #14080E;
    justify-self: flex-end;
  }
  #main-form .input-wrap.with-label .vfc-multiple-input input:first-child {
    grid-column-start: 1;
    grid-row-start: 1;
  }
  #main-form .input-wrap.with-label .vfc-multiple-input input:last-child {
    grid-column-start: 3;
    grid-row-start: 1;
    width: 110%;
    text-align: right;
    padding-right: 5px;
  }
}

.input-wrap.with-label {
  position: relative;
  padding: 8px 12px;
  cursor: pointer;
  min-height: 52px;
  max-height: 52px;
}
@media (max-width: 500px) {
  .input-wrap.with-label {
    max-height: unset;
  }
}
.input-wrap.with-label label {
  line-height: 16px;
}
.input-wrap.with-label .vfc-popover-container {
  position: relative;
}
@media (min-width: 501px) {
  .input-wrap.with-label .vfc-popover-container:after {
    content: "—";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 70px;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #14080E;
  }
}
.input-wrap.with-label input {
  cursor: pointer;
}
.input-wrap.with-label .vfc-calendars-container .vfc-content div:last-child div.vfc-week {
  height: 33px;
}
.input-wrap.with-label .vfc-calendars-container .vfc-calendar .vfc-content {
  margin-bottom: 25px;
}
.input-wrap.with-label .vfc-content div:last-child div:not(.vfc-week) {
  height: 0 !important;
}

.input-wrap label {
  display: block;
  margin-bottom: 2px;
}

.form .btn {
  max-width: 296px;
  width: 100%;
  margin: 0 auto;
}

.glory-tour__description p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: normal;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}

.search-tours {
  min-height: 100vh;
}

.tour-cards {
  margin-bottom: 32px;
}
.tour-cards .card-img {
  margin-bottom: 0;
}
.tour-cards .more {
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}

.tour-cards h2 {
  margin-bottom: 20px;
}

.card {
  filter: drop-shadow(0px 4px 6px rgba(20, 8, 14, 0.07));
  border-radius: 10px;
  margin-bottom: 13px;
}
@media (max-width: 767px) {
  .card {
    margin-bottom: 13px;
  }
}

.card-header {
  position: relative;
  background: #FFFFFF;
  padding: 15px;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 767px) {
  .card-header .head-wrap {
    align-items: flex-start;
    max-height: 29px;
    overflow: hidden;
  }
  .card-header .head-wrap h3 {
    max-width: 95px;
  }
}
.card-header p {
  max-width: 70%;
}

.head-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.head-wrap h3 {
  margin-right: 4px;
}

.rates {
  display: flex;
  position: absolute;
  right: 8px;
  top: -8px;
}

.rate-icon p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 125%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  letter-spacing: -0.04em;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  max-width: 100%;
}

.rate-item {
  margin-right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rate-item p {
  max-width: 100%;
}

.rate-icon {
  width: 36px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.glory-rate .rate-icon {
  background-image: url(/images/glory-rate.svg?659c2cff0dbdcbf03f1d765ab7d97bcd);
}

.tripadvisor-rate .rate-icon {
  background-image: url(/images/tripadvisor-rate.svg?ad2a0fff007d039d5c29af29d8a11405);
}

.google-rate .rate-icon {
  background-image: url(/images/google-rate.svg?b169d18f4a39c61637d9980adae5b4e9);
}

.rate-item:last-child {
  margin: 0;
}

.rates p.small {
  color: var(--main-color);
  display: flex;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  outline: none;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.5);
}

.swiper-container .swiper-button-next {
  border-radius: 5px 0 0 5px;
  right: 0;
}

.swiper-container .swiper-button-prev {
  border-radius: 0 5px 5px 0;
  left: 0;
}

.swiper-button-next:after {
  background-image: url(/images/arrow-next.svg?68858b5dbd12e04645d02ff0f0ec6d07);
  background-repeat: no-repeat;
}

.swiper-button-prev:after {
  background-image: url(/images/arrow-prev.svg?7fb582ba8cd218fbfb702fd4096416f4);
  background-repeat: no-repeat;
}

.swiper-container .swiper-button-next:after,
.swiper-container .swiper-button-prev:after {
  content: "";
  width: 11px;
  height: 21px;
}

.swiper-container .swiper-button-next.swiper-button-disabled,
.swiper-container .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.swiper-container .swiper-slide {
  display: flex;
  align-items: center;
}

.card-footer {
  background: #FFFFFF;
  box-shadow: 0 4px 6px rgba(20, 8, 14, 0.07);
  padding: 18px 15px;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .price-description span, .price-description .word-helper {
    font-size: 10px;
    line-height: 12px;
  }
}

.price {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .price {
    flex-direction: row;
    margin-bottom: 3px;
  }
}
@media (max-width: 360px) {
  .price {
    justify-content: flex-start;
  }
}

.btn-hot-price {
  background-color: #EA4335;
  transition: 0.3s;
}
.btn-hot-price:hover {
  background-color: #e6665b;
}

.hot-price {
  color: #EA4335 !important;
}

@media (max-width: 1024px) {
  .hotel-page .price {
    flex-direction: row;
    margin-bottom: 3px;
  }
  .hotel-page .price p {
    font-size: 20px;
    line-height: 19px;
    margin-right: 8px;
    margin-bottom: 0;
  }
  .hotel-page .price p span.currency {
    font-size: 14px;
    line-height: 14px;
    margin-left: 3px;
  }
  .hotel-page .price p.old-price {
    font-size: 12px;
    line-height: 13px;
  }
  .hotel-page .price p.old-price span.currency {
    font-size: 9px;
    line-height: 11px;
    margin-left: 3px;
  }
  .hotel-page .price p.old-price:before {
    top: 52.6%;
  }
  .hotel-page .price-description {
    justify-content: flex-start;
  }
}
@media (max-width: 378px) {
  .hotel-page .price {
    justify-content: flex-start;
  }
  .hotel-page .price p.old-pric {
    position: absolute;
    left: 152px;
  }
}

.price p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .price p {
    font-size: 20px;
    line-height: 19px;
    margin-right: 8px;
    margin-bottom: 0;
  }
}
@media (max-width: 360px) {
  .price p {
    font-size: 14px;
    line-height: 12px;
  }
}
.price p span.currency {
  font-size: 17px;
  line-height: 14px;
  display: flex;
  align-items: flex-end;
  margin-left: 6px;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .price p span.currency {
    font-size: 14px;
    line-height: 14px;
    margin-left: 0;
    margin-right: 3px;
  }
}
@media (max-width: 360px) {
  .price p span.currency {
    font-size: 12px;
    line-height: 12px;
  }
}
.price p.old-price {
  font-weight: 700;
  font-size: 20px;
  line-height: 12px;
  display: flex;
  align-items: flex-end;
  text-align: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #841C14;
  position: relative;
  max-width: 77px;
  margin: 0 auto 5px;
}
@media (max-width: 767px) {
  .price p.old-price {
    font-size: 12px;
    line-height: 13px;
  }
}
.price p.old-price:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  left: 0;
  right: 0;
  background-color: #841C14;
}
@media (max-width: 767px) {
  .price p.old-price:before {
    top: 52%;
  }
}
.price p.old-price span.currency {
  font-size: 12px;
  line-height: 9px;
  margin-left: 6px;
}
@media (max-width: 767px) {
  .price p.old-price span.currency {
    font-size: 9px;
    line-height: 11px;
    margin-left: 3px;
  }
}

.price-description-general {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.price-description-general .price-description {
  display: grid;
  grid-column-gap: 10px;
  grid-template-columns: 1.2fr 3fr;
}
.price-description-general .price-description .liner {
  display: flex;
}
.price-description-general .price-description .liner .person-count {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (max-width: 768px) {
  .price-description-general .price-description .liner .person-count {
    font-size: 10px;
    line-height: 12px;
  }
}
.price-description-general .price-description .liner .person-count .word-helper {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (max-width: 768px) {
  .price-description-general .price-description .liner .person-count .word-helper {
    font-size: 12px;
    line-height: 15px;
  }
}
.price-description-general .price-description .liner .childrens {
  margin-right: 2px;
  padding-bottom: 3px;
}
@media (max-width: 767px) {
  .price-description-general .price-description .liner .childrens {
    margin-right: 4px;
    padding-bottom: 6px;
  }
}
.price-description-general .price-description .icons {
  justify-content: flex-end;
  align-items: center;
}
.price-description-general .price-description .num {
  align-items: center;
}
.price-description-general .last {
  margin-bottom: 10px;
}
.price-description-general .person-count {
  margin: 0;
}

.card-footer .btn {
  padding: 8px 24px;
}

.card-arrow {
  width: 32px;
  height: 32px;
  background: #E7E7E7;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.card-footer.show .card-arrow img {
  transform: rotate(180deg);
}

.hidden-card-description {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  margin: 0 16px;
}

.hidden-card-description__content {
  padding: 12px 14px 12px 12px;
  border-bottom: 1px solid #D0D0D0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hidden-card-description__content ul.card-services {
  display: flex;
  align-items: center;
}
.hidden-card-description__content ul.card-services li {
  display: flex;
  align-items: center;
  margin-right: 12px;
  max-width: 28px;
  max-height: 28px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 20;
}
.hidden-card-description__content ul.card-services li:last-child {
  margin: 0;
  max-width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .hidden-card-description__content ul.card-services li {
    margin-right: 8px;
    max-width: 28px;
    max-height: 28px;
  }
}
.hidden-card-description__content ul.card-services li:hover p.tooltip {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.hidden-card-description__content ul.card-services li img {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .hidden-card-description__content ul.card-services li img {
    width: 28px;
    height: 28px;
  }
}
.hidden-card-description__content ul.card-services li p.tooltip {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: 34px;
  left: -8px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  overflow: visible;
}
@media (max-width: 1140px) {
  .hidden-card-description__content ul.card-services li p.tooltip {
    min-width: 300px;
    max-width: 300px;
    max-height: 28px;
    min-height: 28px;
  }
}
@media (max-width: 767px) {
  .hidden-card-description__content ul.card-services li p.tooltip {
    min-width: 170px;
    max-width: 170px;
    max-height: 20px;
    min-height: 20px;
    top: 38px;
    left: -3px;
  }
}
.hidden-card-description__content ul.card-services li p.tooltip span.tooltip-text {
  border-radius: 5px;
  box-shadow: 0 4px 10px 0 rgba(0, 157, 220, 0.75);
  padding: 5px;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--main-color);
  width: auto;
  overflow: hidden;
}
@media (min-width: 1141px) {
  .hidden-card-description__content ul.card-services li p.tooltip span.tooltip-text {
    padding: 7px;
  }
}
@media (max-width: 1140px) {
  .hidden-card-description__content ul.card-services li p.tooltip span.tooltip-text {
    font-size: 12px;
    line-height: 12px;
  }
}
@media (max-width: 767px) {
  .hidden-card-description__content ul.card-services li p.tooltip span.tooltip-text {
    font-size: 10px;
    line-height: 10px;
  }
}
.hidden-card-description__content ul.card-services li p.tooltip:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 6px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #F5F5F5;
}
@media (min-width: 768px) {
  .hidden-card-description__content ul.card-services li p.tooltip:before {
    left: 10px;
  }
}
.hidden-card-description__content ul.card-services li span:not(.tooltip-text) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  margin-right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .hidden-card-description__content ul.card-services li span:not(.tooltip-text) {
    font-size: 10px;
    line-height: 10px;
    margin-right: 4px;
    width: 28px;
    height: 28px;
  }
}
.hidden-card-description__content ul.card-services li p.card-services-text {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  max-width: 100%;
}
@media (max-width: 767px) {
  .hidden-card-description__content ul.card-services li p.card-services-text {
    font-size: 10px;
    line-height: 12px;
  }
}

.hidden-card-description__content a {
  display: block;
}

.hidden-card-description__content a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

.hidden-card-description__content:last-child {
  border: none;
}

.hidden-card-description__text p.small {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  display: flex;
  align-items: flex-end;
  color: #14080E;
  margin-bottom: 12px;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .hidden-card-description__text p.small {
    font-size: 11px;
    line-height: 11px;
  }
}

.hidden-card-description__text p.small .hot-tour {
  margin-bottom: 2px;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  transform: scale(1.3);
}

.tour-package {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  display: block;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin-bottom: 8px;
}
@media (max-width: 1140px) {
  .tour-package {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .tour-package {
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 3px;
  }
}

.partners {
  background-color: #fff;
  margin-bottom: 32px;
}

.partners-wrap {
  padding: 32px 0;
}

.partners-items {
  border-bottom: 1px solid #D0D0D0;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.partners-items-row {
  padding: 0 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partners-items-row:last-child {
  margin-bottom: 0;
}

.partners-item {
  max-width: 84px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-description h2 {
  max-width: 150px;
  margin: 0 auto 24px;
  text-align: center;
  justify-content: center;
}

.partners-description p {
  margin: 0 auto 24px;
  text-align: center;
  justify-content: center;
  max-width: 265px;
}

.partners-description a {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.features {
  margin-bottom: 32px;
}

.features-wrap {
  padding: 0 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 0.45fr 5fr;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(20, 8, 14, 0.07);
  border-radius: 10px;
  margin-bottom: 14px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-image {
  display: flex;
  margin-right: 16px;
  min-width: 40px;
}

.feature-content h3 {
  margin-bottom: 9px;
}

.footer {
  background: #14080E;
  padding: 32px 24px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
}

.phone-list {
  margin-bottom: 20px;
}
.phone-list li {
  display: flex;
}

.footer-links,
.footer .address p {
  color: #fff;
  font-size: 10px;
  line-height: 12px;
}

.footer-links:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

.email {
  margin-bottom: 20px;
  display: block;
}

.footer-socials a {
  display: block;
  max-width: 40px;
  max-height: 40px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .footer-socials {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    grid-row-gap: 10px;
  }
  .footer-socials a {
    margin: 0;
  }
}

.copy-right {
  padding: 10px 0;
  text-align: center;
}

/* Hotels pages */
.hotel-info {
  background-color: #fff;
  padding-top: 26px;
  padding-bottom: 28px;
}

.hotel-info__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hotel-info__title h2 {
  margin-right: 4px;
}

.hotel-info__title-wrap {
  margin-bottom: 2px;
  display: flex;
  align-items: baseline;
}

.hotel-info__rates {
  display: flex;
  align-items: baseline;
}

.tour-choices-tabs {
  background-color: #fff;
  padding-bottom: 21px;
}
@media (max-width: 1024px) {
  .tour-choices-tabs {
    margin-bottom: 24px;
  }
}

.tabs-component-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D0D0D0;
  margin-bottom: 20px;
}

.tabs-component-tabs li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  padding-bottom: 12px;
}

.tabs-component-tabs li a {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: flex-end;
  text-align: center;
  justify-content: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  width: 100%;
}

.tabs-component-tabs li.is-active a {
  font-weight: bold;
}

.tabs-component-tabs li.is-active a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #14080E;
}

.tab p,
.tabs-component-panel p {
  margin-bottom: 8px;
}

.tab, .tabs-component-panel {
  /* fixme fasfix, need to refactor */
}
.tab span, .tabs-component-panel span {
  margin-left: 0;
  width: 10px;
}
@media (max-width: 1025px) {
  .tab span, .tabs-component-panel span {
    justify-content: unset;
    width: 100%;
  }
}
.tab .location span, .tabs-component-panel .location span {
  margin-left: 0;
}

.tab a,
.tabs-component-panel a {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  display: flex;
  align-items: center;
  max-width: 100px;
}

.tab a:hover,
.tabs-component-panel a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

.tab .additional-services-wrap:last-child,
.tabs-component-panel .additional-services-wrap:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .tabs-component-panel .additional-services-wrap {
    margin: 0 !important;
  }
}

.tour-additional-services .tab {
  display: flex;
  margin: 0 -4px;
}
@media (max-width: 767px) {
  .tour-additional-services .tab {
    display: block;
    margin: 0;
  }
}

.tab .additional-services-wrap,
.tabs-component-panel .additional-services-wrap {
  margin: 0 4px;
  width: 100%;
}
@media (max-width: 767px) {
  .tab .additional-services-wrap,
  .tabs-component-panel .additional-services-wrap {
    display: block;
    margin: 0 0 8px;
  }
}
@media (min-width: 768px) {
  .tab .additional-services-wrap,
  .tabs-component-panel .additional-services-wrap {
    margin-bottom: 63px;
  }
}

.additional-services {
  width: 100%;
}

.tab .additional-service-select,
.tabs-component-panel .additional-service-select {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 8px;
}

.tab .additional-service-select:last-child,
.tabs-component-panel .additional-service-select:last-child {
  margin-bottom: 0;
}

.tab .additional-service-select.open,
.tabs-component-panel .additional-service-select.open {
  border-radius: 5px 5px 0 0;
}

.tab .additional-service-select .additional-service-select-head,
.tabs-component-panel .additional-service-select .additional-service-select-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 36px;
  background: #85DCFF;
  padding: 8px 22px 8px 10px;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  .tab .additional-service-select .additional-service-select-head,
  .tabs-component-panel .additional-service-select .additional-service-select-head {
    height: auto;
    padding: 23px 23px 23px 20px;
  }
}

.tab .additional-service-select .additional-service-select-title,
.tabs-component-panel .additional-service-select .additional-service-select-title {
  display: flex;
  align-items: center;
}
.tab .additional-service-select .additional-service-select-title span.icon,
.tabs-component-panel .additional-service-select .additional-service-select-title span.icon {
  width: 23px;
  min-height: 23px;
}
@media (min-width: 768px) {
  .tab .additional-service-select .additional-service-select-title span.icon,
  .tabs-component-panel .additional-service-select .additional-service-select-title span.icon {
    width: 23px;
  }
}

.tab .additional-service-select .additional-service-select-content,
.tabs-component-panel .additional-service-select .additional-service-select-content {
  box-sizing: border-box;
  border-radius: 0 0 5px 5px;
  height: 0;
  border: none;
}

.tab .additional-service-select.open .additional-service-select-content,
.tabs-component-panel .additional-service-select.open .additional-service-select-content {
  height: auto;
  border: 1px solid #E7E7E7;
  border-top: none;
}

.tab .additional-service-select span.icon,
.tabs-component-panel .additional-service-select span.icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

@media (min-width: 768px) {
  .tab span, .tabs-component-panel span.arrow {
    right: 22px;
  }
  .tab span img, .tabs-component-panel span.arrow img {
    width: 9px;
    height: 15px;
  }
}

.tab .additional-service-select span.arrow,
.tab .additional-service-select.open span.arrow,
.tabs-component-panel .additional-service-select span.arrow,
.tabs-component-panel .additional-service-select.open span.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  margin: 0;
}
@media (min-width: 768px) {
  .tab .additional-service-select span.arrow,
  .tab .additional-service-select.open span.arrow,
  .tabs-component-panel .additional-service-select span.arrow,
  .tabs-component-panel .additional-service-select.open span.arrow {
    right: 22px;
  }
  .tab .additional-service-select span.arrow img,
  .tab .additional-service-select.open span.arrow img,
  .tabs-component-panel .additional-service-select span.arrow img,
  .tabs-component-panel .additional-service-select.open span.arrow img {
    width: 9px;
    height: 15px;
  }
}

.tab .additional-service-select.open span.arrow,
.tabs-component-panel .additional-service-select.open span.arrow {
  transform: translateY(-50%) rotate(90deg);
}

.tab .additional-service-select p,
.tabs-component-panel .additional-service-select p {
  display: flex;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  line-height: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .tab .additional-service-select p,
  .tabs-component-panel .additional-service-select p {
    font-size: 16px;
  }
}

.tab .additional-service-select .additional-service-select-content ul,
.tabs-component-panel .additional-service-select .additional-service-select-content ul {
  padding: 8px 6px;
}

.tour-choices-tabs .tabs-component-panel .additional-service-select .additional-service-select-content ul {
  display: none;
}

.tour-choices-tabs .tabs-component-panel .additional-service-select.open {
  height: auto;
}
.tour-choices-tabs .tabs-component-panel .additional-service-select.open .additional-service-select-content ul {
  display: block;
}

.tab .additional-service-select .additional-service-select-content li,
.tabs-component-panel .additional-service-select .additional-service-select-content li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 8px;
}
@media (min-width: 768px) {
  .tab .additional-service-select .additional-service-select-content li,
  .tabs-component-panel .additional-service-select .additional-service-select-content li {
    padding-left: 12px;
  }
}

.tab .additional-service-select .additional-service-select-content li::before,
.tabs-component-panel .additional-service-select .additional-service-select-content li::before {
  content: "•";
  color: #E7E7E7;
  font-weight: bold;
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 0;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  left: 0;
}
@media (min-width: 768px) {
  .tab .additional-service-select .additional-service-select-content li::before,
  .tabs-component-panel .additional-service-select .additional-service-select-content li::before {
    height: 3px;
    transform: translateY(-184%) scale(1.5);
  }
}

.tab .additional-service-select .additional-service-select-content li:last-child,
.tabs-component-panel .additional-service-select .additional-service-select-content li:last-child {
  margin-bottom: 0;
}

.tab .additional-service-select .additional-service-select-content p,
.tabs-component-panel .additional-service-select .additional-service-select-content p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (min-width: 768px) {
  .tab .additional-service-select .additional-service-select-content p,
  .tabs-component-panel .additional-service-select .additional-service-select-content p {
    font-size: 16px;
    line-height: 20px;
  }
}

.tab .additional-service-select .additional-service-select-content span,
.tabs-component-panel .additional-service-select .additional-service-select-content span {
  display: block;
  padding-top: 2px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  line-height: 100%;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--btns-color);
  margin: 0;
}
@media (min-width: 768px) {
  .tab .additional-service-select .additional-service-select-content span,
  .tabs-component-panel .additional-service-select .additional-service-select-content span {
    font-size: 14px;
    line-height: 18px;
  }
}

.tabs-component-panel .location .location-wrap {
  margin-bottom: 13px;
}

.tabs-component-panel .location .location-wrap p {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  display: flex;
  align-items: center;
}

.tabs-component-panel .location .location-wrap a {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  display: flex;
  align-items: center;
  max-width: 130px;
}

.tabs-component-panel .location .map {
  max-width: unset;
  width: 100%;
}

.tabs-component-panel .location .location-wrap span {
  display: flex;
  align-items: center;
  margin-right: 7px;
}

.tabs-component-panel .location .location-description {
  margin-bottom: 12px;
}

.tabs-component-panel .location .location-slider {
  margin-bottom: 8px;
}

.tabs-component-panel .location .location-slider .swiper-slide img {
  width: 100%;
}

.tabs-component-panel .location .location-places {
  font-weight: bold;
  font-size: 14px;
}
.tabs-component-panel .additional-services-tabs .additional-services-wrap {
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .tabs-component-panel .additional-services-tabs {
    display: flex;
    margin: 0 -4px;
  }
  .tabs-component-panel .additional-services-tabs .additional-services-wrap {
    margin: 0 4px !important;
  }
  .tabs-component-panel .additional-services-tabs .additional-service-select {
    margin-bottom: 8px;
  }
}

.reviews {
  background-color: #fff;
  margin-bottom: 24px;
}

.reviews-wrap {
  border-top: 1px solid #D0D0D0;
  padding-top: 20px;
  padding-bottom: 26px;
}

.reviews-wrap h2 {
  justify-content: center;
  margin-bottom: 12px;
}

.reviewer {
  margin-bottom: 12px;
}

.reviewer:last-child {
  margin-bottom: 0;
}

.reviewer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-title span {
  display: flex;
}

.reviewer-title__wrap {
  display: flex;
}

.reviewer-letter {
  font-family: "Inter", sans-serif;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 100%;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
}

.reviewer-name {
  margin-right: 8px;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 100%;
  color: #14080E;
  display: flex;
  align-items: center;
}

.reviewer-mark {
  font-family: "Inter", sans-serif;
  width: 20px;
  height: 20px;
  background: #F6D81A;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: normal;
  color: #14080E;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.reviewer-content {
  padding: 0 32px;
}

.reviewer-btn {
  padding-top: 14px;
}

.reviewer-btn a {
  max-width: 135px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.reviewer-btn a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

.reviewer-btn span {
  margin-left: 7px;
  display: flex;
  align-items: center;
}

.hotel-tours {
  margin-bottom: 24px;
}

.hotel-tours h2 {
  margin-bottom: 12px;
}

.tour-card {
  background: #FFFFFF;
  box-shadow: 0 4px 6px rgba(20, 8, 14, 0.07);
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 12px 8px 10px;
}
.tour-card.hot-tour-card {
  position: relative;
  overflow: hidden;
}
.tour-card.hot-tour-card .hot-tour-flag {
  background-image: url("/img/hot-tour-flag.png");
  top: -3px;
  left: -6px;
  bottom: unset;
  padding: 6px 30px 5px 17px;
}
.tour-card.hot-tour-card .hot-tour {
  margin-right: 10px;
  transform: scale(1.3);
}

.tour-card:last-child {
  margin-bottom: 0;
}

.tour-card h3 {
  margin-bottom: 15px;
}

.hotel-services-additional li span,
.hotel__additional-service span {
  max-width: 32px;
  min-width: 32px;
}
@media (max-width: 767px) {
  .hotel-services-additional li span,
  .hotel__additional-service span {
    max-width: 25px;
    min-width: 25px;
  }
}

.tour-card-services span {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.tour-card-services p {
  display: block;
  align-items: center;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--main-color);
  max-width: 340px;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .tour-card-services p {
    font-size: 13px;
    line-height: 14px;
  }
}

.tour-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 5%;
  }
  .tour-card-footer button {
    margin-top: 15px;
  }
}
.tour-card .btn {
  padding: 8px 20px;
}

/* Tour */
.tour-card-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-column-gap: unset;
  margin: 0 -25px;
}
@media (max-width: 1062px) {
  .tour-card-services {
    margin: 0 -4px 8px;
  }
}
.tour-card-services li {
  display: flex;
  align-items: center;
  min-width: 40%;
  margin: 0 25px 13px;
}
@media (max-width: 1062px) {
  .tour-card-services li {
    min-width: 45%;
    max-width: 45%;
    margin: 4px;
  }
}
.tour-card-services li span {
  max-width: 32px;
  min-width: 32px;
}
@media (max-width: 767px) {
  .tour-card-services li span {
    max-width: 23px;
    min-width: 23px;
    min-height: 23px;
    max-height: 23px;
  }
}

.tour-page.show {
  position: fixed;
  overflow: auto;
  bottom: 0;
  padding-bottom: 10%;
}
@media (max-width: 767px) {
  .tour-page.show {
    padding-bottom: 25%;
  }
}

.tour-page {
  background-color: #fff;
}
.tour-page .tour-modal-services {
  margin-bottom: 65px;
}
.tour-page .tour-modal-services h3 {
  margin-bottom: 20px;
}
.tour-page .tour-modal-services .tour-card-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-column-gap: unset;
  margin: 0 -25px;
}
@media (max-width: 1062px) {
  .tour-page .tour-modal-services .tour-card-services {
    margin: 0 -4px 8px;
  }
}
.tour-page .tour-modal-services .tour-card-services li {
  display: flex;
  align-items: center;
  min-width: 40%;
  max-width: 40%;
  margin: 0 25px 13px;
}
@media (max-width: 1062px) {
  .tour-page .tour-modal-services .tour-card-services li {
    min-width: 45%;
    max-width: 45%;
    margin: 4px;
  }
}
.tour-page .tour-modal-services .tour-card-services li span {
  max-width: 32px;
  min-width: 32px;
}
@media (max-width: 767px) {
  .tour-page .tour-modal-services .tour-card-services li span {
    max-width: 23px;
    min-width: 23px;
    min-height: 23px;
    max-height: 23px;
  }
}
.tour-page .tour-description-mobile {
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .tour-page .tour-description-mobile {
    display: none;
    margin: 0;
  }
}
.tour-page .additional-services {
  margin-bottom: 8px;
}
.tour-page .additional-services:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  span.additional-services-list__icon img.checked-by-default {
    max-width: 24px;
    min-width: 24px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  span.additional-services-list__icon img.checked-by-default {
    max-width: 16px;
    min-width: 16px;
  }
}
.tour-info {
  padding-top: 27px;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .tour-info .small.tour-desk {
    display: block;
    font-size: 16px;
    line-height: 20px;
  }
  .tour-info .small.tour-mob {
    display: none;
  }
}

.small.tour-desk {
  display: none;
}

@media (max-width: 1024px) {
  .tour-info-form-wrap.desk {
    display: none;
  }
}
.tour-info-form-wrap.mob {
  display: none;
}
@media (max-width: 1024px) {
  .tour-info-form-wrap.mob {
    display: block;
    margin-bottom: 20px;
  }
}
.tour-info-form-wrap.mob .form {
  padding: 0;
  border-radius: unset;
  box-shadow: none;
  margin: 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.tour-info-form-wrap.mob .form .input-wrap {
  width: 100%;
  margin: 0;
}
.tour-info-form-wrap.mob .form .input-wrap:first-child {
  margin-right: 8px;
}
@media (max-width: 500px) {
  .tour-info-form-wrap.mob .form .input-wrap {
    border: 1px solid #DBD7D7;
    border-radius: 5px;
    min-width: 140px;
    padding: 0;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .tour-info-form-wrap.mob .form .input-wrap.with-label .vfc-popover-container:after {
    content: none;
  }
  .tour-info-form-wrap.mob .form .input-wrap label {
    color: rgba(20, 8, 14, 0.6);
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 125%;
    text-align: center;
  }
  .tour-info-form-wrap.mob .form .input-wrap input,
  .tour-info-form-wrap.mob .form .input-wrap textarea[disabled].rent-data {
    font-size: 14px;
    line-height: 125%;
    text-align: center;
    font-feature-settings: "pnum" on, "lnum" on;
    color: rgba(20, 8, 14, 0.6);
    -webkit-text-fill-color: rgba(20, 8, 14, 0.6);
    height: auto;
  }
  .tour-info-form-wrap.mob .form .input-wrap textarea {
    max-width: 140px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
  }
  .tour-info-form-wrap.mob .form .input-wrap .vfc-multiple-input {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 374px) {
  .tour-info-form-wrap.mob .form .input-wrap input,
  .tour-info-form-wrap.mob .form .input-wrap textarea[disabled].rent-data {
    font-size: 14px;
  }
}

.vfc-popover-container:after {
  left: 77px !important;
}

.vfc-multiple-input input:first-of-type {
  text-align: right;
  width: 80px;
  margin-right: 20px;
  padding-right: 9px;
}

@media (min-width: 1025px) {
  .tour-info-wrap {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 30px;
  }
  .tour-info-wrap .tour-info__top {
    flex-direction: column;
    max-width: 390px;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .tour-info-wrap .tour-info__top .close-tour-modal {
    position: absolute;
    right: 0;
  }
  .tour-info-wrap .tour-info__top .tour-info__title {
    margin-bottom: 38px;
  }
  .tour-info-wrap .tour-info__top .tour-info__title h2 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 4px;
  }
  .tour-info-wrap .tour-info-form-wrap {
    width: 100%;
    margin-right: 78px;
  }
  .tour-info-wrap .tour-info-form-wrap .form {
    display: flex;
    margin-bottom: 30px;
  }
}
@media (min-width: 1025px) and (max-width: 1140px) and (min-width: 1024px) {
  .tour-info-wrap .tour-info-form-wrap .form .input-wrap.with-label:first-child {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .tour-info-wrap .tour-info-form-wrap .form .input-wrap.with-label {
    width: 100%;
    margin-bottom: 0;
  }
  .tour-info-wrap .tour-info-form-wrap .form .input-wrap.with-label:first-child {
    margin-right: 30px;
  }
  .tour-info-wrap .tour-info-form-wrap .tour-card-services {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .tour-info-wrap .tour-info-form-wrap .tour-card-services li {
    max-width: 267px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .tour-info-wrap .tour-info-form-wrap .tour-card-services li:nth-child(odd) {
    margin-right: 60px;
  }
}
@media (min-width: 1025px) and (min-width: 1024px) and (max-width: 1260px) {
  .tour-info-wrap .tour-info-form-wrap .tour-card-services li:nth-child(odd) {
    margin-right: 20px;
  }
}
@media (min-width: 1025px) {
  .tour-info-wrap .tour-info-form-wrap .tour-card-services li span {
    display: flex;
    align-items: center;
    margin-right: 8px;
  }
  .tour-info-wrap .tour-info-form-wrap .tour-card-services li p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1024px) {
  .tour-info-wrap p:nth-child(3) {
    display: none;
  }
}

.tour-info__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .tour-info__top {
    margin-bottom: 16px;
  }
}
.tour-info__top .close-tour-modal img {
  min-width: 22px;
}

.tour-info__title h2 {
  margin-bottom: 2px;
}

.tour-info__top span {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.tour-info .form {
  padding: 0;
  box-shadow: none;
  border-radius: unset;
  margin-bottom: 20px;
}

.tour-rooms {
  padding-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .tour-rooms {
    padding-top: 0;
    margin-bottom: 65px;
  }
}
@media (max-width: 1024px) {
  .tour-rooms {
    padding-top: 0;
  }
  .tour-rooms .container {
    padding: 0;
  }
  .tour-rooms .title-wrap,
  .tour-rooms .room-price-wrap.mobile {
    padding: 0 30px;
  }
  .tour-rooms h3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .tour-rooms .title-wrap,
  .tour-rooms .room-price-wrap.mobile {
    padding: 0 16px;
  }
}
.tour-rooms .rooms-section {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section {
    flex-direction: column-reverse;
  }
}
.tour-rooms .rooms-section .tour-rooms-wrap {
  display: block;
  max-width: 252px;
  overflow: auto;
  height: 100%;
}
.tour-rooms .rooms-section .tour-rooms-wrap::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}
.tour-rooms .rooms-section .tour-rooms-wrap::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.tour-rooms .rooms-section .tour-rooms-wrap::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  height: 20px;
}
.tour-rooms .rooms-section .tour-rooms-wrap.desktop {
  max-width: 100%;
}
.tour-rooms .rooms-section .tour-rooms-wrap.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .tour-rooms-wrap.desktop {
    display: none;
  }
  .tour-rooms .rooms-section .tour-rooms-wrap.mobile {
    display: block;
    margin: 0 auto;
    padding: 0 30px;
    width: 80%;
    max-width: unset;
    overflow: hidden;
    padding-bottom: 10px;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .tour-rooms .rooms-section .tour-rooms-wrap.mobile {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .tour-rooms-wrap.mobile .tour-rooms-no-slider {
    justify-content: flex-start;
    overflow-x: scroll;
  }
}
.tour-rooms .rooms-section .room-example-block {
  max-width: 966px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 15px 20px rgba(20, 8, 14, 0.07);
}
@media (min-width: 1025px) {
  .tour-rooms .rooms-section .room-example-block {
    min-height: 385px;
  }
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block {
    box-shadow: 0 15px 14px -15px rgba(20, 8, 14, 0.07);
    padding: 0 0 16px;
    margin: 0 auto;
    z-index: 1;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap h4 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap h4 {
    display: none;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap {
  max-width: 465px;
  float: right;
  margin: 0 0 0 30px;
  position: relative;
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .single-hotel-gallery__image-location, .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .card-img {
  margin: 0;
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .arrow-enlarge-wrap {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 100px;
  z-index: 1;
}
@media (min-width: 1025px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .arrow-enlarge-wrap {
    transition: transform 0.3s ease;
  }
}
@media (min-width: 1025px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .arrow-enlarge-wrap:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
  }
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .arrow-enlarge-wrap {
    background: rgba(255, 255, 255, 0.45);
    top: 0;
    left: 0;
    right: unset;
    border-radius: unset;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .arrow-enlarge-wrap img {
  max-width: 16px;
  min-width: 16px;
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .gallery-slider-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
  cursor: pointer;
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .gallery-slider .img {
  max-width: 1040px;
  margin: 0 auto;
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .gallery-slider.show {
  z-index: 101;
}
@media (max-width: 1140px) and (min-width: 1025px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap {
    float: none;
    margin: 0 0 30px 0;
  }
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .card-img {
    margin: 0;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .mobile-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .mobile-btn {
    display: none;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .mobile-btn.show-rooms-description {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.45);
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .mobile-btn.show-rooms-description .icon {
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(/images/tooltip-icon-black.svg?b9646d57cce69fe9b2f9ac98cfae76fb);
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap .mobile-btn.show-rooms-description .icon.active {
  background-image: url(/images/tooltip-icon.svg?d3d92b81246ba3ffdbdfc2f3c7464be5);
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap {
    max-width: 100%;
    float: unset;
    margin: 0 0 20px;
  }
}
@media (max-width: 425px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap {
    max-width: 328px;
    margin: 0 auto;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap img.main-image {
  width: 465px;
  height: 306px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap img.main-image {
    max-width: unset;
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 425px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap img.main-image {
    width: 328px;
    height: 200px;
  }
}
@media (max-width: 374px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .gallery-wrap img.main-image {
    width: 100%;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap ul li {
  list-style-type: disc;
  list-style-position: inside;
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .close-modal {
  display: none;
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap {
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fff;
    max-height: 350px;
    max-width: 500px;
    overflow: hidden;
    border-radius: 5px;
    padding: 40px 0;
  }
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .close-modal {
    display: block;
    top: 22px;
    right: 16px;
    position: absolute;
    opacity: 0.5;
  }
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .close-modal:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .text-description {
    padding: 0 14px 0 24px;
    margin: 5px 10px 5px 0;
    height: 100%;
    overflow: auto;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .text-description p, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .text-description ul, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .text-description li, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .text-description span, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap .text-description strong {
    background-color: transparent !important;
    font-size: 12px;
    line-height: 15px;
    padding: 5px 0;
  }
}
@media (max-width: 767px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap {
    max-height: 400px;
    max-width: 500px;
  }
}
@media (max-width: 550px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap {
    max-height: 300px;
    max-width: 290px;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap ul li, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap p, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap span, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap strong {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #000000;
}
@media (max-width: 550px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap ul li, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap p, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap span, .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-wrap strong {
    font-size: 10px;
    line-height: 12px;
    color: #14080E;
  }
}
.tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-overlay {
  display: none;
}
@media (max-width: 1024px) {
  .tour-rooms .rooms-section .room-example-block__description .title-wrap .text-description-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    cursor: pointer;
  }
}

.tour-rooms h3 {
  margin-bottom: 17px;
}
@media (max-width: 767px) {
  .tour-rooms h3 {
    margin-bottom: 12px;
  }
}

.rooms {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.rooms.error-wraper {
  max-width: 100% !important;
}
.rooms.error-wraper .rooms-error {
  display: block !important;
  max-width: 100% !important;
}
@media (max-width: 1024px) {
  .rooms {
    max-width: 109px;
    min-width: 109px;
    min-height: 80px;
    height: 100%;
  }
  .rooms .room-class {
    border-radius: 0 0 7px 7px;
    max-width: 109px;
    min-width: 109px;
    min-height: 80px;
  }
  .rooms .room-class .icon-text-wrap span.room-name {
    overflow: hidden;
  }
}
.rooms:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .rooms {
    margin-bottom: 0;
    margin-right: 1px;
  }
  .rooms:last-child {
    margin-right: 0;
  }
}

.room-class {
  padding: 31px 33px 31px 24px;
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  background: #EBEBEB;
  border-radius: 7px 0 0 7px;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .room-class {
    padding: 14px 8px 8px;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 7px;
  }
}
.room-class .icon-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  white-space: normal;
}
.room-class .icon-text-wrap p, .room-class .icon-text-wrap span, .room-class .icon-text-wrap span.room-class-price {
  text-align: left;
  width: 100%;
}
@media (max-width: 1024px) {
  .room-class .icon-text-wrap {
    max-width: 89px;
    margin: auto 0;
  }
  .room-class .icon-text-wrap p, .room-class .icon-text-wrap span, .room-class .icon-text-wrap span.room-class-price {
    text-align: center;
    width: auto;
  }
}
@media (max-width: 767px) {
  .room-class {
    padding: 15px 10px 7px;
  }
}

.room-class.active {
  background-color: #fff;
  box-shadow: -18px 0px 75px -15px rgba(20, 8, 14, 0.07);
}
@media (max-width: 1024px) {
  .room-class.active {
    box-shadow: 0 4px 6px rgba(20, 8, 14, 0.07);
  }
}
.room-class.active .room-name {
  color: #069C28;
}
.room-class.active span.check-mark {
  background-image: url(/images/сheck-dark-green.svg?cd65cc3d6aec71d9d1698a1e3c6112b4);
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
}

span.check-mark {
  border: 1px solid rgba(20, 8, 14, 0.6);
  border-radius: 100px;
  max-width: 24px;
  min-width: 24px;
  max-height: 24px;
  min-height: 24px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  span.check-mark {
    margin: 0;
    max-width: 16px;
    min-width: 16px;
    max-height: 16px;
    min-height: 16px;
    position: absolute;
    top: 8px;
    left: 8px;
  }
}

.room-class.active .room-class-icon {
  opacity: 1;
}

.room-class-icon {
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
@media (min-width: 1025px) {
  .room-class-icon {
    max-width: 32px;
    min-width: 32px;
    max-height: 25px;
    min-height: 25px;
  }
  .room-class-icon img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .room-class-icon {
    margin: 0 auto 10px;
    max-width: 24px;
    min-width: 24px;
  }
}
@media (max-width: 767px) {
  .room-class-icon img {
    max-width: 24px;
    min-width: 24px;
    max-height: 24px;
  }
}

.room-class .room-name {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: rgba(20, 8, 14, 0.6);
}
@media (max-width: 1024px) {
  .room-class .room-name {
    font-size: 10px;
    line-height: 12px;
  }
}

.room-class.active .room-class .room-name {
  color: var(--main-color);
}

.room-price-block {
  padding-top: 15px;
}
@media (max-width: 1024px) {
  .room-price-block {
    padding-top: 5px;
  }
}

span.room-class-price {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (max-width: 767px) {
  span.room-class-price {
    font-size: 13px;
    line-height: 16px;
  }
}

p.total-label {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (max-width: 767px) {
  p.total-label {
    font-size: 13px;
    line-height: 16px;
  }
}

.tour-additional-services {
  margin-bottom: 20px;
}

.tour-additional-services h3 {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .tour-additional-services h3 {
    margin-bottom: 13px;
  }
}

.tour-additional-services p {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .tour-additional-services p {
    margin-bottom: 16px;
  }
}

.tour-additional-services .tab .additional-services-wrap .additional-service-select-head {
  padding: 16px 19px 16px 12px;
  height: 56px;
}
@media (min-width: 768px) {
  .tour-additional-services .tab .additional-services-wrap .additional-service-select-head {
    height: auto;
    padding: 23px 23px 23px 20px;
  }
}

.tab .additional-service-select p.additional-services-list__description {
  flex-direction: column;
  align-items: flex-start;
}

.tour-additional-services .tab .additional-services-wrap span.include-hours {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  width: 100%;
}
.tour-additional-services .tab .additional-services-wrap span.include-hours span {
  display: flex;
  justify-content: flex-start;
  margin-right: 0;
}
@media (min-width: 768px) {
  .tour-additional-services .tab .additional-services-wrap span.include-hours span {
    font-size: 12px;
    line-height: 15px;
    padding: 0;
  }
}
.tour-additional-services .tab .additional-services-wrap span.include-hours span:first-child {
  margin-right: 5px;
}

.tour-additional-services .tab .additional-service-select p {
  font-size: 12px;
  line-height: 12px;
}
@media (min-width: 768px) {
  .tour-additional-services .tab .additional-service-select p {
    font-size: 16px;
    line-height: 16px;
  }
}

.tour-additional-services .tab .additional-services-wrap span {
  margin-left: 0;
  width: auto;
}

.tour-additional-services .tab .additional-services-wrap span.icon img {
  max-width: 16px;
  min-width: 16px;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .tour-additional-services .tab .additional-services-wrap span.icon img {
    max-width: 23px;
    min-width: 23px;
  }
}

.tour-additional-services .tab .additional-services-wrap span.arrow img {
  width: 9px;
  height: 15px;
}

.tour-additional-services .tab .additional-service-select.open span.arrow {
  right: 22px;
}

.tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list {
  padding: 0;
}
.tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list li {
  min-height: 87px;
  margin-bottom: 0;
}

.tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list li:not(:last-child) {
  border-bottom: 1px solid #E7E7E7;
}

.tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list li {
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list li {
    padding: 20px 15px;
  }
  .tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list li [type=checkbox].filled-in + label:after, .tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list li [type=checkbox].filled-in + label:before {
    width: 24px;
    height: 24px;
  }
}

.tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list li:before {
  content: none;
}

.additional-services-list__wrap {
  display: flex;
  align-items: center;
}

.additional-services-list__icon-check label {
  display: block;
  width: 24px;
}
@media (max-width: 767px) {
  .additional-services-list__icon-check label {
    width: 16px;
  }
}

.tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list .additional-services-list__icon {
  display: flex;
  align-items: center;
  width: auto;
}

.tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list .additional-services-list__title {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 100%;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--main-color);
  margin-bottom: 2px;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list .additional-services-list__title {
    font-size: 14px;
    line-height: 100%;
  }
}

.tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list .additional-services-list__description {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (min-width: 768px) {
  .tour-additional-services .tab .additional-service-select .additional-service-select-content .additional-services-list .additional-services-list__description {
    font-size: 12px;
    line-height: 15px;
  }
}

.additional-services-list__wrap-btns {
  display: flex;
  align-items: center;
}

.btn-no-bg {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--main-color);
  padding: 8px 14px;
  border: 1px solid var(--main-color);
  border-radius: 5px;
}

.btn-no-bg:hover {
  background: var(--main-color);
  color: #fff;
}

.btn-no-bg:active, .btn-no-bg:focus {
  background: var(--main-color);
  box-shadow: 0 4px 6px rgba(20, 8, 14, 0.7);
  border-radius: 5px;
  color: #fff;
  transition: 0.3s ease;
}

.btn-no-bg.disabled {
  opacity: 0.6;
  cursor: default;
  color: #fff;
}

span.checkbox {
  width: 16px;
  height: 16px;
}

.with-checkbox {
  padding-left: 14px;
}

.additional-services-list__wrap-btns.with-counter {
  flex-direction: column;
}

.tour-additional-services .tab .counter {
  display: flex;
  align-items: center;
}

.tour-additional-services .tab .additional-services-list__wrap-btns .count {
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  box-sizing: border-box;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tour-additional-services .tab .additional-services-list__wrap-btns .count-result {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  margin: 0 2px;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}

.tour-additional-services .tab .additional-services-list__wrap-btns .hours {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 10px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  padding-top: 2px;
}

.tour-excursions {
  margin-bottom: 20px;
  position: relative;
}
.tour-excursions h3 {
  position: absolute;
  top: 20px;
}
.tour-excursions p {
  margin-bottom: 8px;
}

.swiper-container.excursion-slider {
  padding-top: 55px;
}
.swiper-container.excursion-slider .swiper-button-next, .swiper-container.excursion-slider .swiper-button-prev {
  top: 38px;
  background: none;
}
@media (max-width: 767px) {
  .swiper-container.excursion-slider .swiper-button-next, .swiper-container.excursion-slider .swiper-button-prev {
    display: none;
  }
}
.swiper-container.excursion-slider .swiper-button-prev {
  right: 60px;
  left: unset;
}
.swiper-container.excursion-slider .swiper-button-next:after, .swiper-container.excursion-slider .swiper-button-prev:after {
  width: 13px;
  height: 26px;
}

.excursion-slider .swiper-slide {
  border-radius: 5px;
  min-width: 192px;
  min-height: 116px;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .excursion-slider .swiper-slide {
    max-width: 192px;
    max-height: 116px;
  }
  .excursion-slider .swiper-slide img.ex-img {
    min-height: 116px;
    max-height: 116px;
  }
}
.excursion-slider .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 73, 102, 0) 39.16%, #004966 88.02%);
  z-index: 1;
}
.excursion-slider .swiper-slide .tooltip {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  cursor: pointer;
}
@media (max-width: 767px) {
  .excursion-slider .swiper-slide .tooltip {
    top: 12px;
    right: 12px;
  }
}
.excursion-slider .swiper-slide .tooltip.exist:hover img {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.excursion-slider .swiper-slide .tooltip.exist .tooltip-data::after {
  content: "";
  position: absolute;
  right: 14px;
  top: -9px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.excursion-slider .swiper-slide .tooltip:hover .tooltip-data {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.excursion-slider .swiper-slide .tooltip .tooltip-data {
  position: absolute;
  top: 35px;
  right: -11px;
  border-radius: 20px;
  width: 290px;
  box-shadow: 0 15px 20px rgba(20, 8, 14, 0.07);
  background: #fff;
  display: none;
  opacity: 0;
}
@media (max-width: 767px) {
  .excursion-slider .swiper-slide .tooltip .tooltip-data {
    width: 190px;
  }
}
.excursion-slider .swiper-slide .tooltip .tooltip-data p {
  margin: 0;
  background: #fff;
  padding: 5px 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  border-radius: 20px;
  max-height: 168px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .excursion-slider .swiper-slide .tooltip .tooltip-data p {
    font-size: 10px;
    line-height: 12px;
  }
}
.excursion-slider .swiper-slide .tooltip .tooltip-data p, .excursion-slider .swiper-slide .tooltip .tooltip-data span {
  background-color: #fff !important;
}
.excursion-slider .swiper-slide .ex-slider-title {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  position: absolute;
  left: 20px;
  bottom: 44px;
  z-index: 2;
  padding-right: 80px;
  margin: 0;
}
@media (max-width: 767px) {
  .excursion-slider .swiper-slide .ex-slider-title {
    font-size: 12px;
    line-height: 15px;
    left: 12px;
    bottom: 27px;
    padding-right: 12px;
    max-height: 45px;
    overflow: hidden;
  }
}
.excursion-slider .swiper-slide .additional-services-list__icon-check.excursion-checkbox {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
}
@media (max-width: 767px) {
  .excursion-slider .swiper-slide .additional-services-list__icon-check.excursion-checkbox {
    top: 20px;
    left: 12px;
  }
}
.excursion-slider .swiper-slide .additional-services-list__icon-check.excursion-checkbox [type=checkbox].filled-in:checked + label:before,
.excursion-slider .swiper-slide .additional-services-list__icon-check.excursion-checkbox [type=checkbox].filled-in:checked + label:after {
  border: 1.64655px solid var(--main-color);
  transition: unset;
}
.excursion-slider .swiper-slide .additional-services-list__icon-check.excursion-checkbox [type=checkbox].filled-in + label:after, .excursion-slider .swiper-slide .additional-services-list__icon-check.excursion-checkbox [type=checkbox].filled-in + label:before {
  width: 24px;
  height: 24px;
  border: 1.64655px solid #FFFFFF;
  transition: unset;
}
.excursion-slider .swiper-slide .ex-slider-time {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  position: absolute;
  left: 20px;
  bottom: 19px;
  z-index: 2;
  margin: 0;
}
@media (max-width: 767px) {
  .excursion-slider .swiper-slide .ex-slider-time {
    font-size: 10px;
    line-height: 12px;
    left: 12px;
    bottom: 12px;
  }
}
.excursion-slider .swiper-slide .ex-slider-time span {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .excursion-slider .swiper-slide .ex-slider-time span {
    font-size: 10px;
    line-height: 12px;
  }
}
.excursion-slider .swiper-slide .ex-slider-description {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  position: absolute;
  left: 12px;
  bottom: 12px;
}

.ex-check-mark {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 100%;
}

.checked {
  background-color: unset;
  background-image: url(/images/ex-slider-check-icon.svg?a7d062cb2d55b36537b91eb4d5063007);
  background-repeat: no-repeat;
  background-size: cover;
}

.tour-comment {
  margin-bottom: 20px;
}

.tour-comment h3 {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 14px;
  line-height: 125%;
}
@media (max-width: 768px) {
  .tour-comment h3 {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 17px;
  }
}

.tour-comment textarea {
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  padding: 17px 20px;
  outline: none;
  width: 100%;
  min-height: 112px;
  resize: none;
}

.tour-comment textarea::-moz-placeholder {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #D0D0D0;
}

.tour-comment textarea::placeholder {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #D0D0D0;
}

.message-error {
  margin-top: 26px;
  font-family: "Open Sans", sans-serif;
  color: #ff0009;
  font-weight: bold;
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  border: 2px dashed #e61449;
  border-radius: 10px;
}

.tour-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px;
  background: var(--main-color);
}
.tour-footer.error {
  background-color: #fc2424;
}
.tour-footer.error .tour-footer__error {
  display: flex;
  align-items: center;
}
.tour-footer.error .tour-footer__error svg {
  margin-right: 24px;
}
@media (max-width: 768px) {
  .tour-footer.error .tour-footer__error svg {
    height: 20px;
    width: 20px;
    margin-right: 12px;
  }
}
.tour-footer.error .tour-footer__error span {
  color: white;
  font-size: 16px;
}
@media (min-width: 1980px) {
  .tour-footer.error .tour-footer__error span {
    font-size: 27px;
  }
}
.tour-footer.error .tour-footer-btn {
  display: none;
}
.tour-footer.error .arrow-to-calendar {
  display: flex;
  position: absolute;
  right: 0;
}
.tour-footer .container {
  padding: 0;
}
.tour-footer .rooms-modal.open {
  padding-top: 20px;
}
.tour-footer .rooms-modal.open .close-modal {
  display: flex;
  justify-content: flex-end;
}
.tour-footer .rooms-modal.open .close-modal svg {
  cursor: pointer;
}
.tour-footer .rooms-modal.open p {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
}
.tour-footer .rooms-modal.open .form-input {
  background: #FFFFFF;
  border: 1px solid #DBD7D7;
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 13px 20px;
  margin-top: 20px;
}
.tour-footer .rooms-modal.open .form-input label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  transition: all 0.1s ease-in-out;
  font-feature-settings: "pnum" on, "lnum" on;
  cursor: text;
  color: rgba(20, 8, 14, 0.45);
}
.tour-footer .rooms-modal.open .form-input input {
  width: 100%;
  line-height: 20px;
}
.tour-footer .rooms-modal.open .form-input.float-label {
  border: 1px solid var(--main-color);
}
.tour-footer .rooms-modal.open .form-input.float-label label {
  top: -2px;
  background: #fff;
  color: var(--main-color);
  padding: 0 4px;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  transition: all 0.1s ease-in-out;
}
.tour-footer .rooms-modal.open .modal-btn {
  margin-top: 20px;
}
.tour-footer__error {
  color: #fff;
}

.tour-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-footer-wrap .tour-footer-buttons-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 550px) {
  .tour-footer-wrap .tour-footer-buttons-wrap {
    width: 100%;
    justify-content: flex-end;
  }
  .tour-footer-wrap .tour-footer-buttons-wrap .tour-footer-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .tour-footer-wrap .tour-footer-buttons-wrap .tour-footer-btn .btn {
    width: auto;
    font-size: 9px;
    line-height: 9px;
    white-space: nowrap;
    padding: 8px 10px;
    margin: 0;
    margin-right: 8px;
  }
  .tour-footer-wrap .tour-footer-buttons-wrap .tour-footer-btn .btn.btn-requisites {
    width: auto;
    margin: 0 0 0 5px;
  }
  .tour-footer-wrap .tour-footer-buttons-wrap .tour-footer-btn .btn.btn-print {
    margin-left: 5px;
  }
}
@media (max-width: 480px) {
  .tour-footer-wrap {
    flex-wrap: wrap;
  }
  .tour-footer-wrap .tour-footer-buttons-wrap {
    justify-content: space-between;
  }
}
.tour-footer-wrap .arrow-to-calendar {
  display: none;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: white 2px solid;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.tour-footer-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2px;
  text-align: right;
}
@media (max-width: 550px) {
  .tour-footer-title {
    max-width: 140px;
    margin-right: 15px;
  }
  .tour-footer-title input {
    max-width: 100px;
  }
}

.tour-footer-title label,
.tour-footer-title input {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}

.tour-footer-title input {
  display: inline-block;
}

.tour-footer-description {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  display: flex;
  align-items: center;
  text-align: right;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}

.tour-footer-wrap .tour-footer-description-wrap .tour-footer-description span.childrens svg {
  width: 11px !important;
  margin-top: 3px;
}

.tour-footer-btn {
  display: flex;
}
.tour-footer-btn#hotel-decision {
  display: grid;
  grid: "auto auto" "auto auto";
  grid-gap: 5px;
}
@media (max-width: 550px) {
  .tour-footer-btn#hotel-decision {
    grid: "auto";
    width: 100%;
  }
}
.tour-footer-btn#hotel-decision .hotel-decision-input {
  background-color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 0 5px;
}
.tour-footer-btn#hotel-decision input {
  min-width: 100px;
  width: 100%;
  height: 30px;
}
.tour-footer-btn#hotel-decision button.btn {
  margin-right: 0;
}
.tour-footer-btn.disable {
  cursor: not-allowed;
}
.tour-footer-btn.disable a {
  pointer-events: none;
  opacity: 0.6;
}
.tour-footer-btn .btn {
  padding: 8px 19px;
  font-size: 14px;
  line-height: 14px;
}
.tour-footer-btn .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.tour-footer-btn .tooltip {
  display: none;
}
.tour-footer-btn:hover .tooltip {
  display: block;
  width: 158px;
  position: absolute;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: white;
  font-size: 12px;
  bottom: 100%;
  background: #FFFFFF;
  padding: 15px;
  background: rgb(252, 122, 30);
}
@media (max-width: 767px) {
  .tour-footer-btn {
    position: relative;
  }
  .tour-footer-btn .btn {
    text-align: center;
  }
  .tour-footer-btn .tooltip {
    font-size: 11px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 359px) {
  .tour-footer-btn {
    flex-direction: column;
  }
}

.add-numbers {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 499;
  cursor: default;
  padding: 0 16px 16px;
  background: #FFFFFF;
  border-radius: 10px 10px 0 0;
  height: 0;
  opacity: 0;
  max-height: 424px;
  visibility: hidden;
  overflow: auto;
}
.add-numbers::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.many-people-modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  cursor: default;
  padding: 0 16px 16px;
  background: #FFFFFF;
  border-radius: 10px 10px 0 0;
  height: 0;
  opacity: 0;
  max-height: 424px;
  visibility: hidden;
  overflow: auto;
}
.many-people-modal::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.many-people-modal.open {
  height: -moz-min-content;
  height: min-content;
  opacity: 1;
  transition: 0.5s ease;
  visibility: visible;
  padding-top: 20px;
}
.many-people-modal.open p {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
}
.many-people-modal.open .modal-btn {
  margin-top: 20px;
}
.many-people-modal button {
  margin: 0 auto !important;
}

.rooms-modal.open.add-numbers {
  height: -moz-min-content;
  height: min-content;
  opacity: 1;
  transition: 0.5s ease;
  visibility: visible;
}

.default-number {
  padding: 12px 0 20px;
}

.additional-number {
  border-top: 1px solid #D0D0D0;
  padding: 12px 0 20px;
}

.default-number button:hover,
.additional-number button:hover,
.rooms-modal_children-wrap span:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}
@media (max-width: 991px) {
  .default-number button:hover,
  .additional-number button:hover,
  .rooms-modal_children-wrap span:hover {
    opacity: 1;
  }
}

.rooms-modal .rooms-modal_children-wrap button:hover {
  opacity: 0.25;
  transition: 0.3s ease;
}

.rooms-modal_title {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rooms-modal_persons {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rooms-modal_persons-count {
  display: flex;
  align-items: center;
}

.rooms-modal_persons-quantity {
  width: 10px;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0 16px;
}

.rooms-modal_persons-count button {
  background: #FFFFFF;
  border: 1px solid #DBD7D7;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 36px;
  line-height: 115%;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rooms-modal_children {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rooms-modal_children-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.rooms-modal_children-wrap:last-child {
  margin-bottom: 0;
}

.v-select {
  width: 100%;
}
.v-select .vs__dropdown-toggle {
  height: 30px;
  width: 100%;
}

.rooms-modal_children-wrap p {
  margin-right: 4px;
}

.rooms-modal_children-wrap span {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.add-child {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 125%;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  cursor: pointer;
  color: #F26430;
}

.add-child img {
  margin-right: 4px;
}

.rooms-modal_children-wrap button {
  margin-left: 20px;
  opacity: 0.5;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.add-numbers .btn {
  max-width: 100%;
  width: 100%;
}

.add-numbers button.gray-btn {
  margin-bottom: 8px;
  max-width: 100%;
  width: 100%;
}

.add-numbers button.gray-btn img {
  margin-right: 4px;
}

.content.hotel-page.mobile .reviews-wrap {
  border: none;
}

.modal {
  visibility: hidden;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  overflow: auto;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .modal {
    top: 53px;
    padding-bottom: 65px;
  }
}

.modal.show {
  visibility: visible;
  z-index: 499;
}

.show-tour {
  position: relative;
}

.hotel__additional-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 8px;
  margin-bottom: 14px;
}
.hotel__additional-service {
  margin: 2px 0;
  display: flex;
  align-items: center;
}
.hotel__additional-service p {
  margin-bottom: 0;
}
.hotel__additional-service span {
  margin-right: 9px;
}

.single-hotel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  margin-bottom: 63px;
}
.single-hotel-gallery__bottom-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 10px;
  grid-row: 3;
  grid-column: span 3;
}
.single-hotel-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-hotel-gallery__image--big {
  grid-row: span 2;
  grid-column: span 2;
}
.single-hotel-gallery .gallery-slider img {
  -o-object-fit: contain;
     object-fit: contain;
}
.single-hotel-gallery .gallery-close-btn {
  padding: 20px;
}
.single-hotel-gallery .gallery-close-btn img {
  width: 22px;
}

.gallery_btn:not(.gallery-btn) {
  cursor: pointer;
  position: relative;
}
.gallery_btn:not(.gallery-btn):last-child:before {
  opacity: 1;
}
.gallery_btn:not(.gallery-btn):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 8, 14, 0.5);
  opacity: 0;
}
.gallery_btn:not(.gallery-btn):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/images/magnifier.svg?a85ed2de40d31a72a0d8ec820f947398);
  background-repeat: no-repeat;
  opacity: 0;
  width: 40px;
  height: 40px;
}
.gallery_btn:not(.gallery-btn):hover .gallery-text {
  display: none;
}
.gallery_btn:not(.gallery-btn):hover:before, .gallery_btn:not(.gallery-btn):hover:after {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hotels-admin__container {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}
.hotels-admin__edit-button {
  color: white;
  border-bottom: transparent solid 1px;
  margin-left: 20px;
}
.hotels-admin__edit-button:hover {
  border-bottom: white solid 1px;
}

.gallery-slider {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.gallery-slider.show {
  visibility: visible;
  z-index: 99999999991;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-slider.show .columns {
  max-width: 1000px;
  width: 100%;
  max-height: 100vh;
}
.gallery-slider.show .menu {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
}

.hotel-gallery-thumb {
  position: relative;
  padding: 0.75rem;
}
.hotel-gallery-thumb .gallery-slider-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
  cursor: pointer;
}
.hotel-gallery-thumb .column {
  padding: 0 !important;
}
.hotel-gallery-thumb .arrow-enlarge-wrap {
  cursor: pointer;
  position: absolute;
  top: -1px;
  left: -1px;
  right: unset;
  border-radius: unset;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
@media (max-width: 767px) {
  .hotel-gallery-thumb .arrow-enlarge-wrap {
    width: 40px;
    height: 40px;
  }
}
.hotel-gallery-thumb .arrow-enlarge-wrap img {
  max-width: 32px;
  min-width: 32px;
}
@media (max-width: 767px) {
  .hotel-gallery-thumb .arrow-enlarge-wrap img {
    max-width: 16px;
    min-width: 16px;
  }
}
.hotel-gallery-thumb .columns:last-child {
  margin-bottom: -0.75rem;
}
.hotel-gallery-thumb .columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.hotel-gallery-thumb .column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
.hotel-gallery-thumb .card-carousel {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
}

.card-carousel {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}

.progressbar {
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  background-color: rgba(221, 221, 221, 0.25);
  z-index: 1;
}

.progressbar > div {
  background-color: rgba(255, 255, 255, 0.52);
  height: 100%;
}

.thumbnails {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  overflow: auto;
  max-height: 48px;
  min-height: 48px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  max-width: calc(100% - 5px);
  margin: 0 auto;
}
.thumbnails::-webkit-scrollbar {
  display: none;
}

.thumbnail-image {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0 4px;
}
.thumbnail-image img {
  min-width: 48px;
  min-height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail-image > img {
  transition: all 250ms;
}

.thumbnail-image:hover > img,
.thumbnail-image.active > img {
  opacity: 0.6;
  box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.5);
}

.gallery-slider.show .gallery-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-slider.show .gallery-slider-wrapper .card-img {
  margin: 0 auto;
  max-width: 65vw;
}
.gallery-slider.show .gallery-slider-wrapper .card-img img {
  height: auto;
  max-height: 80vh;
}

.card-img {
  position: relative;
  margin-bottom: 16px;
}

.card-img > img {
  display: block;
  margin: 0 auto;
}

.actions {
  height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #585858;
}

.tour-cards .card .card-body .card-img img {
  z-index: 2;
  cursor: pointer;
}

.card-img .prev,
.card-img .next {
  outline: none;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  transition: all 250ms;
}
.card-img .prev.disabled,
.card-img .next.disabled {
  pointer-events: none;
}

.card-img .next:after,
.card-img .prev:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 21px;
}

.card-img .next:after {
  background-image: url(/images/arrow-next.svg?68858b5dbd12e04645d02ff0f0ec6d07);
  background-repeat: no-repeat;
}

.card-img .prev:after {
  background-image: url(/images/arrow-prev.svg?7fb582ba8cd218fbfb702fd4096416f4);
  background-repeat: no-repeat;
}

.card-img > span.prev {
  border-radius: 0 5px 5px 0;
}

.card-img > span.next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.card-img > span:hover {
  color: #eee;
}

.admin-btn-exist.modal {
  top: 93px;
}

@media (max-width: 767px) {
  .admin-btn-exist.modal {
    top: 85px;
  }
}
.hotel-page.mobile .tour-card h3 {
  margin-bottom: 2px;
}
.hotel-page.mobile .tour-card p.tour-title-description {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  line-height: 11px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin-bottom: 8px;
}

.hotel-page-desktop .tour-card h3 {
  margin-bottom: 17px !important;
}
.hotel-page-desktop .tour-card p.tour-title-description {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin-bottom: 17px;
}

.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 3px;
  }
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 33px;
  line-height: 20px;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price {
    font-size: 20px;
    line-height: 19px;
  }
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment .prepayment {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  text-align: right;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment .prepayment-price {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 24px;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment .prepayment-price sub {
  font-size: 16px;
  line-height: 19px;
  margin-left: 5px;
}
@media (max-width: 1024px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment .prepayment {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 3px;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment .prepayment {
    font-size: 11px;
    line-height: 14px;
  }
}
@media (max-width: 1024px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment .prepayment-price {
    font-size: 20px;
    line-height: 20px;
  }
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment .prepayment-price sub {
    font-size: 14px;
    line-height: 17px;
    margin-left: 5px;
  }
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price span {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 23px;
  line-height: 14px;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price span {
    font-size: 14px;
    line-height: 14px;
  }
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price-edit {
  margin-right: 20px;
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-price-edit svg {
  width: 20px;
  fill: white;
  cursor: pointer;
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-old-price {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 12px;
  display: flex;
  align-items: flex-end;
  text-align: right;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #841C14;
  position: relative;
  max-width: 80px;
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-old-price:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  left: 0;
  right: 0;
  background-color: #841C14;
}
@media (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-old-price:before {
    top: 55%;
  }
}
@media (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-old-price {
    font-size: 12px;
    line-height: 13px;
  }
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-old-price span {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 9px;
  display: flex;
  align-items: flex-end;
  text-align: right;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #841C14;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-title .current-tour-old-price span {
    font-size: 9px;
    line-height: 11px;
  }
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-description {
  display: flex;
  align-items: center;
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-description span.guest-icon {
  display: flex;
  align-items: center;
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-description span.guest-icon svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-description span.guest-icon svg {
    width: 10px;
    height: 10px;
  }
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer-description span.nights {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-left: 3px;
}
@media (max-width: 767px) {
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-description span.nights {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-footer-wrap .tour-footer-description-wrap .tour-footer__error {
  color: #f26430;
  font-weight: bold;
  font-size: 24px;
  padding: 12px 45px 12px 0;
}

.tour-booking {
  min-height: 100vh;
  background-color: #fff;
  padding: 70px 0 87px;
}
.tour-booking input:-webkit-autofill,
.tour-booking input:-webkit-autofill:hover,
.tour-booking input:-webkit-autofill:focus,
.tour-booking textarea:-webkit-autofill,
.tour-booking textarea:-webkit-autofill:hover,
.tour-booking textarea:-webkit-autofill:focus,
.tour-booking select:-webkit-autofill,
.tour-booking select:-webkit-autofill:hover,
.tour-booking select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
@media (max-width: 1140px) {
  .tour-booking {
    padding: 24px 0;
  }
}
.tour-booking h2 {
  font-size: 24px;
  line-height: 100%;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.tour-booking h2 .print {
  width: 48px;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.tour-booking h2 .print a {
  width: 48px;
}
@media (max-width: 767px) {
  .tour-booking h2 .print {
    width: 24px;
  }
  .tour-booking h2 .print a {
    width: 24px;
  }
}
.tour-booking h2.desktop, .tour-booking h2.mobile {
  display: none;
}
@media (min-width: 1141px) {
  .tour-booking h2.desktop {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1140px) {
  .tour-booking h2 {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
  }
  .tour-booking h2.mobile {
    display: flex;
    align-items: center;
  }
}
.tour-booking .container {
  position: relative;
}
.tour-booking .close-modal {
  position: absolute;
  top: 7px;
  right: 30px;
  opacity: 0.35;
}
@media (max-width: 767px) {
  .tour-booking .close-modal {
    top: 0;
    right: 16px;
  }
}
.tour-booking .tour-booking-wrap {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap {
    display: block;
  }
}
.tour-booking .tour-booking-wrap__img {
  max-width: 520px;
  width: 100%;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap__img {
    margin: 0 auto 24px;
  }
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__img {
    max-width: 180px;
  }
}
.tour-booking .tour-booking-wrap__form {
  max-width: 460px;
  width: 100%;
  margin-left: auto;
  margin-right: 42px;
  padding-left: 24px;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap__form {
    padding-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}
.tour-booking .tour-booking-wrap__form .form-inputs-wrap {
  max-width: 342px;
  width: 100%;
  margin-right: auto;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap__form .form-inputs-wrap {
    max-width: 100%;
  }
}
.tour-booking .tour-booking-wrap__form .form-inputs-wrap .form-input {
  background: #FFFFFF;
  border: 1px solid #DBD7D7;
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 13px 20px;
}
.tour-booking .tour-booking-wrap__form .form-inputs-wrap .form-input.comments label {
  position: absolute;
  top: 20px;
}
.tour-booking .tour-booking-wrap__form .form-inputs-wrap .form-input textarea {
  background: #FFFFFF;
  border: none;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  outline: none;
  width: 100%;
  min-height: 112px;
  resize: none;
}
.tour-booking .tour-booking-wrap__form .form-inputs-wrap .form-input.float-label {
  border: 1px solid var(--main-color);
}
.tour-booking .tour-booking-wrap__form .form-inputs-wrap .form-input.float-label label {
  top: -2px;
  background: #fff;
  color: var(--main-color);
  padding: 0 4px;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  transition: all 0.1s ease-in-out;
}
.tour-booking .tour-booking-wrap__form .form-inputs-wrap .form-input label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  transition: all 0.1s ease-in-out;
  font-feature-settings: "pnum" on, "lnum" on;
  cursor: text;
  color: rgba(20, 8, 14, 0.45);
}
.tour-booking .tour-booking-wrap__form .form-inputs-wrap .form-input input {
  width: 100%;
  line-height: 20px;
}
.tour-booking .tour-booking-wrap__form .policy-wrap {
  position: relative;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap__form .policy-wrap {
    padding-left: 24px;
  }
}
.tour-booking .tour-booking-wrap__form .policy-wrap label {
  position: absolute;
  top: 6px;
  left: -30px;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap__form .policy-wrap label {
    left: -5px;
  }
}
.tour-booking .tour-booking-wrap__form .policy-wrap p.small {
  color: rgba(20, 8, 14, 0.45);
  margin-bottom: 15px;
}
.tour-booking .tour-booking-wrap__form .policy-wrap p.small a {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #F26430;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__form .policy-wrap p.small a {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__form .policy-wrap p.small a:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.tour-booking .tour-booking-wrap__form button {
  width: 342px;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap__form button {
    max-width: 288px;
  }
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__form button {
    margin: auto;
  }
}
.tour-booking .tour-booking-wrap__content {
  max-width: 342px;
  margin: auto;
}
.tour-booking .tour-booking-wrap__content p {
  text-align: center;
  margin-bottom: 30px;
}
.tour-booking .tour-booking-wrap__content .btn {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  width: 100%;
  margin-bottom: 15px;
}
.tour-booking .tour-booking-wrap__content .btn.gray-btn {
  background: #EBEBEB;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #F26430;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap.success-booking .tour-booking-wrap__img {
    max-width: 224px;
    margin-bottom: 57px;
  }
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap.success-booking .tour-booking-wrap__content p {
    padding-top: 9px;
    margin-bottom: 52px;
  }
}
.tour-booking .tour-booking-wrap__details {
  max-width: 520px;
  margin-left: auto;
  margin-right: 53px;
}
@media (max-width: 1140px) {
  .tour-booking .tour-booking-wrap__details {
    max-width: 100%;
    margin: 0;
    padding-bottom: 10%;
  }
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details {
    padding-bottom: 30%;
  }
}
.tour-booking .tour-booking-wrap__details .hotel-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #DBD7D7;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .hotel-description {
    border-top: 1px solid #DBD7D7;
    border-bottom: none;
    padding: 10px 0;
    margin-bottom: 0;
    position: relative;
  }
  .tour-booking .tour-booking-wrap__details .hotel-description:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -16px;
    right: 0;
    border-top: 1px solid #DBD7D7;
  }
  .tour-booking .tour-booking-wrap__details .hotel-description:after {
    content: "";
    position: absolute;
    top: -1px;
    right: -16px;
    left: 0;
    border-top: 1px solid #DBD7D7;
  }
}
.tour-booking .tour-booking-wrap__details .hotel-description .hotel-description-title {
  padding: 26px 0;
  margin-right: 20px;
}
.tour-booking .tour-booking-wrap__details .hotel-description .hotel-description-title h3.title {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--main-color);
  margin: 0 0 4px;
}
.tour-booking .tour-booking-wrap__details .hotel-description .hotel-description-title h3.title a {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--main-color);
  margin: 0 0 4px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .hotel-description .hotel-description-title h3.title {
    font-size: 16px;
    line-height: 16px;
  }
  .tour-booking .tour-booking-wrap__details .hotel-description .hotel-description-title h3.title a {
    font-size: 16px;
    line-height: 16px;
  }
}
.tour-booking .tour-booking-wrap__details .hotel-description .img-wrap {
  display: flex;
  align-items: center;
  max-width: 192px;
  width: 100%;
  border-radius: 4px;
  background: #C4C4C4;
  overflow: hidden;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .hotel-description .img-wrap {
    max-width: 127px;
  }
}
.tour-booking .tour-booking-wrap__details .location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #DBD7D7;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .location {
    border-top: 1px solid #D8D7D7;
    border-bottom: none;
    margin-bottom: 0;
    padding: 15px 0 30px;
    position: relative;
  }
  .tour-booking .tour-booking-wrap__details .location:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -16px;
    right: 0;
    border-top: 1px solid #DBD7D7;
  }
  .tour-booking .tour-booking-wrap__details .location:after {
    content: "";
    position: absolute;
    top: -1px;
    right: -16px;
    left: 0;
    border-top: 1px solid #DBD7D7;
  }
}
.tour-booking .tour-booking-wrap__details .location p {
  max-width: 292px;
  width: 100%;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .location p {
    max-width: 220px;
  }
}
@media (max-width: 425px) {
  .tour-booking .tour-booking-wrap__details .location p {
    max-width: 180px;
  }
}
.tour-booking .tour-booking-wrap__details .location a.map-link {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #F26430;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .location a.map-link {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .location a.map-link:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.tour-booking .tour-booking-wrap__details .location a.map-link img {
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.tour-booking .tour-booking-wrap__details .registration {
  display: flex;
  align-items: center;
  max-width: 390px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .registration {
    max-width: 100%;
    margin-bottom: 0;
    padding: 15px 0 30px;
    position: relative;
  }
  .tour-booking .tour-booking-wrap__details .registration:before {
    content: "";
    position: absolute;
    top: -16px;
    left: -16px;
    right: 0;
    border-top: 15px solid #EBEBEB;
  }
  .tour-booking .tour-booking-wrap__details .registration:after {
    content: "";
    position: absolute;
    top: -16px;
    right: -16px;
    left: 0;
    border-top: 15px solid #EBEBEB;
  }
}
.tour-booking .tour-booking-wrap__details .registration__item p {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .registration__item p {
    font-size: 12px;
    line-height: 15px;
  }
}
.tour-booking .tour-booking-wrap__details .registration__item .date {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .registration__item .date {
    font-size: 16px;
    line-height: 16px;
  }
}
.tour-booking .tour-booking-wrap__details .registration__item .time {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
.tour-booking .tour-booking-wrap__details .registration__sep {
  width: 1px;
  height: 47px;
  background-color: #DBD7D7;
  margin: 0 auto;
}
.tour-booking .tour-booking-wrap__details .tour-details-info {
  font-weight: bold;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .tour-details-info {
    padding-top: 15px;
    position: relative;
  }
  .tour-booking .tour-booking-wrap__details .tour-details-info:before {
    content: "";
    position: absolute;
    top: -16px;
    left: -16px;
    right: 0;
    border-top: 15px solid #EBEBEB;
  }
  .tour-booking .tour-booking-wrap__details .tour-details-info:after {
    content: "";
    position: absolute;
    top: -16px;
    right: -16px;
    left: 0;
    border-top: 15px solid #EBEBEB;
  }
}
.tour-booking .tour-booking-wrap__details .room {
  margin-bottom: 20px;
}
.tour-booking .tour-booking-wrap__details .room h4 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0 0 5px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .room h4 {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .room p, .tour-booking .tour-booking-wrap__details .room span, .tour-booking .tour-booking-wrap__details .room ul, .tour-booking .tour-booking-wrap__details .room li, .tour-booking .tour-booking-wrap__details .room strong {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .room p, .tour-booking .tour-booking-wrap__details .room span, .tour-booking .tour-booking-wrap__details .room ul, .tour-booking .tour-booking-wrap__details .room li, .tour-booking .tour-booking-wrap__details .room strong {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .room .room-properties {
  max-width: 350px;
}
.tour-booking .tour-booking-wrap__details .room .room-properties__item {
  border: 0.5px solid #14080E;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 4px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
.tour-booking .tour-booking-wrap__details .room .room-properties__item .item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-booking .tour-booking-wrap__details .room .room-properties__item img {
  margin-right: 4px;
  display: flex;
  align-items: center;
  width: 16px;
  height: 16px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .room .room-properties__item img {
    width: 14px;
    height: 14px;
  }
}
.tour-booking .tour-booking-wrap__details .room .room-properties__item p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .room .room-properties__item p {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .included {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .included {
    margin-bottom: 15px;
  }
}
.tour-booking .tour-booking-wrap__details .included h4 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .included h4 {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .included .included-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .included .included-block {
    grid-gap: 16px;
  }
}
.tour-booking .tour-booking-wrap__details .included .included-block .included-block__item {
  display: flex;
  align-items: center;
}
.tour-booking .tour-booking-wrap__details .included .included-block .included-block__item img {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  margin-right: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .included .included-block .included-block__item img {
    width: 16px;
    height: 16px;
  }
}
.tour-booking .tour-booking-wrap__details .included .included-block .included-block__item p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--main-color);
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .included .included-block .included-block__item p {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .feeding {
  margin-bottom: 20px;
}
.tour-booking .tour-booking-wrap__details .feeding h4 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0 0 15px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .feeding h4 {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .feeding .item {
  display: inline-block;
  margin-right: 44px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .feeding .item {
    margin-right: 20px;
  }
}
.tour-booking .tour-booking-wrap__details .feeding .item .item-wrap {
  display: flex;
  align-items: center;
}
.tour-booking .tour-booking-wrap__details .feeding .item .item-wrap img {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .feeding .item .item-wrap img {
    width: 16px;
    height: 16px;
  }
}
.tour-booking .tour-booking-wrap__details .feeding .item .item-wrap p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .feeding .item .item-wrap p {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .additional {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .additional {
    margin-bottom: 15px;
  }
}
.tour-booking .tour-booking-wrap__details .additional h4 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0 0 15px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .additional h4 {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 8px;
  }
}
.tour-booking .tour-booking-wrap__details .additional .additional-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 13px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .additional .additional-services {
    grid-gap: 11px;
  }
}
.tour-booking .tour-booking-wrap__details .additional .included-block__item {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid rgba(20, 8, 14, 0.6);
  border-radius: 6px;
}
.tour-booking .tour-booking-wrap__details .additional .included-block__item .additional-services__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 18px 24px;
  height: 100%;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .additional .included-block__item .additional-services__item {
    padding: 12px 15px 20px;
  }
}
.tour-booking .tour-booking-wrap__details .additional .included-block__item .additional-services__item img {
  width: 24px;
  height: 24px;
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .additional .included-block__item .additional-services__item img {
    width: 16px;
    height: 16px;
  }
}
.tour-booking .tour-booking-wrap__details .additional .included-block__item .additional-services__item p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: rgba(20, 8, 14, 0.6);
  max-width: 185px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .additional .included-block__item .additional-services__item p {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .additional .included-block__item .additional-services__item p.time {
  font-weight: 400;
}
.tour-booking .tour-booking-wrap__details .excursion {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .excursion {
    margin-bottom: 15px;
  }
}
.tour-booking .tour-booking-wrap__details .excursion h4 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0 0 15px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .excursion h4 {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 11px;
  }
}
.tour-booking .tour-booking-wrap__details .excursion__item {
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .excursion__item {
    margin-right: 0;
  }
}
.tour-booking .tour-booking-wrap__details .excursion__item-wrap {
  display: flex;
  align-items: flex-start;
}
.tour-booking .tour-booking-wrap__details .excursion__item-wrap img {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: flex-start;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .excursion__item-wrap img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
}
.tour-booking .tour-booking-wrap__details .excursion__item-wrap .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tour-booking .tour-booking-wrap__details .excursion__item-wrap .text p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .excursion__item-wrap .text p {
    font-size: 12px;
    line-height: 15px;
  }
}
.tour-booking .tour-booking-wrap__details .excursion__item-wrap .text p.time {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .excursion__item-wrap .text p.time {
    font-size: 10px;
    line-height: 12px;
  }
}
.tour-booking .tour-booking-wrap__details .user-comment h3 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .user-comment h3 {
    font-size: 11px;
    line-height: 14px;
  }
}
.tour-booking .tour-booking-wrap__details .user-comment p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (max-width: 767px) {
  .tour-booking .tour-booking-wrap__details .user-comment p {
    font-size: 13px;
    line-height: 16px;
  }
}

.booking-tour-footer.tour-footer .tour-footer-title {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .booking-tour-footer.tour-footer .tour-footer-title {
    margin-bottom: 3px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .booking-tour-footer.tour-footer .tour-footer-title {
    margin-right: 0;
    max-width: 100%;
  }
  .booking-tour-footer.tour-footer .tour-footer-title .current-tour-price.with-prepayment {
    margin-right: 0;
    max-width: 100%;
  }
}
.booking-tour-footer.tour-footer .tour-footer-title .current-tour-price {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 33px;
  line-height: 20px;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .booking-tour-footer.tour-footer .tour-footer-title .current-tour-price {
    font-size: 20px;
    line-height: 19px;
  }
}
.booking-tour-footer.tour-footer .tour-footer-title .current-tour-price span {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 23px;
  line-height: 14px;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .booking-tour-footer.tour-footer .tour-footer-title .current-tour-price span {
    font-size: 14px;
    line-height: 14px;
  }
}
.booking-tour-footer.tour-footer .tour-footer-title .current-tour-old-price {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 12px;
  display: flex;
  align-items: flex-end;
  text-align: right;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #841C14;
  position: relative;
  max-width: 80px;
}
.booking-tour-footer.tour-footer .tour-footer-title .current-tour-old-price:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  left: 0;
  right: 0;
  background-color: #841C14;
}
@media (max-width: 767px) {
  .booking-tour-footer.tour-footer .tour-footer-title .current-tour-old-price:before {
    top: 55%;
  }
}
@media (max-width: 767px) {
  .booking-tour-footer.tour-footer .tour-footer-title .current-tour-old-price {
    font-size: 12px;
    line-height: 13px;
  }
}
.booking-tour-footer.tour-footer .tour-footer-title .current-tour-old-price span {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 9px;
  display: flex;
  align-items: flex-end;
  text-align: right;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #841C14;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .booking-tour-footer.tour-footer .tour-footer-title .current-tour-old-price span {
    font-size: 9px;
    line-height: 11px;
  }
}
.booking-tour-footer.tour-footer .tour-footer-description {
  text-align: left;
}
@media (max-width: 1024px) {
  .booking-tour-footer.tour-footer .tour-footer-description-wrap {
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .booking-tour-footer.tour-footer .tour-footer-description-wrap {
    width: 100%;
    margin: 0 0 10px;
  }
  .booking-tour-footer.tour-footer .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment {
    width: 100%;
    align-items: flex-end;
    flex-direction: row;
  }
  .booking-tour-footer.tour-footer .tour-footer-description-wrap .tour-footer-title .current-tour-price.with-prepayment .prepayment {
    margin: 0;
  }
}
.booking-tour-footer.tour-footer .btn-primary,
.booking-tour-footer.tour-footer .btn {
  margin-right: 20px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .booking-tour-footer.tour-footer .btn-primary,
  .booking-tour-footer.tour-footer .btn {
    font-size: 13px;
    line-height: 13px;
  }
}
@media (max-width: 767px) {
  .booking-tour-footer.tour-footer .btn-primary,
  .booking-tour-footer.tour-footer .btn {
    width: auto;
    padding: 8px 11px;
    margin-right: 8px;
    font-size: 11px;
    line-height: 11px;
  }
}
@media (max-width: 359px) {
  .booking-tour-footer.tour-footer .btn-primary,
  .booking-tour-footer.tour-footer .btn {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.booking-tour-footer.tour-footer .btn-no-bg {
  width: 158px;
  padding: 8px 19px;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
.booking-tour-footer.tour-footer .btn-no-bg:hover {
  color: #14080E;
  border-color: #14080E;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .booking-tour-footer.tour-footer .btn-no-bg {
    width: auto;
    padding: 7px 11px;
    font-size: 14px;
    line-height: 14px;
  }
}

.hidden {
  display: none;
}
.hidden.show {
  display: block;
}

.card-body {
  position: relative;
}

.feeding {
  background-image: url(/images/ribbon.png?d496563ac41ad69468661dac32b4bce4);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 6px 30px 14px 17px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 36px;
  left: -15px;
  z-index: 3;
}
@media (max-width: 767px) {
  .feeding {
    padding: 4px 14px 10px 7px;
    top: 4px;
    left: -9px;
  }
}
.feeding span {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .feeding span {
    margin-right: 4px;
  }
  .feeding span img {
    width: 12px;
    height: 12px;
  }
}
.feeding p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .feeding p {
    font-size: 9px;
    line-height: 9px;
  }
}

.hot-tour-flag {
  background-image: url("/img/hot-tour.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 6px 30px 14px 17px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  bottom: 10px;
  left: -15px;
  z-index: 3;
}
@media (max-width: 767px) {
  .hot-tour-flag {
    padding: 4px 14px 10px 7px;
    bottom: 10px;
    left: -9px;
  }
}
.hot-tour-flag span {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .hot-tour-flag span {
    margin-right: 4px;
  }
  .hot-tour-flag span img {
    width: 12px;
    height: 12px;
  }
}
.hot-tour-flag p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .hot-tour-flag p {
    font-size: 9px;
    line-height: 9px;
  }
}

.force-open-sans * {
  font-family: "Open Sans", sans-serif !important;
}

.force-open-sans {
  font-size: 12px;
  line-height: 15px;
}
@media (min-width: 768px) {
  .force-open-sans {
    font-size: 16px;
    line-height: 20px;
  }
}

.switch-btn-down {
  display: flex;
  align-items: center;
}
.switch-btn-down span {
  display: flex;
  margin-left: 5px;
}

.switch-btn-up.show {
  display: flex;
  align-items: center;
}
.switch-btn-up.show span {
  display: flex;
  justify-content: center;
  transform: rotate(-90deg);
  margin-left: 5px;
}

.tour-rooms-section-wrap {
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .tour-rooms-section-wrap {
    width: 100%;
  }
}

.room-price-wrap {
  display: none;
  align-items: flex-start;
}
@media (max-width: 1140px) {
  .room-price-wrap.desktop {
    margin-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .room-price-wrap.desktop {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    padding-bottom: 8px;
  }
}
@media (max-width: 1024px) {
  .room-price-wrap.mobile {
    display: flex;
    flex-wrap: wrap;
  }
}
.room-price-wrap p.room-price-label {
  margin-right: 10px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  padding-top: 15px;
}
@media (max-width: 1024px) {
  .room-price-wrap p.room-price-label {
    font-size: 13px;
    line-height: 16px;
    padding-top: 5px;
  }
}

.slick-slider {
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slick-slider * {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 1024px) {
  .slick-slider {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .slick-slider {
    margin-left: 0;
  }
}
.slick-slider button.slick-arrow.slick-next,
.slick-slider button.slick-arrow.slick-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  line-height: 0;
  z-index: 1;
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 100%;
}
.slick-slider button.slick-arrow.slick-next:hover,
.slick-slider button.slick-arrow.slick-prev:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .slick-slider button.slick-arrow.slick-prev {
    left: -24px;
  }
}
@media (max-width: 767px) {
  .slick-slider button.slick-arrow.slick-prev {
    left: -10px;
  }
}
@media (max-width: 1024px) {
  .slick-slider button.slick-arrow.slick-next {
    right: 35px;
  }
}
@media (max-width: 767px) {
  .slick-slider button.slick-arrow.slick-next {
    right: 21px;
  }
}
.slick-slider button.slick-arrow.slick-next:after,
.slick-slider button.slick-arrow.slick-prev:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 11px;
  width: 11px;
  height: 21px;
}
.slick-slider button.slick-arrow.slick-next:after {
  background-image: url(/images/arrow-next.svg?68858b5dbd12e04645d02ff0f0ec6d07);
  background-repeat: no-repeat;
}
.slick-slider button.slick-arrow.slick-prev:after {
  background-image: url(/images/arrow-prev.svg?7fb582ba8cd218fbfb702fd4096416f4);
  background-repeat: no-repeat;
}
.slick-slider button.slick-arrow.slick-next.slick-disabled,
.slick-slider button.slick-arrow.slick-prev.slick-disabled {
  display: none !important;
}
.slick-slider .slick-list {
  width: 100%;
}
.slick-slider .slick-list .slick-track {
  width: 100% !important;
  display: flex;
  overflow-x: scroll;
  transform: none !important;
}
.slick-slider .slick-list .slick-track div.rooms-error {
  display: block !important;
  max-width: 100% !important;
}
.slick-slider .slick-list .slick-track div {
  display: flex !important;
  min-width: 109px;
  margin-right: 1px;
  width: auto !important;
  outline: none !important;
}
@media (max-width: 345px) {
  .slick-slider .slick-list .slick-track .slick-slide.slick-active:last-child {
    display: none !important;
  }
}

.room-class.ghost {
  padding: 0;
  background: none;
  box-shadow: none;
  overflow: hidden;
}

.tour-rooms-no-slider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-rooms-no-slider div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-description-wrap {
  margin-bottom: 8px;
}

.hotel-tour .tour-footer-btn, .reviews-section .tour-footer-btn {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1025px) {
  .hotel-tour, .reviews-section {
    position: relative;
  }
}

.anchor {
  position: absolute;
  top: -70px;
}

.close-gallery-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
@media (max-width: 767px) {
  .close-gallery-btn {
    top: 16px;
    right: 16px;
  }
}

.rooms-section .gallery-slider.show .columns {
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rooms-section .gallery-slider.show .columns .card-img {
  margin-bottom: 0;
}
@media (min-width: 1141px) {
  .rooms-section .gallery-slider.show .columns {
    max-width: 1000px;
  }
}
@media (min-width: 768px) and (max-width: 1140px) {
  .rooms-section .gallery-slider.show .columns {
    max-width: 650px;
  }
}
.rooms-section .gallery-slider.show .columns img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 600px;
}

.checked-by-default {
  opacity: 0.6;
}

#card-app {
  margin-top: 40px;
}
#card-app h2 {
  margin-bottom: 13px;
}

#card-app .card-footer .btn {
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1141px) {
  #card-app .card-footer .btn {
    max-width: 150px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  #card-app .card-footer .btn {
    white-space: nowrap;
  }
}

.hotel-tour .tour-card-wrapper {
  max-width: 550px;
  width: 100%;
}

.disable-tour-card {
  background: rgba(0, 157, 220, 0.5) !important;
  opacity: 0.6;
}

.tour-card-wrapper h3 {
  display: flex;
  align-items: center;
}
.tour-card-wrapper .hot-tour {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.head-wrap a {
  display: flex;
  align-items: center;
}
.head-wrap .hot-tour {
  margin-right: 5px;
}

.cards-wrapper .card {
  display: none;
}

.disabled-tour {
  background-color: rgba(0, 157, 220, 0.5);
}
.disabled-tour:hover {
  cursor: not-allowed;
  background-color: rgba(0, 157, 220, 0.5) !important;
}

.cards-wrapper.show .card {
  display: block;
}

.page {
  min-height: calc(100vh - 227px);
  height: 100%;
  padding: 50px 0;
  background-color: #fff;
}
@media (max-width: 479px) {
  .page {
    padding: 20px 0;
  }
}
.page.contact-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 0 50px;
}
.page.contact-page .container {
  width: 100%;
}
.page.contact-page h1 {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page.contact-page h1 {
    margin-bottom: 5px;
  }
}
.page.contact-page p.location {
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 479px) {
  .page.contact-page p.location {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
  }
}
.page h1 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
@media (max-width: 479px) {
  .page h1 {
    margin-bottom: 20px;
  }
}
.page .content {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 30px;
}
@media (max-width: 767px) {
  .page .content {
    padding: 0 15px;
  }
}
.page p, .page span {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 48px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
@media (max-width: 479px) {
  .page p, .page span {
    font-size: 12px;
    line-height: 16px;
  }
}
.page p {
  margin-bottom: 20px;
}
.page a {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  transition: opacity 300ms ease-in-out;
}
.page a:hover {
  opacity: 0.5;
}
@media (max-width: 479px) {
  .page a {
    font-size: 12px;
    line-height: 16px;
  }
}
.page .contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 30px;
}
@media (max-width: 767px) {
  .page .contacts {
    padding: 12px 0;
  }
}
.page .contacts .map {
  width: 100%;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .page .contacts .map {
    margin-bottom: 12px;
  }
}
.page .contacts .map iframe {
  width: 100%;
  height: 350px;
}
.page .contacts .contacts-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page .contacts .contacts-list {
  margin-bottom: 20px;
}
.page .contacts .contact-socials,
.page .contacts .contacts-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page .contacts .contact-socials p,
.page .contacts .contacts-list p {
  margin: 0;
}
.page .contacts .contact-socials a,
.page .contacts .contacts-list a {
  display: block;
}
.page .contacts .contact-socials a:hover,
.page .contacts .contacts-list a:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.page .contacts .contact-socials a img,
.page .contacts .contacts-list a img {
  width: 35px;
  height: 35px;
}
@media (max-width: 479px) {
  .page .contacts .contact-socials a,
  .page .contacts .contacts-list a {
    font-size: 12px;
    line-height: 14px;
  }
}
.page .contacts .contact-socials li,
.page .contacts .contacts-list li {
  border-right: 2px solid var(--main-color);
  padding-right: 10px;
  margin-right: 10px;
}
.page .contacts .contact-socials li:last-child,
.page .contacts .contacts-list li:last-child {
  padding-right: 0;
  margin-right: 0;
  border: 0;
}

@media (max-width: 767px) {
  .apartments-numbers {
    padding: 0 16px;
  }
  .apartments-numbers .slick-slider {
    margin: 0;
  }
}

.hotel-numbers {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DBD7D7;
  margin-bottom: 24px;
}
.hotel-numbers .slick-slider .slick-list .slick-track div {
  max-width: 100%;
}
@media (max-width: 767px) {
  .hotel-numbers {
    display: block;
    margin: 0 auto 24px;
    max-width: 1024px;
    overflow: hidden;
  }
  .hotel-numbers .slick-slider button.slick-arrow.slick-next {
    right: 0;
  }
}
.hotel-numbers li button {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  padding: 10px 25px;
  cursor: pointer;
  height: 100%;
}
@media (max-width: 767px) {
  .hotel-numbers li button {
    padding: 10px;
    outline: none !important;
  }
}
.hotel-numbers li button.active {
  border-bottom: 2px solid #14080E;
}
.hotel-numbers li button.active .hotel-number-title {
  font-weight: bold;
}
.hotel-numbers li button .hotel-number-class {
  font-size: 14px;
  line-height: 14px;
  display: block;
  padding-left: 28px;
  text-align: left;
  opacity: 0.65;
}
.hotel-numbers li button .hotel-number-title {
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
}
.hotel-numbers li button .hotel-number-icon {
  display: flex;
  align-items: center;
  width: 20px;
  margin-right: 8px;
}

.tour-food {
  margin-bottom: 57px;
}
.tour-food h3 {
  margin-bottom: 20px;
}
.tour-food .tour-food-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.tour-food .tour-food-wrap .tour-food-item {
  border: 1px solid #DBD7D7;
  box-sizing: border-box;
  border-radius: 10px;
  height: 55px;
  padding: 15px;
  margin-right: 5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-food .tour-food-wrap .tour-food-item span.additional-services-list__icon-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.tour-food .tour-food-wrap .tour-food-item span.additional-services-list__icon-check label {
  top: -8px;
  left: -6px;
}
.tour-food .tour-food-wrap .tour-food-item span.additional-services-list__icon-check [type=checkbox].filled-in + label:after,
.tour-food .tour-food-wrap .tour-food-item span.additional-services-list__icon-check [type=checkbox].filled-in + label:before {
  width: 24px;
  height: 24px;
}
.tour-food .tour-food-wrap .tour-food-item span.additional-services-list__icon-check.included {
  opacity: 0.6;
}
.tour-food .tour-food-wrap .tour-food-item .food-text h4 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
.tour-food .tour-food-wrap .tour-food-item .food-text p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  opacity: 0.6;
}
.tour-food .tour-food-wrap .tour-food-item .food-text p.bold {
  font-weight: bold;
}
.tour-food .tour-food-wrap .tour-food-item .food-tooltip {
  position: relative;
}
.tour-food .tour-food-wrap .tour-food-item .food-tooltip span.food-tooltip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 7px;
  opacity: 0.4;
  cursor: pointer;
}
.tour-food .tour-food-wrap .tour-food-item .food-tooltip span.food-tooltip-icon:hover + .food-tooltip-arrow {
  display: flex;
  align-items: center;
}
.tour-food .tour-food-wrap .tour-food-item .food-tooltip span.food-tooltip-icon:hover + .food-tooltip-arrow + .tooltip-content {
  display: flex;
  align-items: center;
}
.tour-food .tour-food-wrap .tour-food-item .food-tooltip .food-tooltip-arrow {
  display: none;
  position: absolute;
  right: 0;
  width: 26px;
  height: 10px;
}
.tour-food .tour-food-wrap .tour-food-item .food-tooltip .tooltip-content {
  display: none;
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 9;
  padding: 10px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 14px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  box-shadow: 0 4px 6px rgba(20, 8, 14, 0.07);
  background: #F4F4F4;
  border-radius: 8px;
  width: 176px;
}
@media (max-width: 1339px) {
  .tour-food .tour-food-wrap .tour-food-item .food-tooltip .tooltip-content {
    right: -31px;
  }
}
@media (max-width: 578px) {
  .tour-food .tour-food-wrap .tour-food-item .food-tooltip .tooltip-content {
    width: 164px;
  }
}

.tels {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
}
@media (max-width: 480px) {
  .tels {
    padding-bottom: 0;
  }
}
.tels .tels-wrap {
  position: absolute;
  top: 150px;
  left: 20px;
  z-index: 101;
}
@media (max-width: 564px) {
  .tels .tels-wrap {
    top: 205px;
  }
}
.tels .tels-wrap p {
  margin-bottom: 10px;
}
.tels .tels-wrap div {
  display: flex;
  flex-wrap: wrap;
}
.tels .tels-wrap div a {
  margin-right: 30px;
  font-size: 12px;
}
@media (max-width: 476px) {
  .tels .tels-wrap div a {
    margin-right: 5px;
  }
}

.b24-form .b24-form-control-label {
  top: -19% !important;
}
@media (max-width: 470px) {
  .b24-form .b24-form-control-label {
    top: 10% !important;
  }
}
.b24-form .b24-form-control-alert-message {
  padding-left: 24px;
  padding-right: 10px;
}
.b24-form .b24-form-control-alert-message::before {
  top: 1px !important;
}
.b24-form .b24-window-popup-wrapper {
  max-width: 700px;
}
.b24-form div, .b24-form input, .b24-form button, .b24-form span {
  font-family: "Open Sans", sans-serif !important;
  text-align: start;
  padding: 0;
  opacity: 1;
}
.b24-form .b24-form-control-alert {
  margin-bottom: 0 !important;
}
.b24-form .b24-window-close {
  display: none;
}
.b24-form .b24-form-wrapper {
  display: grid;
  border-bottom: none !important;
  max-width: 700px;
  overflow: hidden;
  padding-bottom: 10px;
}
.b24-form .b24-form-wrapper .b24-form-header {
  display: none;
  position: relative;
  height: 98px;
  border: none;
  padding: 20px;
}
@media (max-width: 480px) {
  .b24-form .b24-form-wrapper .b24-form-header {
    height: 71px;
  }
}
.b24-form .b24-form-wrapper .b24-form-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  z-index: 100;
}
.b24-form .b24-form-wrapper .b24-form-header .b24-form-header-title {
  color: transparent;
}
.b24-form .b24-form-wrapper .b24-form-header .b24-form-header-title::before {
  content: "Консультації і замовлення по телефонам:";
  color: black;
  font-weight: normal;
  font-size: 16px;
}
@media (max-width: 564px) {
  .b24-form .b24-form-wrapper .b24-form-header .b24-form-header-title::before {
    font-size: 12px;
  }
}
.b24-form .b24-form-wrapper .b24-form-header .b24-form-header-description {
  color: transparent;
  margin: 0;
}
.b24-form .b24-form-wrapper .b24-form-header .b24-form-header-description::before {
  content: "+38 067 277 40 40    +38 067 537 40 40    +38 063 205 40 40";
  color: transparent;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 564px) {
  .b24-form .b24-form-wrapper .b24-form-header .b24-form-header-description::before {
    font-size: 14px;
  }
}
@media (max-width: 423px) {
  .b24-form .b24-form-wrapper .b24-form-header .b24-form-header-description::before {
    font-size: 10px;
  }
}
.b24-form .b24-form-wrapper .b24-form-sign {
  display: grid;
  grid-template-columns: 34% auto;
  grid-row-start: 2;
  padding: 20px;
  margin: 100px 0 0;
  border-top: 1px solid #DBD7D7;
}
@media (max-width: 564px) {
  .b24-form .b24-form-wrapper .b24-form-sign {
    grid-template-columns: 46% auto;
  }
}
@media (max-width: 332px) {
  .b24-form .b24-form-wrapper .b24-form-sign {
    grid-template-columns: 44% auto;
  }
}
.b24-form .b24-form-wrapper .b24-form-sign span {
  font-size: 18px;
  font-weight: 700;
  color: transparent;
  white-space: nowrap;
}
.b24-form .b24-form-wrapper .b24-form-sign span::before {
  color: black;
}
.b24-form .b24-form-wrapper .b24-form-sign .b24-form-sign-text {
  font-size: 16px;
  font-weight: normal;
}
.b24-form .b24-form-wrapper .b24-form-sign .b24-form-sign-text::before {
  content: "Графік роботи call-центру";
}
@media (max-width: 564px) {
  .b24-form .b24-form-wrapper .b24-form-sign .b24-form-sign-text {
    font-size: 12px;
  }
}
.b24-form .b24-form-wrapper .b24-form-sign .b24-form-sign-bx {
  grid-row-start: 2;
}
.b24-form .b24-form-wrapper .b24-form-sign .b24-form-sign-bx::before {
  content: "ПН-СБ: 10:00 - 19:00";
  font-size: 14px;
}
.b24-form .b24-form-wrapper .b24-form-sign .b24-form-sign-24 {
  grid-row-start: 2;
}
.b24-form .b24-form-wrapper .b24-form-sign .b24-form-sign-24::before {
  content: "НД: 10:00 - 17:00";
  font-size: 14px;
}
.b24-form .b24-form-wrapper .b24-form-content {
  grid-row-start: 1;
  padding: 20px;
  border-bottom: 1px solid #DBD7D7;
}
@media (max-width: 423px) {
  .b24-form .b24-form-wrapper .b24-form-content {
    padding-left: 0;
  }
}
.b24-form .b24-form-wrapper .b24-form-content .b24-form-field-name {
  display: none;
}
.b24-form .b24-form-wrapper .b24-form-content form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-top: 30px;
}
@media (max-width: 564px) {
  .b24-form .b24-form-wrapper .b24-form-content form {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.b24-form .b24-form-wrapper .b24-form-content form::before {
  content: "Замовити зворотній дзвінок:";
  position: absolute;
}
@media (max-width: 423px) {
  .b24-form .b24-form-wrapper .b24-form-content form::before {
    padding-left: 20px;
  }
}
.b24-form .b24-form-wrapper .b24-form-content form div {
  margin: 0;
}
.b24-form .b24-form-wrapper .b24-form-content form .b24-form-field-phone {
  grid-column-start: 1;
  grid-row-start: 1;
}
@media (max-width: 423px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-field-phone {
    width: 390px;
  }
}
@media (max-width: 400px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-field-phone {
    width: 338px;
  }
}
@media (max-width: 350px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-field-phone {
    width: 302px;
  }
}
@media (max-width: 470px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-field-phone .b24-form-control-container {
    width: 60%;
    margin: 0 auto;
  }
}
.b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container {
  grid-column-start: 2;
  grid-row-start: 1;
}
@media (max-width: 564px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container {
    grid-column-start: 1;
    grid-row-start: 2;
    margin-top: 8px;
  }
}
@media (max-width: 423px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container {
    width: 390px;
  }
}
@media (max-width: 400px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container {
    width: 338px;
  }
}
@media (max-width: 350px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container {
    width: 302px;
  }
}
@media (max-width: 470px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container .b24-form-btn-block {
    display: flex;
    justify-content: center;
  }
}
.b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container .b24-form-btn-block .b24-form-btn {
  position: relative;
  background-color: #F26430;
  color: transparent;
}
.b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container .b24-form-btn-block .b24-form-btn::before {
  content: "Замовити";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
@media (max-width: 470px) {
  .b24-form .b24-form-wrapper .b24-form-content form .b24-form-btn-container .b24-form-btn-block .b24-form-btn {
    width: 60%;
    margin: 0 auto;
  }
}
.b24-form .b24-form-wrapper .b24-form-state-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100% !important;
  z-index: 102;
}
.b24-form .b24-form-wrapper .b24-form-state-container .b24-form-state-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.b24-form .b24-form-wrapper .b24-form-state-container .b24-form-state-inner p {
  white-space: normal;
}
@media (max-width: 349px) {
  .b24-form .b24-form-wrapper .b24-form-state-container {
    width: 100% !important;
  }
}
@media (max-width: 512px) {
  .b24-form .b24-window-scrollable {
    padding-bottom: 0 !important;
  }
}

.certificates {
  background-color: white;
  overflow: hidden;
}
.certificates .wrap {
  max-width: 1220px;
  padding: 86px 0 38px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .certificates .wrap {
    padding: 52px 16px 19px;
  }
}
.certificates .wrap .title {
  font-size: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .certificates .wrap .title {
    text-align: start;
    line-height: 16px;
  }
}
.certificates .wrap .subtitle {
  max-width: 755px;
  margin: 0 auto 45px;
  font-size: 1em;
  text-align: center;
  line-height: 23px;
}
@media (max-width: 768px) {
  .certificates .wrap .subtitle {
    margin-bottom: 20px;
    text-align: start;
  }
}
.certificates .wrap .swiper {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1258px) {
  .certificates .wrap .swiper {
    height: 303px;
    width: 876px;
  }
}
@media (max-width: 905px) {
  .certificates .wrap .swiper {
    height: 278px;
    width: 746px;
  }
}
@media (max-width: 1014px) {
  .certificates .wrap .swiper .swiper-wrapper {
    height: 239px;
  }
}
@media (max-width: 928px) {
  .certificates .wrap .swiper .swiper-wrapper {
    height: 205px;
  }
}
@media (max-width: 767px) {
  .certificates .wrap .swiper .swiper-wrapper {
    height: -moz-max-content;
    height: max-content;
    width: 940px;
  }
}
@media (max-width: 552px) {
  .certificates .wrap .swiper .swiper-wrapper {
    width: 629px;
  }
}
.certificates .wrap .swiper .swiper-wrapper .swiper-slide {
  height: -moz-max-content;
  height: max-content;
  width: 386px;
  border-radius: 5px;
  overflow: hidden;
}
.certificates .wrap .swiper .swiper-wrapper .swiper-slide .price {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .certificates .wrap .swiper .swiper-wrapper .swiper-slide .price {
    margin: 20px 0;
  }
}
.certificates .wrap .swiper .swiper-wrapper .swiper-slide .price p {
  font-size: 20px;
  margin-bottom: 0;
}
.certificates .wrap .swiper .swiper-wrapper .swiper-slide .price p.discount {
  margin-right: 10px;
}
.certificates .wrap .swiper .swiper-wrapper .swiper-slide .price p.classic {
  color: #841C14;
  text-decoration: line-through;
}
.certificates .wrap .swiper .swiper-wrapper .swiper-slide a {
  margin: 0 auto;
}
.certificates .wrap .swiper .swiper-wrapper .swiper-slide img {
  border-radius: 5px;
}
@media (max-width: 767px) {
  .certificates .wrap .swiper .swiper-wrapper .swiper-slide img {
    max-width: 292px;
    width: 100%;
  }
}
.certificates .wrap .swiper .swiper-arrows {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 40px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .certificates .wrap .swiper .swiper-arrows {
    display: none;
  }
}
.certificates .wrap .swiper .swiper-arrows div {
  position: static;
  height: 40px;
  width: 40px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.5);
}
.certificates .wrap .swiper .swiper-arrows div::before, .certificates .wrap .swiper .swiper-arrows div::after {
  content: none;
}
.certificates .wrap .swiper .swiper-arrows div:first-child {
  margin-right: 20px;
}

.certificates-margin {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .tour-cards .container {
    overflow: hidden;
  }
}

#hotel_desktop_location .p1 {
  font-family: "Open Sans", sans-serif !important;
}

.error-calendar:nth-child(1) {
  border: 1px solid red !important;
}

.error-persons:nth-child(2) {
  border: 1px solid red !important;
}

.error-calendar:nth-child(1) {
  border: 1px solid red !important;
}

.error-persons:nth-child(2) {
  border: 1px solid red !important;
}

#tour_partnership_form {
  padding: 0;
}
#tour_partnership_form .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
  width: 100%;
}
#tour_partnership_form .container.partnership {
  padding: 0;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership {
    max-width: 100%;
  }
}
#tour_partnership_form .container.partnership section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1141px;
  padding: 0 16px;
  margin: 0 auto;
}
#tour_partnership_form .container.partnership p {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 16.25px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership b {
    font-size: 18px;
  }
}
#tour_partnership_form .container.partnership h2 {
  text-transform: none;
  margin: 0;
  text-align: start;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership h2 {
    line-height: 40px;
    font-size: 32px;
  }
}
#tour_partnership_form .container.partnership .btn {
  max-width: 200px;
  padding: 10px 17.5px;
  text-align: center;
}
#tour_partnership_form .container.partnership .intro {
  padding: 50px 16px 29px;
  background: var(--main-gradient);
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .intro {
    max-width: 100%;
  }
}
#tour_partnership_form .container.partnership .intro .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1141px;
  width: 100%;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .intro .wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .intro .wrap div {
    display: flex;
    flex-direction: column;
    max-width: 500px;
  }
}
#tour_partnership_form .container.partnership .intro .wrap h2, #tour_partnership_form .container.partnership .intro .wrap p {
  color: white;
}
#tour_partnership_form .container.partnership .intro .wrap h2 {
  font-size: 24px;
  text-align: left;
  line-height: 27.6px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .intro .wrap h2 {
    font-size: 48px;
    line-height: 55.6px;
  }
}
#tour_partnership_form .container.partnership .intro .wrap p {
  margin: 15px 0;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .intro .wrap p {
    margin: 24px 0 30px;
  }
}
#tour_partnership_form .container.partnership .intro .wrap img.partners-image {
  height: 269px;
  max-width: 315px;
  width: 100%;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .intro .wrap img.partners-image {
    height: 456px;
    max-width: 534px;
    width: 100%;
  }
}
#tour_partnership_form .container.partnership .intro .wrap img.partners-image.polyana {
  display: none;
  transform: translateY(96px);
  max-width: 304px;
  width: auto;
  height: auto;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .intro .wrap img.partners-image.polyana {
    max-width: 583px;
  }
}
#tour_partnership_form .container.partnership .intro .wrap .btn {
  align-self: flex-start;
  max-width: 172px;
  width: 100%;
  padding: 10px 17.5px;
  margin-bottom: 30px;
  color: #fff;
  background: var(--btns-color);
  transition: background-color 0.3s ease;
}
#tour_partnership_form .container.partnership .intro .wrap .btn:hover {
  background: #FC7A1E;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .intro .wrap .btn {
    max-width: 284px;
  }
}
#tour_partnership_form .container.partnership .about {
  padding-top: 100px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about {
    margin-top: 100px;
  }
}
#tour_partnership_form .container.partnership .about a {
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 14px 86.5px;
  text-align: center;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about {
    flex-direction: row;
  }
  #tour_partnership_form .container.partnership .about b {
    font-size: 16px;
  }
}
#tour_partnership_form .container.partnership .about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .container {
    max-width: 540px;
    width: 100%;
    margin-right: 84px;
    transform: translateY(-150px);
  }
}
#tour_partnership_form .container.partnership .about .container h2 {
  display: block;
  font-size: 16px;
  text-align: start;
  margin-bottom: 0;
  line-height: 21px;
}
#tour_partnership_form .container.partnership .about .container h2 span {
  color: #105E44;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .container h2 {
    display: block;
    font-size: 32px;
    line-height: 40px;
  }
  #tour_partnership_form .container.partnership .about .container h2 span {
    color: #105E44;
  }
}
#tour_partnership_form .container.partnership .about .container .video-wraper {
  position: relative;
  margin: 15px 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 375px) {
  #tour_partnership_form .container.partnership .about .container .video-wraper {
    height: 184px;
    width: 328px;
  }
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .container .video-wraper {
    width: 100%;
    margin: 60px 0 40px;
  }
}
#tour_partnership_form .container.partnership .about .container .video-wraper .play_wall {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(3px);
  transition: visibility 300ms ease-in-out, opacity 300ms ease-in-out, width 300ms ease-in-out;
}
#tour_partnership_form .container.partnership .about .container .video-wraper .play_wall.none {
  visibility: none;
  opacity: 0;
  width: 0;
}
#tour_partnership_form .container.partnership .about .container .video-wraper iframe {
  height: 184px;
  max-width: 328px;
  width: 100%;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .container .video-wraper iframe {
    height: 334px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .about .container .btn {
    max-width: 160px;
    padding: 10px 27.5px;
  }
}
#tour_partnership_form .container.partnership .about .box {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .box {
    width: 100%;
    position: relative;
    top: 20px;
    align-self: flex-end;
  }
}
#tour_partnership_form .container.partnership .about .box .item {
  display: flex;
  margin-top: 37px;
}
#tour_partnership_form .container.partnership .about .box .item .svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  max-width: 50px;
  margin-right: 15px;
  width: 100%;
  padding: 13px;
  border-radius: 100%;
  background-color: #F4F5F7;
}
#tour_partnership_form .container.partnership .about .box .item .svg-wrap svg {
  height: 50px;
  width: 50px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .box .item .svg-wrap svg {
    height: 100%;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .box .item .svg-wrap {
    height: 75px;
    max-width: 75px;
    margin-right: 40px;
  }
}
#tour_partnership_form .container.partnership .about .box .item h3 {
  font-size: 14px;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .box .item h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 32px;
  }
}
#tour_partnership_form .container.partnership .about .box .item p {
  font-size: 11px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .about .box .item p {
    font-size: 16px;
    line-height: 20px;
  }
}
#tour_partnership_form .container.partnership .guarantee {
  padding: 74px 16px;
}
#tour_partnership_form .container.partnership .guarantee h2 {
  max-width: 600px;
  align-self: flex-start;
  margin-bottom: 40px;
}
#tour_partnership_form .container.partnership .guarantee .btn {
  padding: 14px 69px;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .guarantee .btn {
    margin-top: 100px;
  }
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .guarantee .btn {
    padding: 10px 31.5px;
  }
}
@media (max-width: 767px) {
  #tour_partnership_form .container.partnership .guarantee .btn {
    max-width: 200px;
  }
}
#tour_partnership_form .container.partnership .guarantee .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1023px) {
  #tour_partnership_form .container.partnership .guarantee .box {
    margin-bottom: 30px;
  }
}
#tour_partnership_form .container.partnership .guarantee .box .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .guarantee .box .item {
    flex-direction: row;
  }
  #tour_partnership_form .container.partnership .guarantee .box .item:nth-child(2) {
    flex-direction: row-reverse;
  }
}
#tour_partnership_form .container.partnership .guarantee .box .item svg {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .guarantee .box .item svg {
    height: 280px;
    max-width: 550px;
    width: 100%;
    margin-right: 88px;
  }
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .guarantee .box .item div {
    max-width: 550px;
    width: 100%;
    text-align: start;
  }
}
#tour_partnership_form .container.partnership .guarantee .box .item div h3 {
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .guarantee .box .item div h3 {
    margin-bottom: 20px;
  }
}
#tour_partnership_form .container.partnership .price {
  padding-top: 30px;
  padding-bottom: 50px;
  background: var(--main-gradient);
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .price {
    max-width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
#tour_partnership_form .container.partnership .price p {
  text-transform: none;
}
#tour_partnership_form .container.partnership .price .wrap {
  max-width: 1141px;
  width: 100%;
}
#tour_partnership_form .container.partnership .price .wrap h2 {
  justify-content: center;
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .price .wrap h2 {
    margin-bottom: 41px !important;
  }
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .price .wrap h2 {
    font-size: 32px;
  }
}
#tour_partnership_form .container.partnership .price .wrap .container .sub-title {
  max-width: 173px;
  margin: 0 auto;
  font-size: 12px;
}
#tour_partnership_form .container.partnership .price .wrap .container .banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 30px;
  background: var(--main-color);
  box-shadow: 0px 15px 20px rgba(20, 8, 14, 0.07);
  border-radius: 15px;
}
#tour_partnership_form .container.partnership .price .wrap .container .banner .img-wrap {
  position: relative;
  height: 116px;
  max-width: 109px;
  width: 133%;
}
#tour_partnership_form .container.partnership .price .wrap .container .banner .img-wrap img.mob {
  position: absolute;
  top: 50%;
  left: 60%;
  height: 103px;
  width: 100%;
  transform: translate(-50%, -50%) scale(1.6);
}
#tour_partnership_form .container.partnership .price .wrap .container .banner .img-wrap img.desk {
  display: none;
}
#tour_partnership_form .container.partnership .price .wrap .container .banner .banner-text {
  padding: 0 15px 16px;
}
#tour_partnership_form .container.partnership .price .wrap .container .banner .banner-text .title {
  padding-top: 16px;
  text-align: start;
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}
#tour_partnership_form .container.partnership .price .wrap .container .banner .banner-text p {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 400;
  text-align: start;
  line-height: 13px;
}
#tour_partnership_form .container.partnership .price .wrap .container .banner .arrow {
  position: absolute;
  left: 100%;
  bottom: -27px;
  height: 73.81px;
  width: 239.5px;
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .price .wrap .container .banner .arrow {
    display: none;
  }
}
#tour_partnership_form .container.partnership .price .wrap .container .price-discount svg {
  max-width: 192px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .price .wrap .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .price-discount {
    transform: translateX(75px);
  }
  #tour_partnership_form .container.partnership .price .wrap .container .price-discount svg {
    max-width: 286px;
    width: 100%;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .price-discount .sub-title {
    max-width: 301px;
    font-size: 20px;
    line-height: 25px;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .text {
    max-width: 600px;
    width: 100%;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .text p {
    font-size: 16px;
    line-height: 20px;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .text p::before {
    top: 6px;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .banner {
    height: 150px;
    max-width: 761px;
    width: 100%;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .banner .img-wrap {
    height: 150px;
    max-width: 150px;
    width: 100%;
    margin: 0 50px;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .banner .img-wrap img.mob {
    display: none;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .banner .img-wrap img.desk {
    display: block;
    height: 150px;
    max-width: 169px;
    width: 100%;
    margin-right: 30px;
    transform: scale(1.5);
  }
  #tour_partnership_form .container.partnership .price .wrap .container .banner h3 {
    font-size: 24px !important;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .banner .banner-text {
    padding: 0 43px 16px 0;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .banner .banner-text p {
    font-size: 16px !important;
    line-height: 20px;
  }
  #tour_partnership_form .container.partnership .price .wrap .container .btn {
    max-width: 284px;
    width: 100%;
    padding: 14px 0;
    color: white;
    background-color: #F26430;
    transition: background-color 0.3s ease;
    transform: translateY(17px);
  }
  #tour_partnership_form .container.partnership .price .wrap .container .btn:hover {
    background-color: #FC7A1E;
  }
}
#tour_partnership_form .container.partnership .price .wrap h2, #tour_partnership_form .container.partnership .price .wrap p, #tour_partnership_form .container.partnership .price .wrap span {
  color: white;
}
#tour_partnership_form .container.partnership .price .wrap h2 {
  margin-bottom: 30px;
}
#tour_partnership_form .container.partnership .price .wrap .text {
  align-self: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 30px;
  padding-left: 16px;
}
#tour_partnership_form .container.partnership .price .wrap .text p {
  position: relative;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 400;
  text-align: start;
  line-height: 13.75px;
}
#tour_partnership_form .container.partnership .price .wrap .text p::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -15px;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: white;
}
#tour_partnership_form .container.partnership .price .wrap .text .title {
  font-size: 13px;
  font-weight: 700;
}
#tour_partnership_form .container.partnership .price .wrap .text .title::before {
  content: none;
}
#tour_partnership_form .container.partnership .price .wrap .btn {
  max-width: 200px;
  color: white;
  background-color: #F26430;
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .price .wrap .btn {
    margin: 30px auto 0;
  }
}
#tour_partnership_form .container.partnership .discount {
  padding-top: 100px;
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .discount {
    padding-top: 35px;
  }
}
#tour_partnership_form .container.partnership .discount h2 {
  align-self: flex-start;
  max-width: 455px;
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .discount h2 {
    max-width: 222px;
  }
}
#tour_partnership_form .container.partnership .discount .container {
  filter: drop-shadow(0px 15px 20px rgba(20, 8, 14, 0.07));
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .discount .container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin: 41px 0 100px;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.first {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 15px 30px;
  margin: 34px 0 30px;
  border-radius: 20px;
  background: var(--main-color);
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.first {
    max-width: 609px;
    margin-left: 100px;
    padding: 40px;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.first div, #tour_partnership_form .container.partnership .discount .container .wrap.first p, #tour_partnership_form .container.partnership .discount .container .wrap.first span, #tour_partnership_form .container.partnership .discount .container .wrap.first h3 {
  color: white;
}
#tour_partnership_form .container.partnership .discount .container .wrap.first h3 {
  align-self: flex-start;
}
#tour_partnership_form .container.partnership .discount .container .wrap.first img {
  position: absolute;
  top: -48px;
  right: 7px;
  height: 80px;
  width: 80px;
}
#tour_partnership_form .container.partnership .discount .container .wrap.first .box {
  margin: 15px 0 30px;
  width: 100%;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.first .box {
    margin: 15px 0 40px;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.first .box .item {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-left: 13px;
  font-size: 11px;
}
#tour_partnership_form .container.partnership .discount .container .wrap.first .box .item::before {
  content: url(/img/done.svg);
  position: absolute;
  top: -2px;
  left: -20px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.first .box .item::before {
    top: 2px;
    left: -30px;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.first .box .item p {
  white-space: nowrap;
}
@media (max-width: 360px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.first .box .item p {
    font-size: 10px;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.first .box .item span {
  align-self: flex-end;
  height: 2px;
  width: 100%;
  margin: 0 3px 3px;
  border-top: 1px dashed white;
}
@media (max-width: 360px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.first .box .item b {
    font-size: 10px;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.first .btn {
  padding: 10px 31.5px;
  max-width: 200px;
  color: white;
  background-color: #F26430;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.first .btn {
    max-width: 284px;
    width: 100%;
    transition: background-color 0.3s ease;
  }
  #tour_partnership_form .container.partnership .discount .container .wrap.first .btn:hover {
    background: #FC7A1E;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.second {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 15px 30px;
  margin: 0 0 20px;
}
#tour_partnership_form .container.partnership .discount .container .wrap.second h3 {
  align-self: flex-start;
  color: rgb(16, 94, 68);
}
#tour_partnership_form .container.partnership .discount .container .wrap.second .box {
  margin: 15px 0 30px;
  width: 100%;
}
#tour_partnership_form .container.partnership .discount .container .wrap.second .box .item {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-left: 13px;
  font-size: 11px;
}
#tour_partnership_form .container.partnership .discount .container .wrap.second .box .item::before {
  content: url(/img/done_black.svg);
  position: absolute;
  top: -2px;
  left: -20px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.second .box .item::before {
    top: 2px;
    left: -30px;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.second .box .item p {
  white-space: nowrap;
}
@media (max-width: 360px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.second .box .item p {
    font-size: 10px;
  }
}
#tour_partnership_form .container.partnership .discount .container .wrap.second .box .item span {
  align-self: flex-end;
  height: 2px;
  width: 100%;
  margin: 0 3px 3px;
  border-top: 1px dashed black;
}
#tour_partnership_form .container.partnership .discount .container .wrap.second .box .item b {
  white-space: nowrap;
}
@media (max-width: 360px) {
  #tour_partnership_form .container.partnership .discount .container .wrap.second .box .item b {
    font-size: 10px;
  }
}
#tour_partnership_form .container.partnership .tour-booking-wrap {
  padding-bottom: 30px;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    row-gap: 50px;
    -moz-column-gap: 134px;
         column-gap: 134px;
    padding-bottom: 81px;
  }
}
#tour_partnership_form .container.partnership .tour-booking-wrap h2 {
  position: relative;
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap h2 {
    line-height: 21px;
  }
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap h2 {
    grid-column: span 2;
    padding-right: 499px;
  }
}
#tour_partnership_form .container.partnership .tour-booking-wrap h2 .arrow {
  position: absolute;
  left: 53%;
  bottom: -61px;
  height: 78.65px;
  width: 250.73px;
}
@media (max-width: 1024px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap h2 .arrow {
    display: none;
  }
}
#tour_partnership_form .container.partnership .tour-booking-wrap svg {
  margin: 15px 0;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap svg {
    grid-column-start: 1;
    height: 372px;
    width: 500px;
  }
}
#tour_partnership_form .container.partnership .tour-booking-wrap form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap form {
    grid-row-start: 2;
    grid-column-start: 2;
  }
  #tour_partnership_form .container.partnership .tour-booking-wrap form .form-inputs-wrap {
    align-self: flex-start;
  }
}
#tour_partnership_form .container.partnership .tour-booking-wrap form .form-inputs-wrap {
  margin: 0;
}
@media (max-width: 500px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap form .policy-wrap {
    max-width: 342px;
  }
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap form .policy-wrap p.small {
    font-size: 11px;
  }
  #tour_partnership_form .container.partnership .tour-booking-wrap form .policy-wrap p.small a {
    font-size: 11px;
    color: rgba(20, 8, 14, 0.45);
  }
}
#tour_partnership_form .container.partnership .tour-booking-wrap form .btn {
  max-width: 250px;
  padding: 15px 50px;
}
#tour_partnership_form .container.partnership .tour-booking-wrap form .btn .mobile {
  display: none;
}
@media (min-width: 1024px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap form .btn {
    white-space: nowrap;
    max-width: 342px;
    align-self: flex-start;
  }
}
@media (max-width: 1023px) {
  #tour_partnership_form .container.partnership .tour-booking-wrap form .btn .desktop {
    display: none;
  }
  #tour_partnership_form .container.partnership .tour-booking-wrap form .btn .mobile {
    max-width: 328px;
    width: 100%;
    display: block;
  }
}

.discount-banner {
  margin-top: 10px;
  display: block;
  position: relative;
}
.discount-banner_desktop {
  display: none;
}
@media (min-width: 640px) {
  .discount-banner .discount-banner {
    margin-top: 15px;
  }
  .discount-banner_mobile {
    display: none;
  }
  .discount-banner .btn {
    bottom: 30px;
  }
  .discount-banner_desktop {
    display: block;
    width: 100%;
  }
}

.payment {
  background-color: white;
  margin-bottom: 110px;
}
.payment .container {
  max-width: 624px;
  margin-left: 351px;
}
@media (max-width: 1140px) {
  .payment .container {
    margin: 0 auto;
    padding: 0 16px;
  }
}
.payment .content {
  margin-bottom: 64px;
}
.payment h5 {
  text-transform: uppercase;
}
.payment h2 {
  margin: 14px 0;
}
.payment h5, .payment p {
  margin: 15px 0;
}
.payment p {
  font-size: 14px;
}
.payment hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #DBD7D7;
}
.payment .payment-price {
  display: flex;
  white-space: nowrap;
}
.payment .payment-price span {
  height: 2px;
  width: 100%;
  margin: 0 3px 3px;
  border-top: 1px dashed black;
  align-self: flex-end;
}
.payment .attention-baner {
  padding: 10px;
  background-color: var(--main-color);
  border-radius: 5px;
}
.payment .attention-baner p {
  color: white;
  font-weight: 700;
  margin: 0;
}
.payment .attention-title {
  color: #D20F00;
  text-transform: uppercase;
}
@media (max-width: 1140px) {
  .payment h2 {
    font-size: 16px;
  }
  .payment h5, .payment p, .payment a {
    font-size: 11px;
  }
  .payment .payment-price b {
    font-size: 16px;
  }
}
.payment .terms {
  position: fixed;
  bottom: 76px;
  height: 36px;
  width: 100%;
  border-top: 1px solid #DBD7D7;
  background-color: #EBEBEB;
}
@media (max-width: 1024px) {
  .payment .terms {
    bottom: 86px;
  }
}
@media (max-width: 767px) {
  .payment .terms {
    bottom: 86px;
  }
}
.payment .terms .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.payment .terms .container p {
  margin-left: 24px;
}
.payment .terms .container p a {
  color: #F26430;
  font-weight: normal;
}

.discount-banner .title {
  justify-content: center;
  margin: 178px 0 26px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 1140px) {
  .discount-banner .title {
    margin: 90px 15px 15px;
    justify-content: flex-start;
  }
}
.discount-banner .content {
  height: 295px;
  width: 100%;
  padding: 65px 0;
  background: linear-gradient(90.85deg, #CE0808 11.3%, #FF6228 49.95%, #D10F0B 74.96%);
}
@media (max-width: 1140px) {
  .discount-banner .content {
    height: 238px;
    padding: 40px 0;
  }
}
.discount-banner .content .container {
  display: flex;
  align-items: center;
  max-width: 1000px;
}
@media (max-width: 1140px) {
  .discount-banner .content .container {
    flex-direction: column;
  }
}
.discount-banner .content .container h1 {
  font-size: 72px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
  text-transform: uppercase;
  line-height: 70px;
}
@media (max-width: 1140px) {
  .discount-banner .content .container h1 {
    font-size: 36px;
    line-height: 41px;
    white-space: nowrap;
  }
}
.discount-banner .content .container div {
  margin-top: 61px;
  margin-left: 38px;
}
@media (max-width: 1140px) {
  .discount-banner .content .container div {
    margin-top: 22px;
    margin-left: 0;
  }
}
.discount-banner .content .container div h2 {
  color: white;
  font-size: 64px;
  margin-bottom: 12px;
}
@media (max-width: 1140px) {
  .discount-banner .content .container div h2 {
    font-size: 22px;
  }
}
.discount-banner .content .container div h2 span {
  padding-bottom: 57px;
  font-size: 144px;
  font-family: "Raleway", sans-serif;
}
@media (max-width: 1140px) {
  .discount-banner .content .container div h2 span {
    font-size: 48px;
    padding-bottom: 18px;
  }
}
.discount-banner .content .container div h3 {
  margin-left: 23px;
  color: white;
  font-size: 24px;
  white-space: nowrap;
}
@media (max-width: 1140px) {
  .discount-banner .content .container div h3 {
    max-width: 232px;
    margin-left: 0;
    font-size: 14px;
    white-space: unset;
    text-align: center;
  }
}

.certificates .wrap .swiper .swiper-wrapper .swiper-slide a {
  background: var(--btns-color) !important;
}

.partners-profit {
  padding-top: 12px;
  margin-bottom: 21px;
  background-image: url("/img/partners-profit.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 555px;
  height: 354px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 634px) {
  .partners-profit {
    width: 572px;
    height: 271px;
  }
}
@media (max-width: 500px) {
  .partners-profit {
    width: 323px;
    height: 178px;
  }
}
.partners-profit img {
  display: block;
}
.partners-profit img.polyana {
  display: none;
}
.partners-profit .partners-text {
  font-family: "Raleway", sans-serif !important;
  font-weight: 800;
  font-size: 24px !important;
  text-transform: uppercase;
  line-height: 28px !important;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  max-width: 293px;
  padding-bottom: 63px;
  word-wrap: break-word;
}
@media (max-width: 634px) {
  .partners-profit .partners-text {
    padding-bottom: 43px;
    font-size: 19px !important;
    padding-right: 60px;
  }
}
@media (max-width: 500px) {
  .partners-profit .partners-text {
    font-size: 12px !important;
    max-width: 169px;
    padding-bottom: 24px;
    line-height: 19px !important;
    padding-right: unset;
  }
}

.polyana-tours .header.home {
  position: fixed;
  left: 0;
  right: 0;
  background: unset;
  box-shadow: unset;
  width: 100%;
}
.polyana-tours .header.home.fixed {
  background: #175B2A;
}
.polyana-tours .glory-tour {
  background-color: #175B2A;
  background-image: url(/images/polyana-bg.png?2f6e04a2c272226b72c4f6c706602a02);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .polyana-tours .glory-tour {
    background-image: url(/images/polyana-bg-full.png?fd1ca0cd36774afc2f772dc277b73c68);
  }
}
@media (max-width: 991px) {
  .polyana-tours .glory-tour {
    padding-top: 78px;
  }
}
.polyana-tours .tab .additional-service-select .additional-service-select-head,
.polyana-tours .tabs-component-panel .additional-service-select .additional-service-select-head {
  background: #67CB83;
}
.polyana-tours #card-app {
  margin-top: 0;
  padding-top: 63px;
}
.polyana-tours .slide-down {
  z-index: 9;
}
.polyana-tours .current-tour-old-price {
  color: rgb(214, 102, 93) !important;
}
.polyana-tours .current-tour-old-price:before, .polyana-tours .current-tour-old-price span {
  color: rgb(214, 102, 93) !important;
}
.polyana-tours [type=checkbox].filled-in:checked + label:before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='16' height='16' rx='8' fill='%23069C28' stroke='%23069C28'/%3E%3Cpath d='M5 9.00012L8 12.0001L13.0002 7' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.polyana-tours [type=checkbox].filled-in:checked + label:after {
  border: 1px solid #069C28;
}
.polyana-tours .partners-profit {
  padding-top: 12px;
  margin-bottom: 21px;
}
.polyana-tours .partners-profit img {
  display: none;
}
.polyana-tours .partners-profit img.polyana {
  display: block;
}

.polyana-title {
  font-family: "Cinzel", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 35px;
  display: inline-block;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  padding-top: 37px;
  width: 100%;
}
.polyana-title span {
  font-family: "Cinzel", serif;
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  margin-left: 0;
}
@media (min-width: 768px) {
  .polyana-title {
    font-size: 64px;
    line-height: 64px;
    padding-top: 76px;
    margin-left: 20px;
  }
}

.requisites {
  background: #fff;
  padding: 5%;
  height: 100vh;
}
.requisites h1 {
  margin-bottom: 20px;
}
.requisites h4 {
  margin-top: 10px;
}
.requisites p {
  margin-bottom: 10px;
}

.no-tours {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.partners-profit {
  padding-top: 12px;
  margin-bottom: 21px;
}

.person-count {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  text-align: right;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0 8px 0 3px;
}
@media (min-width: 1141px) {
  .person-count {
    font-size: 14px;
    line-height: 17px;
  }
}

@media (max-width: 1023px) {
  .help-army-section {
    padding-top: 40px;
  }
}

/* help ukraine */
@media (max-width: 1023px) {
  #card-app {
    margin-top: 30px;
    padding-top: 10px;
  }
}

@media (max-width: 1023px) {
  .help-coat {
    display: none;
  }
  .help-coat.show {
    display: flex;
  }
}

@media (max-width: 320px) {
  .phone {
    display: none;
  }
}

.help-army a {
  color: #fff;
  text-transform: uppercase;
  padding-right: 20px;
  padding-left: 20px;
}
.help-army img {
  width: 48px;
}
@media (max-width: 1023px) {
  .help-army {
    width: 90px;
    text-align: center;
    line-height: 15px;
  }
  .help-army a {
    font-size: 12px;
    padding-right: 5px;
    padding-left: 0;
    text-align: center;
  }
}

.montenegro {
  padding: 40px 0 30px;
  background-image: url(/images/montenegro-bg.png?2a7e32f008a3e401865cd913db5b1699);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.montenegro:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 25, 27, 0.6);
}
.montenegro-wrap {
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.montenegro-title {
  margin-bottom: 10px;
}
.montenegro-title h3 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
.montenegro-description {
  text-align: center;
  margin-bottom: 15px;
}
.montenegro-description p {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.02em;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-bottom: 7px;
}
.montenegro-description span {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFC511;
}
.montenegro-button {
  max-width: 285px;
  width: 100%;
  margin: 0 auto 25px;
}
.montenegro-button button {
  width: 100%;
}
.montenegro .swiper-container {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.montenegro .swiper-container .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.montenegro .swiper-container .swiper-slide {
  max-width: 221px;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

section.auth {
  padding: 67px 60px 22px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
section.auth a:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
section.auth .auth-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.auth .close {
  position: absolute;
  top: 25px;
  right: 16px;
  opacity: 0.35;
}
section.auth .content {
  width: 328px;
}
section.auth .content .form-input {
  height: 48px;
}
section.auth .image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  margin-right: 259px;
}
@media (max-width: 1280px) {
  section.auth .image {
    margin-right: 100px;
  }
}
@media (max-width: 1024px) {
  section.auth .image {
    margin-right: 0;
  }
}
section.auth .title {
  margin-bottom: 35px;
}
section.auth .title h2 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0;
  justify-content: center;
  text-align: center;
}
section.auth .description {
  margin-bottom: 16px;
}
section.auth .description p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #000000;
}
section.auth .socials {
  margin-bottom: 30px;
}
section.auth .socials ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  list-style: none;
  padding: 0;
}
section.auth .socials ul li {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
section.auth .socials ul li:last-child {
  margin-right: 0;
}
section.auth .socials p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  text-align: center;
}
section.auth .sub-title {
  margin-bottom: 30px;
}
section.auth .sub-title p {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  text-align: center;
}
section.auth form {
  width: 100%;
}
section.auth form .passwEr1 {
  margin-bottom: 10px;
  display: flex;
  float: right;
}
section.auth .form-error {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #D20F00;
  margin-bottom: 16px;
}
section.auth .form-input {
  position: relative;
  border: 1px solid #DBD7D7;
  padding: 10px 30px 17px 20px;
  box-sizing: border-box;
  border-radius: 5px;
  margin-bottom: 16px;
}
section.auth .form-input .eye {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
}
section.auth .form-input input {
  background: #FFFFFF;
  box-sizing: border-box;
  border-radius: 5px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: rgb(91, 91, 91);
  width: 100%;
}
section.auth .form-input input:-webkit-autofill, section.auth .form-input input:-webkit-autofill:hover, section.auth .form-input input:-webkit-autofill:focus {
  -webkit-text-fill-color: rgba(20, 8, 14, 0.45);
  -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
section.auth .form-input input[name=password], section.auth .form-input input[name=password_confirmation] {
  padding-right: 10px;
}
section.auth .form-input input[type=password] {
  font-family: Verdana;
  font-size: 20px;
  letter-spacing: 5px;
}
section.auth .form-input input::-moz-placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  font-feature-settings: "pnum" on, "lnum" on;
  cursor: text;
  color: rgba(20, 8, 14, 0.45);
}
section.auth .form-input label,
section.auth .form-input input::placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  transition: all 0.1s ease-in-out;
  font-feature-settings: "pnum" on, "lnum" on;
  cursor: text;
  color: rgba(20, 8, 14, 0.45);
}
section.auth .form-input.float-label {
  border: 1px solid #009DDC;
}
section.auth .form-input.float-label label {
  top: -2px;
  background: #fff;
  color: #009DDC;
  padding: 0 4px;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  transition: all 0.1s ease-in-out;
}
section.auth .send-email-message {
  font-family: Open Sans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #069C28;
  margin-bottom: 15px;
}
section.auth .additional {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
section.auth .additional .remember-me {
  overflow: hidden;
}
section.auth .additional .remember-me input {
  opacity: 0;
  position: absolute;
  left: -999999px;
}
section.auth .additional .remember-me label {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #4F4F4F;
  padding-left: 26px;
  position: relative;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  top: unset;
  left: unset;
}
section.auth .additional .checkbox-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #14080E;
  border-radius: 100%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
section.auth .additional input:checked + label .checkbox-item {
  background-color: #069C28;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.50018L5.5 9.00018L13.0004 1.5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 61%;
  background-position: center center;
  border-color: #069C28;
}
section.auth .additional a {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
section.auth .additional a.link-to-login {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #009DDC;
  padding-right: 26px;
}
section.auth .button {
  margin-bottom: 16px;
}
section.auth .button button {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  background: #F26430;
  border-radius: 5px;
}
section.auth .button button:hover {
  background: #F36F3F;
}
section.auth .registration {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #000000;
}
section.auth .registration a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 17px;
  color: #F26430;
}
section.auth .registration a:hover {
  color: #F36F3F;
}
@media (max-width: 1024px) {
  section.auth .auth-wrap {
    flex-direction: column;
  }
  section.auth .content {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  section.auth {
    padding: 67px 16px 22px;
  }
  section.auth .content {
    width: 280px;
  }
  section.auth .image {
    max-width: 204px;
    margin: 0 auto 10px;
  }
  section.auth form {
    max-width: 425px;
    margin: 0 auto;
  }
}
@media (max-width: 380px) {
  section.auth .content {
    width: 100%;
  }
  section.auth label[for=password_confirmation] {
    width: 145px;
    overflow: hidden;
    white-space: pre;
  }
}

.greeting {
  padding: 67px 0 22px;
  position: relative;
  min-height: 100vh;
  background-color: #fff;
}
.greeting .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.greeting .container .image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
}
.greeting .container .content {
  max-width: 328px;
  text-align: center;
}
.greeting .container .content .title {
  margin-bottom: 35px;
}
.greeting .container .content .title h2 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  margin: 0;
  display: inherit;
}
.greeting .container .content p {
  font-size: 13px;
  color: #14080E;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .greeting .container {
    width: 1200px;
  }
}
@media (max-width: 1024px) {
  .greeting .container {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.profile-app {
  resize: none;
  background: white;
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: 160px;
  padding-bottom: 150px;
}
.profile-app .profile-settings-change__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20%;
}
.profile-app .profile-settings-change__form .image-background {
  background: rgba(0, 157, 220, 0.2);
}
.profile-app .profile-settings-change__form .image-placer {
  cursor: pointer;
  width: 540px;
  height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.profile-app .profile-settings-change__form .image-placer .label-photo {
  position: absolute;
  cursor: pointer;
  width: 540px;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-app .profile-settings-change__form .image-placer-img {
  margin: 0 auto;
  overflow: hidden;
}
.profile-app .profile-settings-change__form .image-placer-img img {
  width: 540px;
  height: 550px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-app .profile-settings-change__form .image-placer .photo_placer {
  display: none;
  width: 540px;
  height: 550px;
}
.profile-app .profile-settings-change__form .image-placer p {
  padding-top: 15px;
  display: none;
  position: absolute;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: white;
  line-height: 125%;
  bottom: 0;
  height: 60px;
  width: 100%;
  background: rgba(111, 111, 111, 0.7);
}
.profile-app .profile-settings-change__form .image-placer svg {
  width: 52px;
  height: 37.38px;
}
.profile-app .profile-settings-change__form .image-placer:hover p {
  display: flex;
  justify-content: center;
  transition: margin-bottom 1.5s ease-out;
}
.profile-app .profile-settings-change__form .input-placer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap p.info {
  color: red;
  padding-bottom: 10px;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .change-password {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .change-password .password-foget {
  margin-bottom: 16px;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .change-password button {
  margin-bottom: 0;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap p.redag-prof {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 35px;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input {
  background: #FFFFFF;
  border: 1px solid #DBD7D7;
  box-sizing: border-box;
  border-radius: 5px;
  width: 328px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 13px 20px;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input.float-label {
  border: 1px solid var(--main-color);
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input.float-label label {
  top: -2px;
  background: #fff;
  color: var(--main-color);
  padding: 0 4px;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  transition: all 0.1s ease-in-out;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  transition: all 0.1s ease-in-out;
  font-feature-settings: "pnum" on, "lnum" on;
  cursor: text;
  color: rgba(20, 8, 14, 0.45);
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input input {
  max-width: 100%;
  min-width: 80%;
  line-height: 20px;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input select {
  float: right;
  border: none;
  cursor: pointer;
  width: 328px;
}
.profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input select:after {
  border: none;
}
.profile-app .profile-settings-change__form .input-placer .btn {
  border: 1px solid #DBD7D7;
  box-sizing: border-box;
  border-radius: 5px;
  width: 328px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
}
.profile-app .profile-settings-change__form .input-placer .btn p {
  font-family: "Open Sans";
  padding: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
}
.profile-app .profile-settings-change__form .input-placer .grey {
  background: #EBEBEB;
  color: #F26430;
}
.profile-app .profile-settings-change__form .input-placer .grey:hover {
  background: #D4D4D4;
}
.profile-app .profile-settings-change__form .input-placer .orange {
  background: #F26430;
}
.profile-app .profile-settings-change__form .input-placer .orange p {
  color: #EBEBEB;
}
.profile-app .profile-settings-change__form .input-placer .orange:hover {
  background: #F36F3F;
}
.profile-app .profile-settings-change__form .input-placer .oth {
  margin-bottom: 16px;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage {
  display: flex;
  flex-direction: column;
  width: 328px;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage {
  float: left;
  text-align: left;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage p {
  padding-top: 25px;
  padding-bottom: 10px;
  text-align: left;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 125%;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .form-change-email-input {
  background: #FFFFFF;
  border: 1px solid #DBD7D7;
  box-sizing: border-box;
  border-radius: 5px;
  width: 328px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 13px 20px;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .form-change-email-input.float-label {
  border: 1px solid var(--main-color);
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .form-change-email-input.float-label label {
  top: -2px;
  background: #fff;
  color: var(--main-color);
  padding: 0 4px;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  transition: all 0.1s ease-in-out;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .form-change-email-input label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  transition: all 0.1s ease-in-out;
  font-feature-settings: "pnum" on, "lnum" on;
  cursor: text;
  color: rgba(20, 8, 14, 0.45);
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .form-change-email-input input {
  max-width: 100%;
  min-width: 80%;
  line-height: 20px;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .form-change-email-buttons .btn {
  height: 43px;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .form-change-email-buttons .btn p {
  padding: 0;
  font-family: "Open Sans";
  padding: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle {
  margin-top: 10px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle input[type=checkbox] {
  position: relative;
  visibility: visible;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #069C28;
  border-radius: 100px;
  margin-bottom: 8px;
  margin-right: 5px;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle input[type=checkbox]:checked {
  background: #069C28 url(/images/Checkmark.svg?8951424403bf9b7bfc0103b734e0ffa5) no-repeat center;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle label {
  display: flex;
  flex-direction: column;
  margin-left: 7px;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle label strong {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 125%;
  font-feature-settings: "pnum" on, "lnum" on;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle label span {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 125%;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #D00A10;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .email-change, .profile-app .profile-settings-change__form .input-placer .radio-stage .stage .card-change {
  font-family: "Raleway";
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #F26430;
  cursor: pointer;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .email-change .logo-aligner, .profile-app .profile-settings-change__form .input-placer .radio-stage .stage .card-change .logo-aligner {
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid #DBD7D7;
  border-radius: 100%;
  margin-right: 7px;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .stage .email-change:hover, .profile-app .profile-settings-change__form .input-placer .radio-stage .stage .card-change:hover {
  color: #F36F3F;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .lined {
  border-bottom: 1px solid #EBEBEB;
}
.profile-app .profile-settings-change__form .input-placer .radio-stage .credit-cards {
  display: none;
}
.profile-app .profile-settings-change__form .input-placer .buttons-group {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
}

@media (max-width: 1280px) {
  .profile-app .profile-settings-change__form {
    grid-column-gap: 10%;
  }
  .profile-app .profile-settings-change__form .image-placer {
    width: 480px;
    height: 480px;
  }
  .profile-app .profile-settings-change__form .image-placer .label-photo {
    width: 480px;
    height: 480px;
  }
  .profile-app .profile-settings-change__form .image-placer-img img {
    width: 480px;
    height: 480px;
  }
  .profile-app .profile-settings-change__form .image-placer .photo_placer {
    width: 480px;
    height: 480px;
  }
}
@media (max-width: 980px) {
  .profile-app .profile-settings-change__form {
    grid-column-gap: 7%;
  }
  .profile-app .profile-settings-change__form .image-placer {
    width: 320px;
    height: 320px;
  }
  .profile-app .profile-settings-change__form .image-placer .label-photo {
    width: 320px;
    height: 320px;
  }
  .profile-app .profile-settings-change__form .image-placer-img img {
    width: 320px;
    height: 320px;
  }
  .profile-app .profile-settings-change__form .image-placer .photo_placer {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 767px) {
  .profile-app {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .profile-app .profile-settings-change__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .profile-app .profile-settings-change__form .image-placer {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    margin-bottom: 16px;
  }
  .profile-app .profile-settings-change__form .image-placer .label-photo {
    width: 110px;
    height: 110px;
  }
  .profile-app .profile-settings-change__form .image-placer-img {
    border-radius: 50%;
  }
  .profile-app .profile-settings-change__form .image-placer-img img {
    width: 110px;
    height: 110px;
  }
  .profile-app .profile-settings-change__form .image-placer p {
    display: none;
  }
  .profile-app .profile-settings-change__form .image-placer svg {
    width: 24px;
    height: 17.25px;
  }
  .profile-app .profile-settings-change__form .image-placer .photo_placer {
    width: 110px;
    height: 110px;
  }
  .profile-app .profile-settings-change__form .image-placer:hover p {
    display: none;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap {
    flex-direction: column;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap p.redag-prof {
    font-size: 14px;
    line-height: 125%;
    margin-bottom: 25px;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input {
    width: 328px;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .btn {
    width: 328px;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .btn p {
    font-family: "Open Sans";
    padding: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .grey {
    background: #EBEBEB;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .grey p {
    color: #F26430;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .orange {
    background: #F26430;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .orange p {
    color: #EBEBEB;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .oth {
    margin-bottom: 16px;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage {
    display: flex;
    flex-direction: column;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage {
    width: 90%;
    float: left;
    text-align: left;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage p {
    padding-top: 30px;
    text-align: left;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 125%;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle {
    margin-top: 10px;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle input[type=radio] {
    -webkit-appearance: radio;
    height: 16px;
    width: 16px;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle label {
    display: flex;
    flex-direction: column;
    margin-left: 7px;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle label strong {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    font-feature-settings: "pnum" on, "lnum" on;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage .radio-bundle label span {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 125%;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #D00A10;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage button {
    font-family: "Raleway";
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 125%;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #F26430;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .stage button .logo-aligner {
    width: 16px;
    height: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid #DBD7D7;
    border-radius: 100%;
    margin-right: 7px;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage .lined {
    border-bottom: 1px solid #EBEBEB;
  }
  .profile-app .profile-settings-change__form .input-placer .buttons-group {
    margin-top: 45px;
  }
}
@media (max-width: 360px) {
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .form-input {
    width: 260px;
  }
  .profile-app .profile-settings-change__form .input-placer .form-inputs-wrap .btn {
    width: 260px;
  }
  .profile-app .profile-settings-change__form .input-placer .radio-stage {
    width: 260px;
  }
}
.active-booking {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 0;
  text-align: center;
}
.active-booking div h1 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
.active-booking-uppart {
  background: #EBEBEB;
  width: 60%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.active-booking-uppart-socials img {
  margin-left: 20px;
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  .active-booking-uppart {
    width: 100%;
  }
}
.active-booking-downpart {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
}
.active-booking-downpart-sales {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.active-booking-downpart-sales h1 {
  margin-top: 50px;
  margin-bottom: 65px;
}
.active-booking-downpart-presentBoy {
  display: flex;
  justify-content: center;
  align-items: center;
}
.active-booking-downpart-presentBoy img {
  width: 488px;
  height: 488px;
}

@media (max-width: 767px) {
  .active-booking {
    padding-bottom: 30px;
  }
  .active-booking div h1 {
    font-size: 16px;
  }
  .active-booking-downpart {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .active-booking-downpart-presentBoy img {
    display: none;
  }
}
.present {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}
.present .swiper-present {
  max-width: 394px;
  height: 252px;
  box-shadow: 0px 4px 6px rgba(20, 8, 14, 0.07);
  border-radius: 10px;
}
.present .swiper-present .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.present .swiper-present .swiper-wrapper .swiper-slide .presentBoy {
  display: none;
}
.present .swiper-present .swiper-wrapper .swiper-slide p {
  width: 82%;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
}
.present .swiper-present .swiper-wrapper .swiper-slide button {
  width: 219px;
  height: 44px;
  background: #F26430;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: white;
  margin-top: 20px;
}
.present .swiper-present .swiper-wrapper .swiper-slide button:hover {
  background: #F36F3F;
}
.present .swiper-present div.button-present, .present .swiper-present div.button-present-desktop {
  background-image: none;
}
.present .swiper-present .swiper-button-next-p, .present .swiper-present .swiper-button-prev-p {
  z-index: 3000;
  visibility: visible;
  display: block;
}
.present .swiper-present div.button-present:after, .present .swiper-present div.button-present-desktop:after {
  width: 32px;
  height: 32px;
  background-image: none;
  background-repeat: no-repeat;
}
.present .swiper-present .button-pagination {
  top: 270px;
  z-index: 200;
}
@media (min-width: 1024px) {
  .present .swiper-present .swiper-button-next.button-present, .present .swiper-present .swiper-button-prev.button-present {
    display: none;
  }
}
@media (max-width: 1023px) {
  .present .swiper-present .swiper-pagination {
    display: none;
  }
}

@media (max-width: 767px) {
  .present .swiper-present {
    max-width: 284px;
    height: 352px;
  }
  .present .swiper-present .swiper-wrapper .swiper-slide .presentBoy {
    display: block;
  }
}
.orange-button {
  background: #F26430;
  color: #FFFFFF;
}

.orange-button:hover {
  background: #F36F3F;
}

.abyss-button {
  color: #14080E;
  background: none;
  border: 1px solid black;
}

.abyss-button:hover {
  background: #009DDC;
  border: none;
  color: #FFFFFF;
}

.wizard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wizard-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
  align-items: center;
}
.wizard-head-leftPart {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wizard-head-leftPart h1 {
  margin-bottom: 60px;
}
.wizard-head-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wizard-head-header h1 {
  display: none;
  margin-top: 34px;
}
.wizard-head-header img {
  width: 488px;
  height: auto;
  margin-top: 12px;
}
.wizard-head-bullets {
  width: 328px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
}
.wizard-head-bullets .bullet-number {
  width: 30px;
  height: 30px;
  background: rgba(0, 157, 220, 0.46);
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.wizard-head-bullets .bullet-number p {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
.wizard-head-bullets .bullet-number.active {
  background: #009DDC;
}
.wizard-head-bullets .line {
  width: 30%;
  height: 1px;
  background: rgba(0, 157, 220, 0.46);
  margin-bottom: 30px;
}
.wizard-head-bullets .line.active {
  background: #009DDC;
}
.wizard-head-etaps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 328px;
  border-bottom: 1px solid gray;
}
.wizard-head-etaps .bullet {
  width: 109px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
.wizard-head-etaps .bullet.active {
  border-bottom: 2px solid black;
}
.wizard-head-etaps .bullet.active p {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
}
.wizard-head-etaps .bullet p {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  margin-top: 15px;
}
.wizard-head .wizard-body {
  width: 328px;
}
.wizard .wizard-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
.wizard .wizard-step p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
}
.wizard .wizard-step .pay-btn {
  width: 219px;
  height: 44px;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: white;
  margin-top: 16px;
}
.wizard .wizard-step .blue-plank-timer {
  padding-top: 30px;
  padding-left: 25px;
  padding-right: 25px;
  width: 800px;
  background: rgba(134, 220, 255, 0.69);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wizard .wizard-step .blue-plank-timer .timer {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 60px;
}
.wizard .wizard-step .blue-plank-timer .timer .time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 16px;
}
.wizard .wizard-step .blue-plank-timer .timer .time span {
  width: 50px;
  height: 53px;
  border-radius: 5%;
  background: #009DDC;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  box-shadow: 2px 2px 4px rgba(108, 108, 108, 0.24);
}
.wizard .wizard-step .blue-plank-timer .timer .time p {
  grid-column: 1/3;
}
.wizard .wizard-step .blue-plank-timer-btns {
  margin-top: 20px;
  margin-bottom: 30px;
  width: 75%;
  display: flex;
  justify-content: space-around;
}
.wizard .wizard-step .blue-plank-timer-btns button, .wizard .wizard-step .blue-plank-timer-btns a.orange-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 219px;
  height: 44px;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  font-feature-settings: "pnum" on, "lnum" on;
}
.wizard .wizard-step-documents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
  margin-top: 100px;
}
.wizard .wizard-step-documents .documents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.wizard .wizard-step-documents .documents .dropdown {
  box-shadow: 0px 15px 20px rgba(20, 8, 14, 0.07);
  border-radius: 0px 0px 10px 10px;
}
.wizard .wizard-step-documents .documents .dropdown-list {
  border-bottom: 1px solid #EBEBEB;
  padding: 40px;
}
.wizard .wizard-step-documents .documents .dropdown-list-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.wizard .wizard-step-documents .documents .dropdown-checklist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 10px 30px;
}
.wizard .wizard-step-documents .documents .dropdown-checklist h3 {
  margin-bottom: 10px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #14080E;
  text-transform: uppercase;
}
.wizard .wizard-step-documents .documents .dropdown-checklist p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 125%;
  width: 175px;
}
.wizard .wizard-step-documents .documents .dropdown-checklist-field {
  padding: 20px 10px 30px;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 14px;
}
.wizard .wizard-step-documents .documents .dropdown-checklist-field-inp {
  display: grid;
  grid-template-columns: 16px 258px;
  align-items: center;
  width: 280px;
}
.wizard .wizard-step-documents .documents .dropdown-checklist-field-inp input[type=checkbox] {
  position: relative;
  cursor: pointer;
  visibility: visible;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #069C28;
  border-radius: 100px;
}
.wizard .wizard-step-documents .documents .dropdown-checklist-field-inp input[type=checkbox]:checked {
  background: #069C28 url(/images/Checkmark.svg?8951424403bf9b7bfc0103b734e0ffa5) no-repeat center;
}
.wizard .wizard-step-documents .documents .dropdown-checklist-field-inp label {
  margin-left: 8px;
  display: flex;
  justify-content: flex-start;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.wizard .wizard-step-documents .documents .dropdown-checklist-field-inp label p {
  width: auto;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 125%;
  text-align: left;
}
.wizard .wizard-step-documents .documents .dropdown-checklist-field-inp label p strong {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 8px;
  line-height: 125%;
  font-feature-settings: "pnum" on, "lnum" on;
}
.wizard .wizard-step-documents .documents .dropdown-switch {
  background: #009DDC;
  cursor: pointer;
  width: 328px;
  height: 52px;
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.wizard .wizard-step-documents .documents .dropdown-switch p {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
.wizard .wizard-step-documents .documents .dropdown-switch-point {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.wizard .wizard-step-documents .documents .dropdown-switch:hover {
  background: #0096d1;
}
.wizard .wizard-step-documents img {
  width: 488px;
  height: 488px;
}
.wizard .agreed {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .wizard-head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wizard-head-header h1 {
    display: block;
  }
  .wizard-head-header img {
    width: 204px;
    height: 204px;
  }
  .wizard-head-leftPart h1 {
    display: none;
  }
  .wizard-head-bullets {
    padding-right: 44px;
    padding-left: 44px;
  }
  .wizard-head-bullets .bullet-number {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
  }
  .wizard-head-bullets .bullet-number p {
    font-size: 9px;
  }
  .wizard-head-bullets .bullet-number.active {
    background: #009DDC;
  }
  .wizard-head-bullets .line {
    width: 40%;
    margin-bottom: 0;
  }
  .wizard-head-bullets .line.active {
    background: #009DDC;
  }
  .wizard-head-etaps .bullet.active p {
    font-size: 14px;
  }
  .wizard .wizard-step p {
    font-size: 13px;
  }
  .wizard .wizard-step .blue-plank-timer {
    padding-top: 30px;
    width: 100%;
  }
  .wizard .wizard-step .blue-plank-timer p {
    font-size: 13px;
  }
  .wizard .wizard-step .blue-plank-timer .timer {
    grid-column-gap: 24px;
  }
  .wizard .wizard-step .blue-plank-timer .timer .time {
    grid-column-gap: 4px;
    grid-row-gap: 3px;
  }
  .wizard .wizard-step .blue-plank-timer .timer .time span {
    width: 27px;
    height: 26px;
    font-size: 24px;
    border-radius: 10%;
  }
  .wizard .wizard-step .blue-plank-timer .timer .time p {
    font-size: 10px;
  }
  .wizard .wizard-step .blue-plank-timer-btns {
    width: 75%;
    display: grid;
    grid-template-columns: 156px 156px;
    grid-column-gap: 16px;
  }
  .wizard .wizard-step .blue-plank-timer-btns button, .wizard .wizard-step .blue-plank-timer-btns a.orange-button {
    width: 156px;
  }
  .wizard .wizard-step-documents {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  .wizard .wizard-step-documents .documents .dropdown-list {
    padding: 0;
  }
  .wizard .wizard-step-documents-picture {
    display: none;
  }
  .wizard .agreed {
    flex-direction: column;
  }
}
.no-booked {
  padding-top: 10%;
  padding-bottom: 10%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  text-align: center;
}
.no-booked-text p {
  width: 350px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  font-feature-settings: "pnum" on, "lnum" on;
}
.no-booked-text p a {
  cursor: pointer;
  font-size: 18px;
}
.no-booked-text p a:hover {
  color: #f26430;
}
@media (max-width: 767px) {
  .no-booked {
    flex-direction: column;
  }
  .no-booked-image {
    width: 300px;
    height: 300px;
  }
  .no-booked-text {
    padding-top: 20px;
    padding-bottom: 45%;
  }
  .no-booked-text p {
    width: 328px;
    font-size: 13px;
    padding-bottom: 20px;
  }
  .no-booked-text p a {
    font-size: 16px;
  }
}

.modal-booking {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-booking .modal-dialog {
  position: fixed;
  background: #FFFFFF;
  box-shadow: 0px 4px 6px rgba(20, 8, 14, 0.07);
  border-radius: 10px;
}
.modal-booking .modal-dialog .modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-booking .modal-dialog .modal-content div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-booking .modal-dialog .modal-content .modal-header {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.modal-booking .modal-dialog .modal-content .modal-header button {
  width: 21px;
  height: 25px;
  margin-right: 45px;
}
.modal-booking .modal-dialog .modal-content .modal-header button span {
  color: #DBD7D7;
  font-size: 24px;
  line-height: 100%;
  font-weight: 200;
}
.modal-booking .modal-dialog .modal-content .modal-text {
  margin-top: 20px;
  flex-direction: column;
}
.modal-booking .modal-dialog .modal-content .modal-text h1 {
  width: 368px;
  font-size: 20px;
  line-height: 125%;
}
.modal-booking .modal-dialog .modal-content .modal-text p {
  margin-top: 16px;
  width: 260px;
}
.modal-booking .modal-dialog .modal-content .modal-text h4 {
  width: 280px;
  padding-top: 45px;
}
@media (max-width: 767px) {
  .modal-booking .modal-dialog .modal-content .modal-text h1 {
    font-weight: 700;
    text-transform: none;
    width: 180px;
    font-size: 14px;
  }
  .modal-booking .modal-dialog .modal-content .modal-text p {
    margin-top: 16px;
    width: 260px;
  }
  .modal-booking .modal-dialog .modal-content .modal-text h4 {
    width: 230px;
    padding-top: 35px;
    font-weight: 400;
    font-size: 13px;
    line-height: 125%;
  }
}
.modal-booking .modal-dialog .modal-content .modal-footer {
  padding-top: 16px;
  flex-direction: column;
}
.modal-booking .modal-dialog .modal-content .modal-footer button {
  width: 288px;
  height: 48px;
  margin-top: 16px;
}
.modal-booking .modal-first {
  width: 540px;
  height: 540px;
  top: 12%;
}
.modal-booking .modal-first .modal-image img {
  max-width: 160px;
  height: auto;
}
@media (max-width: 767px) {
  .modal-booking .modal-first {
    width: 328px;
    height: 550px;
  }
  .modal-booking .modal-first .modal-image {
    width: 205px;
    height: 205px;
  }
  .modal-booking .modal-first .modal-image img {
    width: 205px;
    height: 205px;
  }
}
.modal-booking .modal-second {
  width: 410px;
  height: 500px;
  top: 15%;
}
.modal-booking .modal-second .modal-image {
  margin-top: 40px;
}
.modal-booking .modal-second .modal-image img {
  max-width: 230px;
  height: auto;
}
@media (max-width: 767px) {
  .modal-booking .modal-second {
    width: 328px;
    height: 407px;
  }
  .modal-booking .modal-second .modal-image {
    margin: 0;
    width: 200px;
    height: 150px;
  }
  .modal-booking .modal-second .modal-image img {
    width: 200px;
    height: 150px;
  }
}

.card-2024 .card-img .prev,
.card-2024 .card-img .next {
  outline: none;
  width: 20px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  border-radius: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  transition: all 250ms;
}
.card-2024 .card-img .prev.disabled,
.card-2024 .card-img .next.disabled {
  pointer-events: none;
}

.card-2024 .card-img .prev {
  left: 8px;
}

.card-2024 .card-img .next {
  right: 8px;
}

.card-2024 .card-img .next:after,
.card-2024 .card-img .prev:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
}

.card-2024 .card-img .next:after {
  background-image: url(/images/arrow-right.svg?d1399b65fb2f721d509bee156266c018);
  background-repeat: no-repeat;
}

.card-2024 .card-img .prev:after {
  background-image: url(/images/arrow-left.svg?97f401719736816f01f603839352476a);
  background-repeat: no-repeat;
}

.tour-cards .card.card-2024 {
  background-color: #fbfafc;
}

.card-2024 .card-header {
  background-color: #fbfafc;
}
.card-2024 .feeding {
  background-image: url("/img/meal.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 6px 30px 14px 17px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 24px;
  left: -15px;
  z-index: 3;
}
@media (max-width: 767px) {
  .card-2024 .feeding {
    padding: 4px 14px 10px 7px;
    top: 4px;
    left: -9px;
  }
}
.card-2024 .feeding span {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .card-2024 .feeding span {
    margin-right: 4px;
  }
  .card-2024 .feeding span img {
    width: 12px;
    height: 12px;
  }
}
.card-2024 .feeding p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .card-2024 .feeding p {
    font-size: 9px;
    line-height: 9px;
  }
}
.card-2024 .transfer {
  background-image: url("/img/transfer.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 6px 30px 14px 17px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 62px;
  left: -15px;
  z-index: 3;
}
@media (max-width: 767px) {
  .card-2024 .transfer {
    padding: 4px 14px 10px 7px;
    top: 4px;
    left: -9px;
  }
}
.card-2024 .transfer span {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .card-2024 .transfer span {
    margin-right: 4px;
  }
  .card-2024 .transfer span img {
    width: 12px;
    height: 12px;
  }
}
.card-2024 .transfer p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .card-2024 .transfer p {
    font-size: 9px;
    line-height: 9px;
  }
}

.dots-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 22px;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  border-radius: 4px;
  padding: 8px;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.5);
}
.dots span {
  width: 4px;
  height: 4px;
  margin: 0 5px;
  background-color: #9ea2b2;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dots span.active {
  width: 6px;
  height: 6px;
  background-color: white;
  opacity: 0.75;
}

.tour-cards .card.card-2024 {
  font-variant-numeric: lining-nums;
}
.tour-cards .card.card-2024 .card-body {
  display: flex;
  padding: 24px;
  gap: 30px;
}
.tour-cards .card.card-2024 .card-body .card-slider {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.tour-cards .card.card-2024 .card-body .hot-tour-flag {
  bottom: 24px;
  left: -11px;
}
.tour-cards .card.card-2024 .card-body .gallery-slider-wrapper {
  max-width: 490px;
  min-width: 490px;
  min-height: 369px;
  max-height: 369px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.tour-cards .card.card-2024 .card-body .card-img {
  min-height: 369px;
  max-height: 369px;
}
.tour-cards .card.card-2024 .card-body .card-img img {
  min-height: 369px;
  max-height: 369px;
  min-width: 490px;
  max-width: 490px;
  -o-object-fit: cover;
  object-fit: cover;
}
.tour-cards .card.card-2024 .card-description {
  padding: 0;
  width: 100%;
  position: relative;
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6px 0 0;
}
.tour-cards .card.card-2024 .card-description .card-header {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.tour-cards .card.card-2024 .card-description .card-header .head-wrap {
  display: flex;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.tour-cards .card.card-2024 .card-description .card-header .head-wrap a {
  display: flex;
  gap: 8px;
}
.tour-cards .card.card-2024 .card-description .card-header .head-wrap a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}
.tour-cards .card.card-2024 .card-description .card-header .head-wrap a span {
  width: 60px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 4px;
  padding: 4px 8px;
  background: white;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-header .head-wrap a h3 {
  color: #25252C;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-header .head-wrap a p {
  max-width: 100%;
}
.tour-cards .card.card-2024 .card-description .card-header .head-wrap a p.tour-address {
  font-weight: 400;
  font-size: 14px;
  color: #707278;
  line-height: 17px;
  text-decoration: underline;
}
.tour-cards .card.card-2024 .card-description .card-header .head-wrap a p.tour-address::before {
  content: url("/img/location-gray.svg");
  color: #D3D3D3;
  position: relative;
  top: 2px;
  margin-right: 5px;
}
.tour-cards .card.card-2024 .card-description .card-header .rates {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  gap: 12px;
}
.tour-cards .card.card-2024 .card-description .card-header .rates .rate-item {
  width: 90px;
  height: 56px;
  display: flex;
  gap: 8px;
  margin-right: 0;
}
.tour-cards .card.card-2024 .card-description .card-header .rates .rate-item .rate-icon {
  width: auto;
  height: auto;
  background: none;
  margin-bottom: 0;
}
.tour-cards .card.card-2024 .card-description .card-header .rates .rate-item .rate-icon img {
  width: auto;
  height: auto;
}
.tour-cards .card.card-2024 .card-description .card-header .rates .rate-item .rate-bottom {
  background: #b4e4bf;
  color: rgba(16, 69, 11, 0.4);
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  text-align: center;
  border-radius: 4px;
  padding: 8px;
  width: 100%;
  height: 34px;
}
.tour-cards .card.card-2024 .card-description .card-header .rates .rate-item .rate-bottom span {
  color: rgb(16, 69, 11);
}
.tour-cards .card.card-2024 .card-description .card-description-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour-cards .card.card-2024 .card-description .card-description-more {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #42454a;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.03);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}
.tour-cards .card.card-2024 .card-description .card-description-more span {
  background: #f8f8f8;
  width: 28px;
  height: 28px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap {
  display: flex;
  flex-direction: column;
  border-top: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 24px 20px 16px 20px;
  background-color: white;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.03);
  gap: 16px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content {
  width: 100%;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: none;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content:hover {
  background: #fff;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .tour-price-mobile {
  display: none;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text {
  margin-right: 0;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text p.small {
  justify-content: flex-start;
  white-space: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #f26430;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-night {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #a8acb1;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-night img {
  width: 24px;
  height: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 4px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-night span {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #42454a;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-details .tour-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #a8acb1;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-details .tour-date img {
  width: 20px;
  height: 20px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-details .tour-date span {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #42454a;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-details .tour-meals {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #a8acb1;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-details .tour-meals img {
  width: 20px;
  height: 20px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-details .tour-meals span {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-details .tour-meals span:first-child {
  gap: 8px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__text .tour-details .tour-meals span:last-child {
  color: #009ddc;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .card-services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  cursor: pointer;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .card-services .card-services-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8f8;
  border-radius: 40px;
  padding: 4px 16px;
  max-width: 100%;
  max-height: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #a8acb1;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .card-services .card-services-item img {
  width: 20px;
  height: 20px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .card-services .card-services-item span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .card-services .card-services-quantity {
  background: #f8f8f8;
  width: 28px;
  height: 28px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .card-services .card-services-quantity span {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 40px;
  background: #f26430;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: -7px;
  right: -7px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .card-services .card-services-quantity img {
  width: 16px;
  height: 16px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__left {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__left_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #14080e;
  font-family: "Raleway", sans-serif;
  display: flex;
  align-items: center;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__left_title img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__left_night {
  display: flex;
  gap: 9px;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #42454a;
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__left_night span {
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__left_night span:nth-child(2) {
  padding-right: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__right {
  display: flex;
  align-items: flex-start;
  margin-right: 17px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__right a {
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #f26430;
  font-family: "Raleway", sans-serif;
  position: relative;
  top: 3px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__right a img {
  width: 16px;
  height: 16px;
  position: absolute;
  right: -16px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details {
  display: flex;
  gap: 12px;
  flex-direction: column;
  color: #a8acb1;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-date {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-date span {
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-date span img {
  margin-right: 8px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-date span:first-child {
  display: inline-flex;
  align-items: center;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-date span:last-child {
  font-weight: 700;
  color: #42454a;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-meals {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-meals span {
  display: inline-flex;
  align-items: center;
  padding-right: 4px;
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-meals span:first-child {
  gap: 8px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-details .tour-meals span:last-child {
  font-weight: 700;
  color: #009ddc;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #a8acb1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price-mobile {
  display: none;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price-old {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-decoration: line-through;
  color: #a8acb1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
  font-family: "Raleway", sans-serif;
  position: relative;
  top: -7px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price-hot {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0.01em;
  color: #069c28;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price-hot span {
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price-hot span:nth-child(2) {
  font-size: 36px;
  line-height: 36px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price-default {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0.01em;
  color: #42454a;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price-default span {
  font-family: "Raleway", sans-serif;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .hidden-card-description__content .hidden-card-description__center .tour-price-default span:nth-child(2) {
  font-size: 36px;
  line-height: 36px;
}
.tour-cards .card.card-2024 .card-description .card-description-wrap .card-footer {
  padding: 0;
}

.page.contact-page {
  padding: 50px 0;
}
.page.contact-page h1 {
  font-family: "Raleway", sans-serif;
  justify-content: flex-start;
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #42454a;
}
.page.contact-page .contact-page-box {
  display: flex;
  gap: 32px;
}
.page.contact-page .contact-page__left_explanation {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #d3d3d3;
  margin: 14px 0 16px;
}
.page.contact-page .contact-page__card {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 16px 20px;
  width: 384px;
  height: 132px;
  cursor: pointer;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.page.contact-page .contact-page__card.active {
  border: 1px solid #009DDC;
  filter: drop-shadow(0px 4px 4px rgba(72, 160, 220, 0.3));
}
.page.contact-page .contact-page__card_box {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.page.contact-page .contact-page__card_title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #42454a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page.contact-page .contact-page__card_title img {
  width: 32px;
  height: auto;
}
.page.contact-page .contact-page__card_title span {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #42454a;
}
.page.contact-page .contact-page__card_phone {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #42454a;
  display: flex;
  gap: 8px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.page.contact-page .contact-page__card_address {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #42454a;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page.contact-page .contact-page__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.page.contact-page .contact-page__right_content {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.page.contact-page .contact-page__right_country {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  font-family: "Raleway", sans-serif;
  color: #42454a;
  margin: 14px 0 -7px;
}
.page.contact-page .contact-page__right_address {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  font-family: "Raleway", sans-serif;
  color: #42454a;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page.contact-page .contact-page__right_phone {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  font-family: "Raleway", sans-serif;
  color: #42454a;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page.contact-page .contact-page__right_map iframe {
  border-radius: 8px;
  max-width: 805px;
  width: 100%;
  height: 520px;
}
.page.contact-page .contact-page__right_email {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #42454a;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page.contact-page .contact-page__right_email:hover {
  text-decoration: underline;
}

@media (max-width: 1270px) {
  .tour-cards .card.card-2024 .card-header {
    padding: 24px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap {
    flex-direction: column;
    align-items: flex-start;
    max-height: 100%;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a {
    width: 100%;
    gap: 8px;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a:hover {
    opacity: 0.5;
    transition: 0.3s ease;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a:first-child {
    order: 2;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a:last-child {
    order: 1;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 4px 8px;
    background: white;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a h3 {
    max-width: 100%;
    color: #25252C;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    height: 36px;
    display: flex;
    align-items: center;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a p {
    order: 1;
    max-width: 100%;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a p.tour-address {
    font-weight: 400;
    font-size: 14px;
    color: #707278;
    line-height: 17px;
    text-decoration: underline;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a p.tour-address::before {
    content: url("/img/location-gray.svg");
    color: #D3D3D3;
    position: relative;
    top: 2px;
    margin-right: 5px;
  }
  .tour-cards .card.card-2024 .card-header .rates {
    position: relative;
    top: 0;
    right: 0;
    gap: 12px;
  }
  .tour-cards .card.card-2024 .card-header .rates .rate-item {
    width: 90px;
    height: 56px;
    display: flex;
    gap: 8px;
    margin-right: 0;
  }
  .tour-cards .card.card-2024 .card-header .rates .rate-item .rate-icon {
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  .tour-cards .card.card-2024 .card-header .rates .rate-item .rate-icon img {
    width: auto;
    height: auto;
  }
  .tour-cards .card.card-2024 .card-header .rates .rate-item .rate-bottom {
    background: #b4e4bf;
    color: rgba(16, 69, 11, 0.4);
    font-weight: 600;
    font-size: 14px;
    line-height: 125%;
    text-align: center;
    border-radius: 4px;
    padding: 8px;
    width: 100%;
    height: 34px;
  }
  .tour-cards .card.card-2024 .card-header .rates .rate-item .rate-bottom span {
    color: rgb(16, 69, 11);
  }
  .tour-cards .card.card-2024 .card-body {
    flex-direction: column;
  }
  .tour-cards .card.card-2024 .card-body .gallery-slider-wrapper {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
  }
  .tour-cards .card.card-2024 .card-body .gallery-slider-wrapper .card-img {
    min-height: 100%;
    max-height: 100%;
  }
  .tour-cards .card.card-2024 .card-body .gallery-slider-wrapper .card-img img {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-header {
    display: none;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap {
    cursor: pointer;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #a8acb1;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-old {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-decoration: line-through;
    color: #a8acb1;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-hot {
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.01em;
    color: #069c28;
    display: inline-flex;
    align-items: flex-end;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-hot span {
    font-family: "Raleway", sans-serif;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-hot span:nth-child(2) {
    font-size: 36px;
    position: relative;
    bottom: -4px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-default {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.01em;
    color: #42454a;
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-default span {
    font-family: "Raleway", sans-serif;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-default span:nth-child(2) {
    font-size: 36px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile img {
    width: 32px;
    height: 32px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__top {
    flex-direction: column;
    cursor: pointer;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__left_title {
    font-size: 16px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__right {
    display: none;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__center {
    flex-direction: column;
    cursor: pointer;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__center .tour-price {
    display: none;
  }
  .page.contact-page .contact-page-box {
    flex-direction: column;
  }
  .page.contact-page .contact-page__card {
    height: 100%;
  }
  .page.contact-page .contact-page__card_box {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page.contact-page .contact-page__card_title {
    margin: 0;
    font-family: "Raleway", sans-serif;
  }
  .page.contact-page .contact-page__card_phone {
    display: none;
  }
  .page.contact-page .contact-page__card_address {
    display: none;
  }
}
@media (max-width: 850px) {
  .tour-cards .card.card-2024 .card-header {
    padding: 12px 12px 0;
  }
  .tour-cards .card.card-2024 .card-header .head-wrap a h3 {
    font-size: 20px;
    line-height: 20px;
  }
  .tour-cards .card.card-2024 .card-header .rates {
    padding: 0 0 12px;
  }
  .tour-cards .card.card-2024 .card-header .rates .rate-item {
    width: 72px;
    height: 23px;
  }
  .tour-cards .card.card-2024 .card-header .rates .rate-item .rate-bottom {
    width: 72px;
    height: 23px;
    font-size: 12px;
    padding: 4px;
  }
  .tour-cards .card.card-2024 .card-body {
    padding: 12px;
    gap: 2px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-header .head-wrap a span {
    width: 42px;
    height: 24px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .card-services .card-services-item {
    font-size: 12px;
    align-items: center;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price {
    position: relative;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-old {
    font-size: 16px;
    line-height: 16px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-hot {
    gap: 4px;
    display: flex;
    align-items: flex-end;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-hot span {
    font-size: 24px;
    bottom: 2px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-default {
    gap: 4px;
    display: flex;
    align-items: center;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-default span {
    font-family: "Raleway", sans-serif;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__content .tour-price-mobile .tour-price-default span:nth-child(2) {
    font-size: 24px;
  }
  .page.contact-page {
    padding: 24px 0 0px;
  }
  .page.contact-page h1 {
    font-size: 20px;
    padding: 0 12px;
  }
  .page.contact-page .container {
    padding: 0;
  }
  .page.contact-page .contact-page h1 {
    font-size: 20px;
  }
  .page.contact-page .contact-page-box {
    gap: 16px;
  }
  .page.contact-page .contact-page__card {
    width: 62px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page.contact-page .contact-page__card_box {
    gap: 4px;
  }
  .page.contact-page .contact-page__card_title img {
    width: 38px;
  }
  .page.contact-page .contact-page__card_title span {
    display: none;
  }
  .page.contact-page .contact-page__left {
    padding: 0 12px;
  }
  .page.contact-page .contact-page__left_explanation {
    font-size: 14px;
  }
  .page.contact-page .contact-page__right {
    padding: 0 12px 14px;
    background-color: #f7f7f7;
  }
  .page.contact-page .contact-page__right_country {
    font-size: 16px;
    padding: 0 0 6px;
  }
}
@media (max-width: 510px) {
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__center .tour-details .tour-date {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__center .tour-details .tour-date span {
    display: flex;
    align-items: center;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__center .tour-details .tour-date span:last-child {
    padding: 0 0 0 29px;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__center .tour-details .tour-meals {
    gap: 0;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__center .tour-details .tour-meals span {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .tour-cards .card.card-2024 .card-body .card-description .card-description-right .card-description-wrap .hidden-card-description__center .tour-details .tour-meals span:last-child {
    padding: 0 0 0 29px;
  }
}
.card-description-wrap .hidden-card-description__content:last-child {
  border-radius: unset;
}

.hidden-card-description__content:hover {
  background-color: #EBEBEB;
  transition: background-color 0.3s ease;
}
.hidden-card-description__content:last-child {
  border-radius: 0 0 10px 10px;
}
.hidden-card-description__content .arrow {
  display: flex;
  align-items: center;
}
.hidden-card-description__content .arrow img {
  max-width: 24px;
  min-width: 10px;
  min-height: 16px;
  max-height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 2px 3px;
}

.reviews.mobile {
  display: none;
}

@media (max-width: 1280px) {
  .container {
    padding: 0 30px;
    max-width: 100%;
  }
}
@media (min-width: 1281px) {
  .container {
    max-width: 1220px;
  }
  .header .menu .nav-bar {
    right: 0;
  }
  .hotel-sidebar.desktop {
    display: block;
  }
}
@media (max-width: 1220px) {
  .tour-cards .card .card-description .card-header {
    padding: 24px 0 0 15px !important;
  }
  .tour-cards .card .card-description .card-description-wrap .hidden-card-description .hidden-card-description__content {
    padding: 15px 15px;
  }
  .tour-cards .card .card-description .card-description-wrap .card-footer {
    padding: 10px !important;
  }
}
@media (min-width: 1141px) {
  .tour-cards .card {
    background: #FFFFFF;
    box-shadow: 0 4px 6px rgba(20, 8, 14, 0.07);
    border-radius: 10px;
    filter: unset;
  }
  .tour-cards .card .card-header,
  .tour-cards .card .card-footer,
  .hidden-card-description {
    display: none;
  }
  .tour-cards .card .card-body {
    display: flex;
  }
  .tour-cards .card .card-body .gallery-slider-wrapper {
    max-width: 520px;
    min-width: 520px;
    min-height: 300px;
    max-height: 300px;
    margin: 0;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
  }
  .tour-cards .card .card-body .card-img {
    min-height: 300px;
    max-height: 300px;
  }
  .tour-cards .card .card-body .card-img img {
    min-height: 300px;
    max-height: 300px;
    min-width: 520px;
    max-width: 520px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-description {
    padding: 0;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .tour-cards .card .card-description .card-header {
    display: block;
    width: 100%;
    padding: 24px 0 14px 30px;
    position: static;
    max-height: 93px;
    overflow: hidden;
  }
  .tour-cards .card .card-description .card-header .head-wrap {
    max-width: 480px;
    margin-right: auto;
  }
  .tour-cards .card .card-description .card-header .head-wrap h3 {
    margin-right: 27px;
  }
  .tour-cards .card .card-description .card-header .head-wrap img {
    height: 15px;
  }
  .tour-cards .card .card-description .card-header .rates {
    right: 15px;
    top: -10px;
  }
  .tour-cards .card .card-description .card-header .rates .rate-item {
    justify-content: space-between;
  }
  .tour-cards .card .card-description .card-header .rates .rate-icon {
    width: 45px;
    height: 50px;
  }
  .tour-cards .card .card-description .card-header .rates p.small {
    font-family: "Nunito", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    display: flex;
    align-items: center;
    text-align: center;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #009DDC;
  }
  .tour-cards .card .card-description .card-header .rates p.small img {
    min-height: 14px;
  }
  .tour-cards .card .card-description .card-header .rates .rate-item.tripadvisor-rate p {
    color: #14080E;
  }
  .tour-cards .card .card-body .swiper-container .swiper-button-next,
  .tour-cards .card .card-body .swiper-container .swiper-button-prev {
    height: 40px;
    width: 40px;
  }
  .card-description-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-top: 1px solid #DBD7D7;
  }
  .tour-cards .card .card-description .card-description-wrap .card-footer {
    display: block;
    background: #fff;
    box-shadow: none;
    -moz-border-radius-bottomright: 10%;
    opacity: 1;
    height: auto;
    margin: 0;
    padding: 30px 30px 30px 10px;
    min-width: 210px;
  }
  .tour-cards .card .card-description .card-description-wrap .hidden-card-description {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: none;
    border-radius: unset;
    opacity: 1;
    margin: 0;
    padding: 0;
    max-width: 480px;
    width: 100%;
    height: 100%;
    border-right: 1px solid #DBD7D7;
    max-height: 220px;
    overflow: auto;
  }
  .card-arrow {
    display: none;
  }
  .hidden-card-description__text {
    margin-right: 25px;
  }
  .hidden-card-description__text p:not(.small) {
    font-size: 16px;
    line-height: 100%;
  }
  .hidden-card-description__content {
    padding: 15px 30px;
  }
  .hidden-card-description__content p {
    max-width: 365px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .price span:not(.currency-wrap) {
    font-size: 14px;
    line-height: 14px;
  }
  .price span.currency-wrap {
    margin-right: 0;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-left: 9px;
  }
  .price-description p {
    font-size: 14px;
    line-height: 17px;
  }
  .card-footer .btn {
    padding: 14px 51px;
  }
}
@media (max-width: 1140px) {
  .card-description {
    display: none;
  }
}
@media (max-width: 1270px) {
  .tour-cards .card .card-body .card-img {
    padding-top: 60%;
  }
  .tour-cards .card .card-body .card-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1180px) {
  .content.hotel-page-desktop .hotel-wrap .hotel-content {
    max-width: 800px;
  }
  .hotel-reviews.desktop {
    display: none;
  }
  .reviews.mobile {
    display: block;
  }
}
@media (min-width: 1025px) {
  .content.hotel-page.mobile {
    display: none;
  }
  .tour-info__top {
    min-width: 390px;
  }
}
@media (max-width: 1024px) {
  .hotel-page-desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .add-numbers, .many-people-modal {
    max-width: 360px;
    box-shadow: 0 15px 20px rgba(20, 8, 14, 0.07);
    border-radius: 10px;
    height: 100%;
    max-height: 440px;
    bottom: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .glory-tour .form {
    display: flex;
    align-items: center;
    padding: 31px 16px;
    margin-bottom: 36px;
  }
  .search-icon,
  .search-icon img {
    max-width: 16px;
    min-width: 16px;
    max-height: 16px;
    min-height: 16px;
  }
  .glory-tour .form .input-wrap {
    margin-bottom: 0;
    margin-right: 16px;
    width: 100%;
  }
  .input-wrap.with-label {
    padding: 6px 12px;
  }
  .input-wrap.with-label label {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 0;
  }
  .input-wrap.search {
    padding: 13px 12px;
  }
  .form button.btn {
    margin: 0;
  }
  .glory-tour__description p {
    font-size: 16px;
    line-height: 20px;
  }
  .partners-items-row.mobile {
    display: none;
  }
  .partners-items-row.desktop {
    display: flex;
    margin-bottom: 40px;
  }
  .partners-wrap {
    padding: 60px 53px;
  }
  .features-wrap {
    display: flex;
    padding: 0;
  }
  .feature-item {
    display: block;
    margin-bottom: 0;
    padding: 20px;
    margin-right: 30px;
  }
  .feature-item:last-child {
    margin-right: 0;
  }
  .feature-image {
    margin-right: 0;
    margin-bottom: 20px;
    min-width: 60px;
    min-height: 60px;
  }
  .feature-content {
    height: 100%;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .partners-items-row.mobile {
    display: flex;
  }
  .partners-items-row.desktop {
    display: none;
  }
  .reviews.mobile {
    display: block;
  }
  .reviews.mobile .reviewer-btn a {
    max-width: 150px;
  }
  .gallery-top-wrap .gallery-small-img img {
    max-height: 123px;
  }
  .gallery-top-wrap .gallery-small {
    width: unset;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .input-wrap.search {
    height: 59px;
  }
}
@media (min-width: 768px) {
  .hotel-tour .tour-card-footer {
    padding-top: 22px;
    margin-left: 20px;
    margin-bottom: 39px;
  }
  .price-description {
    margin-bottom: 4px;
  }
  .price-description.last {
    margin-bottom: 10px;
  }
  h1 {
    font-size: 26px;
    line-height: 30px;
  }
  h2 {
    font-size: 24px;
    line-height: 24px;
  }
  h3 {
    font-size: 20px;
    line-height: 20px;
  }
  p, label {
    font-size: 16px;
    line-height: 20px;
  }
  p.small {
    font-size: 14px;
    line-height: 17px;
  }
  button, a {
    font-size: 16px;
    line-height: 16px;
  }
  .logo-mobile {
    display: none;
  }
  .logo-desktop {
    display: block;
    max-width: 180px;
    min-width: 180px;
  }
  .logo-desktop img {
    width: 100%;
    height: 100%;
  }
  .header .container {
    position: relative;
  }
  .menu-btn {
    display: block;
  }
  .menu-btn_mob {
    display: none;
  }
  .menu .nav-bar {
    position: absolute;
    max-width: 400px;
    bottom: unset;
    height: 0;
    top: 54px;
    left: unset;
    right: 30px;
    box-shadow: 0 15px 20px rgba(20, 8, 14, 0.07);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
  }
  .menu .nav-bar.open {
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
  }
  .nav-bar_wrap {
    padding: 20px;
  }
  .nav-list li:last-child {
    border: none;
  }
  .menu .overlay,
  .phone .overlay {
    display: none;
  }
  .d-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
  }
  .phone-bar.open + .d-overlay {
    display: block;
  }
  .nav-bar.open + .d-overlay {
    display: block;
  }
  .menu .nav-bar .nav-bar-top {
    display: none;
  }
  .glory-tour {
    padding: 63px 0 30px;
    margin-bottom: 0;
    background-image: url(/images/bg.png?3f1227633d3bb23badc3768962af164e);
    background-color: var(--main-color);
    background-size: contain;
    background-repeat: repeat;
  }
  .glory-tour h1 {
    margin-bottom: 29px;
  }
  .phone {
    margin-right: 44px;
  }
  .phone .phone-bar {
    position: absolute;
    max-width: 700px;
    bottom: unset;
    height: 0;
    top: 54px;
    left: unset;
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 15px 20px rgba(20, 8, 14, 0.07);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
  }
  .phone-bar-wrap {
    padding: 30px 20px 20px;
  }
  .phone .phone-bar.open {
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
  }
  .phone-wrap {
    display: flex;
    align-items: center;
  }
  .phone-bar-top button {
    display: none;
  }
  .phone-bar-top p {
    max-width: 100%;
  }
  .phone-bar-list {
    display: flex;
    align-items: center;
  }
  .phone-bar-list li {
    margin-right: 30px;
  }
  .phone-bar-list li:last-child {
    margin-right: 0;
  }
  .phone-bar-date-wrap {
    padding: 20px 20px 30px;
  }
  .phone-bar-date-wrap .phone-bar-date {
    display: inline-block;
    margin-bottom: 0;
  }
  .phone-bar-date-wrap .phone-bar-date {
    margin-right: 30px;
  }
  .phone-form {
    display: flex;
    align-items: flex-end;
  }
  .phone-form .phone-bar-form-wrap {
    padding: 20px;
  }
  .phone-form .phone-input-wrap {
    margin-bottom: 0;
    margin-right: 20px;
    width: 100%;
  }
  .phone-form input {
    line-height: 18px;
    padding: 14px 20px;
  }
  .phone-form .btn {
    max-width: 320px;
    margin: 0;
    padding: 16px;
  }
  .phone-bar-socials {
    margin-bottom: 20px;
  }
  .phone-desktop, .account span {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 100%;
    display: flex;
    align-items: center;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #FFFFFF;
    padding-bottom: 4px;
    position: relative;
    overflow: hidden;
  }
  .account img {
    margin-right: 8px;
  }
  .phone button {
    margin-right: 12px;
  }
  .phone .phone-wrap button:hover,
  .phone-wrap .phone-desktop:hover,
  .account:hover {
    opacity: 0.5;
    transition: 0.3s ease;
  }
  .account {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .login {
    margin-right: 60px;
  }
  .slide-down {
    width: 56px;
    height: 56px;
    bottom: -29px;
    z-index: 3;
  }
  .tour-cards {
    margin-bottom: 100px;
  }
  .tour-cards h2 {
    text-align: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  .partners {
    margin-bottom: 50px;
  }
  .partners-wrap {
    display: flex;
    align-items: center;
  }
  .partners-items {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    width: 100%;
    margin-right: 60px;
  }
  .partners-description {
    width: 100%;
    padding: 74px 0 74px 60px;
    border-left: 1px solid #DBD7D7;
  }
  .partners-description h2,
  .partners-description p {
    max-width: 100%;
  }
  .partners-description h2,
  .partners-description p {
    text-align: left;
    justify-content: flex-start;
  }
  .partners-description .btn {
    margin: 0;
  }
  .features {
    margin-bottom: 50px;
  }
  .footer {
    padding: 40px 0;
  }
  .contacts {
    display: flex;
  }
  .footer ul.phone-list {
    margin-bottom: 0;
  }
  .footer ul.phone-list a {
    font-size: 12px;
    line-height: 15px;
    margin-right: 70px;
  }
  .footer-links,
  .footer .address p,
  .footer .address p {
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
    padding-right: 3px;
  }
  .email {
    margin-bottom: 18px;
  }
  .footer .address {
    display: flex;
    align-items: center;
  }
  .footer-socials {
    display: flex;
  }
  .footer-socials a:first-child {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .copy-right p.small {
    font-size: 12px;
    line-height: 15px;
  }
  .hotel-page-desktop {
    background-color: #fff;
  }
  .hotel-page-desktop h2.unique {
    line-height: 33px;
  }
  .hotel-page-desktop p,
  .hotel-page-desktop p.small {
    line-height: 20px;
  }
  .hotel-anchor {
    background: #EBEBEB;
    margin-bottom: 20px;
  }
  .anchors {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
  }
  .anchor-item:not(:last-child) {
    margin-right: 100px;
  }
  .anchor-item:hover {
    color: #009DDC;
    transition: 0.3s;
  }
  .hotel-wrap {
    display: flex;
    align-items: flex-start;
  }
  .hotel-sidebar {
    max-width: 282px;
    margin-right: 30px;
  }
  .hotel-desktop-description {
    margin-bottom: 41px;
  }
  .hotel-sidebar h2 {
    margin-bottom: 22px;
  }
  .hotel-sidebar p {
    margin-bottom: 20px;
  }
  .hotel-sidebar a:hover {
    opacity: 0.5;
    transition: 0.3s ease;
  }
  .hotel-sidebar a span {
    margin-right: 6px;
  }
  .location-gallery-wrap img {
    width: 100%;
  }
  #hotel_desktop_location h3 {
    margin-bottom: 15px;
  }
  .gallery-btn:after {
    content: none;
  }
  .single-hotel-gallery__image-location.gallery-btn {
    position: relative;
  }
  .single-hotel-gallery__image-location {
    margin-bottom: 20px;
  }
  .arrow-enlarge-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 14px;
    background: #FFFFFF;
    border-radius: 100px;
    z-index: 2;
  }
  .arrow-enlarge-wrap img {
    max-width: 16px;
    min-width: 16px;
  }
  .hotel-desktop-location span:not(.arrow-enlarge-wrap) {
    display: block;
  }
  .hotel-desktop-location span.hidden {
    display: none;
  }
  .hotel-desktop-location {
    position: relative;
    margin-bottom: 20px;
  }
  .hotel-desktop-location iframe {
    max-height: 155px;
    width: 100%;
  }
  .hotel-desktop-location .blue-btn {
    position: absolute;
    margin: auto;
    left: 0;
    bottom: 10px;
    right: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hotel-desktop-location .blue-btn:hover {
    transform: translateX(-50%) scale(1.1);
  }
  .hotel-content {
    width: 100%;
  }
  .hotel-content .rate-icon {
    width: 45px;
    height: 50px;
  }
  .hotel-content .rate-item {
    justify-content: space-between;
  }
  .hotel-content .rate-item.tripadvisor-rate p {
    color: #14080E;
  }
  .hotel-content .hotel-info__title-wrap h2 {
    margin-right: 7px;
  }
  .hotel-content .hotel-info__title-wrap img {
    min-height: 16px;
  }
  .hotel-content .rate-item p.small {
    font-family: "Nunito", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    display: flex;
    align-items: center;
    text-align: center;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #009DDC;
  }
  .hotel-content .rate-item p.small img {
    min-height: 14px;
  }
  .hotel-content .hotel-info__content {
    margin-bottom: 20px;
  }
  .hotel-gallery {
    margin-bottom: 63px;
  }
  .gallery-top-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .gallery-small {
    margin-right: 10px;
    max-width: 302px;
    width: 100%;
  }
  .gallery-small-img:not(:last-child) {
    margin-bottom: 10px;
  }
  .gallery-big {
    width: 100%;
  }
  .gallery-bottom-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .gallery-img {
    max-width: 173px;
    display: flex;
  }
  .gallery-img:not(:last-child) {
    margin-right: 10px;
  }
  .gallery-btn {
    position: relative;
    cursor: pointer;
  }
  .gallery-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .gallery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 82px;
    z-index: 2;
    font-weight: bold;
    font-size: 22px;
    line-height: 27px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #FFFFFF;
  }
  .gallery-btn:hover .gallery-text {
    transform: translate(-50%, -50%) scale(1.2);
    transition: 0.3s ease;
  }
  .gallery-slider-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
    cursor: pointer;
  }
  .gallery-slider .img {
    max-width: 1040px;
    margin: 0 auto;
  }
  .hotel-tour {
    margin-bottom: 53px;
  }
  .hotel-tour h2 {
    margin-bottom: 30px;
  }
  .hotel-tour .tour-card {
    background: #FFFFFF;
    border: 1px solid #DBD7D7;
    box-shadow: none;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 30px 30px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .tour-card-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .hotel-tour .tour-card .tour-card-services li {
    margin-bottom: 17px;
    max-width: 240px;
  }
  .hotel-tour .tour-card .tour-card-footer {
    display: block;
    min-width: 210px;
  }
  .hotel-tour .tour-card .tour-card-footer .tour-price .price {
    margin-bottom: 4px;
    text-align: right;
    justify-content: flex-end;
  }
  .hotel-tour .tour-card .price-description p {
    text-align: right;
    justify-content: flex-end;
  }
  .hotel-tour .tour-card .btn {
    margin: 0 auto;
    padding: 14px 48px;
  }
  .hotel-reviews {
    margin-bottom: 59px;
  }
  .hotel-reviews h2 {
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 30px;
  }
  .hotel-reviews-wrap {
    display: flex;
  }
  .hotel-reviews-wrap .reviewer {
    max-width: 312px;
    width: 100%;
    padding: 0 15px;
    margin: 0;
    border-left: 1px solid #DBD7D7;
  }
  .hotel-reviews-wrap .reviewer:first-child {
    padding-left: 0;
    border: none;
  }
  .hotel-reviews-wrap .reviewer:last-child {
    padding-right: 0;
  }
  .hotel-reviews .reviewer-btn {
    padding-top: 30px;
  }
  .hotel-reviews .reviewer-btn a {
    max-width: 150px;
  }
  .hotel-reviews .reviewer-title {
    min-width: 282px;
    align-items: flex-start;
  }
  .hotel-reviews .reviewer-letter {
    width: 32px;
    height: 32px;
  }
  .hotel-reviews .reviewer-name {
    max-width: 173px;
    font-size: 18px;
    line-height: 125%;
  }
  .hotel-reviews .reviewer-mark {
    width: 30px;
    height: 30px;
  }
  .hotel-reviews .reviewer-content {
    padding: 0;
    max-width: 203px;
    margin: 0 auto;
  }
  .hotel-services {
    margin-bottom: 25px;
  }
  .hotel-services h2 {
    margin-bottom: 16px;
  }
  .hotel-services p.hotel-services-description {
    line-height: 20px;
    margin-bottom: 23px;
  }
  .hotel-services-additional {
    display: flex;
    align-items: center;
    margin-bottom: 29px;
    flex-wrap: wrap;
  }
  .hotel-services-additional ul {
    border-bottom: 1px solid #DBD7D7;
  }
  .hotel-services-additional li {
    display: flex;
    align-items: center;
    margin-right: 40px;
  }
  .hotel-services-additional li:last-child {
    margin-right: 0;
  }
  .hotel-services-additional li span {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  .hotel-services-wrap {
    padding-top: 30px;
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 46px;
         column-gap: 46px;
  }
  .hotel-services-col {
    max-width: 267px;
    width: 100%;
  }
  .hotel-service-item {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: var(--main-color);
    margin-bottom: 8px;
  }
  .hotel-service-item span {
    margin-right: 8px;
    display: flex;
    align-items: center;
  }
  .hotel-service-item span img {
    max-width: 100%;
    width: 32px;
  }
  .hotel-service {
    margin-bottom: 40px;
    -moz-column-break-inside: avoid;
         break-inside: avoid-column;
  }
  .hotel-service ul {
    padding-left: 30px;
  }
  .hotel-service ul li {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 12px;
    margin-bottom: 5px;
  }
  .hotel-service ul li p {
    line-height: 30px;
  }
  .hotel-service ul li::before {
    content: "•";
    color: #E7E7E7;
    font-weight: bold;
    display: inline-block;
    margin-left: 0;
    position: absolute;
    z-index: 9;
    left: 0;
    font-size: 25px;
  }
  .hotel-service ul li span {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #F26430;
    display: block;
  }
}
@media (max-width: 767px) {
  .hidden-card-description__text p.small .hot-tour {
    height: 13px;
    margin-right: 1px;
  }
  .tour-footer-wrap .tour-footer-description-wrap .tour-footer-description span.childrens svg {
    width: 7px !important;
    margin-top: 1px;
  }
  .price-description span.childrens {
    width: 7px;
    margin-top: 3px;
  }
  .hotel-sidebar.desktop {
    display: none;
  }
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .logo-mobile {
    max-width: 50px;
    min-width: 50px;
  }
  .logo-mobile img {
    width: 100%;
    height: 100%;
  }
  .logo-mobile,
  .menu-btn_mob {
    display: block;
  }
  .logo-desktop,
  .phone-desktop,
  .menu-btn,
  .account span {
    display: none;
  }
}
@media (max-width: 362px) {
  .price-description span.childrens {
    width: 7px;
    margin-top: 3px;
  }
  .rooms {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .room-class {
    margin-bottom: 10px;
  }
  .room-class:last-child {
    margin-bottom: 0;
  }
}
.single-hotel-gallery__image-location.gallery-btn img {
  display: block;
}

.tour-cards .banner-montenegro {
  display: none;
  flex-direction: column;
  align-items: center;
}

.banner-montenegro {
  margin-top: 15px;
  background-image: url("/img/montenegro-banner.png");
  max-width: 1920px;
  min-height: 451px;
}
.banner-montenegro .montenegro-banner-text {
  color: #FFFFFF;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .banner-montenegro .montenegro-banner-text {
    font-size: 17px;
    line-height: 18px;
  }
}
.banner-montenegro .rent-text {
  color: #FFFFFF;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .banner-montenegro .rent-text {
    font-size: 12px;
    line-height: 13px;
  }
}
.banner-montenegro .price {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #FFC511;
  margin-top: 7px;
}
@media (max-width: 640px) {
  .banner-montenegro .price {
    font-size: 12px;
    line-height: 13px;
  }
}
.banner-montenegro .btn {
  width: 285px;
  max-height: 44px;
  margin-top: 15px;
}
.banner-montenegro .img-banner {
  margin-top: 25px;
}
.banner-montenegro .img-banner img {
  max-width: 221px;
  max-height: 147px;
}
@media (max-width: 880px) {
  .banner-montenegro .img-banner img {
    max-width: 144px;
    max-height: 184px;
  }
}
@media (max-width: 640px) {
  .banner-montenegro .img-banner {
    display: none;
  }
}
@media (max-width: 640px) {
  .banner-montenegro {
    max-width: 1920px;
    min-height: 195px;
  }
}
@media (max-width: 767px) {
  .banner-montenegro {
    margin-top: 10px;
  }
}

svg#freepik_stories-authentication:not(.animated) .animable {
  opacity: 0;
}

svg#freepik_stories-authentication.animated #freepik--background-simple--inject-15 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideUp;
  animation-delay: 0s;
}

svg#freepik_stories-authentication.animated #freepik--Plants--inject-15 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) lightSpeedRight;
  animation-delay: 0s;
}

svg#freepik_stories-authentication.animated #freepik--Window--inject-15 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideDown;
  animation-delay: 0s;
}

svg#freepik_stories-authentication.animated #freepik--Character--inject-15 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomOut;
  animation-delay: 0s;
}

svg#freepik_stories-authentication.animated #freepik--Device--inject-15 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn;
  animation-delay: 0s;
}

svg#freepik_stories-authentication.animated #freepik--Mug--inject-15 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideRight;
  animation-delay: 0s;
}

svg#freepik_stories-authentication.animated #freepik--Table--inject-15 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn;
  animation-delay: 0s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: inherit;
  }
}
@keyframes lightSpeedRight {
  from {
    transform: translate3d(50%, 0, 0) skewX(-20deg);
    opacity: 0;
  }
  60% {
    transform: skewX(10deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-2deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
svg#freepik_stories-traveling:not(.animated) .animable {
  opacity: 0;
}

svg#freepik_stories-traveling.animated #freepik--background-simple--inject-18 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideUp;
  animation-delay: 0s;
}

svg#freepik_stories-traveling.animated #freepik--Clouds--inject-18 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomOut;
  animation-delay: 0s;
}

svg#freepik_stories-traveling.animated #freepik--Floor--inject-18 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) lightSpeedRight;
  animation-delay: 0s;
}

svg#freepik_stories-traveling.animated #freepik--Plane--inject-18 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn;
  animation-delay: 0s;
}

svg#freepik_stories-traveling.animated #freepik--Character--inject-18 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn;
  animation-delay: 0s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: inherit;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes lightSpeedRight {
  from {
    transform: translate3d(50%, 0, 0) skewX(-20deg);
    opacity: 0;
  }
  60% {
    transform: skewX(10deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-2deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
svg#freepik_stories-current-location:not(.animated) .animable {
  opacity: 0;
}

svg#freepik_stories-current-location.animated #freepik--background-simple--inject-6 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideLeft;
  animation-delay: 0s;
}

svg#freepik_stories-current-location.animated #freepik--Beach--inject-6 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideDown;
  animation-delay: 0s;
}

svg#freepik_stories-current-location.animated #freepik--Sea--inject-6 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomOut;
  animation-delay: 0s;
}

svg#freepik_stories-current-location.animated #freepik--Tree--inject-6 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn;
  animation-delay: 0s;
}

svg#freepik_stories-current-location.animated #freepik--beach-bed--inject-6 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomOut;
  animation-delay: 0s;
}

svg#freepik_stories-current-location.animated #freepik--Floor--inject-6 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideDown;
  animation-delay: 0s;
}

svg#freepik_stories-current-location.animated #freepik--character--inject-6 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomOut;
  animation-delay: 0s;
}

svg#freepik_stories-current-location.animated #freepik--current-location--inject-6 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn;
  animation-delay: 0s;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.animator-hidden {
  display: none;
}
