/**
* Please order rules alphabetically.
*/
:root {
  --bg-button: white;
  --bg-low: white;
  --bg-raised: white;
  --bg-selected: #F2EFFB;
  --primary: #666;
  --primary-background: var(--primary);
  --primary-text: var(--primary);
  --secondary: #ffdb77;
  --secondary-text: var(--secondary);
  --secondary-border: #e4c262;
  --active: #e91e63;
  --danger: #f04;
  --warning: #ff5722;
  --success: #4caf50;
  --pin: #3f51b5;
  --active-pin: #e91e63;
  --text: #222;
  --title: #000;
  --font: "Roboto", "-apple-system-font", "Helvetica Neue", "HelveticaNeue", "Roboto", "Segoe UI", sans-serif;
  --font-text: inherit;
  --font-title: "Sumana", serif;
  --star: #F9C22B;
  --status-text: dark;
  --status-background: #ffffff;
  --ease-in: cubic-bezier(0.550, 0.055, 0.675, 0.190); /* easeInCubic */
  --ease-out: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1.000); /* easeInOutCubic */
  --slow: .3s;
  --fast: .2s;
  --image-color: #eee;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  list-style: none;
  font-size: 100%;
  font-family: inherit;
  font-weight: normal;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
[data-mobile-dev-tools] {
  bottom: 60px !important;
}
[v-cloak] {
  opacity: 0;
}
body {
  font-family: var(--font);
  color: var(--text);
  font-size: 15px;
  word-break: break-word;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  
}
:focus {
  outline: none;
}
a:not(.plain):active, button:not(.plain):active, .button:active {
  /*filter: brightness(80%);*/
  -webkit-box-shadow: 0 0 0 100vmax #0001 inset;
          box-shadow: 0 0 0 100vmax #0001 inset;
}
a:focus, button:focus {
  -webkit-animation: afocus var(--slow) var(--ease-out);
          animation: afocus var(--slow) var(--ease-out);
}
@-webkit-keyframes afocus {
  from {
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
}
@keyframes afocus {
  from {
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
}
.above-menu {
  bottom: 58px;
}
.app {
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}
.audio-player {
  border-radius: 2rem;
  background: var(--bg-light);
}
.bg-black {
  background-color: black;
}
.bg-button {
  background-color: var(--bg-button);
}
.bg-info {
  background-color: #eaecf3;
}
.bg-low {
  background-color: var(--bg-low);
}
.bg-overlay {
  background-color: #0008;
}
.bg-primary {
  background-color: var(--primary);
}
.bg-raised {
  background-color: var(--bg-raised);
}
.bg-white {
  background-color: white;
}
.bold {
  font-weight: 500;
}
.bottom-bar-enter-active, .bottom-bar-leave-active {
  -webkit-transition: -webkit-transform var(--fast) var(--ease-out);
  transition: -webkit-transform var(--fast) var(--ease-out);
  -o-transition: transform var(--fast) var(--ease-out);
  transition: transform var(--fast) var(--ease-out);
  transition: transform var(--fast) var(--ease-out), -webkit-transform var(--fast) var(--ease-out);
}
.bottom-bar-leave-active {
  -webkit-transition-timing-function: var(--ease-in);
       -o-transition-timing-function: var(--ease-in);
          transition-timing-function: var(--ease-in);
}
.bottom-bar-enter, .bottom-bar-leave-to {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.bubble {
  color: white;
  background-color: rgba(0,0,0,.5);
  padding: 4px 16px;
  border-radius: 1000px;
}
.button {
  font-size: .75rem;
  white-space: nowrap;
}
.button:active {
  background: #ccc;
}
.button:disabled, .button[disabled] {
  opacity: 0.5;
}
:root .button-active {
  background: var(--text);
  color: white;
  border: 1px solid var(--text);
}
.button-bold {
  border: 4px solid;
}
.button-caps {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.button-circle {
  background: var(--primary);
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 2px #00000040;
          box-shadow: 2px 2px 2px #00000040;
  color: white;
}
.button-circle:active {
  -webkit-box-shadow: 0 0 1000px inset #00000040;
          box-shadow: 0 0 1000px inset #00000040;
}
.button-circle path {
  fill: white;
}
.button-left {
  border-radius: 2em 0 0 2em;
}
.button-light {
  background-color: #F4F2ED;
  -webkit-box-shadow: 0 0 6px #FFFFFF4D;
          box-shadow: 0 0 6px #FFFFFF4D;
  border: 1px solid var(--light-border);
}
.button-middle {
  border-radius: 0;
}
.button-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}
.button-right {
  border-radius: 0 2em 2em 0;
}
.button-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary-border);
  color: black;
}
.button-wide {
  width: 100%;
  max-width: 18rem;
}
.caps {
  letter-spacing: .1em;
}
.card {
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px rgba(0,0,0,.2);
          box-shadow: 0 0 40px rgba(0,0,0,.2);
  /*overflow: hidden;*/
  background-color: var(--bg-low);
}
.card-channel {
  /*margin-top: -.25rem;*/
  margin-top: .25rem;
  margin-bottom: .25rem;
}
.card-image {
  max-height: 90vh;
}
.card-language {
  background: white;
  padding: .25rem .5rem;
  text-transform: uppercase;
  border-radius: 1000px;
  color: var(--secondary);
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
}
:root .card-title {
  text-align: left;
  line-height: 1;
}
/*@media (min-width: 40em) {*/
/*  .card-image {*/
/*    width: 10rem;*/
/*    background: none !important;*/
/*  }*/
/*  .card-image > img {*/
    /*object-fit: contain !important;*/
/*    max-height: 12rem;*/
/*  }*/
/*}*/
.carousel {
  background: black;
}
.carousel-image {
  scroll-snap-align: center;
  max-width: 80vh;
}
.carousel-image:not(:last-child) {
  margin-right: 2px;
}
.channel-logo {
  width: 42px;
  height: 42px;
  border-radius: 5px;
}
.channel-logo:not(.image-loading):not(.channel-acronym) {
  background: white;
}
.channel-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.channel-acronym {
  background: var(--primary-background);
  color: white;
  line-height: 1;
}
.checkbox {
  width: 1em;
  height: 1em;
  background: var(--bg-button);
  border: 1px solid var(--text);
  border-radius: 50%;
  -webkit-appearance: none;
}
.choice {
  -webkit-box-shadow: 0 0 10px #0000001A;
          box-shadow: 0 0 10px #0000001A;
}
.choice-active {
  -webkit-box-shadow: 0 0 1px #0000001A inset;
          box-shadow: 0 0 1px #0000001A inset;
  background: var(--bg-selected);
}
.choice-active svg, .choice:active svg {
  fill: var(--bg-selected);
  outline-color: var(--bg-selected);
}
.clickable {
  cursor: pointer;
}
.color-black {
  color: black;
}
.color-blue {
  color: #2196f3;
}
.color-danger {
  color: var(--danger);
}
.color-primary {
  color: var(--primary-text);
}
.color-secondary {
  color: var(--secondary-text);
}
.color-star {
  color: var(--star);
}
.color-text {
  color: var(--text);;
}
.color-title {
  color: var(--title);;
}
.color-white {
  color: white;
}
.content {
  line-height: 1rem;
  font-family: var(--font-text);
}
.content p, .content ul {
  line-height: 1.5;
  margin-bottom: 1rem;
}
.content b, .content strong {
  font-weight: bold;
}
.content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content h6 {
  font-size: .85rem;
  opacity: .5;
}
.content ul {
  padding-left: 2rem;
}
.content li {
  list-style: disc;
}
.content img {
  max-width: 100%;
  display: block;
}
.content-box {
  padding-top: 2rem;
}
.del {
  text-decoration: line-through;
}
.details {
  overflow: hidden;
}
.details-content {
  -webkit-transition: var(--slow) var(--ease-out);
  -o-transition: var(--slow) var(--ease-out);
  transition: var(--slow) var(--ease-out);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
}
.details-leave-active {
  -webkit-transition: var(--slow) var(--ease-in);
  -o-transition: var(--slow) var(--ease-in);
  transition: var(--slow) var(--ease-in);
}
.details-enter, .details-leave-to {
  -webkit-transform: scaleY(.5) translateY(-1rem);
      -ms-transform: scaleY(.5) translateY(-1rem);
          transform: scaleY(.5) translateY(-1rem);
  opacity: 0;
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.faded {
  opacity: .75;
}
.fill-raised {
  fill: var(--bg-raised);
  outline: 1px solid var(--bg-raised);
  outline-offset: -1px;
}
.flat-icon path {
  fill: currentColor;
}
.font-title {
  font-family: var(--font-title);
}
.full-height {
  height: 100%;
}
.fullscreen-height {
  height: 100vh !important;
  height: calc(100vh - constant(safe-area-inset-bottom) - constant(safe-area-inset-top)) !important;
  height: calc(100vh - env(safe-area-inset-bottom) - env(safe-area-inset-top)) !important;
}
.gallery {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: .5rem;
     -moz-column-gap: .5rem;
          column-gap: .5rem;
}
.gallery > * {
  display: table;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.h1 {
  font-size: 27px;
}
.h2 {
  font-size: 20px;
}
.h4 {
  font-size: 15px;
}
.h5 {
  font-size: 12px;
}
.h6 {
  font-size: 10px;
}
.header-box {
  margin-top: -30px;
  border-radius: 30px;
  -webkit-box-shadow: 0 -10px 10px -10px #EED4D4;
          box-shadow: 0 -10px 10px -10px #EED4D4;
}
.header-box-with-map {
  margin-top: 0;
  border-radius: 0;
}
.header-icon path {
  fill: white;
}
.hotspot-audio {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15.82" height="18.268" viewBox="0 0 15.82 18.268"><path fill="white" d="M171.461,169.891l.034-9.134-.034-9.134,7.9,4.6,7.924,4.536-7.926,4.537Zm1.689-15.342Z" transform="translate(-169.461 -151.623)"/></svg>') no-repeat center, var(--primary-background, var(--primary));
  background-size: 11px, 100% 100%;
  border: 1px solid white;
}
.hotspot-playing {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16"><g transform="translate(-92 -345)"><rect fill="white" width="6" height="16" transform="translate(92 345)"/><rect fill="white" width="6" height="16" transform="translate(100 345)"/></g></svg>') no-repeat center, var(--primary-background, var(--primary));
  background-size: 9px, 100% 100%;
}
.hotspot-loading {
  position: relative;
  border-color: transparent;
}
.hotspot-loading::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: loader .5s infinite linear;
          animation: loader .5s infinite linear;
}
.icon {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
}
.icon-light {
  fill: white;
}
.icon-outline {
  fill: var(--primary);
}
.icon-primary {
  background: var(--primary-background);
}
.icon-round {
  border-radius: 100vmax;
}
.image {
  background-color: #eee;
}
.image-carousel-image {
  max-height: 480px;
}
.image-empty {
  background: #eee url("../img/image-placeholder.jpg") no-repeat center;
  background-size: cover;
}
.image-loading, .image-error {
  background-color: var(--image-color);
}
.image > img {
  /*transition: 50ms opacity;*/
}
.image-carousel-background {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  background-size: cover;
}
.image-loading > img {
  opacity: 0;
  /*visibility: hidden;*/
}
.indoor-map-dot {
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  -webkit-animation: .5s indoor-map-dot infinite alternate;
          animation: .5s indoor-map-dot infinite alternate;
  background: none no-repeat center;
  background-size: 100% 100%;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='41' height='36' viewBox='0 0 41 36'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:url(%23a);%7D.b,.c%7Bstroke:none;%7D.c%7Bfill:%23fff;%7D%3C/style%3E%3ClinearGradient id='a' x1='0.5' x2='0.5' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%23d56b6d'/%3E%3Cstop offset='1' stop-color='%23bc1b1e'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg class='a' transform='translate(41 36) rotate(180)'%3E%3Cpath class='b' d='M 38.419677734375 34.5 L 2.580322504043579 34.5 L 20.5 3.031298160552979 L 38.419677734375 34.5 Z'/%3E%3Cpath class='c' d='M 20.5 6.062578201293945 L 5.160636901855469 33 L 35.83936309814453 33 L 20.5 6.062578201293945 M 20.5 0 L 41 36 L 0 36 L 20.5 0 Z'/%3E%3C/g%3E%3C/svg%3E");
}
@-webkit-keyframes indoor-map-dot {
  to {
    -webkit-transform: translate(-50%, -100%) translateY(-16px);
            transform: translate(-50%, -100%) translateY(-16px);
  }
}
@keyframes indoor-map-dot {
  to {
    -webkit-transform: translate(-50%, -100%) translateY(-16px);
            transform: translate(-50%, -100%) translateY(-16px);
  }
}
.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.input {
  border: 1px solid lightgrey;
  -webkit-box-shadow: 2px 2px 2px #f8f8f8 inset, 0px 0px 1px #ccc inset;
          box-shadow: 2px 2px 2px #f8f8f8 inset, 0px 0px 1px #ccc inset;
}
.label {
  font-size: .875rem;
  white-space: nowrap;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  overflow: hidden;
}
.leaflet-control-attribution, .leaflet-control-scale-line {
  background-color: transparent !important;
  text-shadow: 1px 1px white, -1px -1px white, 1px -1px white, -1px 1px white !important;
}
.leaflet-control-attribution a {
  color: inherit;
}
.leaflet-div-icon {
  background: none;
  border: none;
}
.leaflet-tile-container {
  -webkit-filter: grayscale(.1);
          filter: grayscale(.1);
}
.light {
  font-weight: 300;
}
.light-border {
  border: 1px solid var(--light-border);
}
.lightbox {
  display: none;
}
.lightbox:checked + *, .lightbox-image {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  background: black;
  -o-object-fit: contain;
     object-fit: contain;
}
.link, .content a {
  color: var(--primary);
  text-decoration: underline;
}
.list {
  list-style: disc;
}
.list li {
  padding-left: 1rem;
}
.list-items {
  border: 1px solid var(--light-border);
  border-width: 1px 0;
}
@media (min-width: 48em) {
  .list-items {
    margin-left: -1px;
    margin-right: -1px;
    border-width: 1px 1px;
  }
}
.list-item:not(:last-child) {
  border-bottom: 1px solid var(--light-border);
}
.list-item-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23aaa' d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 24px 24px;
}
.loader {
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  -webkit-animation: loader .5s infinite linear;
          animation: loader .5s infinite linear;
}
@-webkit-keyframes loader {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loader {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.loader-box {
  font-size: 4rem;
  padding: 1rem;
  background: white;
  border-radius: 50%;
}
.map-button {
  right: 10px;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 2px;
  background-clip: padding-box;
}
.max-width-page {
  max-width: 80rem;
}
.menu {
  border-top: 1px solid #d4d4d4;
  border-bottom: constant(safe-area-inset-bottom) solid var(--bg-raised);
  border-bottom: env(safe-area-inset-bottom) solid var(--bg-raised);
}
.menu-icon svg {
  width: 16px;
  height: 16px;
}
.menu-item {
  padding: .75rem .5rem .5rem;
}
.menu-item-active {
  color: var(--primary);
}
.menu-item svg {
  width: 20px;
  height: 20px;
  margin-bottom: .25em;
}
.menu-item path {
  fill: currentColor !important;
}
.menu-moving {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.min-full-height {
  min-height: 100%;
  min-height: calc(100vh - 60px);
  min-height: calc(100vh - 60px - constant(safe-area-inset-bottom) - constant(safe-area-inset-top));
  min-height: calc(100vh - 60px - env(safe-area-inset-bottom) - env(safe-area-inset-top));
}
.ml05 {
  margin-left: 0.25rem;
}
.mr05 {
  margin-right: 0.25rem;
}
.mr1px {
  margin-right: 1px;
}
.mrn1 {
  margin-right: -.5rem;
}
.mrn2 {
  margin-right: -1rem;
}
.network {
  color: white;
}
.network-offline {
  background: var(--danger);
}
.network-poor {
  background: var(--warning);
}
.network-online {
  background: var(--success);
}
.notification-count {
  width: 1.5em;
  height: 1.5em;
  background: var(--danger);
  text-align: center;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 12px;
  margin-bottom: 3px;
}
.notification-unseen > .bold:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--danger);
  margin-right: .5rem;
  vertical-align: 2px;
  border-radius: 50%;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.option {
  border-radius: 2rem;
  padding: 2px;
}
input:checked ~ .option {
  background: var(--primary-background);
  color: white;
}
.page-title {
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.player {
  background: -webkit-gradient(linear, right top, left top, from(#64A6C2), to(#9D64C2));
  background: -o-linear-gradient(right, #64A6C2 0%, #9D64C2 100%);
  background: linear-gradient(270deg, #64A6C2 0%, #9D64C2 100%);
}
.player-button-active {
  color: #54456B;
  background: white;
  width: 40px !important;
  height: 40px !important;
  padding: 8px;
  margin: -8px;
  border-radius: 50%;
}
.player-menu {
  bottom: 100%;
  background: var(--bg-raised);
  border: 1px solid white;
  border-radius: 11px;
  overflow: hidden;
}
.player-menu-item {
  background: #E8E1FF;
}
.player-menu-item:not(:last-child) {
  border: 1px solid white;
}
.player-progress {
  background: #54456B;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  will-change: transform;
}
.player-progress ~ * {
  position: relative;
}
.pnlm-controls-container {
  right: 4px;
  left: auto !important;
}
.points {
  position: relative;
}
.points::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 2rem;
  height: calc(100% - 4rem);
  width: 2px;
  background: var(--primary);
}
.point-image {
  border: 2px solid var(--primary);
}
.point-visited {
  margin-left: .5rem;
}
.preloader {
  -webkit-animation: preloader 2s linear infinite;
          animation: preloader 2s linear infinite;
  width: 1em;
  height: 1em;
}
.preloader circle {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: preloader-circle 1.5s ease-in-out infinite;
          animation: preloader-circle 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@-webkit-keyframes preloader {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes preloader {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes preloader-circle {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes preloader-circle {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
.preparing {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.ptr--icon, .ptr--text {
  color: var(--text) !important;
}

.qrPreviewVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.qrPreviewVideo::-webkit-media-controls {
  display: none;
}
.responsive {
  display: block;
}
.responsive > :first-child {
  height: auto;
  width: 100%;
}
@supports (--custom:property) {
  .responsive {
    position: relative;
  }
  .responsive::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--ratio, 1)));
  }
  .responsive > :first-child {
    height: 100%;
    left: 0;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    width: 100%;
  }
  .responsive > iframe:first-child {
    -o-object-fit: initial;
       object-fit: initial;
  }
}
.row:not(:last-of-type) {
  border-bottom: 1px solid #7774;
}
.scan-separator {
  position: relative;
}
.scan-separator:after {
  content: "";
  position: absolute;
  left: 50%;
  top: .5em;
  -webkit-transform: translateX(-50vw);
      -ms-transform: translateX(-50vw);
          transform: translateX(-50vw);
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,.05)), color-stop(transparent), color-stop(transparent), to(rgba(0,0,0,.05)));
  background: -o-linear-gradient(left, rgba(0,0,0,.05) calc(50vw - 3rem), transparent calc(50vw - 3rem), transparent calc(50vw + 3rem), rgba(0,0,0,.05) calc(50vw + 3rem));
  background: linear-gradient(to right, rgba(0,0,0,.05) calc(50vw - 3rem), transparent calc(50vw - 3rem), transparent calc(50vw + 3rem), rgba(0,0,0,.05) calc(50vw + 3rem));
}
.screen {
  /*overflow: hidden;*/
  /*min-height: 100%;*/
  position: relative;
  z-index: 1;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  /*will-change: transform, opacity;*/
}
.screen-box {
  position: relative;
  padding: .1px;
}
.screen-enter {
  -webkit-transform: scale(.9) translateY(10vh);
      -ms-transform: scale(.9) translateY(10vh);
          transform: scale(.9) translateY(10vh);
  opacity: 0;
}
.screen-enter-active {
  -webkit-transition: var(--fast) var(--ease-out);
  -o-transition: var(--fast) var(--ease-out);
  transition: var(--fast) var(--ease-out);
  z-index: 1;
}
.screen-leave-to {
  -webkit-transform: scale(.9) translateY(20vh);
      -ms-transform: scale(.9) translateY(20vh);
          transform: scale(.9) translateY(20vh);
  opacity: 0;
}
.screen-leave, .screen-leave-to, .screen-leave-active {
}
.screen-leave-active {
  -webkit-transition: var(--fast) var(--ease-in);
  -o-transition: var(--fast) var(--ease-in);
  transition: var(--fast) var(--ease-in);
}
.screen + .screen {
  z-index: 0;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
}
.screen-low-enter-active {
  -webkit-transition: var(--fast);
  -o-transition: var(--fast);
  transition: var(--fast);
  -webkit-transform-origin: center 50vh;
      -ms-transform-origin: center 50vh;
          transform-origin: center 50vh;
}
.screen-low-enter {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 0;
}
.screen-low-enter-to {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.select {
  position: relative;
}
.select::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" viewBox="0 0 24 24"><path fill="black" d="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z" /></svg>') no-repeat center;
  background-size: 1em;
  pointer-events: none;
}
.select > select {
  -webkit-appearance: none;
  padding-right: 2rem;
}
.shadow {
  -webkit-box-shadow: #0000005C 0 0 6px;
          box-shadow: #0000005C 0 0 6px;
}
.sides {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 40em) {
  .sm-full-height {
    height: 100%;
  }
}
.no-sides {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 24em) {
  .sides {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .no-sides {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
.stars {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.star-full {
  display: none;
}
.star {
  color: var(--star);
}
.star:hover .star-full,
.star:hover ~ .star .star-full {
  display: block;
}
.tab {
  outline: none !important;
  background: var(--bg-raised);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.tab-content {
  -webkit-transition: var(--slow) var(--ease-out);
  -o-transition: var(--slow) var(--ease-out);
  transition: var(--slow) var(--ease-out);
}
/*.tab-content + .tab-content {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*}*/
.tab-left-enter-active, .tab-left-leave-active, .tab-right-enter-active, .tab-right-leave-active {
  position: absolute;
  top: 0;
  left: 0;
}
.tab-left-enter, .tab-right-leave-to {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.tab-right-enter, .tab-left-leave-to {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.tabs {
  -webkit-box-shadow: 0 10px 10px rgba(0,0,0,.2);
          box-shadow: 0 10px 10px rgba(0,0,0,.2);
  position: relative;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tabs-line {
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: var(--primary);
  -webkit-transition: var(--slow) var(--ease-out);
  -o-transition: var(--slow) var(--ease-out);
  transition: var(--slow) var(--ease-out);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}
.text {
  font-family: var(--font-text);
  line-height: 1.5;
}
.text-short > p:first-child {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.text-short > p:not(:first-child) {
  display: none;
}
.title {
  line-height: 1.25;
  font-family: var(--font-title);
  font-weight: bold;
  color: var(--title);
}
@media (max-width: 399px) {
  .tour-header-buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.tour-payment {
  border-top: 4px solid #f2f2f2;
  border-bottom: 4px solid #f2f2f2;
}
.tour-payment ~ .tour-payment {
  border-top: none;
}
.transport {
  -webkit-box-shadow: 0 0 3px #76685B26;
          box-shadow: 0 0 3px #76685B26;
}
.transport-title {
  background-color: #F4F2ED;
}
.uppercase {
  text-transform: uppercase;
}
.VueCarousel-pagination {
  z-index: 1;
  position: absolute;
  bottom: 2rem;
}
.VueCarousel-dot {
  padding: 10px 4px !important;
}
.VueCarousel-dot-button {
  width: 6px !important;
  height: 6px !important;
  background: white !important;
  opacity: .5;
}
.VueCarousel-dot--active .VueCarousel-dot-button {
  opacity: 1;
}
/*.VueCarousel-dot {*/
/*  margin-top: 0 !important;*/
/*  padding: 3px !important;*/
/*  z-index: 1;*/
/*}*/
/*.VueCarousel-dot {*/
/*  width: 6px !important;*/
/*  height: 6px !important;*/
/*}*/
/*.VueCarousel .VueCarousel-pagination {*/
/*  bottom: 1rem;*/
/*  position: absolute;*/
/*}*/
/*.VueCarousel .VueCarousel-dot {*/
/*  background: rgba(255, 255, 255, .5) !important;*/
/*}*/
/*.VueCarousel-dot--active .VueCarousel-dot {*/
/*  background-color: var(--primary) !important;*/
/*}*/
/*.VueCarousel .VueCarousel-dot--active .VueCarousel-dot {*/
/*  background: white !important;*/
/*}*/
.wrap {
  white-space: normal;
}