.footer {
  padding: 32px 0;
  padding: 53px 0 60px;
  background-color: var(--text);
  color: #fff;
}
.footer-logo:after {
  content: "";
  display: block;
  margin-top: 22px;
  width: 47px;
  height: 6px;
  background-color: var(--third);
}
.footer-title {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 1.8rem;
}
.footer ul {
  list-style: none;
}
.footer a {
  text-decoration: none;
  color: var(--white);
}
.footer-about li {
  margin-bottom: 6px;
}
.footer-rs ul {
  display: flex;
}
.footer-rs li {
  margin-right: 16px;
}
.tel {
  font-size: 2.3rem;
  color: var(--main);
  font-weight: 600;
}
.nwsletter-title {
  margin-top: 22px;
}
.newsletter-form {
  display: flex;
}
.newsletter-form input[type="mail"] {
  border: 0;
  padding: 14px 16px;
  border-radius: 6px 0 0 6px;
  height: 52px;
  font-size: 1.8rem;
}
.newsletter-form input[type="submit"] {
  height: 52px;
  border: 0;
  border-radius: 0 6px 6px 0;
  background-color: var(--main);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer-title {
    margin-top: 38px;
  }
}
@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: 3fr 4fr 4fr 2fr;
    grid-template-rows: 1fr;
  }
}
html {
  scroll-behavior: smooth;
}
.anchor {
  position: relative;
}
* {
  box-sizing: border-box;
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 32px);
  width: 1142px;
}
.hide {
  display: none !important;
}
.pointer {
  cursor: pointer;
}
.inline-flex {
  display: flex;
  align-items: center;
}
.sep {
  margin: 0 4px;
}
.flex-center {
  display: flex;
  justify-content: center;
}
.inline-flex.top {
  align-items: flex-start;
}
.inline-flex svg {
  margin-right: 8px;
  fill: var(--text);
}
.scroll-flex {
  display: flex;
  align-items: center;
  overflow-x: scroll;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  /*overflow: -moz-scrollbars-none;*/
  -ms-overflow-style: none;
}
.scroll-flex::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.scroll-flex::-webkit-scrollbar-track {
  width: 0;
  height: 0;
}
.scroll-flex::-webkit-scrollbar-thumb {
  width: 0;
  height: 0;
}
.overflow-hidden {
  overflow: hidden;
}
@media (max-width: 767px) {
  .container-full-xs {
    max-width: 100%;
  }
  .container-full-xs-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 32px);
  }
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background-color: var(--grey-second);
  border-radius: 10px;
}
img,
iframe {
  display: block;
  max-width: 100%;
}
.image-shadow img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.bg-main {
  background-color: var(--main);
}
.bg-text {
  background-color: var(--text);
}
.bg-light {
  background-color: #f3f3f3;
}
.bg-lightblue {
  background-color: var(--bgblue);
}
.bg-second {
  background-color: var(--second);
  color: var(--white);
}
.bg-third {
  background-color: var(--third);
}
.bg-bleu {
  background-color: var(--very-dark-vd);
  color: var(--white);
}
.bg-white {
  background-color: var(--white);
}
.bg-very-dark {
  background: var(--very-dark-vd);
  color: var(--white);
}
@media (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .mobile {
    display: none !important;
  }
}
.top-message {
  background: var(--text-third);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
}
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
}
.simple-header {
  position: static;
  border-bottom: 1px solid var(--grey);
}
.simple-header .container {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 1114px;
}
.simple-header .header-trustpilot {
  margin-right: 26px;
}
.header-trustpilot svg {
  position: relative;
  top: 3px;
}
.header .grid {
  display: grid;
  grid-template-columns: 38px auto 37px;
  align-items: center;
}
.header .toggle {
  position: relative;
  display: block;
  width: 28px;
  height: 22px;
}
.header .toggle span {
  position: absolute;
  display: block;
  border-radius: 8px;
  width: 100%;
  height: 4px;
  background-color: var(--text);
}
.header .toggle span:first-child {
  top: 0;
  left: 0;
}
.header .toggle span:nth-child(2) {
  top: 9px;
  left: 0;
}
.header .toggle span:last-child {
  top: 18px;
  left: 0;
}
.simple-header .logo {
  margin-right: auto;
}
.simple-header .logo svg {
  width: 122px;
}
.header .logo svg {
  display: block;
  width: 100%;
}
.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.menu a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
  font-family: var(--ff-title), sans-serif;
}
.menu .menu-list-item-hilighted {
  color: var(--main);
}
.submenu-grid {
  padding-left: 0;
  display: grid;
  align-items: center;
  grid-auto-rows: 109px;
}
.submenu-grid-item,
.submenu-grid-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
}
.submenu-grid-item svg {
  height: 48px;
  margin-bottom: 8px;
}
.submenu-grid-item svg path {
  fill: var(--text);
}
.submenu-grid-item a:hover path {
  fill: var(--main);
}
.submenu-grid-item a:hover {
  color: var(--main);
}
@media (max-width: 767px) {
  .simple-header .header-trustpilot {
    margin-right: 0;
    margin-left: -15px;
    margin-top: 11px;
    border-top: 1px solid var(--grey);
    text-align: center;
    order: 9;
    max-width: calc(100% + 30px);
    width: calc(100% + 30px);
    font-size: 1.2rem;
  }
  .simple-header .container {
    flex-wrap: wrap;
    padding: 0 0 4px 0;
  }
  .simple-header .logo svg {
    margin-left: 0;
  }
}
@media (max-width: 1099px) {
  .header {
    background-color: var(--white);
  }
  .header .container {
    padding: 12px 0;
  }
  .header:not(.simple-header) .btn-telephone {
    width: 37px;
    height: 37px;
  }
  .header:not(.simple-header) .btn-telephone svg + span {
    display: none;
  }
  .header .logo svg {
    margin: auto;
    width: 124px;
  }
  .simple-header .logo {
    padding-left: 10px;
  }
  .simple-header .phone {
    padding-right: 10px;
  }
  .menu {
    opacity: 0;
    transform: translateX(-100%);
    position: fixed;
    overflow: auto;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: var(--white);
    width: 100%;
    height: 100vh;
    max-width: 302px;
    box-shadow: 0 0 0 50vw rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s, transform 0.3s;
  }
  .active .menu {
    opacity: 1;
    transform: translateX(0%);
  }
  .close-menu {
    position: relative;
    border-bottom: 1px solid var(--grey-second);
    height: 42px;
    padding: 10px 11px 14px;
    margin-bottom: 12px;
  }
  .close-menu span {
    width: 22px;
    height: 2px;
    position: absolute;
    top: 17px;
    left: 11px;
    display: block;
    border-radius: 8px;
    background-color: var(--text);
  }
  .close-menu span:first-child {
    transform: rotate(45deg);
  }
  .close-menu span:last-child {
    transform: rotate(-45deg);
  }
  .menu-list-link {
    position: relative;
    padding: 12px 30px;
  }
  .menu-list-link-submenu:after {
    content: "";
    pointer-events: none;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    height: 9px;
    width: 9px;
    border-top: 3px solid var(--text);
    border-right: 3px solid var(--text);
  }
  .menu-list-link-submenu.open:after {
    transform: translateY(-50%) rotate(135deg);
  }
  .menu-list-item-contact {
    margin-top: 12px;
    padding: 28px 30px;
    border-top: 1px solid var(--grey-second);
    font-size: 1.4rem;
  }
  .menu-list-item-contact .btn-telephone {
    display: flex;
    width: 159px;
    margin-bottom: 17px;
  }
  .submenu {
    max-height: 0vh;
    overflow: hidden;
    padding-left: 30px;
    transition: max-height 0.3s;
  }
  .submenu.open {
    max-height: 100vh;
  }
  .submenu-grid {
    padding-left: 0;
    grid-template-columns: 1fr 1fr;
  }
  .submenu-grid.open {
    border-top: 1px solid var(--grey-second);
  }
  .submenu-grid li {
    border-bottom: 1px solid var(--grey-second);
  }
  .submenu-grid li:nth-child(odd) {
    border-right: 1px solid var(--grey-second);
  }
  .submenu-grid-item span {
    font-size: 1.4rem;
  }
  .submenu-list-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px var(--grey-second);
  }
  .submenu-list-link {
    width: calc(100% - 48px);
    padding: 14px 0;
    font-size: 1.4rem;
  }
  .submenu-display {
    position: relative;
    display: block;
    width: 48px;
  }
  .submenu-display:after {
    content: "";
    pointer-events: none;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    height: 9px;
    width: 9px;
    border-top: 3px solid var(--text);
    border-right: 3px solid var(--text);
  }
  .submenu-display.open:after {
    transform: translateY(-50%) rotate(135deg);
  }
  .subsubmenu {
    width: 100%;
    max-height: 0vh;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .subsubmenu.open {
    max-height: 100vh;
  }
  .subsubmenu-list-link {
    padding: 8px 0;
    border-bottom: solid 1px var(--grey-second);
    font-size: 1.3rem;
  }
  .subsubmenu-list-item:last-child .subsubmenu-list-link {
    border-bottom: 0;
  }
  .modal-contact {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    transition: opacity 0.3s;
  }
  .open.modal-contact {
    opacity: 1;
    pointer-events: auto;
    z-index: 100;
  }
  .modal-contact-header {
    display: flex;
    padding: 23px 20px 29px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .modal-contact-header svg {
    fill: var(--text);
    margin-right: 17px;
    width: 32px;
    height: 21px;
  }
  .modal-contact-content {
    padding: 0 26px;
  }
  .modal-contact-content p:last-child {
    margin-top: 24px;
  }
  .modal-contact-content .btn-telephone {
    width: 159px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .close-modal-contact {
    margin-left: auto;
    position: relative;
    height: 24px;
    width: 42px;
  }
  .close-modal-contact span {
    width: 22px;
    height: 2px;
    position: absolute;
    top: 11px;
    left: 11px;
    display: block;
    border-radius: 8px;
    background-color: var(--text);
  }
  .close-modal-contact span:first-child {
    transform: rotate(45deg);
  }
  .close-modal-contact span:last-child {
    transform: rotate(-45deg);
  }
}
@media (min-width: 1100px) {
  .header .toggle {
    display: none;
  }
  .header {
    margin-bottom: -74px;
  }
  .simple-header {
    margin-bottom: 0;
    padding: 25px 0;
  }
  .simple-header .logo svg {
    width: 195px;
  }
  .header .grid {
    grid-template-columns: 195px auto;
    padding: 0 21px;
    background-color: var(--white);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  }
  .menu-list {
    position: relative;
    display: flex;
  }
  .menu-list-item {
    margin-right: 27px;
    padding: 27.5px 0;
  }
  .menu-list-link {
    position: relative;
    font-size: 1.4rem;
  }
  .menu-list-link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    opacity: 0;
    background-color: var(--main);
  }
  .menu-list-item:hover .menu-list-link:after {
    opacity: 1;
  }
  .menu-list-item-contact {
    display: none;
  }
  .submenu,
  .subsubmenu {
    position: absolute;
  }
  .submenu {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    top: 100%;
    left: -43px;
    padding-top: 10px;
    transition: opacity 0.3s, top 0.3s;
  }
  .submenu:after {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    content: "";
    top: 10px;
    bottom: 0;
    left: 0;
    width: 876px;
    background-color: #fff;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  }
  .submenu:after li {
    position: relative;
    z-index: 2;
  }
  .menu-list-item:hover .submenu {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
  }
  .submenu-grid {
    width: 876px;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 150px;
  }
  .submenu-grid.cures {
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 130px;
  }
  .submenu-grid.cures svg {
    max-height: 65px;
    max-width: 65px;
  }
  .submenu-grid.cures span {
    display: inline-block;
    line-height: 1.2;
    padding: 0 10px;
    font-size: 12px;
    font-family: var(--ff-text), sans-serif;
  }
  .submenu-grid-item a {
    padding: 15px 0;
  }
  .submenu-list-item {
    width: 264px;
    background-color: var(--text);
  }
  .submenu-grid-item {
    background-color: var(--white);
    border-bottom: 1px solid var(--grey-second);
    border-right: 1px solid var(--grey-second);
  }
  /*.submenu-grid-item:nth-last-child(1),*/
  /*.submenu-grid-item:nth-last-child(2),*/
  /*.submenu-grid-item:nth-last-child(3),*/
  /*.submenu-grid-item:nth-last-child(4),*/
  /*.submenu-grid-item:nth-last-child(5),*/
  /*.submenu-grid-item:nth-last-child(6),*/
  /*.submenu-grid-item:nth-last-child(7),*/
  /*.submenu-grid-item:nth-last-child(8) {*/
  /*  border-bottom: 0;*/
  /*}*/
  .submenu-grid:not(.cures) li:nth-child(1),
  .submenu-grid:not(.cures) li:nth-child(2),
  .submenu-grid:not(.cures) li:nth-child(3),
  .submenu-grid:not(.cures) li:nth-child(4) {
    border-bottom: 1px solid var(--grey-second);
  }
  .submenu-grid-item img {
    margin: auto;
  }
  .submenu-grid-item svg {
    height: 72px;
  }
  .submenu-list-item:first-child > a {
    padding-top: 14px;
  }
  .submenu-list-item:last-child > a {
    padding-bottom: 14px;
  }
  .menu .submenu-list-link {
    position: relative;
    padding: 9px 26px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.24);
    color: var(--white);
    font-size: 1.5rem;
  }
  .menu .submenu-list-link:hover {
    color: var(--main);
  }
  .subsubmenu {
    padding: 10px 35px;
    left: 264px;
    top: 10px;
    height: calc(100% - 10px);
    width: 610px;
    background-color: var(--white);
  }
  .subsubmenu-list-item:first-child {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 418px;
    height: 100%;
  }
  .mapsubmenu svg {
    display: block;
    margin: 0 0 0 auto;
    max-height: 100%;
    max-width: 100%;
  }
  .mapsubmenu a {
    font-weight: 600;
    font-family: var(--ff-text), serif !important;
  }
  .mapPin:hover {
    fill: var(--text);
  }
  .submenu-list-link:after {
    content: "";
    position: absolute;
    opacity: 0;
    right: 20px;
    top: 15px;
    transform: rotate(45deg);
    height: 9px;
    width: 9px;
    border-top: 3px solid var(--main);
    border-right: 3px solid var(--main);
    transition: opacity 0.3s, right 0.3s;
  }
  .submenu-list-link:hover:after {
    opacity: 1;
    right: 25px;
  }
  .subsubmenu-list-item {
    padding-bottom: 8px;
    line-height: 1;
  }
  .menu .subsubmenu-list-link:hover {
    color: var(--main);
  }
  .submenu-list-item:first-child .subsubmenu {
    z-index: 2;
  }
  .submenu-list-item:hover .subsubmenu {
    z-index: 3;
  }
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.hero-search .btn {
  min-height: 35px;
  min-width: 36px;
}
.hero-search-content {
  padding-bottom: 16px;
}
.hero-search .btn svg {
  position: relative;
  top: 2px;
}
.hero-search .btn i {
  position: absolute;
  top: -7px;
  left: -7px;
  display: inline-block;
  border-radius: 18px;
  width: 17px;
  height: 17px;
  background-color: var(--main);
  line-height: 17px;
  vertical-align: middle;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .hero-search {
    padding-top: 114px;
    min-height: 305px;
    margin-bottom: -40px;
    background-color: #b4d4ed;
  }
  .hero-search .btn {
    padding: 0 34px;
    line-height: 57px;
    vertical-align: middle;
    min-height: 57px;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .hero-search .btn span {
    display: none;
  }
}
.results-banner {
  margin-bottom: 24px;
  padding: 26px 18px;
}
.results-banner-title {
  display: flex;
  align-items: flex-end;
}
.results-banner-title h2 {
  margin-bottom: -5px;
}
.results-banner-title span {
  margin: 0 7px;
}
.results-banner-number {
  font-family: var(--ff-title), sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-size: 3.7rem;
}
.results-banner-number p {
  font-size: 1.6rem;
}
.results-tag {
  padding: 0 0 10px;
}
.active-filters {
  position: relative;
  display: block;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .results-banner {
    margin-top: 16px;
  }
  .results-tag {
    width: calc(100% + 16px);
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .results-banner {
    padding: 22px;
  }
  .results-banner-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: auto 230px;
    grid-gap: 60px;
  }
  .results-banner-title {
    align-self: flex-start;
    margin-bottom: 16px;
  }
  .results-banner-number {
    border-left: 1px solid var(--second);
  }
  .active-filters {
    padding-bottom: 45px;
  }
}
.nav-step {
  padding: 9px 0 4px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.nav-step-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: 600;
  color: var(--dark-vd);
  font-size: 1.2rem;
  width: 32px;
}
.nav-step-sep {
  margin: 14px 8px;
  height: 1px;
  width: 80px;
  background-color: var(--dark-vd);
}
.nav-step-item-number {
  margin-bottom: 7px;
  width: 31px;
  height: 31px;
  border-radius: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--second);
  color: var(--second);
  font-family: var(--ff-title), sans-serif;
  font-size: 2rem;
}
.nav-step-item.active {
  color: var(--text);
}
.nav-step-item.passed {
  color: var(--text);
}
.nav-step-item.active .nav-step-item-number {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}
.nav-step-item.passed .nav-step-item-number {
  border-color: var(--text);
  color: var(--text);
}
@media (min-width: 768px) {
  .nav-step {
    padding: 29px 0 21px;
  }
  .nav-step-sep {
    margin-left: 10px;
    margin-right: 10px;
    width: 177px;
  }
}
.tunnel-container {
  margin: auto;
  max-width: calc(100% - 30px);
  width: 783px;
}
.tunnel-title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 23px;
  font-family: var(--ff-title), sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
}
.tunnel-title img,
.tunnel-title svg {
  margin-left: 35px;
}
.tunnel-title-number {
  margin-right: 11px;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 32px;
  height: 32px;
  border-radius: 34px;
  border: 1px solid var(--text-third);
  color: var(--text-third);
  font-family: var(--ff-title), sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
}
.tunnel-form {
  margin: auto;
  padding-bottom: 31px;
}
.tunnel-title-text {
  display: inline-block;
  margin-top: 2px;
}
.tunnel-section-title {
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 2.1rem;
}
.tunnel-section-title span {
  text-decoration: underline;
  font-weight: lighter;
  font-size: 1.5rem;
  cursor: pointer;
}
.tunnel-sub-title {
  margin-bottom: 14px;
  font-size: 1.8rem;
  font-weight: 600;
}
.tunnel-sub-title small {
  display: block;
  font-size: 1.6rem;
  font-weight: lighter;
}
.tunnel-separator {
  display: block;
  margin: 12px 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey);
}
.tunnel-p {
  font-size: 1.8rem;
  margin-bottom: 35px;
}
.tunnel-recap {
  margin: 29px 0 28px;
}
.tunnel-price {
  position: sticky;
  bottom: 0;
  background-color: var(--text);
  margin-left: -15px;
  width: calc(100% + 30px);
  padding: 0 12px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
}
.tunnel-price span:last-child {
  font-size: 1.9rem;
  font-family: var(--ff-title), sans-serif;
}
div.tunnel-separator {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .tunnel-p a,
  .tunnel-section-title a,
  .tunnel-section-title span {
    display: block;
  }
  .devis-recap {
    display: none;
  }
}
@media (min-width: 768px) {
  .tunnel-title {
    margin-bottom: 26px;
  }
  div.tunnel-separator {
    margin: 40px 0 32px;
  }
  .tunnel-form {
    padding-bottom: 97px;
    max-width: calc(100% - 30px);
  }
}
.devis-recap {
  width: 375px;
  max-width: 100%;
  background: var(--white);
  box-shadow: 0 2px 9px 0 rgba(126, 126, 126, 0.27);
}
.devis-recap-header {
  padding: 25px 35px 15px;
  background-color: var(--second);
}
.devis-recap-header p {
  font-family: var(--ff-title), sans-serif;
  font-size: 2.5rem;
  color: var(--white);
}
.devis-recap-content {
  padding: 22px 35px;
  overflow: auto;
  overflow-x: clip;
}
.devis-recap-hotel-name {
  margin-bottom: 15px;
  font-size: 2.2rem;
}
.devis-recap-content-subtitle {
  margin-bottom: 14px;
  font-weight: bold;
  font-family: var(--ff-title), sans-serif;
  font-size: 1.4rem;
}
.devis-recap-content-info {
  margin-top: 8px;
  font-weight: 600;
}
.devis-recap-content-grid {
  margin-bottom: 3px;
  display: grid;
  grid-template-columns: auto 78px;
}
.devis-recap-content-grid b {
  text-align: right;
}
.devis-recap-total {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 13px 18px 11px;
  font-family: var(--ff-title), sans-serif;
  font-size: 2.2rem;
}
.devis-recap-total-price {
  text-align: right;
  font-size: 2.9rem;
  font-weight: bold;
}
.devis-recap-total-texte {
  font-weight: bold;
}
.devis-recap-total-texte small {
  font-size: 1.7rem;
}
.devis-recap-total-texte p {
  font-family: var(--ff-text), sans-serif;
  font-size: 1.4rem;
  color: var(--third);
  font-weight: normal;
}
.devis-recap-edit {
  margin-bottom: 29px;
  text-align: center;
}
@media (max-width: 767px) {
  .devis-recap {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
  }
  .devis-recap-content {
    height: calc(100vh - 74px);
  }
  .devis-recap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .devis-recap-header a {
    text-decoration: none;
    font-weight: normal;
    font-size: 1.6rem;
    color: var(--white);
  }
  .devis-recap-total {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 26px -25px 35px;
    width: calc(100% + 52px);
    padding: 13px 18px 11px;
  }
}
@media (min-width: 768px) {
  .devis {
    display: grid;
    grid-template-columns: calc(100% - 375px) 375px;
  }
  .devis-recap-inner {
    position: sticky;
    top: 0;
  }
  .devis-handler {
    flex-grow: 2;
  }
  .devis-recap-content {
    padding: 22px 27px 27px;
    max-height: calc(100vh - 148px);
  }
  .devis-recap-footer {
    background-color: var(--text);
    color: var(--white);
  }
  .tunnel-container {
    margin: 0 6vw 0 auto;
  }
  .tunnel-container.paiement {
    margin: auto;
  }
  .nav-step {
    margin: auto;
    width: 783px;
    max-width: calc(100% - 60px);
  }
}
@media (min-width: 991px) {
  .devis-handler .nav-step {
    margin: 0 6vw 0 auto;
  }
}
@media (min-width: 1700px) {
  .devis-handler .nav-step,
  .tunnel-container {
    margin: 0 auto 0 auto !important;
  }
  .devis-handler .bg-lightblue,
  .devis-handler .container,
  .devis-handler .tunnel-form {
    padding-left: 190px;
  }
}
.devis-nav-back {
  margin: 0 auto;
  padding: 17px 0 0;
}
.devis-nav-link {
  position: relative;
  padding-left: 20px;
  text-decoration: none;
  color: var(--text);
}
.devis-nav-link:after {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  height: 6px;
  width: 6px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}
.tunnel.many-list-item select {
  height: 57px;
}
.adults {
  counter-reset: count;
}
.adults .tunnel-sub-title {
  counter-increment: count;
}
.adults .tunnel-sub-title:after {
  content: counter(count);
}
.adults li:first-child .form-curiste {
  display: none;
}
.adult-item {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .devis-nav-back {
    padding: 37px 0 46px;
  }
  .tunnel.many-list-item {
    margin-top: -32px;
    padding-top: 0;
  }
  .tunnel.many-list-item .form-cols {
    grid-template-columns: 124px 124px 124px;
  }
  .tunnel-btn .submit-btn-light,
  .tunnel-btn .submit-btn {
    min-width: 338px;
  }
}
.paiement {
  margin: auto;
  width: 461px;
  max-width: 100%;
}
.paiement .tunnel-btn .submit-btn {
  width: 100%;
}
.confirmation {
  width: 720px;
}
.confirmation .simple-container {
  max-width: 100%;
}
.confirmation .shadow-box {
  margin: 25px auto;
  width: 573px;
  max-width: calc(100% - 30px);
}
.tunnel-textarea {
  margin: 30px auto;
  width: 573px;
  max-width: calc(100% - 30px);
}
.tunnel-btn p {
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .confirmation .shadow-box {
    margin: 36px auto 55px;
  }
}
.form-cols {
  max-width: 100%;
  display: grid;
  grid-template-columns: calc(50% - 9px) calc(50% - 9px);
  gap: 18px;
}
.form-select,
.form-input {
  position: relative;
  margin-bottom: 19px;
}
.input-has-icon {
  position: relative;
  z-index: 0;
}
.input-has-icon input {
  padding-left: 40px;
}
.input-has-icon > svg {
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 8;
}
.form-row select {
  height: 57px;
  min-width: 100px;
}
.form-civility {
  display: grid;
  grid-template-rows: auto;
  grid-gap: 19px;
  max-width: 474px;
  grid-template-columns: 111px auto;
}
.form-civility .form-input {
  margin-bottom: 0;
}
.form-civility .form-input:nth-child(3),
.form-civility .form-input:nth-child(4) {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .form-row {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 19px;
  }
  .mobile-form-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .form-row {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 19px;
  }
  .form-row-small {
    max-width: 558px;
  }
  .form-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .form-2 {
    grid-template-columns: 1fr 1fr;
  }
  .form-2-3 {
    grid-template-columns: 1fr 2fr;
  }
}
select,
input {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
  border: solid 1px var(--grey);
  border-radius: 4px;
  height: 57px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--ff-text), serif;
  color: var(--text);
  text-overflow: ellipsis;
}
select {
  padding-right: 20px;
  height: 46px;
  min-width: 180px;
}
select.select-bed {
  margin-right: 10px;
  width: 160px;
  min-width: 160px;
  max-width: 160px;
}
.children-age select {
  min-width: 0;
}
select.selectr {
  padding-left: 34px;
}
select:focus,
input:focus {
  border-color: var(--text);
  outline: 0;
}
.search-home select:focus,
.search-home input:focus,
.search-home .selectr-container.open {
  outline: 2px solid var(--main);
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea {
  padding: 20px;
  height: 95px;
  width: 100%;
  border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.32);
  font-family: var(--ff-text), sans-serif;
  color: var(--text);
  font-size: 1.8rem;
}
textarea + p {
  text-align: right;
  color: var(--grey);
  font-size: 1.4rem;
}
label {
  font-size: 1.5rem;
}
.form-input label {
  display: block;
  margin-bottom: 8px;
}
.stacked_input {
  display: flex;
  flex-direction: column;
}
.form-input-block {
  flex-grow: 2;
  position: relative;
  padding: 12px 20px 7px;
  border-radius: 8px;
  border: solid 1px var(--grey-second);
}
.form-input-block input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.form-input-block label {
  position: relative;
  display: block;
  min-height: 50px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.6rem;
}
.form-input-block label:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  border-radius: 20px;
  border: 1px solid var(--text-third);
}
.form-input-block input[disabled] + label {
  cursor: default;
  color: var(--text-grey);
}
.form-input-block input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  right: 4px;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  border-radius: 20px;
  background: var(--text-third);
}
::-webkit-input-placeholder {
  color: var(--text);
  font-weight: normal;
  text-overflow: ellipsis;
}
::-moz-placeholder {
  color: var(--text);
  font-weight: normal;
  text-overflow: ellipsis;
}
:-ms-input-placeholder {
  color: var(--text);
  font-weight: normal;
  text-overflow: ellipsis;
}
:-moz-placeholder {
  color: var(--text);
  font-weight: normal;
  text-overflow: ellipsis;
}
.has-danger input,
.has-danger select {
  border-color: #d65656;
  color: #d65656;
}
.pristine-error.text-help {
  font-size: 1.2rem;
  color: #d65656;
}
button {
  cursor: pointer;
  border: 0;
}
@media (max-width: 768px) {
  .stacked_input {
    margin-bottom: 49px;
  }
  .form-input-block {
    padding-top: 23px;
    padding-bottom: 23px;
  }
  label a {
    display: block;
  }
}
@media (min-width: 767px) {
  textarea {
    height: 144px;
  }
  .form-input-block label {
    font-size: 1.8rem;
  }
}
.form-input input[type="checkbox"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.form-input input[type="checkbox"] + label {
  position: relative;
  padding-left: 37px;
  font-weight: 600;
  line-height: 1.2;
}
.form-input input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid var(--text);
}
.form-input input[type="checkbox"]:checked + label:before {
  background-color: var(--text);
}
.form-input input[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-60%) rotate(45deg);
  width: 5px;
  height: 11px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.radio-button input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.radio-button input + label {
  padding-left: 35px;
}
.radio-button input + label:before,
.radio-button input + label:after {
  content: "";
  display: block;
  position: absolute;
}
.radio-button input + label:before {
  left: 0;
  top: 50%;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  border-radius: 20px;
  border: 1px solid var(--text-third);
}
.radio-button input:checked + label:after {
  left: 4px;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  border-radius: 20px;
  background: var(--text-third);
}
.tag-checkbox {
  opacity: 0;
  left: 0;
  width: 5px;
  height: 5px;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.tag-checkbox + label {
  margin-right: 6px;
  padding: 3px 11px 4px;
  border-radius: 24px;
  border: solid 1px var(--dark-vd);
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}
.tag-checkbox:checked + label {
  background-color: var(--second);
  color: var(--white);
}
.full-on-active:not(.open) .close-full-on-active,
.full-on-active:not(.open) .full-on-active-header {
  display: none;
}
.full-on-active.open {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: 101;
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
}
.full-on-active.open .close-full-on-active {
  position: absolute;
  right: 19px;
  top: 21px;
}
.full-on-active-header {
  padding: 20px 19px 22px 30px;
  border-bottom: 1px solid var(--grey-second);
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: bold;
}
.full-on-active.open .form-input,
.full-on-active.open .form-select {
  margin-left: 30px;
  margin-right: 30px;
}
.full-on-active.open .many-list .form-select {
  margin-left: 0;
  margin-right: 0;
}
.full-on-active.open .selectr-options {
  max-height: calc(100vh - 92px);
}
@media (max-width: 767px) {
  .full-on-active.open .btn {
    position: static;
    transform: translateY(0);
  }
  .full-on-active.open .more_option {
    flex-grow: 2;
    padding-right: 30px;
    padding-left: 30px;
  }
  .many-list {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.more_option {
  background: #fff;
  width: 100%;
  padding: 16px 0;
}
.many-list-item {
  display: flex;
  padding: 14px 0;
  border-top: 1px solid var(--grey-second);
  font-weight: bold;
}
.many-list-item:first-child {
  border-top: 0;
}
.many-list .btn {
  min-width: 144px;
}
.many-list-item .form-select {
  margin-bottom: 0;
}
.many-list-item input {
  padding: 0;
  border: 0;
  width: 45px;
  height: 32px;
  text-align: center;
  font-weight: normal;
  font-size: 1.4rem;
}
.number {
  display: flex;
  margin-left: auto;
}
.change-number {
  width: 32px;
  height: 32px;
  border-radius: 34px;
  border: 1px solid var(--text);
  text-align: center;
  line-height: 30px;
  vertical-align: middle;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.change-number.disabled {
  cursor: default;
  border-color: var(--grey);
  opacity: 0.7;
  color: var(--grey);
}
.many-list-item.not-flex {
  display: block;
}
.many-list-item > p {
  margin-bottom: 10px;
}
.many-list-item select {
  font-weight: normal;
}
.many-list-item input[type="number"]::-webkit-inner-spin-button,
.many-list-item input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media (min-width: 768px) {
  .how-many {
    position: relative;
  }
  .more_option {
    padding: 16px 20px;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 20%);
    position: absolute;
    z-index: 2;
    top: calc(100% + 5px);
    min-width: 327px;
  }
}
.filters-range {
  margin: 0 13px;
}
rs-container * {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rs-container {
  margin-top: 15px;
  height: 60px;
  position: relative;
}
.rs-container .rs-bg,
.rs-container .rs-selected {
  background-color: var(--grey);
  height: 3px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 100%;
}
.rs-container .rs-selected {
  background-color: var(--text);
  transition: all 0.2s linear;
  width: 0;
}
.rs-container.disabled .rs-selected {
  background-color: #ccc;
  border-color: #bbb;
}
.rs-container .rs-pointer {
  background-color: var(--white);
  border: 2px solid var(--main);
  border-radius: 100px;
  cursor: pointer;
  height: 28px;
  width: 28px;
  left: -14px;
  position: absolute;
  top: -8px;
  transition: all 0.2s linear;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1),
    0 3px 1px 0 rgba(0, 0, 0, 0.05);
}
.rs-container.disabled .rs-pointer {
  border-color: #ccc;
  cursor: default;
}
.rs-container.sliding .rs-pointer,
.rs-container.sliding .rs-selected {
  transition: none;
}
.rs-scale {
  display: none;
}
.rs-tooltip {
  color: #333;
  width: auto;
  height: 30px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  transform: translate(-50%, 35px);
  left: 50%;
  font-size: 1.4rem;
}
.rs-tooltip:after {
  content: "€";
}
.rs-container.disabled .rs-tooltip {
  border-color: #ccc;
  color: #999;
}
.selectr-container li,
.selectr-option,
.selectr-tag {
  list-style: none;
}
.selectr-container {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
  padding-left: 40px;
  border: solid 1px var(--grey);
  border-radius: 4px;
  height: 57px;
  font-size: 1.6rem;
  font-weight: bold;
}
.selectr-container.open {
  border: solid 1px var(--text);
}
.selectr-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  min-width: 0;
}
.selectr-visible {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 11;
}
.selectr-desktop.multiple .selectr-visible {
  display: none;
}
.selectr-desktop.multiple.native-open .selectr-visible {
  top: 100%;
  min-height: 200px !important;
  height: auto;
  opacity: 1;
  display: block;
}
.selectr-container.multiple.selectr-mobile .selectr-selected {
  z-index: 0;
}
.selectr-selected {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  padding: 17px 0 7px;
  cursor: pointer;
  background-color: #fff;
}
.selectr-label {
  display: none;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.selectr-placeholder {
  font-weight: normal;
}
.selectr-tags {
  margin: 0;
  padding: 0;
  white-space: normal;
}
.has-selected .selectr-tags {
  margin: 0 0 -2px;
}
.selectr-tag {
  position: relative;
  float: left;
  padding: 2px 25px 2px 8px;
  margin: 0 2px 2px 0;
  cursor: default;
  color: #fff;
  border: 0;
  border-radius: 10px;
  background: #acb7bf;
}
.selectr-container.multiple.has-selected .selectr-selected {
  padding: 5px 28px 5px 5px;
}
.selectr-options-container {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: -1px;
  display: none;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  background-color: transparent;
}
.selectr-options-container input {
  background-color: #fff;
  padding: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--text);
  height: 56px;
}
.selectr-options-container input:focus {
  outline: 0;
}
.selectr-container.open .selectr-options-container {
  display: block;
}
.selectr-input-container {
  position: relative;
  display: none;
  padding-left: 40px;
}
.selectr-clear,
.selectr-input-clear,
.selectr-tag-remove {
  position: absolute;
  top: 50%;
  right: -45px;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  -o-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  border: 0;
  background-color: transparent;
  z-index: 11;
}
.selectr-clear,
.selectr-input-clear {
  display: none;
}
.selectr-container.has-selected .selectr-clear,
.selectr-input-container.active,
.selectr-input-container.active .selectr-clear,
.selectr-input-container.active .selectr-input-clear {
  display: block;
}
.selectr-selected .selectr-tag-remove {
  right: 2px;
}
.selectr-clear::after,
.selectr-clear::before,
.selectr-input-clear::after,
.selectr-input-clear::before,
.selectr-tag-remove::after,
.selectr-tag-remove::before {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 2px;
  height: 25px;
  content: " ";
  background-color: var(--text);
}
.selectr-tag-remove::after,
.selectr-tag-remove::before {
  top: 4px;
  width: 3px;
  height: 12px;
  background-color: #fff;
}
.selectr-clear:before,
.selectr-input-clear::before,
.selectr-tag-remove::before {
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.selectr-clear:after,
.selectr-input-clear::after,
.selectr-tag-remove::after {
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.selectr-input {
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
}
.selectr-notice {
  display: none;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 16px;
  border-top: 1px solid #999;
  border-radius: 0 0 3px 3px;
  background-color: #fff;
}
.input-tag,
.taggable .selectr-label {
  width: auto;
}
.selectr-container.notice .selectr-notice {
  display: block;
}
.selectr-container.notice .selectr-selected {
  border-radius: 3px 3px 0 0;
}
.selectr-options {
  position: relative;
  top: calc(100% + 2px);
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 400px;
  margin: 0;
  background-color: #fff;
}
.selectr-options li:last-child {
  border-bottom: 0;
}
.selectr-container.notice .selectr-options-container,
.selectr-container.open .selectr-input-container,
.selectr-container.open .selectr-options {
  display: block;
}
.selectr-option {
  position: relative;
  display: block;
  padding: 14px 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  border-bottom: solid 1px var(--grey-second);
}
.has-selected .selectr-placeholder,
.selectr-empty,
.selectr-option.excluded {
  display: none;
}
.selectr-options.optgroups > .selectr-option {
  padding-left: 25px;
}
.selectr-optgroup {
  font-weight: 700;
  padding: 0;
}
.selectr-optgroup--label {
  padding: 11px;
  background-color: var(--light);
  font-size: 1.8rem;
  font-weight: bold;
}
.selectr-match {
  text-decoration: underline;
}
.selectr-option.selected {
  background-color: #ddd;
}
.selectr-option.active {
  color: #fff;
  background-color: var(--main);
}
.selectr-option.disabled {
  opacity: 0.4;
}
.selectr-container.open .selectr-selected {
  border-color: #999 #999 transparent;
  border-radius: 3px 3px 0 0;
}
.selectr-container.open .selectr-selected::after {
  -o-transform: rotate(180deg) translate3d(0, 50%, 0);
  -ms-transform: rotate(180deg) translate3d(0, 50%, 0);
  -moz-transform: rotate(180deg) translate3d(0, 50%, 0);
  -webkit-transform: rotate(180deg) translate3d(0, 50%, 0);
  transform: rotate(180deg) translate3d(0, 50%, 0);
}
.selectr-disabled {
  opacity: 0.6;
}
.has-selected .selectr-label {
  display: block;
}
.taggable .selectr-selected {
  padding: 4px 28px 4px 4px;
}
.taggable .selectr-selected::after {
  display: table;
  content: " ";
  clear: both;
}
.taggable .selectr-tags {
  float: left;
  display: block;
}
.taggable .selectr-placeholder {
  display: none;
}
.input-tag {
  float: left;
  min-width: 90px;
}
.selectr-tag-input {
  border: 0;
  padding: 3px 10px;
  width: 100%;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.selectr-input-container.loading::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  content: "";
  -o-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -o-transform-origin: 50% 0 0;
  -ms-transform-origin: 50% 0 0;
  -moz-transform-origin: 50% 0 0;
  -webkit-transform-origin: 50% 0 0;
  transform-origin: 50% 0 0;
  -moz-animation: 0.5s linear 0s normal forwards infinite running spin;
  -webkit-animation: 0.5s linear 0s normal forwards infinite running spin;
  animation: 0.5s linear 0s normal forwards infinite running spin;
  border-width: 3px;
  border-style: solid;
  border-color: #aaa #ddd #ddd;
  border-radius: 50%;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0) translate3d(0, -50%, 0);
    transform: rotate(0) translate3d(0, -50%, 0);
  }
  100% {
    -webkit-transform: rotate(360deg) translate3d(0, -50%, 0);
    transform: rotate(360deg) translate3d(0, -50%, 0);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0) translate3d(0, -50%, 0);
    transform: rotate(0) translate3d(0, -50%, 0);
  }
  100% {
    -webkit-transform: rotate(360deg) translate3d(0, -50%, 0);
    transform: rotate(360deg) translate3d(0, -50%, 0);
  }
}
.selectr-container ::-webkit-input-placeholder {
  color: #6c7a86;
  opacity: 1;
}
.selectr-container ::-moz-placeholder {
  color: #6c7a86;
  opacity: 1;
}
.selectr-container :-ms-input-placeholder {
  color: #6c7a86;
  opacity: 1;
}
.selectr-container ::placeholder {
  color: #6c7a86;
  opacity: 1;
}
@media (max-width: 767px) {
  .select-when.open .input-datepicker,
  .select-when.open svg,
  .for-howlong .selectr-container.open .selectr-input {
    position: absolute;
    opacity: 0;
    height: 0;
  }
  .select-when.open .datepicker-dropdown.active {
    margin-top: -77px;
  }
  .select-when.open .datepicker-dropdown:before {
    content: "";
    position: absolute;
    width: 100vw;
    display: block;
    height: 1px;
    background-color: var(--grey-second);
    left: -30px;
    bottom: 0;
  }
  .for-howlong .selectr-container.open {
    border: 0;
    padding: 0;
    outline: 0;
  }
  .select-where .selectr-container.open {
    max-width: calc(100% - 33px);
  }
  .select-where .selectr-container.open .selectr-options {
    min-width: calc(100% + 33px);
  }
}
@media (min-width: 768px) {
  .selectr-options {
    padding: 10px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  }
}
.datepicker {
  display: none;
}
.datepicker.active {
  display: block;
}
.datepicker-dropdown {
  left: 0;
  padding-top: 4px;
  position: absolute;
  top: 0;
  z-index: 20;
}
.datepicker-dropdown.datepicker-orient-top {
  padding-bottom: 4px;
  padding-top: 0;
}
.datepicker-picker {
  background-color: #fff;
  display: inline-block;
}
.datepicker-dropdown .datepicker-picker {
  width: 100%;
  min-width: 324px;
}
.datepicker-picker span {
  -webkit-touch-callout: none;
  border: 0;
  border-radius: 40px;
  cursor: default;
  display: block;
  flex: 1;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker-main {
  padding: 2px 0;
}
.datepicker-footer {
  background-color: #f5f5f5;
  box-shadow: inset 0 1px 1px hsla(0, 0%, 4%, 0.1);
}
.datepicker-controls,
.datepicker-grid,
.datepicker-view,
.datepicker-view .days-of-week {
  display: flex;
  justify-content: space-between;
}
.datepicker-view .days-of-week {
  border-bottom: 1px solid var(--grey-second);
  margin-bottom: 8px;
}
.datepicker-grid {
  flex-wrap: wrap;
}
.days,
.datepicker-grid {
  width: 100% !important;
}
.datepicker-view .days .datepicker-cell,
.datepicker-view .dow {
  margin-bottom: 5px;
  flex-basis: 14.285%;
  height: 54%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 14.28%;
  vertical-align: middle;
  aspect-ratio: 1;
}
.datepicker-view.datepicker-grid .datepicker-cell {
  flex-basis: 25%;
}
.datepicker-cell,
.datepicker-view .week {
  height: 2.25rem;
  line-height: 2.25rem;
}
.datepicker-title {
  background-color: #f5f5f5;
  box-shadow: inset 0 -1px 1px hsla(0, 0%, 4%, 0.1);
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  text-align: center;
}
.datepicker-header .datepicker-controls {
  padding: 19px 0 14px;
  border-bottom: 1px solid var(--grey-second);
}
.datepicker-controls .button {
  align-items: center;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  box-shadow: none;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  height: 2.25em;
  justify-content: center;
  line-height: 1.5;
  margin: 0;
  padding: calc(0.375em - 1px) 0.75em;
  position: relative;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
}
.datepicker-controls .button:active,
.datepicker-controls .button:focus {
  outline: 0;
}
.datepicker-controls .button:hover {
  border-color: #b5b5b5;
  color: #363636;
}
.datepicker-controls .button:focus {
  border-color: #3273dc;
  color: #363636;
}
.datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.datepicker-controls .button:active {
  border-color: #4a4a4a;
  color: #363636;
}
.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}
.datepicker-header .datepicker-controls .button {
  border: 0;
  height: 20px;
  line-height: 20px;
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: bold;
}
.datepicker-header .datepicker-controls .prev-btn,
.datepicker-header .datepicker-controls .next-btn {
  position: relative;
  border-color: transparent;
  font-size: 0;
}
.datepicker-header .datepicker-controls .prev-btn:before {
  content: "";
  position: absolute;
  display: block;
  height: 9px;
  width: 9px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  transform: rotate(-135deg);
}
.datepicker-header .datepicker-controls .next-btn:before {
  content: "";
  position: absolute;
  display: block;
  height: 9px;
  width: 9px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  transform: rotate(45deg);
}
.datepicker-header .datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em hsla(0, 0%, 100%, 0.25);
}
.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}
.datepicker-header .datepicker-controls .button[disabled] {
  box-shadow: none;
}
.datepicker-footer .datepicker-controls .button {
  border-radius: 2px;
  font-size: 0.75rem;
  margin: calc(0.375rem - 1px) 0.375rem;
  width: 100%;
}
.datepicker-controls .view-switch {
  flex: auto;
  text-transform: capitalize;
}
.datepicker-controls .next-btn,
.datepicker-controls .prev-btn {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  width: 2.25rem;
}
.datepicker-controls .next-btn.disabled,
.datepicker-controls .prev-btn.disabled {
  visibility: hidden;
}
.datepicker-view .dow {
  font-size: 1.5rem;
  font-weight: 600;
  height: 30px;
  line-height: 17px;
  margin: 2px 0;
}
.datepicker-view .week {
  color: #b5b5b5;
  font-size: 0.75rem;
  width: 2.25rem;
}
@media (max-width: 22.5rem) {
  .datepicker-view .week {
    width: 1.96875rem;
  }
}
.datepicker-grid {
  width: 15.75rem;
}
@media (max-width: 22.5rem) {
  .calendar-weeks + .days .datepicker-grid {
    width: 13.78125rem;
  }
}
.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.datepicker-cell.focused:not(.selected) {
  background-color: var(--text);
  color: #fff;
}
.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: var(--main);
  color: #fff;
  font-weight: 600;
}
.datepicker-cell.disabled {
  color: #dbdbdb;
}
.datepicker-cell.next:not(.disabled),
.datepicker-cell.prev:not(.disabled) {
  color: #7a7a7a;
}
.datepicker-cell.next.selected,
.datepicker-cell.prev.selected {
  color: #e6e6e6;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  background-color: #f5f5f5;
  border-radius: 0;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #eee;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e8e8e8;
}
.datepicker-cell.today:not(.selected) {
  background-color: var(--text);
}
.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}
.datepicker-cell.today.focused:not(.selected) {
  background-color: #00c4a7;
}
.datepicker-cell.range-end:not(.selected),
.datepicker-cell.range-start:not(.selected) {
  background-color: #b5b5b5;
  color: #fff;
}
.datepicker-cell.range-end.focused:not(.selected),
.datepicker-cell.range-start.focused:not(.selected) {
  background-color: #afafaf;
}
.datepicker-cell.range-start {
  border-radius: 4px 0 0 4px;
}
.datepicker-cell.range-end {
  border-radius: 0 4px 4px 0;
}
.datepicker-cell.range {
  background-color: #dbdbdb;
  border-radius: 0;
}
.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d5d5d5;
}
.datepicker-cell.range.disabled {
  color: #c2c2c2;
}
.datepicker-cell.range.focused {
  background-color: #cfcfcf;
}
.datepicker-view.datepicker-grid .datepicker-cell {
  height: 4.5rem;
  line-height: 4.5rem;
}
.datepicker-input.in-edit {
  border-color: #2366d1;
}
.datepicker-input.in-edit:active,
.datepicker-input.in-edit:focus {
  box-shadow: 0 0 0.25em 0.25em rgba(35, 102, 209, 0.2);
}
@media (min-width: 768px) {
  .datepicker-dropdown {
    min-width: 324px;
  }
  .datepicker-dropdown .datepicker-picker {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  }
  .datepicker-header {
    padding: 0 20px;
  }
  .datepicker-main {
    padding: 2px 22px;
  }
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
}
.breadcrumbs ol li {
  height: 16px;
  line-height: 16px;
}
.breadcrumbs ol li:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--text);
  border-right: 1px solid var(--text);
  transform: rotate(45deg);
}
.breadcrumbs ol li:first-child:before {
  display: none;
}
.breadcrumbs ol li:last-child {
  font-weight: bold;
}
.breadcrumbs ol li a {
  padding: 0 6px;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}
.breadcrumbs ol li:first-child a {
  font-weight: normal;
  padding-left: 0;
}
@media (min-width: 768px) {
  .breadcrumbs ol li:last-child {
    font-size: 1.6rem;
  }
  .breadcrumbs ol li:last-child span {
    position: relative;
    top: 1px;
    padding-left: 4px;
  }
  .breadcrumbs ol li:not(:first-child) {
    margin-left: 6px;
  }
}
@media (max-width: 768px) {
  .breadcrumbs ol li:last-child:before,
  .breadcrumbs ol li:not(:last-child) {
    display: none;
  }
  .breadcrumbs ol li:not(:first-child) {
    max-width: 100%;
    padding-right: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.card-blue {
  padding: 15px;
  background: var(--bgblue);
}
.card-blue a {
  margin: 10px 0;
}
.discount {
  padding: 4px 4px 6px;
  text-align: center;
  width: 62px;
  background-color: var(--main);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
}
.discount span {
  display: block;
  font-size: 1.7rem;
  font-weight: bold;
}
.discount-flash {
  color: #fff;
  padding: 6px 10px;
  width: 120px;
  border-radius: 2px;
  font-size: 1.5rem;
  background-color: var(--text-third);
}
.discount-flash span {
  line-height: 1;
}
.search-bar-info {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.search-bar-info-w {
  padding-left: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.search-bar-info-w span:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--text);
  margin: 3px 6px;
}
.search-bar-info-w span:last-child:after {
  display: none;
}
@media (max-width: 768px) {
  .search {
    position: relative;
  }
  .search-bar {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 24px;
    padding: 18px 10px;
    background-color: #b4d4ed;
  }
  .search-bar-info {
    padding: 8px 12px;
    background-color: #fff;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  }
  .search-bar-info-where {
    min-width: 100%;
    font-weight: bold;
  }
  .search-bar-info-w span:first-child:after {
    display: none;
  }
  .search .btn {
    position: absolute;
    right: 0;
    bottom: -10px;
    transform: translateY(100%);
  }
}
@media (min-width: 768px) {
  .search {
    padding-top: 10px;
    padding-bottom: 43px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .search-bar-info {
    width: 634px;
    max-width: calc(100% - 150px);
    padding: 16px 18px;
    background-color: #fff;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  }
}
.reassurance .reassurance-grid {
  padding-top: 27px;
}
.reassurance-grid {
  margin-bottom: 45px;
  text-align: center;
}
.reassurance-item {
  display: flex;
  align-items: self-start;
  padding: 12px 11px 12px 20px;
  border-radius: 4px;
  border: solid 1px #d0e5ed;
}
.scroll-flex .reassurance-item {
  max-width: 270px;
  width: 25%;
  margin-right: 21px;
  margin-bottom: 0;
}
.reassurance-item:last-child {
  margin-right: 0;
}
.reassurance-item svg {
  min-width: 27px;
  width: 27px;
  fill: var(--second);
}
.reassurance-item-content {
  padding-left: 18px;
  text-align: left;
}
.reassurance-item-title {
  font-size: 1.6rem;
  font-weight: bold;
}
.reassurance-item-text {
  font-size: 1.2rem;
}
.reassurance-item-text a {
  font-weight: bold;
  color: var(--main);
  text-decoration: none;
}
.reassurance-item-text strong {
  font-weight: bold;
}
@media (max-width: 1174px) {
  .reassurance .container {
    margin-right: 0;
    max-width: 100%;
  }
  .reassurance .reassurance-grid {
    padding: 27px 16px 2px;
  }
  .reassurance-item {
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .reassurance-grid {
    display: flex;
  }
  .reassurance-item {
    min-width: 269px;
    margin-right: 21px;
    width: 25%;
  }
}
@media (max-width: 767px) {
  .reassurance-grid {
    margin-bottom: 68px;
  }
  .reassurance-item {
    min-width: 270px;
    min-height: 74px;
  }
}
.aside {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  padding-top: 66px;
  padding-bottom: 83px;
  background-color: var(--white);
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.45);
}
.aside:not(.close):not(.open) {
  opacity: 0;
}
.aside.open {
  display: block;
  animation: 1 0.6s fadeIn;
}
.aside.closing {
  animation: 1 0.4s fadeOut;
}
.aside.close {
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.aside-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 20px 19px 22px 30px;
  font-size: 1.8rem;
  background-color: var(--white);
}
.aside-header p {
  display: flex;
  justify-content: space-between;
}
.aside-header .clear {
  text-decoration: underline;
  font-size: 1.6rem;
  cursor: pointer;
}
.close-icon {
  position: relative;
  display: block;
  height: 22px;
  width: 22px;
  cursor: pointer;
}
.close-icon:before,
.close-icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text);
}
.close-icon:before {
  transform: rotate(45deg);
}
.close-icon:after {
  transform: rotate(-45deg);
}
.open-aside {
  margin-left: 6px;
  cursor: pointer;
}
.aside-content {
  padding: 16px 30px 24px;
  max-height: calc(100vh - 152px);
  height: calc(100vh - 152px);
  overflow-y: auto;
}
.aside-infos-details-content {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 35px;
}
.aside-infos-details-content-main-info {
  margin: 13px 0;
  color: var(--text-third);
}
.aside-content-separator {
  border-top: 1px solid var(--grey);
  padding-top: 35px;
}
.aside-infos-details-content .aside-content-separator {
  margin-top: 18px;
  padding-top: 22px;
}
.infos-content .h6 {
  margin-bottom: 17px;
  font-size: 2.2rem;
}
.aside-infos-details-content-text p {
  font-weight: 600;
}
.aside-infos-details-content-text + p {
  margin-top: 25px;
  font-weight: normal;
}
.aside-infos-details-content-text .list {
  margin: 0 0 20px;
}
.aside-footer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: var(--white);
  padding: 14px 11px;
  box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.18);
}
.aside-infos-footer {
  display: flex;
}
.aside-content .btn,
.aside-footer .btn {
  width: calc(100% - 60px);
  font-size: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 22px;
  font-family: var(--ff-title), sans-serif;
}
.aside-footer .aside-infos-footer-choose {
  margin-left: auto;
  width: 126px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.select-where {
  z-index: 3;
}
.select-where + .form-cols {
  z-index: 2;
}
.how-many {
  z-index: 1;
}
@media (max-width: 767px) {
  .aside-header {
    border-bottom: 1px solid var(--grey-second);
  }
  .infos-content {
    padding-top: 45px;
  }
  .aside-content .btn,
  .aside-footer .btn {
    transform: none;
    bottom: 30px;
    right: 30px;
  }
}
@media (min-width: 768px) {
  .aside,
  .aside-header,
  .aside-footer {
    width: 406px;
  }
  .aside-header {
    font-size: 2rem;
  }
  .aside-content .btn,
  .aside-footer .btn {
    width: 100%;
  }
}
.page-content {
  margin: auto;
  width: 949px;
  max-width: calc(100% - 32px);
}
.hero-content .page-content {
  padding: 13px 0 21px;
}
.hero-content .page-content .breadcrumbs {
  margin-bottom: 28px;
}
.page-content .text-center img {
  margin-left: auto;
  margin-right: auto;
}
.page-content h2 {
  margin: 0 0 37px;
  font-size: 2.6rem;
}
.page-content h2:not(:first-child) {
  margin-top: 55px;
}
.page-content img {
  margin-top: 35px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .page-content-bg {
    padding: 24px 0 40px;
  }
  .page-content {
    display: flex;
    flex-direction: column;
    min-height: 144px;
  }
  .page-content h1 {
    margin-top: auto;
  }
  .hero-page-image img {
    min-height: 144px;
    object-fit: cover;
  }
}
@media (min-width: 768px) {
  .page-content-bg {
    margin: -140px auto 0;
    position: relative;
    z-index: 2;
    background-color: var(--white);
    padding: 72px 100px;
  }
  .hero-content .page-content {
    padding: 97px 0 160px;
  }
  .hero-content .page-content .breadcrumbs {
    margin-bottom: 28px;
  }
  .hero-page-image img {
    height: 418px;
    object-fit: cover;
  }
  .page-content img {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.simple-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.simple-content {
  padding: 26px 0;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  max-width: calc(100% - 30px);
  width: 590px;
  text-align: center;
  font-size: 1.8rem;
}
.simple-title {
  margin-bottom: 27px;
  font-family: var(--ff-title), sans-serif;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .simple-container b {
    display: block;
  }
}
@media (min-width: 768px) {
  .simple-title {
    margin-bottom: 17px;
    font-size: 3.4rem;
  }
}
.rating-form {
  margin-top: 30px;
}
.rating-form label {
  display: inline-block;
  margin: 40px 0 16px;
  font-size: 1.4rem;
  font-weight: 600;
}
.rating-form button {
  margin-top: 26px;
  min-width: 288px;
}
.rating-form .reviews-starts-container {
  margin-top: 24px;
  justify-content: center;
}
.rating-form .reviews-stars-base {
  display: flex;
  flex-direction: row-reverse;
}
.rating-form input {
  position: absolute;
  left: -999em;
}
.rating-form .reviews-stars label {
  position: relative;
  margin: 0;
}
.rating-form .review-note-number {
  opacity: 0;
  min-height: 80px;
  justify-content: center;
}
.rating-form input:checked ~ label svg {
  fill: var(--main) !important;
}
.rating-form input:hover ~ label svg {
  fill: var(--main) !important;
}
@media (max-width: 767px) {
  .rating-form button {
    width: 100%;
  }
  .textarea-container {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .rating-form {
    margin-top: 50px;
  }
  .rating-form button {
    margin-top: 51px;
  }
  .rating-form label {
    margin: 4vh 0 25px;
  }
}
.aside-search-form {
  margin-top: 10px;
}
.search-content {
  max-height: calc(100vh - 70px);
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
}
.aside-search-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.aside-search-form p:last-child {
  margin-top: auto;
}
.filters-list {
  padding-bottom: 29px;
}
.filters-title {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}
.filters-list-checkbox {
  position: relative;
  border-bottom: 1px solid var(--grey);
}
.filters-list-checkbox label {
  display: block;
  padding: 13px 0;
  line-height: 24px;
  cursor: pointer;
}
.filters-list-checkbox label:before {
  content: "";
  position: absolute;
  right: 13px;
  top: 13px;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--text);
  background-color: var(--white);
  transition: opacity 0.2s;
}
.filters-list-checkbox label:after {
  content: "";
  position: absolute;
  right: 21px;
  top: 17px;
  height: 12px;
  width: 6px;
  transform: rotate(45deg);
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  opacity: 0;
  transition: opacity 0.2s;
}
.filters-list-checkbox input:checked + label:before {
  background-color: var(--text);
}
.filters-list-checkbox input:checked + label:after {
  opacity: 1;
}
.filters-list-checkbox input {
  position: absolute;
  right: 13px;
  top: 13px;
  height: 24px;
  opacity: 0;
}
.tag-item {
  display: inline-block;
  margin-right: 4px;
  padding: 0 11px;
  border-radius: 80px;
  border: 1px solid var(--dark-vd);
  white-space: nowrap;
  height: 26px;
  line-height: 24px;
  vertical-align: middle;
  cursor: pointer;
}
.tag-item.active {
  background-color: var(--second);
  border-color: var(--second);
  color: var(--white);
}
.filter-atcive {
  position: relative;
  display: inline-block;
  margin: 0 14px 6px 0;
  background-color: var(--text);
  color: var(--white);
  border-radius: 5px;
  padding: 6px 32px 6px 11px;
}
.delete {
  position: absolute;
  top: 6px;
  right: 11px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.delete:before,
.delete:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 1px;
  background-color: var(--white);
}
.delete:before {
  transform: rotate(45deg);
}
.delete:after {
  transform: rotate(-45deg);
}
.result-item {
  margin-bottom: 14px;
  padding: 9px 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.offer-price {
  font-size: 1.3rem;
}
.offer-price .price {
  display: inline-block;
  margin-right: 4px;
  font-family: var(--ff-title);
  font-size: 28px;
  font-weight: bold;
}
.result-item-title {
  display: flex;
  font-size: 1.8rem;
  white-space: nowrap;
}
.result-item-title span {
  flex-shrink: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-item-title sup {
  position: relative;
  top: 2px;
  left: 3px;
  font-size: 1rem;
}
.result-item-rating {
  display: flex;
  align-items: center;
}
.hotel-item-label {
  display: inline-block;
  border-radius: 2px;
  padding: 1px 5px;
  background-color: var(--third);
  font-size: 1.2rem;
  font-weight: bold;
}
.result-item-rating p {
  font-size: 1.3rem;
  color: var(--text-grey);
}
.result-item-rating-number {
  padding-right: 8px;
  font-size: 1.6rem;
  font-family: var(--ff-title);
  color: var(--main);
}
.results-items-offer-infos {
  display: flex;
  margin-bottom: 7px;
}
.results-items-offer-infos svg {
  fill: var(--text);
}
.result-item-offer {
  position: relative;
  padding-top: 8px;
  padding-bottom: 13px;
  border-top: 1px solid var(--grey-second);
  white-space: nowrap;
  text-decoration: none;
}
.result-item-offer a {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.result-item-offer:hover {
  background-color: #e7f3f8;
}
.result-item-offer .tooltip,
.result-item-offer [onclick] {
  position: relative;
  z-index: 4;
}
.results-items-offer-infos div {
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  white-space: nowrap;
}
.results-items-offer-infos div:not(:last-child) {
  margin-right: 9px;
  padding-right: 9px;
  border-right: 1px solid var(--grey-second);
}
.results-items-offer-infos svg {
  padding-right: 8px;
}
.result-item-offer-specifities-text {
  font-weight: bold;
  margin-top: 2px;
  display: inline-block;
}
.result-item-offer-details .tag {
  margin-right: 10px;
  display: inline-block;
  padding: 5px 8px 5px 10px;
  border-radius: 20px;
  border: solid 2px var(--third);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.promo {
  font-weight: bold;
  color: var(--main);
  line-height: 1;
}
.promo-price {
  line-height: 1.28;
}
.promo-amount {
  padding: 5px 10px;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  min-width: 67px;
  background-color: var(--third);
  line-height: 1;
  color: var(--text);
}
.result-item-offer-more {
  border-top: 1px solid var(--grey-second);
  text-align: center;
}
.result-item-offer-more a {
  display: inline-block;
  padding: 16px 16px 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: bold;
}
.result-item-offer-more a:after {
  content: "";
  display: inline-block;
  position: relative;
  top: 1px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  transform: rotate(45deg);
}
.result-item-offer-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.result-item-offer-action .btn {
  min-width: 112px;
  font-weight: bold;
}
.result-item-offer-action .btn:not(.active) .select {
  display: none;
}
.result-item-offer-action .btn.active .choisir {
  display: none;
}
.result-item-offer-action .btn .choisir,
.result-item-offer-action .btn .select {
  pointer-events: none;
}
@media (min-width: 767px) {
  .result-item {
    position: relative;
    display: flex;
    margin-bottom: 28px;
    padding: 20px;
  }
  .result-item-glide {
    min-width: 48%;
    width: 48%;
  }
  .result-item-content {
    max-width: 52%;
    display: flex;
    flex-grow: 2;
    flex-direction: column;
    padding-left: 28px;
  }
  .result-item-title {
    margin-bottom: 14px;
    font-size: 2.7rem;
  }
  .result-item-label {
    position: absolute;
    top: 28px;
    left: calc(48% - 9px);
    transform: translateX(-100%);
  }
  .result-item-meta {
    display: flex;
    justify-content: space-between;
  }
  .result-item-offer {
    padding-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .results-items-offer-infos {
    padding: 2px 0;
  }
  .results-items-offer-infos div {
    font-size: 1.9rem;
  }
  .result-item-offer-details {
    display: flex;
    justify-content: space-between;
  }
  .result-item-offer-specifities {
    padding-top: 7px;
  }
  .result-item-offer-specifities p {
    padding-top: 7px;
    line-height: 1;
    color: var(--text-third);
  }
  .result-item-offer-price {
    margin-top: -25px;
    text-align: right;
  }
  .result-item-offer-price-promo {
    justify-content: flex-end;
    margin-left: auto;
  }
  .promo {
    margin-bottom: 9px;
  }
  .result-item-offer-price-promo .promo {
    margin-bottom: 0;
    margin-right: 12px;
  }
  .promo-amount {
    display: inline-block;
  }
  .result-item-offer-more {
    margin-top: auto;
  }
  .result-item-offer-more a {
    padding: 16px 16px 0 16px;
  }
  .result-item-offer.selected {
    background-color: var(--bgblue);
  }
}
@media (max-width: 768px) {
  .result-item-glide .glide__arrows {
    display: none;
  }
  .result-item-title sup {
    top: -3px;
  }
  .result-item-rating {
    margin-top: 11px;
  }
  .result-item-label {
    margin-left: auto;
    margin-right: 10px;
  }
  .result-item-offer-more {
    margin-top: 13px;
  }
  .result-item-offer-price {
    margin-top: 13px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .result-item-offer-price-promo {
    margin-bottom: 8px;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .promo-amount {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .promo {
    margin-left: 8px;
    font-size: 1.4rem;
  }
  .result-item-offer-specifities {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.3rem;
  }
  .result-item-offer-specifities p:last-child {
    margin-top: 8px;
  }
  .result-item-offer-action {
    position: absolute;
    bottom: 18px;
    right: 0;
  }
}
.support-contact-tel {
  margin: 17px 0 8px;
  font-size: 3.2rem;
  font-weight: bold;
}
.support-available {
  position: relative;
  margin-bottom: 15px;
  padding-left: 23px;
  font-size: 1.8rem;
  font-weight: 600;
}
.support-available:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 13px;
  background-color: red;
}
.support-available.available:before {
  background-color: var(--main);
}
.support-hours {
  color: var(--text-grey);
  font-size: 1.5rem;
}
.support-trustpilot-stars {
  display: flex;
}
.support-trustpilot-stars svg {
  width: 25px;
  margin-right: 2px;
}
.trustpilot-logo {
  width: 77px;
}
.support-trustpilot-stars {
  margin: 11px 0 16px;
}
.support-trustpilot-content {
  font-size: 1.4rem;
}
.support-trustpilot-name {
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
}
.support .glide__arrow,
.support .glide__arrow.glide__arrow--disabled {
  background-color: var(--white);
}
.support .glide__arrow svg path {
  fill: var(--text);
}
.support .glide__arrow.glide__arrow--disabled svg path {
  fill: var(--text-grey);
}
@media (min-width: 768px) {
  .support {
    padding: 70px 0 60px;
  }
  .support-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 370px calc(100% - 403px);
    grid-column: auto;
    grid-gap: 33px;
  }
  .support-glide {
    padding: 0 96px;
  }
  .support-glide .glide__bullets {
    display: none;
  }
}
@media (max-width: 767px) {
  .support-trustpilot {
    overflow: hidden;
  }
  .support-glide {
    padding: 30px 84px 56px 16px;
  }
  .support-glide .glide__track {
    overflow: visible;
  }
  .support-glide .glide__arrows {
    display: none;
  }
  .support-glide .glide__bullets {
    padding-top: 40px;
    padding-left: 68px;
  }
  .support .container {
    max-width: 100%;
  }
  .support .container .title-border {
    max-width: 280px;
    margin: auto;
  }
  .support-contact {
    margin-top: 37px;
    padding: 0 16px;
  }
}
.card-glide {
  position: relative;
  padding: 0 10px;
  margin-bottom: 26px;
}
.card-glide .glide__slides {
  padding: 10px 0;
}
.card-glide .glide__slide {
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-glide .glide__slide img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.card-glide__slide-content {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  padding: 25px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-glide-border .card-glide__slide-content {
  border: 1px solid var(--grey);
  border-top: 0;
}
.card-glide-shadow .card-glide__slide-content {
  background-color: var(--white);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}
.card-glide__slide-content-title {
  margin-bottom: 20px;
}
.card-glide__slide-content-info {
  margin-bottom: 11px;
}
.card-glide .discount {
  position: absolute;
  right: 8px;
  top: 8px;
}
.card-glide .discount-flash {
  position: absolute;
  right: 80px;
  top: 8px;
}
.card-tags {
  position: absolute;
  z-index: 3;
  right: 12px;
  top: 12px;
  padding: 2px 8px;
  background-color: var(--white);
  border-radius: 2px;
  font-size: 1.4rem;
  font-weight: bold;
}
.card-link {
  margin-top: auto;
  padding-top: 13px;
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .card-slide-container {
    overflow: hidden;
  }
  .card-glide .glide__arrows {
    display: none;
  }
  .card-glide .glide__track {
    overflow: visible;
  }
}
@media (min-width: 768px) {
  .noGlide .glide__arrows {
    display: none !important;
  }
  .card-glide .glide__bullets {
    display: none;
  }
  .card-glide .glide__arrows {
    width: calc(100% + 34px);
    left: -18px;
  }
}
.glide__slide {
  height: auto !important;
}
.glide__arrows {
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
}
.glide__arrow {
  border: 0;
  width: 47px;
  height: 47px;
  border-radius: 48px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  cursor: pointer;
}
.glide__arrow.glide__arrow--disabled {
  background-color: #e3e3e3;
  cursor: default;
}
.glide__arrow svg {
  width: 22px;
}
.glide__arrow svg path {
  fill: var(--white);
}
.result-item-glide .glide__arrows {
  padding: 0 8px;
}
.result-item-glide .glide__arrow {
  padding: 5px;
  width: 24px;
  height: 24px;
}
.glide__bullets {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.glide__bullet {
  display: block;
  cursor: pointer;
  margin: 0 4px;
  padding: 0;
  border: 0;
  width: 7px;
  height: 7px;
  border-radius: 8px;
  background-color: #e3e3e3;
}
.glide__bullet.glide__bullet--active {
  background-color: var(--accent);
}
@media (min-width: 768px) {
  .glide__bullets {
    margin-top: 42px;
  }
}
.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 4px;
  top: -2px;
}
.tooltip svg {
  position: relative;
  top: 3px;
  width: 13px;
}
.tooltip:hover .tooltip-content,
.tooltip:focus .tooltip-content {
  display: block;
}
.tooltip-content {
  display: none;
  position: absolute;
  z-index: 2;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -100%);
  background: var(--white);
  padding: 20px;
  width: 326px;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.21);
}
.tooltip-content:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: calc(50% - 8px);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 8px 0;
  border-color: var(--white) transparent transparent transparent;
}
.tooltip-content b {
  margin-left: 3px;
}
.tooltip-content span {
  display: block;
  font-size: 1.3rem;
  white-space: break-spaces;
  white-space: normal;
  text-align: left;
}
.tooltip-content > span + span {
  margin-top: 16px;
}
.blog {
  padding: 50px 0;
}
.blog-glide {
  margin-top: 37px;
}
.blog .blog-post {
  background-color: var(--white);
}
.blog-post a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--text);
}
.blog-content {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  padding: 30px 23px;
}
.blog-content .h3 {
  margin: 8px 0 10px;
}
.blog-post img {
  width: 100%;
}
.read-more {
  margin-top: auto;
  padding-top: 25px;
}
.read-more span {
  position: relative;
  display: inline-block;
  padding-right: 22px;
  text-decoration: none;
  color: var(--main);
  font-weight: 600;
}
.read-more span:after {
  content: "";
  position: absolute;
  top: 7px;
  right: 4px;
  width: 7px;
  height: 7px;
  transition: right 0.4s;
  border-top: 2px solid var(--main);
  border-right: 2px solid var(--main);
  transform: rotate(45deg);
}
.read-more span:hover:after {
  right: 0;
}
.result-item-glide .glide__bullets {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  margin-bottom: 30px;
}
.result-item-glide .glide__bullet {
  background-color: rgba(255, 255, 255, 0.6);
}
.result-item-glide .glide__bullet.glide__bullet--active {
  background-color: var(--white);
}
@media (max-width: 767px) {
  .blog {
    overflow: hidden;
  }
  .blog .blog-glide {
    padding: 0 10px;
  }
  .blog .glide__track {
    overflow: visible;
  }
  .blog .glide__bullet {
    background-color: var(--dark-grey);
  }
  .blog .glide__bullet.glide__bullet--active {
    background-color: var(--white);
  }
}
@media (min-width: 768px) {
  .blog {
    padding-top: 87px;
  }
  .blog .glide__bullets {
    display: none;
  }
  .blog-content {
    padding: 40px 33px;
  }
}
.inspiration a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.5rem;
}
.inspiration-glide {
  margin-top: 45px;
}
.inpiration-content {
  padding: 13px 24px 24px;
  background-color: var(--white);
}
.inspiration-title {
  margin-bottom: 5px;
  font-size: 2.1rem;
  font-weight: 600;
}
.inspiration-list {
  background-color: var(--white);
}
.inspiration-list-image img {
  width: 100%;
}
@media (max-width: 767px) {
  .inspiration {
    overflow: hidden;
  }
  .inspiration .inspiration-glide {
    padding: 0 10px;
  }
  .inspiration .glide__track {
    overflow: visible;
  }
}
@media (min-width: 768px) {
  .inspiration {
    padding: 55px 0 58px;
  }
  .inspiration .glide__bullets {
    display: none;
  }
}
.tab-toggle {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 27px 30px 27px 10px;
  line-height: 1.2;
  border: solid 1px var(--second);
  font-weight: bold;
}
.tab-toggle.active {
  background-color: var(--bgblue);
}
.tab-toggle:after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  height: 9px;
  width: 9px;
  border-top: 3px solid var(--text);
  border-right: 3px solid var(--text);
}
.tab-toggle:not(:last-child) {
  border-bottom: 0;
}
.accordion-content {
  display: none;
}
.accordion-content.active {
  display: block;
}
.accordion-link {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  font-weight: bold;
  text-decoration: none;
}
.accordion-link-content.active {
  padding: 10px 0 15px;
}
.accordion-link:after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-75%) rotate(135deg);
  height: 8px;
  width: 8px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}
.faq-toggle {
  display: flex;
  align-items: center;
  border-color: var(--light);
  border-left: 8px solid var(--white);
  background-color: var(--white);
}
.faq-toggle.active {
  border-left-color: var(--main);
  color: var(--main);
  background-color: var(--white);
}
.faq-toggle:not(.active):before {
  content: "";
  pointer-events: none;
  transform: rotate(90deg);
  position: absolute;
  right: 18px;
  top: 50%;
  height: 2px;
  width: 18px;
  background-color: var(--text);
}
.faq-toggle svg {
  margin-right: 15px;
  max-width: 28px;
  max-height: 28px;
  fill: var(--text-third);
}
.faq-toggle:after {
  right: 18px;
  top: 50%;
  height: 2px;
  width: 18px;
  background-color: var(--text);
  border: 0;
  transform: none;
}
.faq-toggle.active:after {
  transform: none !important;
}
.faq-content input {
  width: 0;
  height: 0;
  opacity: 0;
}
.faq-content .faq-question {
  margin-bottom: 12px;
  background-color: var(--white);
}
.faq-content .faq-question:last-child {
  margin-bottom: 0;
}
.faq-question label {
  position: relative;
  display: block;
  padding: 11px 40px 11px 20px;
  font-weight: 600;
  font-size: 1.5rem;
}
.faq-question label:after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  height: 9px;
  width: 9px;
  border-top: 1px solid var(--text);
  border-right: 1px solid var(--text);
}
.faq-response {
  max-height: 0;
  overflow: hidden;
  font-size: 1.5rem;
}
.faq-response p + p {
  margin-top: 15px;
}
.faq-content input:checked + .faq-question .faq-response {
  max-height: 800px;
  padding: 15px 20px;
  border-top: 1px solid var(--light);
  overflow: scroll;
}
.faq-content input:checked + .faq-question label:after {
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .grid-accordion {
    display: flex;
    flex-direction: column;
  }
  .tab-content.active {
    padding: 10px 7px;
    border: solid 1px var(--second);
    border-bottom: 0;
  }
  .faq-content.active {
    border-top-color: var(--light);
  }
  .tab-toggle.active:after {
    transform: translateY(-30%) rotate(-45deg);
  }
  .grid-accordion > div:last-of-type {
    border-bottom: solid 1px var(--second);
    border-top: 0;
  }
  .grid-accordion > a:nth-of-type(1) {
    order: 10;
  }
  .grid-accordion > div:nth-of-type(1) {
    order: 11;
  }
  .grid-accordion > a:nth-of-type(2) {
    order: 20;
  }
  .grid-accordion > div:nth-of-type(2) {
    order: 21;
  }
  .grid-accordion > a:nth-of-type(3) {
    order: 30;
  }
  .grid-accordion > div:nth-of-type(3) {
    order: 31;
  }
  .grid-accordion > a:nth-of-type(4) {
    order: 40;
  }
  .grid-accordion > div:nth-of-type(4) {
    order: 41;
  }
  .grid-accordion > a:nth-of-type(5) {
    order: 50;
  }
  .grid-accordion > div:nth-of-type(5) {
    order: 51;
  }
  .grid-accordion > a:nth-of-type(6) {
    order: 60;
  }
  .grid-accordion > div:nth-of-type(6) {
    order: 61;
  }
  .grid-accordion > a:nth-of-type(7) {
    order: 70;
  }
  .grid-accordion > div:nth-of-type(7) {
    order: 71;
  }
  .grid-accordion > a:nth-of-type(8) {
    order: 80;
  }
  .grid-accordion > div:nth-of-type(8) {
    order: 81;
  }
  .grid-accordion > a:nth-of-type(9) {
    order: 90;
  }
  .grid-accordion > div:nth-of-type(9) {
    order: 91;
  }
  .grid-accordion > a:nth-of-type(10) {
    order: 100;
  }
  .grid-accordion > div:nth-of-type(10) {
    order: 101;
  }
  .grid-accordion > a:nth-of-type(11) {
    order: 110;
  }
  .grid-accordion > div:nth-of-type(11) {
    order: 111;
  }
  .grid-accordion > a:nth-of-type(12) {
    order: 120;
  }
  .grid-accordion > div:nth-of-type(12) {
    order: 121;
  }
}
@media (min-width: 768px) {
  .grid-accordion {
    position: relative;
    overflow: auto;
  }
  .faq {
    padding-top: 47px;
  }
  .faq-accordion {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 97px;
  }
  .faq-heading-text {
    margin-bottom: 22px;
    font-size: 2.6rem;
  }
  .tab-toggle {
    padding: 27px 22px;
    width: 32%;
    float: left;
    clear: left;
  }
  .tab-toggle.active {
    background-color: var(--bgblue);
  }
  .tab-content {
    float: right;
    order: 99;
    width: 63.3%;
    font-size: 1.8rem;
  }
  .faq-accordion:last-child:after {
    content: "";
    z-index: -1;
    display: block;
    position: absolute;
    bottom: 97px;
    width: 32%;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  }
  .faq-question label {
    padding: 18px 22px;
    font-size: 1.7rem;
  }
  .faq-question label:after {
    height: 14px;
    width: 14px;
    border-top: 2px solid var(--text);
    border-right: 2px solid var(--text);
  }
  .faq-response {
    font-size: 1.6rem;
  }
  .faq-content input:checked + .faq-question .faq-response {
    margin: 0 23px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 35px;
  }
}
.column-list {
  padding: 24px 0;
}
.column-list .list {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .column-list {
    display: flex;
    padding: 70px 0;
  }
  .column-list > div {
    margin: 16px 55px 0 0;
    white-space: nowrap;
  }
  .column-list ul {
    columns: 2;
    column-gap: 10%;
  }
}
.cropped-list-checkbox {
  position: relative;
  opacity: 0;
  z-index: -1;
  opacity: 0;
  width: 0;
  height: 1px;
}
@media (max-width: 767px) {
  .cropped-list li {
    display: none;
  }
  input:checked + .cropped-list li,
  .cropped-list li:first-child,
  .cropped-list li:nth-child(2) {
    display: list-item;
  }
  .cropped-list-more {
    display: inline-block;
    padding-right: 25px;
    position: relative;
    font-weight: bold;
  }
  .cropped-list-more:after {
    content: "";
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-75%) rotate(135deg);
    height: 8px;
    width: 8px;
    border-top: 2px solid var(--text);
    border-right: 2px solid var(--text);
  }
  input:checked + .cropped-list + p .cropped-list-more:after {
    transform: translateY(-25%) rotate(-45deg);
  }
  .cropped-list-more-open {
    display: none;
  }
  input:checked + .cropped-list + p .cropped-list-more .cropped-list-more-open {
    display: block;
  }
  input:checked
    + .cropped-list
    + p
    .cropped-list-more
    .cropped-list-more-closed {
    display: none;
  }
}
@media (min-width: 768px) {
  .cropped-list-more {
    display: none;
  }
}
.reviews {
  padding: 17px 0 11px;
  background-color: var(--text);
  color: var(--white);
  text-align: center;
}
.reviews-note {
  border: 1px solid var(--text);
  padding: 21px 25px;
}
.reviews-note-title {
  margin-bottom: 8px;
  font-size: 1.9rem;
  font-weight: bold;
  font-family: var(--ff-title), serif;
}
.review-note-number {
  display: flex;
  align-items: flex-end;
  color: var(--main);
  font-weight: bold;
  font-family: var(--ff-title), serif;
  font-size: 3rem;
  line-height: 1.6;
}
.review-note-result {
  margin-bottom: -8px;
  margin-right: 3px;
  font-size: 5.5rem;
}
.reviews-starts-container {
  display: flex;
}
.reviews-stars {
  position: relative;
  padding-bottom: 17px;
  letter-spacing: 4px;
}
.reviews-stars-base svg {
  fill: var(--grey-second);
}
.reviews-stars-note {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
}
.reviews-stars-note svg {
  fill: var(--main);
}
.review {
  margin-bottom: 19px;
  border-bottom: 1px solid var(--grey);
  padding-bottom: 19px;
}
.review .reviews-stars {
  letter-spacing: -1px;
}
.review-content {
  font-weight: 600;
}
.review-meta {
  margin-top: 19px;
}
.review-meta svg {
  position: relative;
  top: 3px;
}
.more-review span {
  position: relative;
  padding-right: 25px;
  font-weight: bold;
}
.more-review span:after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-75%) rotate(135deg);
  height: 8px;
  width: 8px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}
@media (min-width: 768px) {
  .reviews {
    padding: 28px 0 20px;
  }
}
.modal-mahii {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(31, 32, 38, 0.7);
  z-index: 99;
}
.modal-mahii-content {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1233px;
  max-width: 100%;
  background-color: #fff;
  overflow: auto;
}
.modal-small .modal-mahii-content {
  width: 458px;
}
.modal-mahii-content-inner {
  padding: 0 15px;
  color: #000;
}
.modal-mahii-header-title {
  font-size: 1.8rem;
  font-family: var(--ff-title);
  font-weight: 600;
  color: var(--text);
}
.close-icon {
  position: absolute;
  top: 22px;
  right: 28px;
  cursor: pointer;
  font-size: 4rem;
  color: #000;
}
.animate-modal {
  display: block !important;
  opacity: 0;
  animation: fadeIn 0.4s ease-in-out 1 forwards;
}
.animated-modal {
  display: block !important;
  opacity: 1;
}
.animate-out-modal {
  display: block !important;
  animation: fadeIn 0.4s ease-in-out 1 reverse backwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .modal-mahii-header {
    padding: 22px 16px;
    border-bottom: 1px solid var(--grey);
  }
  .modal-mahii-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  .modal-mahii-content-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .close-icon {
    top: 28px;
  }
  .modal-mahii-content {
    top: 10vh;
    padding: 45px 55px 65px;
    overflow: hidden;
    max-height: 80vh;
  }
  .modal-mahii-content-inner {
    width: calc(100% + 40px);
    margin-left: -20px;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
  }
  .modal-mahii-header-title {
    margin-bottom: 30px;
    font-size: 2.6rem;
  }
  .modal-mahii-content .card-glide {
    padding: 0;
  }
  .modal-mahii-content .glide__track {
    overflow: visible;
  }
}
.shadow-box {
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
}
.shadow-box-title {
  margin-bottom: 10px;
  font-size: 22px;
}
@media (max-width: 767px) {
  .shadow-box img {
    margin-bottom: 14px;
  }
}
@media (min-width: 768px) {
  .shadow-box {
    display: grid;
    grid-template-columns: 189px auto;
    grid-gap: 25px;
  }
}
.select-box-header-desktop {
  padding: 15px 16px;
  background-color: var(--text-third);
  color: var(--white);
  font-family: var(--ff-title), sans-serif;
  font-weight: bold;
  text-align: center;
}
.select-box-header-desktop-name {
  display: block;
  font-size: 1.4rem;
  color: #d6f4ef;
}
.select-box-list {
  height: calc(100vh - 180px);
  overflow: auto;
  padding-bottom: 80px;
}
.select-box-nav {
  display: grid;
  grid-template-columns: 70px auto 70px;
  padding: 19px 0;
  border: solid 1px var(--grey);
  text-align: center;
  font-family: var(--ff-title), sans-serif;
  font-weight: bold;
}
.prev-month,
.next-month {
  position: relative;
  cursor: pointer;
}
.prev-month:after {
  content: "";
  display: inline-block;
  position: relative;
  top: 1px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  transform: rotate(-135deg);
}
.next-month:after {
  content: "";
  display: inline-block;
  position: relative;
  top: 1px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  transform: rotate(45deg);
}
.select-box-list-item {
  position: relative;
  padding: 6px 0;
  display: grid;
  grid-template-columns: 60px auto 150px;
  cursor: pointer;
}
.select-box-list-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 11px;
  width: calc(100% - 22px);
  bottom: 0;
  height: 1px;
  background-color: var(--grey);
}
.select-box-list-item:hover,
.select-box-list-item:focus {
  background-color: var(--text);
  color: var(--white);
}
.select-box-list-item:hover:after,
.select-box-list-item:focus:after {
  display: none;
}
.select-box-list-item.disabled {
  background-color: var(--light-grey);
}
.select-box-list-date {
  text-align: center;
  font-family: var(--ff-title), sans-serif;
  line-height: 1.2;
}
.select-box-list-item.disabled .select-box-list-date {
  color: var(--text-grey);
  cursor: default;
}
.select-box-list-day {
  display: block;
  font-size: 1.3rem;
}
.select-box-list-day-number {
  font-weight: bold;
}
.select-box-list-price {
  padding-right: 7px;
  text-align: right;
  line-height: 1.1;
}
.select-box-list-item.disabled .select-box-list-price {
  align-self: center;
  font-weight: bold;
  color: var(--text-grey);
}
.select-box-list-price-detail {
  font-family: var(--ff-title), sans-serif;
}
.select-box-list-price span {
  font-size: 1rem;
}
.select-box-list-price .select-box-list-price-amount {
  font-weight: bold;
  font-size: 1.8rem;
}
.select-box-list-price del {
  font-size: 1.2rem;
}
.select-box-list-journey-end {
  color: var(--text-third);
  font-size: 1.1rem;
}
.select-box-list-item:hover .select-box-list-journey-end,
.select-box-list-item:focus .select-box-list-journey-end {
  color: var(--dark-vd);
}
.select-box-list-promo {
  padding-right: 14px;
  color: var(--main);
  text-align: right;
  font-weight: bold;
}
.select-box-footer {
  padding: 11px 6px;
  width: 100%;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .select-box {
    box-shadow: 0 2px 9px 0 rgba(126, 126, 126, 0.27);
    border-radius: 4px;
    overflow: hidden;
  }
  .select-box-list {
    max-height: 293px;
    padding-bottom: 0;
  }
  .select-box-footer {
    padding: 17px 20px;
    border-top: 1px solid var(--grey);
  }
  .select-box-footer .submit-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .select-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 999;
  }
  .select-box-header {
    padding: 22px 16px;
    font-weight: bold;
    font-size: 1.8rem;
  }
  .select-box-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.18);
  }
}
:root {
  --text: #0a485d;
  --text-second: #11284b;
  --text-third: #2a6c83;
  --text-grey: #a4a4a4;
  --title: #253a5a;
  --accent: #1f5e74;
  --main: #32bca6;
  --dark-vd: #bad5e0;
  --vert-deau: #93dad0;
  --very-dark-vd: #6095a4;
  --bgblue: #e7f3f8;
  --lightblue: #78b2c9;
  --second: #75abbb;
  --third: #b5f1e7;
  --light: #eff4f6;
  --white: #fff;
  --dark-grey: #757575;
  --light-grey: #f5f5f5;
  --grey: #c6c6c6;
  --grey-second: #d5d5d5;
  --ff-text: "Proxima Nova", sans-serif;
  --ff-title: "Century Gothic", sans-serif;
  --fz-text: 1.6rem;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/hinted-CenturyGothic-Bold.woff2") format("woff2"),
    url("../fonts/hinted-CenturyGothic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/subset-CenturyGothic.woff2") format("woff2"),
    url("../fonts/subset-CenturyGothic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/hinted-ProximaNova-Bold.woff2") format("woff2"),
    url("../fonts/hinted-ProximaNova-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/hinted-ProximaNova-Regular.woff2") format("woff2"),
    url("../fonts/hinted-ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/hinted-ProximaNova-Semibold.woff2") format("woff2"),
    url("../fonts/hinted-ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
html {
  font-size: 62.5%;
}
body {
  font-size: var(--fz-text);
  font-family: var(--ff-text), serif;
  color: var(--text);
  line-height: 1.375;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--ff-title), sans-serif;
  font-weight: bold;
}
.h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}
.h1 small {
  display: inline-block;
  margin-top: 14px;
  font-size: 1.9rem;
  line-height: normal;
}
.h2 {
  font-size: 2.6rem;
}
.h3 {
  font-size: 2.4rem;
}
.h4 {
  font-size: 2rem;
}
.h5 {
  font-size: 1.8rem;
}
.h6 {
  font-size: 2.2rem;
}
.h7 {
  font-size: 2.4rem;
}
.h8 {
  font-size: 1.9rem;
}
.text-xs {
  font-size: 1.4rem;
}
.text-center {
  text-align: center;
}
.title-border:after {
  content: "";
  display: block;
  margin-top: 16px;
  width: 47px;
  height: 6px;
  background-color: var(--main);
}
.text-center.title-border:after {
  margin-left: auto;
  margin-right: auto;
}
b,
strong {
  font-weight: bold;
}
sup {
  position: relative;
  top: -0.8em;
  font-size: 0.45em;
  letter-spacing: 1px;
}
a {
  color: var(--text);
}
.list {
  margin: 16px 0;
  padding-left: 20px;
  list-style: disc;
}
.white {
  color: var(--white);
}
.text-grey {
  color: var(--dark-grey);
}
.title-bg .h2 {
  display: inline-block;
  background-color: var(--text);
  padding: 17px 36px;
  color: var(--white);
  min-width: 203px;
}
.text-content p {
  margin-bottom: 18px;
}
.hotel-line {
  font-weight: bold;
  color: var(--text-second);
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.hotel-line span {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center;
  }
  .text-center-mobile.title-border:after {
    margin-left: auto;
    margin-right: auto;
  }
  .title-bg .h2 {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .text-column-2 {
    columns: 2;
    column-gap: 20px;
  }
  .h1 {
    font-size: 4.6rem;
    line-height: 1.2;
  }
  .h1 small {
    font-size: 3.6rem;
  }
  .h2 {
    font-size: 3.2rem;
  }
  .h6 {
    font-size: 2.7rem;
  }
  .h8 {
    font-size: 1.9rem;
  }
  .text-center-desktop {
    text-align: center;
  }
  .text-center-desktop.title-border:after {
    margin-left: auto;
    margin-right: auto;
  }
  .title-bg .h2 {
    display: inline-block;
    background-color: var(--text);
    min-width: 367px;
    text-align: center;
    padding: 38px 36px;
    color: var(--white);
  }
}
[onclick] {
  cursor: pointer;
}
.btn {
  display: inline-block;
  padding: 9px 9px 9px 11px;
  border-radius: 4px;
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.btn:not(.btn-icon) svg {
  margin-left: 8px;
  margin-bottom: -3px;
  width: 14px;
  fill: var(--white);
}
.btn-secondary {
  background-color: var(--main);
}
.btn-light {
  background-color: var(--white);
  color: var(--text);
}
.btn-telephone {
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 38px;
  border: 2px solid var(--lightblue);
  font-weight: bold;
  text-decoration: none;
  color: var(--text-third);
  font-size: 1.6rem;
  cursor: pointer;
}
.btn-telephone span {
  line-height: 1;
  padding-left: 8px;
}
.btn-telephone svg {
  fill: var(--text-third);
  width: 16px;
  height: 18px;
}
.submit-btn {
  display: inline-block;
  padding: 17px 40px;
  border-radius: 4px;
  font-family: var(--ff-title), sans-serif;
  font-size: 1.8rem;
  background: var(--main);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
.submit-btn-light {
  display: inline-block;
  padding: 17px 40px;
  border: 1px solid var(--text);
  border-radius: 4px;
  background-color: var(--white);
  font-family: var(--ff-title), sans-serif;
  font-size: 1.8rem;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
.submit-btn[disabled] {
  background-color: var(--light-grey);
  color: var(--text-grey);
}
@media (max-width: 767px) {
  .submit-btn-light,
  .submit-btn {
    width: 100%;
    padding: 17px 20px;
  }
}
@media (min-width: 1100px) {
  .btn-telephone {
    padding: 10px;
  }
}
.hero {
  position: relative;
}
.hero-content {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
}
.hero-content .container {
  height: 100%;
}
.hero-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 235px;
  height: 100%;
}
.hero-image img {
  width: 100%;
}
@media (min-width: 768px) {
  .hero-title {
    max-width: 387px;
  }
}


.presse-section {
  margin: 25px 0;
  border: 2px solid var(--main);
  border-radius: 15px;
  padding: 15px;
}

.presse-title {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.presse-list {
  list-style-type: none;
  padding-left: 0;
}

.presse-item {
  margin-bottom: 7px;
}
