#channelsBar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#channelsBar ul.channels {
  height: 70px;
  text-align: center;
}
#channelsBar ul.channels.is-calculated-onload > li {
  display: block;
}
#channelsBar ul.channels > li {
  display: none;
  flex: 0 0 auto;
  font-size: 0;
  position: relative;
}
#channelsBar ul.channels > li > a.redbold {
  color: #ff1d23;
  font-size: 15.96px;
  font-weight: 700;
}
#channelsBar ul.channels > li + li:after {
  display: block;
  content: "";
  background: #ccc;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 14px;
  margin-top: -7px;
}
#channelsBar ul.channels > li > button {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background: transparent;
  background-repeat: no-repeat;
  border: none;
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
  line-height: 1;
  user-select: none;
  pointer-events: all;
  border-radius: 0;
}
#channelsBar ul.channels > li > button,
#channelsBar ul.channels > li > button:hover,
#channelsBar ul.channels > li > button:focus,
#channelsBar ul.channels > li > button:active {
  outline: none;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}
#channelsBar ul.channels > li > a,
#channelsBar ul.channels > li > button {
  height: 70px;
  line-height: 70px;
  padding: 0 20px;
}
#channelsBar ul.channels > li a,
#channelsBar ul.channels > li button {
  display: block;
  font-size: 1.14rem;
  color: #666;
  white-space: nowrap;
  transition: all .2s;
}
#channelsBar ul.channels > li a:hover,
#channelsBar ul.channels > li button:hover,
#channelsBar ul.channels > li a:focus,
#channelsBar ul.channels > li button:focus {
  color: #333;
}
#channelsBar ul.channels > li a.is-selected,
#channelsBar ul.channels > li button.is-selected {
  font-weight: bold;
  color: #e04f00;
  cursor: default;
  pointer-events: none;
}
#channelsBar ul.channels > li.more-channels {
  position: relative;
}
#channelsBar ul.channels > li.more-channels .icon {
  width: 1rem !important;
  height: 1rem !important;
  margin-left: .5rem;
}
#channelsBar ul.channels > li.more-channels ul {
  display: none;
  position: absolute;
  top: 55px;
  right: 0;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  z-index: 100;
}
#channelsBar ul.channels > li.more-channels ul.is-open {
  display: block;
}
#channelsBar ul.channels > li.more-channels ul li a {
  padding: 15px 20px;
  text-align: left;
}
#channelsBar ul.channels > li.more-channels ul li + li {
  border-top: 1px solid #f0f0f0;
}
#channelsBar hr {
  margin: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#channels {
  position: relative;
  margin: 10px 40px 0 40px;
}
#channels .arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.5s;
}
#channels .arrow-left {
  left: -50px;
}
#channels .arrow-left:hover {
  transform: translateY(-50%) scale(1.4);
}
#channels .arrow-right {
  right: -50px;
}
#channels .arrow-right:hover {
  transform: translateY(-50%) scale(1.4);
}
#channels .arrow .icon {
  width: 3.5rem;
  height: 3.5rem;
}
#channels .channels-item {
  margin: 4px;
  width: 6.5rem;
  height: 100%;
}
@media (min-width: 900px) {
  #channels .channels-item {
    width: 7.5rem;
  }
}
@media (min-width: 1200px) {
  #channels .channels-item {
    width: 10rem;
  }
}
#channels .channels-item__img {
  border-radius: 50%;
  border: 2px solid #E8E8E8;
  width: fit-content;
}
@media (min-width: 1200px) {
  #channels .channels-item__img {
    border: 3px solid #E8E8E8;
  }
}
#channels .channels-item__img img {
  width: 6rem;
  height: 6rem;
  border: 1px solid white;
  border-radius: 50%;
  display: none;
  object-fit: cover;
}
@media (min-width: 900px) {
  #channels .channels-item__img img {
    width: 7rem;
    height: 7rem;
  }
}
@media (min-width: 1200px) {
  #channels .channels-item__img img {
    border: 2px solid white;
    width: 9.5rem;
    height: 9.5rem;
  }
}
#channels .channels-item__img img.isLoaded {
  display: block;
  animation: fadeIn 1s;
}
#channels .channels-item__img-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
}
@media (min-width: 900px) {
  #channels .channels-item__img-loader {
    width: 7rem;
    height: 7rem;
  }
}
@media (min-width: 1200px) {
  #channels .channels-item__img-loader {
    width: 9.5rem;
    height: 9.5rem;
  }
}
#channels .channels-item--active .channels-item__img {
  border: 3px solid #e04f00;
}
#channels .channels-item__label {
  margin: 2px auto 0;
  font-size: 10px;
  text-align: center;
  width: 86%;
  color: #333333;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  #channels .channels-item__label {
    font-size: 12px;
    margin: 4px auto 0;
  }
}
@media (min-width: 1200px) {
  #channels .channels-item__label {
    font-size: 14px;
    margin: 8px auto 0;
  }
}
#searchCarousel {
  height: auto;
  overflow: hidden;
  position: relative;
}
#searchCarousel .banners {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: relative;
}
#searchCarousel .banners a {
  opacity: 0;
  cursor: pointer;
  pointer-events: all;
  top: 0;
  margin: auto;
}
#searchCarousel .banners a h2 {
  font-size: 3.21rem;
  font-weight: normal;
  margin-top: 40px;
}
#searchCarousel .banners a p {
  font-size: 1.43rem;
  margin-top: 10px;
}
#searchCarousel .banners a img {
  width: 100%;
}
#searchCarousel > nav {
  pointer-events: none;
  position: relative;
}
#searchCarousel > nav.nav-bullets {
  top: -30px;
  z-index: 2;
  /* snowflake specific - start block */
  background-color: inherit !important;
  /* snowflake specific - end block */
}
#searchCarousel > nav button {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background: transparent;
  background-repeat: no-repeat;
  border: none;
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
  line-height: 1;
  user-select: none;
  pointer-events: all;
  border-radius: 0;
  display: block;
  transition: all 0.2s;
}
#searchCarousel > nav button,
#searchCarousel > nav button:hover,
#searchCarousel > nav button:focus,
#searchCarousel > nav button:active {
  outline: none;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}
#searchCarousel > nav button.close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 0;
}
#searchCarousel > nav ul {
  margin: 0;
  padding: 0;
  pointer-events: none;
  text-align: center;
}
#searchCarousel > nav ul,
#searchCarousel > nav ul li {
  height: 0;
  font-size: 0;
}
#searchCarousel > nav ul li {
  display: inline-block;
}
#searchCarousel > nav ul li + li {
  margin-left: 15px;
}
#searchCarousel > nav ul button {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #999;
}
#searchCarousel > nav ul button:hover,
#searchCarousel > nav ul button:focus {
  background-color: #666;
}
#searchCarousel > nav ul button.is-active {
  background-color: #e04f00;
  cursor: default;
}
@media (min-width: 992px) {
  #searchCarousel > nav ul button {
    width: 12px;
    height: 12px;
  }
}
.counter {
  position: absolute;
  top: calc(50% - 60px);
  width: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.counter.center {
  left: calc(50% - 130px);
}
.counter.left {
  left: 10%;
}
.counter.right {
  left: unset;
  right: 10%;
}
.counter h4 {
  color: #fff;
  font-size: 1em;
  text-transform: uppercase;
}
.counter .counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
  width: 100%;
}
.counter .counter-container > div {
  color: #fff;
  position: relative;
  margin-right: 20px;
  flex-basis: 19%;
  text-transform: uppercase;
}
.counter .counter-container > div:last-child {
  margin-right: 0;
}
.counter .counter-container > div .value {
  padding: 10px 6px;
  background-color: #666;
  font-size: 28px;
  text-align: center;
}
.counter .counter-container > div .title {
  padding: 4px 0;
  background-color: #333;
  text-align: center;
  font-size: 10px;
}
.counter .counter-container > div::after {
  content: ':';
  position: absolute;
  right: -28%;
  top: 16%;
  font-size: 20px;
  font-weight: bold;
}
.counter .counter-container > div:last-child {
  background-color: red;
}
.counter .counter-container > div:last-child:after {
  content: none;
}
#cancelation-banner {
  display: block;
  margin-bottom: 1.4rem;
}
#cancelation-banner .banner {
  display: flex;
  align-items: stretch;
  margin: 1.5rem -0.7rem 0;
}
#cancelation-banner .banner .banner-box {
  display: flex;
  padding: 1.5rem 1.5rem 1rem;
  border: 2px solid #e04f00;
  text-align: center;
  flex: 1;
  margin: 0 .7rem;
  position: relative;
  align-items: center;
}
#cancelation-banner .banner .banner-box strong {
  color: #e04f00;
}
#cancelation-banner .banner .banner-box:before {
  content: "";
  width: .5rem;
  height: 2.25rem;
  position: absolute;
  right: -0.4rem;
  background: #fff;
  top: 50%;
  margin-top: -1.12rem;
}
#cancelation-banner .banner .banner-box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .57rem 0 .57rem .57rem;
  border-color: transparent transparent transparent #e04f00;
  position: absolute;
  right: -0.4rem;
  margin-top: -0.58rem;
  top: 50%;
}
#cancelation-banner .banner .banner-box:last-child {
  flex: 1.6;
}
#cancelation-banner .banner .banner-box:last-child:before,
#cancelation-banner .banner .banner-box:last-child:after {
  display: none;
}
#cancelation-banner .banner p {
  line-height: 1.3;
}
#cancelation-banner .banner .banner-box-header {
  position: absolute;
  top: -0.9rem;
  left: 0;
  right: 0;
}
#cancelation-banner .banner .banner-box-header h3 {
  font-size: 1.5rem;
  color: #e04f00;
  background: #fff;
  white-space: nowrap;
  display: inline;
  padding: 0 .5rem;
}
#cancelation-banner .banner .banner-box-icon {
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cancelation-banner .banner .banner-box-subsection {
  display: flex;
  align-items: stretch;
  margin: 0 -0.5rem;
}
#cancelation-banner .banner .banner-box-subsection > div {
  min-width: 32%;
  flex: 1 0 0;
  margin: 0 .5rem;
}
#cancelation-banner .banner .banner-box-subsection .center-section {
  flex: 1.2;
}
@media (max-width: 1199px) {
  #cancelation-banner .banner .banner-box-header {
    top: -0.6rem;
  }
  #cancelation-banner .banner .banner-box-header h3 {
    font-size: 1.1rem;
  }
  #cancelation-banner .banner .banner-box:last-child {
    flex: 2;
  }
  #cancelation-banner .banner .banner-box-subsection {
    margin: 0 0 0 -1.2rem;
  }
  #cancelation-banner .banner .banner-box-subsection .center-section {
    flex: 1.8;
  }
}
#cancelation-banner .mobile-section {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}
#cancelation-banner .mobile-banner {
  margin: 1.5rem -1.7rem 0;
}
#cancelation-banner .mobile-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  font-family: Lato, Arial, Helvetica, sans-serif;
}
#cancelation-banner .mobile-header h3 {
  font-size: 1.1rem;
  color: #e04f00;
  margin: 10px 0;
}
#cancelation-banner .mobile-header strong {
  color: #e04f00;
}
#searchControlsHeader {
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}
#searchControlsHeader .view-controls {
  text-align: right;
}
#searchControlsHeader .view-controls > span,
#searchControlsHeader .view-controls .form-group,
#searchControlsHeader .view-controls nav {
  display: inline-block;
  vertical-align: middle;
}
#searchControlsHeader .view-controls .form-group {
  margin-bottom: 0;
  text-align: left;
}
#searchControlsHeader .view-controls > span {
  font-size: 1.05rem;
  color: #666;
  margin-right: 1rem;
}
#searchControlsHeader .view-controls nav {
  display: none;
  margin-left: 1.8rem;
}
#searchControlsHeader .view-controls nav button + button {
  margin-left: 1.15rem;
}
#searchControlsHeader .view-controls nav button {
  color: #999;
}
#searchControlsHeader .view-controls nav button:hover,
#searchControlsHeader .view-controls nav button:focus,
#searchControlsHeader .view-controls nav button:active {
  color: #808080;
}
#searchControlsHeader .view-controls nav button.is-active {
  color: #e04f00;
  cursor: default;
  pointer-events: none;
}
#searchControlsHeader .view-controls nav button.button-map .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2248%22%20height%3D%2250%22%20viewBox%3D%220%200%2048%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23ccc%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22mapwmarker-gray-lightsvg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h48v50H0z%22%2F%3E%3Cpath%20d%3D%22M37.334%2046.003H10.689c-3.669%200-6.679-2.981-6.679-6.59V15.639c0-3.633%203.01-6.59%206.679-6.59h1.976c-2.94%200-5.339%202.375-5.339%205.262v22.494c0%202.911%202.399%205.286%205.339%205.286h22.694c2.94%200%205.339-2.375%205.339-5.286V14.311c0-2.887-2.399-5.262-5.339-5.262h1.975c3.669%200%206.656%202.957%206.656%206.59v23.774c0%203.609-2.987%206.59-6.656%206.59zm-13.322-9.648c-1.162%200-1.696-.901-2.383-1.77-1.493-1.891-8.511-12.614-8.511-19.804%200-5.842%204.635-10.788%2010.894-10.788%206.213%200%2010.895%205.03%2010.895%2010.788%200%207.19-7.102%2018.03-8.485%2019.776-.748.946-1.303%201.798-2.41%201.798zm5.442-21.767c0-2.531-2.152-5.23-5.442-5.23-3.065%200-5.447%202.389-5.447%205.423%200%203.034%202.382%205.393%205.447%205.393%203.064%200%205.444-2.359%205.442-5.586z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
#searchControlsHeader .view-controls nav button.button-map.is-active .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2248%22%20height%3D%2250%22%20viewBox%3D%220%200%2048%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23e04f00%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22mapwmarker-acc1svg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h48v50H0z%22%2F%3E%3Cpath%20d%3D%22M37.334%2046.003H10.689c-3.669%200-6.679-2.981-6.679-6.59V15.639c0-3.633%203.01-6.59%206.679-6.59h1.976c-2.94%200-5.339%202.375-5.339%205.262v22.494c0%202.911%202.399%205.286%205.339%205.286h22.694c2.939%200%205.338-2.375%205.338-5.286V14.311c0-2.887-2.399-5.262-5.338-5.262h1.975c3.669%200%206.656%202.957%206.656%206.59v23.774c0%203.609-2.987%206.59-6.656%206.59zm-13.322-9.648c-1.162%200-1.696-.901-2.383-1.77-1.493-1.891-8.511-12.613-8.511-19.804%200-5.842%204.635-10.788%2010.894-10.788%206.213%200%2010.895%205.03%2010.895%2010.788%200%207.191-7.102%2018.03-8.485%2019.776-.748.946-1.303%201.798-2.41%201.798zm5.442-21.767c0-2.531-2.152-5.23-5.442-5.23-3.065%200-5.447%202.389-5.447%205.423%200%203.034%202.382%205.393%205.447%205.393%203.064%200%205.444-2.359%205.442-5.586z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
#searchControlsHeader .view-controls nav button.button-list .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2248%22%20viewBox%3D%220%200%2050%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23ccc%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22list-gray-lightsvg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h50v48H0z%22%2F%3E%3Cpath%20d%3D%22M39.008%2044.005H11.017C7.162%2044.005%204%2040.804%204%2036.874V11.146c0-3.906%203.162-7.131%207.017-7.131h27.991C42.862%204.015%2046%207.24%2046%2011.146v25.728c0%203.93-3.138%207.131-6.992%207.131zm3.533-30.037c0-3.15-2.52-5.72-5.608-5.72H13.092c-3.088%200-5.608%202.57-5.608%205.72v20.083c0%203.15%202.52%205.72%205.608%205.72h23.841c3.088%200%205.608-2.57%205.608-5.72V13.968zM23.913%2027.263h14.515v1.786H23.913v-1.786zm0-10.08h14.515v1.787H23.913v-1.787zm-10.337%208.293h7.004v7.144h-7.004v-7.144zm0-10.079h7.004v7.144h-7.004v-7.144z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
#searchControlsHeader .view-controls nav button.button-list.is-active .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2248%22%20viewBox%3D%220%200%2050%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23e04f00%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22list-acc1svg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h50v48H0z%22%2F%3E%3Cpath%20d%3D%22M39.008%2044.005H11.017c-3.855%200-7.017-3.2-7.017-7.131V11.146c0-3.906%203.162-7.131%207.017-7.131h27.991C42.862%204.015%2046%207.24%2046%2011.146v25.728c0%203.931-3.138%207.131-6.992%207.131zm3.533-30.037c0-3.15-2.52-5.72-5.608-5.72H13.092c-3.088%200-5.608%202.57-5.608%205.72v20.083c0%203.15%202.52%205.72%205.608%205.72h23.841c3.088%200%205.608-2.57%205.608-5.72V13.968zM23.913%2027.263h14.515v1.786H23.913v-1.786zm0-10.08h14.515v1.787H23.913v-1.787zm-10.337%208.293h7.004v7.144h-7.004v-7.144zm0-10.079h7.004v7.144h-7.004v-7.144z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
#searchControls {
  background: #f0f0f0;
  margin-bottom: 2rem;
}
#searchControls > hr {
  margin: 0;
  padding: 0;
}
#searchControls .w100 {
  width: 100%;
}
#searchControls .search-controls-rows,
#searchControls .search-controls-columns {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
#searchControls .search-controls-rows .search-control-container > div,
#searchControls .search-controls-columns .search-control-container > div {
  position: relative;
}
#searchControls .search-controls-rows .form-group,
#searchControls .search-controls-columns .form-group {
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}
#searchControls .search-controls-rows .search-price .control-label,
#searchControls .search-controls-columns .search-price .control-label {
  color: #666;
  font-size: .8rem;
  display: block;
}
#searchControls .search-controls-rows .search-dates,
#searchControls .search-controls-columns .search-dates {
  z-index: 300;
}
#searchControls .search-controls-rows .search-dates .search-dates-nights-count,
#searchControls .search-controls-columns .search-dates .search-dates-nights-count {
  position: absolute;
  bottom: 13px;
  right: 50px;
  color: #666;
  pointer-events: none;
}
#searchControls .search-controls-rows .search-slider-container,
#searchControls .search-controls-columns .search-slider-container {
  margin: 15px 15px;
}
#searchControls .search-controls-rows .search-slider-container .noUi-handle .sl-tooltip,
#searchControls .search-controls-columns .search-slider-container .noUi-handle .sl-tooltip {
  margin-top: 10px;
  font-size: .8rem;
  color: #666;
}
#searchControls .search-controls-rows .search-slider-container .noUi-pips,
#searchControls .search-controls-columns .search-slider-container .noUi-pips {
  font-size: .8rem;
  color: #666;
}
#searchControls .search-controls-rows .search-tour,
#searchControls .search-controls-columns .search-tour {
  display: none;
}
#searchControls .search-datepicker-calendar {
  display: none;
}
#searchControls .search-datepicker-calendar,
#searchControls .search-datepicker-calendar .pickmeup,
#searchControls .search-datepicker-calendar .pmu-instance {
  z-index: 300;
}
#searchTagsContainer {
  padding: 20px 0 20px 0;
}
#searchTagsContainer .tag-group {
  margin-bottom: 2rem;
  padding-left: 20px;
}
#searchTagsContainer .tag-group > label {
  cursor: pointer;
  display: block;
  border-radius: 5px;
  padding: 3px;
  padding-left: 25px;
  margin-bottom: 0.8rem;
}
#searchTagsContainer .tag-group > label::before {
  transform-origin: 25% 50%;
  border: 6px solid transparent;
  border-width: 6px 9px;
  border-left-color: black;
  transform: rotate(90deg);
  margin-left: -20px;
  width: 0;
  height: 0;
  display: inline-block;
  text-align: center;
  content: '';
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  position: absolute;
  margin-top: 1px;
}
#searchTagsContainer .tag-group.collapsed > label::before {
  transform: rotate(0deg);
}
#searchTagsContainer .tag-group ul {
  margin-top: 0;
  width: 100%;
}
#searchTagsContainer .tag-group ul li {
  width: 100%;
  display: inline-block;
  line-height: 1rem;
}
#searchTagsContainer ul.tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
#searchTagsContainer ul.tags.is-calculated-onload li {
  display: block;
}
#searchTagsContainer ul.tags.is-calculated-onload li.is-hidden {
  display: none;
}
#searchTagsContainer ul.tags li {
  flex: 0 0 auto;
  display: none;
  font-size: .8rem;
  color: #333;
  line-height: 1.5rem;
}
#searchTagsContainer ul.tags li.tags-label {
  line-height: 2.857rem;
}
#searchTagsContainer ul.tags li.tags-label strong {
  display: block;
  padding-right: 1.15rem;
}
#searchTagsContainer ul.tags .form-group {
  margin: 0;
  padding: 0;
  padding-right: 1.15rem;
}
#searchTagsContainer ul.tags .form-group p {
  color: #666;
}
#searchTagsContainer ul.tags button.btn-transparent {
  font-weight: normal;
  font-size: .8rem;
  text-decoration: underline;
}
.left-control {
  background-color: #000;
}
#searchListContainer > .tile.tile--offer {
  width: 49% !important;
}
.sl-tooltip {
  color: #fff !important;
}
@media (min-width: 992px) {
  #searchListContainer > .tile {
    width: 49% !important;
  }
  #searchListContainer > .tile:nth-of-type(even) {
    margin-left: 2%;
  }
  #searchListContainer > .tile:nth-of-type(odd) {
    margin-left: 0;
  }
}
.wh {
  color: #fff !important;
}
#searchListContainer > .tile:first-child,
#searchListContainer > .tile:nth-child(2) {
  margin-top: 0;
}
.box-highlighted {
  background-color: #444;
  padding: 20px;
  color: white;
}
.box-highlighted .control-label {
  display: block;
  text-align: left;
  font-weight: bold;
  font-size: .8rem;
  margin-bottom: 0.5rem;
}
.search-travel-composition {
  color: white;
}
.search-travel-composition .children-ages-container,
.search-travel-composition .room-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.search-travel-composition .room-select-item {
  width: 48%;
}
#searchChosenFilters {
  display: none;
}
#searchChosenFiltersContainer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#searchChosenFiltersContainer ul:before,
#searchChosenFiltersContainer ul:after {
  content: " ";
  display: table;
}
#searchChosenFiltersContainer ul:after {
  clear: both;
}
#searchChosenFiltersContainer li button {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background: transparent;
  background-repeat: no-repeat;
  border: none;
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
  line-height: 1;
  user-select: none;
  pointer-events: all;
  border-radius: 0;
  border-radius: .2rem;
  transition: all .2s;
}
#searchChosenFiltersContainer li button,
#searchChosenFiltersContainer li button:hover,
#searchChosenFiltersContainer li button:focus,
#searchChosenFiltersContainer li button:active {
  outline: none;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}
#searchChosenFiltersContainer li button span {
  vertical-align: middle;
}
#searchChosenFiltersContainer li button .icon {
  width: 1rem !important;
  height: 1rem !important;
  margin-left: .35rem;
}
#searchChosenFiltersContainer li button,
#searchChosenFiltersContainer li.chosen-filters-label {
  height: 1.86rem;
  line-height: 1.86rem;
  padding: 0 .7rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8rem;
}
#searchChosenFiltersContainer li.chosen-filters-label {
  color: #666;
}
#searchChosenFiltersContainer li.chosen-filters-label,
#searchChosenFiltersContainer li.chosen-filters-reset button {
  padding-left: 0;
  padding-right: 0;
}
#searchChosenFiltersContainer li:not(.chosen-filters-label):not(.chosen-filters-reset) button {
  background: #f0f0f0;
  border-bottom: .15rem solid #e0e0e0;
  color: #999;
}
#searchChosenFiltersContainer li:not(.chosen-filters-label):not(.chosen-filters-reset) button:hover,
#searchChosenFiltersContainer li:not(.chosen-filters-label):not(.chosen-filters-reset) button:focus {
  color: #878787;
  background: #e3e3e3;
  border-color: transparent transparent #cecece transparent;
}
#searchChosenFiltersContainer li.chosen-filters-reset button {
  color: #e04f00;
}
#searchChosenFiltersContainer li.chosen-filters-reset button:hover,
#searchChosenFiltersContainer li.chosen-filters-reset button:focus {
  color: #ff8847;
}
#searchChosenFiltersContainer li.chosen-filters-reset {
  display: none;
}
#searchChosenFiltersContainer li.chosen-filter {
  display: none;
}
#searchChosenFiltersContainer .view-controls.sortby {
  float: right;
}
#searchChosenFiltersContainer .view-controls.sortby label,
#searchChosenFiltersContainer .view-controls.sortby div.control {
  float: none;
  /* if you had floats before? otherwise inline-block will behave differently */
  display: inline-block;
  vertical-align: middle;
}
#searchChosenFiltersContainer {
  background: #fff;
  z-index: 200;
}
#searchChosenFiltersContainer hr {
  display: none;
}
#searchChosenFiltersContainer .form-group {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin-bottom: 1.4rem;
}
#searchChosenFiltersContainer .form-group .control-label {
  margin: 0;
  padding-right: 0.5rem;
}
#searchChosenFiltersContainer .search-rank-info {
  margin-top: 10px;
  margin-right: 15px;
  display: block;
  float: right;
}
#searchChosenFiltersContainer.is-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1rem 0;
  transition: top .5s ease;
  z-index: 400;
  transform: translateZ(0);
  border-bottom: 1px solid #e9e9eb;
  top: 60px;
}
#searchChosenFiltersContainer.is-fixed .colour-filters {
  margin-top: 0;
  margin-bottom: 0;
}
#searchChosenFiltersContainer.is-fixed hr {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  bottom: -0.35rem;
}
#searchChosenFiltersContainer.is-fixed .form-group {
  margin-bottom: 0;
}
#searchChosenFiltersContainer.is-fixed .row {
  align-items: center;
}
#searchChosenFiltersContainer.is-fixed .row ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#searchChosenFiltersContainer.is-fixed .row ul li {
  margin-bottom: 0.2rem;
}
#searchChosenFiltersContainer.is-fixed .row ul button {
  line-height: normal;
}
#searchChosenFiltersContainer.is-fixed .row ul .chosen-filters-label {
  height: auto;
}
@media (min-width: 992px) {
  body.has-usp #searchChosenFiltersContainer.is-fixed {
    top: 110px;
  }
}
#searchChosenFiltersContainer ul li {
  float: left;
}
#searchChosenFiltersContainer li {
  margin-bottom: .5rem;
  margin-right: .7rem;
}
#searchChosenFiltersContainer li button,
#searchChosenFiltersContainer li.chosen-filters-label {
  box-sizing: content-box;
  display: block;
}
#searchChosenFiltersContainer li:last-child {
  margin-right: 0;
}
#searchChosenFiltersContainer li.search-results-info {
  margin-right: 1.15rem;
  font-size: 1.15rem;
}
#searchChosenFiltersContainer li.search-results-info * {
  display: inline-block;
}
#searchChosenFiltersContainer li.search-results-info * + * {
  margin-left: .2rem;
}
@media (min-width: 993px) {
  #searchChosenFiltersContainer .colour-filters {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  #searchChosenFiltersContainer .colour-filters .row ul .chosen-filters-label {
    color: #333333;
  }
  #searchChosenFiltersContainer .colour-filters .row ul .chosen-filters-label .brand-color-dark-grey {
    font-weight: 500;
  }
  #searchChosenFiltersContainer .colour-filters .row ul .search-results-info {
    margin-right: 2rem;
  }
  #searchChosenFiltersContainer .colour-filters .btn-orange {
    background: linear-gradient(180deg, #FF5500 0%, #e04f00 100%) !important;
    border: none !important;
    border-radius: 5px;
    height: 2.143rem;
  }
  #searchChosenFiltersContainer .colour-filters .btn-orange span {
    color: white;
  }
  #searchChosenFiltersContainer .colour-filters .btn-orange .icon-close-acc1 {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2215%22%20viewBox%3D%220%200%2015%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Ccircle%20cx%3D%227.5%22%20cy%3D%227.5%22%20r%3D%227%22%20stroke%3D%22white%22%2F%3E%0A%3Crect%20x%3D%229.70898%22%20y%3D%224.40649%22%20width%3D%221.25%22%20height%3D%227.5%22%20transform%3D%22rotate(45%209.70898%204.40649)%22%20fill%3D%22white%22%2F%3E%0A%3Crect%20x%3D%2210.5938%22%20y%3D%229.70972%22%20width%3D%221.25%22%20height%3D%227.5%22%20transform%3D%22rotate(135%2010.5938%209.70972)%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    margin-bottom: .1rem;
  }
  #searchChosenFiltersContainer .colour-filters .form-group {
    margin-bottom: 0;
  }
  #searchChosenFiltersContainer .colour-filters .form-group .control-label {
    font-size: .8rem;
    margin-right: .75rem;
  }
  #searchChosenFiltersContainer .colour-filters .form-group .control {
    background: linear-gradient(180deg, #FF5500 0%, #e04f00 100%) !important;
    border-radius: 5px;
    border: none;
  }
  #searchChosenFiltersContainer .colour-filters .form-group .control p {
    color: white;
    font-weight: normal;
  }
  #searchChosenFiltersContainer .colour-filters .form-group .ctrl-select::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2229%22%20viewBox%3D%220%200%2050%2029%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill-opacity%3A0%7D.cls-3%2C.cls-4%7Bfill%3A%23fff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22triangle-down-whitesvg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h50v29H0z%22%2F%3E%3Cpath%20d%3D%22M4%204l21%2021L46%204H4z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    width: .7rem;
    height: .7rem;
    top: 55%;
  }
}
.tile {
  display: block;
  position: relative;
  margin-top: 1.43rem;
  width: 49%;
}
.tile:nth-of-type(odd) {
  float: left;
}
.tile:nth-of-type(even) {
  float: right;
}
@media (min-width: 992px) {
  .tile {
    width: 32%;
    margin-left: 2%;
    float: left !important;
  }
  .tile:nth-of-type(3n+1) {
    margin-left: 0;
  }
}
.tile .imagery,
.tile .imagery--placeholder {
  position: relative;
  background-color: #fff;
  transition: opacity .2s;
}
.tile .imagery .photo-bottom .reservations-quantity,
.tile .imagery--placeholder .photo-bottom .reservations-quantity,
.tile .imagery .photo-bottom .time-left,
.tile .imagery--placeholder .photo-bottom .time-left {
  margin-top: 0.4rem;
  margin-right: 0.4rem;
}
.tile .imagery .photo-bottom .time-left,
.tile .imagery--placeholder .photo-bottom .time-left {
  margin-left: 0.4rem;
}
.tile .description,
.tile .description > div,
.tile .description--placeholder {
  height: 9rem;
}
.tile:hover .imagery,
.tile:focus .imagery {
  opacity: .9;
}
.tile--offer .imagery,
.tile--image .imagery--placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 53%;
}
.tile--offer .imagery img,
.tile--image .imagery--placeholder img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.tile--image .imagery-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tile--image .imagery {
  height: 100%;
  text-align: center;
}
.tile--image .imagery img {
  width: 100%;
  height: 100%;
}
.tile--offer .description {
  position: relative;
  overflow: hidden;
}
.tile--offer .description h2 {
  line-height: 1.2;
  font-weight: bold;
  font-size: 1.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tile--offer .description .rating,
.tile--offer .description .reservations-quantity,
.tile--offer .description .time-left,
.tile--offer .description .lead,
.tile--offer .description .offer-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
}
.tile--offer .description .price {
  padding-top: 1rem;
  color: #e04f00;
}
.tile--offer .description .price em {
  padding-left: 0.6rem;
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  color: #666;
}
.tile--offer .description .details {
  padding: 0 5rem 0 1.43rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tile--offer .description .extras {
  position: absolute;
  top: 0;
  right: 1.29rem;
  height: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.tile--offer .description .decorator {
  display: inline-block;
  width: 2.14rem;
  height: 2.14rem;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.tile--offer .description .reservations-quantity,
.tile--offer .description .rating {
  font-weight: bold;
}
.tile--offer .description .reservations-quantity,
.tile--offer .description .rating,
.tile--offer .description .reservations-quantity *,
.tile--offer .description .rating * {
  vertical-align: top;
}
.tile--offer .description .reservations-quantity .icon,
.tile--offer .description .rating .icon {
  margin-top: -0.1rem;
}
.tile--offer .description .rating {
  display: block;
  white-space: nowrap;
  margin-top: .57rem;
}
.tile--offer .description .reservations-quantity,
.tile--offer .description .time-left {
  margin-top: .57rem;
  font-weight: bold;
}
.tile--offer .description .lead {
  margin-top: 0.35rem;
}
.tile--offer .description .offer-name {
  padding: 0.57rem 0 0.2rem 0;
  font-weight: bold;
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tile--offer .description .reservations-quantity .icon {
    display: none;
  }
}
.tile--offer .tile-label {
  position: absolute;
  top: 0.7rem;
  left: 0;
  background: #e04f00;
  color: #fff;
  padding-left: .71rem;
  padding-right: .1rem;
  height: 2.57rem;
  display: flex;
  align-items: center;
}
.tile--offer .tile-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  left: 99.5%;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid #e04f00;
  transform: translateY(-50%);
}
.tile--offer .tile-label.is-price-reduction-significant {
  background: #ff1d23;
}
.tile--offer .tile-label.is-price-reduction-significant:after {
  border-color: transparent transparent transparent #ff1d23;
}
.tile--offer .tile-label > span {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
}
.tile--offer .tile-label > span > span {
  flex: 0 1 auto;
}
.tile--offer .tile-label .reduction-intensifier {
  font-size: .8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: .5rem;
}
.tile--offer .tile-label .reduction-intensifier .icon {
  margin-right: .36rem;
}
.tile--offer .tile-label .reduction {
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: .5rem;
  padding-bottom: .1rem;
}
.tile--offer .tile-label .flight {
  font-size: .8rem;
  font-weight: bold;
  text-transform: uppercase;
}
.tile--offer .tile-label .flight .icon {
  margin-right: .15rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tile--offer .tile-label {
    height: 2.14rem;
  }
  .tile--offer .tile-label:after {
    border-width: 1.1rem;
    margin-right: -2.14rem;
  }
  .tile--offer .tile-label .reduction {
    font-size: 1.15rem;
    margin-right: .36rem;
  }
}
.tile--offer .photo-bottom {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: white;
  box-shadow: inset 0.1rem 0 0 0 #e0e0e0;
}
.tile--offer .observe {
  position: absolute;
  cursor: pointer;
  top: 0.7rem;
  right: 0.7rem;
}
.tile--offer .observe .label {
  position: absolute;
  top: 50%;
  right: 100%;
  padding: .7rem;
  margin-top: -1.14rem;
  font-size: .8rem;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}
.tile--offer .observe .icon {
  width: 3.43rem !important;
  height: 3.43rem !important;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%2C.cls-4%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill-opacity%3A.8%7D.cls-5%7Bfill%3A%23333%3Bfill-opacity%3A.9%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22observe-offsvg%22%3E%3Ccircle%20id%3D%22circle-1%22%20class%3D%22cls-3%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2225%22%2F%3E%3Ccircle%20id%3D%22circle-2%22%20class%3D%22cls-4%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2221%22%2F%3E%3Cpath%20d%3D%22M33.239%2016.718c-2.97-1.413-6.855-.084-8.229%202.963-1.375-3.047-5.26-4.378-8.23-2.963-3.163%201.509-4.676%205.362-2.177%209.907%201.774%203.235%204.919%205.672%2010.407%2010.041%205.487-4.369%208.632-6.807%2010.406-10.041%202.499-4.545.986-8.398-2.177-9.907%22%20id%3D%22path-1%22%20class%3D%22cls-5%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.tile--offer .observe:hover {
  outline: none;
}
.tile--offer .observe:focus {
  outline: none;
}
.tile--offer .observe.is-observed .label {
  display: none;
}
.tile--offer .observe.is-observed .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23e04f00%7D.cls-5%7Bfill%3A%23fff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22observe-onsvg%22%3E%3Ccircle%20id%3D%22circle-1%22%20class%3D%22cls-3%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2225%22%2F%3E%3Ccircle%20id%3D%22circle-2%22%20class%3D%22cls-4%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2221%22%2F%3E%3Cpath%20d%3D%22M33.239%2016.707c-2.97-1.413-6.855-.084-8.229%202.963-1.375-3.047-5.26-4.378-8.23-2.963-3.163%201.509-4.676%205.362-2.177%209.907%201.774%203.235%204.919%205.672%2010.407%2010.041%205.487-4.369%208.632-6.807%2010.406-10.041%202.499-4.545.986-8.398-2.177-9.907%22%20id%3D%22path-1%22%20class%3D%22cls-5%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.tile--offer .observe:hover .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23e04f00%7D.cls-5%7Bfill%3A%23fff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22observe-onsvg%22%3E%3Ccircle%20id%3D%22circle-1%22%20class%3D%22cls-3%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2225%22%2F%3E%3Ccircle%20id%3D%22circle-2%22%20class%3D%22cls-4%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2221%22%2F%3E%3Cpath%20d%3D%22M33.239%2016.707c-2.97-1.413-6.855-.084-8.229%202.963-1.375-3.047-5.26-4.378-8.23-2.963-3.163%201.509-4.676%205.362-2.177%209.907%201.774%203.235%204.919%205.672%2010.407%2010.041%205.487-4.369%208.632-6.807%2010.406-10.041%202.499-4.545.986-8.398-2.177-9.907%22%20id%3D%22path-1%22%20class%3D%22cls-5%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tile--offer .observe .icon {
    width: 2.143rem !important;
    height: 2.143rem !important;
  }
}
.tile--offer.variant-1 {
  box-shadow: inset 0 0 0 .1rem #e0e0e0;
}
.tile--offer.variant-1 .imagery {
  box-shadow: inset 0 0 0 .1rem #e0e0e0;
}
.tile--offer.variant-1 .description {
  color: #666;
}
.tile--offer.variant-1 .description .reservations-quantity {
  color: #ff1d23;
}
.tile--offer.variant-1 .description .reservations-quantity .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2246%22%20height%3D%2250%22%20viewBox%3D%220%200%2046%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23ff1d23%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22bell-dangersvg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h46v50H0z%22%2F%3E%3Cpath%20d%3D%22M41.376%2035.141c-3.094-3.175-3.768-7.873-4.42-12.416-.967-6.734-2.056-14.302-11.773-15.292v-1.22c0-1.223-1.004-2.215-2.242-2.215s-2.243.992-2.243%202.215v1.222c-9.635.997-10.716%208.562-11.675%2015.292-.647%204.545-1.315%209.244-4.384%2012.421a2.196%202.196%200%200%200-.439%202.401%202.242%202.242%200%200%200%202.062%201.344h9.395c.051%203.928%203.296%207.109%207.284%207.109s7.233-3.181%207.284-7.109h9.535c.899%200%201.712-.53%202.064-1.348a2.198%202.198%200%200%200-.448-2.404zm-18.435%206.43a2.786%202.786%200%200%201-2.794-2.678h5.588a2.786%202.786%200%200%201-2.794%202.678zm0-7.109H10.558c1.826-3.517%202.391-7.492%202.907-11.118%201.114-7.829%201.982-11.592%209.476-11.592%207.574%200%208.45%203.764%209.575%2011.595.52%203.624%201.09%207.599%202.929%2011.115H22.941z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.tile--offer.variant-1 .description .rating .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2247%22%20viewBox%3D%220%200%2050%2047%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23666%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22like-gray-darksvg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h50v47H0z%22%2F%3E%3Cpath%20d%3D%22M41.588%2043.005H27.972a4.348%204.348%200%200%201-1.62-.313l-6.887-2.761c-.575%201.784-2.23%203.075-4.184%203.075H8.402c-2.43%200-4.4-1.995-4.4-4.457V19.593c0-2.462%201.97-4.457%204.4-4.457h6.879a4.36%204.36%200%200%201%201.638.322l4.902-9.135a4.394%204.394%200%200%201%203.867-2.329h3.934c2.431%200%204.401%201.996%204.401%204.457v6.682h7.564c2.431%200%204.402%201.995%204.403%204.457v18.958c0%202.462-1.972%204.457-4.402%204.457zm-26.307-7.186a4.592%204.592%200%200%201-.046-.612V19.728c0-.045.007-.089.009-.135H8.402v18.956h6.879v-2.73zM41.587%2019.59H29.622V8.451h-3.934l-6.006%2011.191v15.583l8.289%203.324h13.616V19.59zM11.925%2032.541c1.215%200%202.201.998%202.201%202.228%200%201.231-.986%202.229-2.201%202.229S9.724%2036%209.724%2034.769c0-1.23.986-2.228%202.201-2.228z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.tile--offer.variant-1 .description .decorator {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill%3A%23fff%3Bfill-opacity%3A0%7D.cls-4%7Bfill%3A%23e04f00%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22arrow-right-acc1svg%22%3E%3Ccircle%20id%3D%22circle-1%22%20class%3D%22cls-3%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2225%22%2F%3E%3Cpath%20d%3D%22M25%2046C13.424%2046%204%2036.584%204%2025.007%204%2013.424%2013.424%204%2025%204s21%209.424%2021%2021.007C46%2036.584%2036.576%2046%2025%2046zm0-38.18c-9.474%200-17.18%207.706-17.18%2017.187%200%209.474%207.706%2017.173%2017.18%2017.173s17.18-7.699%2017.18-17.173C42.18%2015.526%2034.474%207.82%2025%207.82zm-1.185%2025.799a1.66%201.66%200%200%201-2.339%200%201.634%201.634%200%200%201%200-2.323L27.875%2025l-6.398-6.296a1.634%201.634%200%200%201%200-2.323%201.662%201.662%200%200%201%202.338%200l7.508%207.457a1.633%201.633%200%200%201%200%202.323l-7.508%207.458z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.tile--offer.variant-2 .imagery {
  box-shadow: inset 0 0 0 .1rem #e0e0e0;
}
.tile--offer.variant-2 .description {
  background: #333;
  color: #fff;
}
.tile--offer.variant-2 .description .reservations-quantity .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2246%22%20height%3D%2250%22%20viewBox%3D%220%200%2046%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill-opacity%3A0%7D.cls-3%2C.cls-4%7Bfill%3A%23fff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22bell-whitesvg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h46v50H0z%22%2F%3E%3Cpath%20d%3D%22M41.376%2035.141c-3.094-3.175-3.768-7.873-4.42-12.416-.967-6.734-2.056-14.302-11.773-15.292v-1.22c0-1.223-1.004-2.215-2.242-2.215s-2.243.992-2.243%202.215v1.222c-9.635.997-10.716%208.562-11.675%2015.292-.647%204.545-1.315%209.244-4.384%2012.421a2.196%202.196%200%200%200-.439%202.401%202.242%202.242%200%200%200%202.062%201.344h9.395c.051%203.928%203.296%207.109%207.284%207.109s7.233-3.181%207.284-7.109h9.535c.899%200%201.712-.53%202.064-1.348a2.198%202.198%200%200%200-.448-2.404zm-18.435%206.43a2.786%202.786%200%200%201-2.794-2.678h5.588a2.786%202.786%200%200%201-2.794%202.678zm0-7.109H10.558c1.826-3.517%202.391-7.492%202.907-11.118%201.114-7.829%201.982-11.592%209.476-11.592%207.574%200%208.45%203.764%209.575%2011.595.52%203.624%201.09%207.599%202.929%2011.115H22.941z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.tile--offer.variant-2 .description .rating .icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2247%22%20viewBox%3D%220%200%2050%2047%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill-opacity%3A0%7D.cls-3%2C.cls-4%7Bfill%3A%23fff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22like-whitesvg%22%3E%3Cpath%20id%3D%22rect-1%22%20class%3D%22cls-3%22%20d%3D%22M0%200h50v47H0z%22%2F%3E%3Cpath%20d%3D%22M41.588%2043.005H27.972a4.348%204.348%200%200%201-1.62-.313l-6.887-2.761c-.575%201.784-2.23%203.075-4.184%203.075H8.402c-2.43%200-4.4-1.995-4.4-4.457V19.593c0-2.462%201.97-4.457%204.4-4.457h6.879a4.36%204.36%200%200%201%201.638.322l4.902-9.135a4.394%204.394%200%200%201%203.867-2.329h3.934c2.431%200%204.401%201.996%204.401%204.457v6.682h7.564c2.431%200%204.402%201.995%204.403%204.457v18.958c0%202.462-1.972%204.457-4.402%204.457zm-26.307-7.186a4.592%204.592%200%200%201-.046-.612V19.728c0-.045.007-.089.009-.135H8.402v18.956h6.879v-2.73zM41.587%2019.59H29.622V8.451h-3.934l-6.006%2011.191v15.583l8.289%203.324h13.616V19.59zM11.925%2032.541c1.215%200%202.201.998%202.201%202.228%200%201.231-.986%202.229-2.201%202.229S9.724%2036%209.724%2034.769c0-1.23.986-2.228%202.201-2.228z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.tile--offer.variant-2 .description .decorator {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cdefs%3E%3Cstyle%3E.cls-3%7Bfill-opacity%3A0%7D.cls-3%2C.cls-4%7Bfill%3A%23fff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22arrow-right-whitesvg%22%3E%3Ccircle%20id%3D%22circle-1%22%20class%3D%22cls-3%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2225%22%2F%3E%3Cpath%20d%3D%22M25%2046C13.424%2046%204%2036.584%204%2025.007%204%2013.424%2013.424%204%2025%204s21%209.424%2021%2021.007C46%2036.584%2036.576%2046%2025%2046zm0-38.18c-9.474%200-17.18%207.706-17.18%2017.187%200%209.474%207.706%2017.173%2017.18%2017.173s17.18-7.699%2017.18-17.173C42.18%2015.526%2034.474%207.82%2025%207.82zm-1.185%2025.799a1.66%201.66%200%200%201-2.339%200%201.634%201.634%200%200%201%200-2.323L27.875%2025l-6.398-6.296a1.634%201.634%200%200%201%200-2.323%201.662%201.662%200%200%201%202.338%200l7.508%207.457a1.633%201.633%200%200%201%200%202.323l-7.508%207.458z%22%20id%3D%22path-1%22%20class%3D%22cls-4%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
#searchListContainer:before,
#searchListContainer:after {
  content: " ";
  display: table;
}
#searchListContainer:after {
  clear: both;
}
#searchListContainer .search-loader {
  width: 100%;
  height: 600px;
  float: left;
}
#searchListContainer .search-loader:before {
  margin-top: 0;
  top: 50px;
}
#searchResultsNotifs.has-no-results {
  min-height: 300px;
}
#searchResultsNotifs #searchListShowAllResultsBtn {
  display: none;
}
.bots-pagination {
  text-align: center;
  font-size: 1.15rem;
}
.bots-pagination,
.bots-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bots-pagination li {
  display: inline-block;
}
.bots-pagination li + li {
  margin-left: 1rem;
}
.bots-pagination a.is-active {
  cursor: default;
  pointer-events: none;
  color: #333;
}
.BrainhubCarousel {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .BrainhubCarousel .BrainhubCarousel__trackContainer {
    overflow: hidden; }
    .BrainhubCarousel .BrainhubCarousel__trackContainer .BrainhubCarousel__track {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      overflow: hidden;
      list-style: none;
      margin: 0;
      padding: 0; }
      .BrainhubCarousel .BrainhubCarousel__trackContainer .BrainhubCarousel__track.BrainhubCarousel__track--transition {
        -webkit-transition: -webkit-transform;
        transition: -webkit-transform;
        transition: transform;
        transition: transform, -webkit-transform; }

/* arrows */
.BrainhubCarousel__arrows {
  cursor: pointer; }
/* variables */
.BrainhubCarousel__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0; }
  .BrainhubCarousel__dots .BrainhubCarousel__dot {
    outline: 0;
    padding: 10px;
    border: none;
    opacity: 0.5;
    cursor: pointer;
    -webkit-appearance: none; }
    .BrainhubCarousel__dots .BrainhubCarousel__dot.BrainhubCarousel__dot--selected {
      opacity: 1 !important; }
    .BrainhubCarousel__dots .BrainhubCarousel__dot:hover {
      opacity: 1; }
    .BrainhubCarousel__dots .BrainhubCarousel__dot:before {
      content: '';
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      padding: 0;
      border: none;
      background: black; }
  .BrainhubCarousel__dots .BrainhubCarousel__thumbnail {
    outline: 0;
    padding: 10px;
    border: none;
    opacity: 0.5;
    cursor: pointer; }
    .BrainhubCarousel__dots .BrainhubCarousel__thumbnail.BrainhubCarousel__thumbnail--selected {
      opacity: 1 !important; }
    .BrainhubCarousel__dots .BrainhubCarousel__thumbnail:hover {
      opacity: 1; }

.BrainhubCarousel__thumbnail[type=button] {
  -webkit-appearance: none; }
.BrainhubCarouselItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative; }
  .BrainhubCarouselItem.BrainhubCarouselItem--clickable {
    cursor: pointer; }
  .BrainhubCarouselItem .debug-number {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2em;
    text-shadow: 0px 0px 9px white; }
.BrainhubCarousel__arrows {
  position: relative;
  padding: 21px;
  border: none;
  overflow: hidden;
  outline: 0;
  font-size: 0;
  line-height: 0;
  background-color: #7b59ff; }
  .BrainhubCarousel__arrows span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-color: #fff;
    border-width: 3px 3px 0 0;
    padding: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 0; }
  .BrainhubCarousel__arrows:hover {
    background-color: #8768ff; }
    .BrainhubCarousel__arrows:hover span {
      border-color: #fff;
      margin: 0; }

.BrainhubCarousel__arrowLeft span {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 2.45px; }

.BrainhubCarousel__arrowRight span {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -2.45px; }


.tippy-touch{cursor:pointer!important}.tippy-notransition{transition:none!important}.tippy-popper{max-width:400px;-webkit-perspective:800px;perspective:800px;z-index:9999;outline:0;transition-timing-function:cubic-bezier(.165,.84,.44,1);pointer-events:none}.tippy-popper.html-template{max-width:96%;max-width:calc(100% - 20px)}.tippy-popper[x-placement^=top] [x-arrow]{border-top:7px solid #333;border-right:7px solid transparent;border-left:7px solid transparent;bottom:-7px;margin:0 9px}.tippy-popper[x-placement^=top] [x-arrow].arrow-small{border-top:5px solid #333;border-right:5px solid transparent;border-left:5px solid transparent;bottom:-5px}.tippy-popper[x-placement^=top] [x-arrow].arrow-big{border-top:10px solid #333;border-right:10px solid transparent;border-left:10px solid transparent;bottom:-10px}.tippy-popper[x-placement^=top] [x-circle]{-webkit-transform-origin:0 33%;transform-origin:0 33%}.tippy-popper[x-placement^=top] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-55%);transform:scale(1) translate(-50%,-55%);opacity:1}.tippy-popper[x-placement^=top] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow]{border-top:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-top:5px solid #fff;border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-top:10px solid #fff;border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow]{border-top:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-top:5px solid rgba(0,0,0,.7);border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-top:10px solid rgba(0,0,0,.7);border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=top] [data-animation=perspective]{-webkit-transform-origin:bottom;transform-origin:bottom}.tippy-popper[x-placement^=top] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateY(-10px) rotateX(0);transform:translateY(-10px) rotateX(0)}.tippy-popper[x-placement^=top] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateY(0) rotateX(90deg);transform:translateY(0) rotateX(90deg)}.tippy-popper[x-placement^=top] [data-animation=fade].enter{opacity:1;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=fade].leave{opacity:0;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=shift].enter{opacity:1;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=shift].leave{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}.tippy-popper[x-placement^=top] [data-animation=scale].enter{opacity:1;-webkit-transform:translateY(-10px) scale(1);transform:translateY(-10px) scale(1)}.tippy-popper[x-placement^=top] [data-animation=scale].leave{opacity:0;-webkit-transform:translateY(0) scale(0);transform:translateY(0) scale(0)}.tippy-popper[x-placement^=bottom] [x-arrow]{border-bottom:7px solid #333;border-right:7px solid transparent;border-left:7px solid transparent;top:-7px;margin:0 9px}.tippy-popper[x-placement^=bottom] [x-arrow].arrow-small{border-bottom:5px solid #333;border-right:5px solid transparent;border-left:5px solid transparent;top:-5px}.tippy-popper[x-placement^=bottom] [x-arrow].arrow-big{border-bottom:10px solid #333;border-right:10px solid transparent;border-left:10px solid transparent;top:-10px}.tippy-popper[x-placement^=bottom] [x-circle]{-webkit-transform-origin:0 -50%;transform-origin:0 -50%}.tippy-popper[x-placement^=bottom] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-45%);transform:scale(1) translate(-50%,-45%);opacity:1}.tippy-popper[x-placement^=bottom] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-5%);transform:scale(.15) translate(-50%,-5%);opacity:0}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow]{border-bottom:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-bottom:5px solid #fff;border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-bottom:10px solid #fff;border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow]{border-bottom:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-bottom:5px solid rgba(0,0,0,.7);border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-bottom:10px solid rgba(0,0,0,.7);border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=bottom] [data-animation=perspective]{-webkit-transform-origin:top;transform-origin:top}.tippy-popper[x-placement^=bottom] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateY(10px) rotateX(0);transform:translateY(10px) rotateX(0)}.tippy-popper[x-placement^=bottom] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateY(0) rotateX(-90deg);transform:translateY(0) rotateX(-90deg)}.tippy-popper[x-placement^=bottom] [data-animation=fade].enter{opacity:1;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=fade].leave{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=shift].enter{opacity:1;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=shift].leave{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}.tippy-popper[x-placement^=bottom] [data-animation=scale].enter{opacity:1;-webkit-transform:translateY(10px) scale(1);transform:translateY(10px) scale(1)}.tippy-popper[x-placement^=bottom] [data-animation=scale].leave{opacity:0;-webkit-transform:translateY(0) scale(0);transform:translateY(0) scale(0)}.tippy-popper[x-placement^=left] [x-arrow]{border-left:7px solid #333;border-top:7px solid transparent;border-bottom:7px solid transparent;right:-7px;margin:6px 0}.tippy-popper[x-placement^=left] [x-arrow].arrow-small{border-left:5px solid #333;border-top:5px solid transparent;border-bottom:5px solid transparent;right:-5px}.tippy-popper[x-placement^=left] [x-arrow].arrow-big{border-left:10px solid #333;border-top:10px solid transparent;border-bottom:10px solid transparent;right:-10px}.tippy-popper[x-placement^=left] [x-circle]{-webkit-transform-origin:50% 0;transform-origin:50% 0}.tippy-popper[x-placement^=left] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-50%);transform:scale(1) translate(-50%,-50%);opacity:1}.tippy-popper[x-placement^=left] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow]{border-left:7px solid #fff;border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-left:5px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-left:10px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow]{border-left:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-left:5px solid rgba(0,0,0,.7);border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-left:10px solid rgba(0,0,0,.7);border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=left] [data-animation=perspective]{-webkit-transform-origin:right;transform-origin:right}.tippy-popper[x-placement^=left] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateX(-10px) rotateY(0);transform:translateX(-10px) rotateY(0)}.tippy-popper[x-placement^=left] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateX(0) rotateY(-90deg);transform:translateX(0) rotateY(-90deg)}.tippy-popper[x-placement^=left] [data-animation=fade].enter{opacity:1;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=fade].leave{opacity:0;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=shift].enter{opacity:1;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=shift].leave{opacity:0;-webkit-transform:translateX(0);transform:translateX(0)}.tippy-popper[x-placement^=left] [data-animation=scale].enter{opacity:1;-webkit-transform:translateX(-10px) scale(1);transform:translateX(-10px) scale(1)}.tippy-popper[x-placement^=left] [data-animation=scale].leave{opacity:0;-webkit-transform:translateX(0) scale(0);transform:translateX(0) scale(0)}.tippy-popper[x-placement^=right] [x-arrow]{border-right:7px solid #333;border-top:7px solid transparent;border-bottom:7px solid transparent;left:-7px;margin:6px 0}.tippy-popper[x-placement^=right] [x-arrow].arrow-small{border-right:5px solid #333;border-top:5px solid transparent;border-bottom:5px solid transparent;left:-5px}.tippy-popper[x-placement^=right] [x-arrow].arrow-big{border-right:10px solid #333;border-top:10px solid transparent;border-bottom:10px solid transparent;left:-10px}.tippy-popper[x-placement^=right] [x-circle]{-webkit-transform-origin:-50% 0;transform-origin:-50% 0}.tippy-popper[x-placement^=right] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-50%);transform:scale(1) translate(-50%,-50%);opacity:1}.tippy-popper[x-placement^=right] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow]{border-right:7px solid #fff;border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-right:5px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-right:10px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow]{border-right:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-right:5px solid rgba(0,0,0,.7);border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-right:10px solid rgba(0,0,0,.7);border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=right] [data-animation=perspective]{-webkit-transform-origin:left;transform-origin:left}.tippy-popper[x-placement^=right] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateX(10px) rotateY(0);transform:translateX(10px) rotateY(0)}.tippy-popper[x-placement^=right] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateX(0) rotateY(90deg);transform:translateX(0) rotateY(90deg)}.tippy-popper[x-placement^=right] [data-animation=fade].enter{opacity:1;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=fade].leave{opacity:0;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=shift].enter{opacity:1;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=shift].leave{opacity:0;-webkit-transform:translateX(0);transform:translateX(0)}.tippy-popper[x-placement^=right] [data-animation=scale].enter{opacity:1;-webkit-transform:translateX(10px) scale(1);transform:translateX(10px) scale(1)}.tippy-popper[x-placement^=right] [data-animation=scale].leave{opacity:0;-webkit-transform:translateX(0) scale(0);transform:translateX(0) scale(0)}.tippy-popper .tippy-tooltip.transparent-theme{background-color:rgba(0,0,0,.7)}.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill]{background-color:transparent}.tippy-popper .tippy-tooltip.light-theme{color:#26323d;box-shadow:0 4px 20px 4px rgba(0,20,60,.1),0 4px 80px -8px rgba(0,20,60,.2);background-color:#fff}.tippy-popper .tippy-tooltip.light-theme[data-animatefill]{background-color:transparent}.tippy-tooltip{position:relative;color:#fff;border-radius:4px;font-size:.95rem;padding:.4rem .8rem;text-align:center;will-change:transform;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#333}.tippy-tooltip--small{padding:.25rem .5rem;font-size:.8rem}.tippy-tooltip--big{padding:.6rem 1.2rem;font-size:1.2rem}.tippy-tooltip[data-animatefill]{overflow:hidden;background-color:transparent}.tippy-tooltip[data-interactive]{pointer-events:auto}.tippy-tooltip[data-inertia]{transition-timing-function:cubic-bezier(.53,2,.36,.85)}.tippy-tooltip [x-arrow]{position:absolute;width:0;height:0}.tippy-tooltip [x-circle]{position:absolute;will-change:transform;background-color:#333;border-radius:50%;width:130%;width:calc(110% + 2rem);left:50%;top:50%;z-index:-1;overflow:hidden;transition:all ease}.tippy-tooltip [x-circle]:before{content:"";padding-top:90%;float:left}@media (max-width:450px){.tippy-popper{max-width:96%;max-width:calc(100% - 20px)}}


