/*
@import "bootstrap" layer(bootstrap); //this does not compile well, try the following code:
@layer bootstrap {
	@import "bootstrap";
}
*/
/*----------------------------------*/
/*---------------FONTS--------------*/
/*----------------------------------*/
@font-face {
  font-family: "roboto";
  font-weight: normal;
  src: url("/assets/fonts/Roboto-Regular-webfont.eot") format("eot");
  src: url("/assets/fonts/Roboto-Regular-webfont.eot") format("embedded-opentype"), url("/assets/fonts/Roboto-Regular-webfont.woff") format("woff"), url("/assets/fonts/Roboto-Regular-webfont.ttf") format("truetype"), url("/assets/fonts/Roboto-Regular-webfont.svg#Roboto") format("svg");
}
@font-face {
  font-family: "roboto";
  font-weight: 500;
  src: url("/assets/fonts/Roboto-Medium-webfont.eot") format("eot");
  src: url("/assets/fonts/Roboto-Medium-webfont.eot") format("embedded-opentype"), url("/assets/fonts/Roboto-Medium-webfont.woff") format("woff"), url("/assets/fonts/Roboto-Medium-webfont.ttf") format("truetype"), url("/assets/fonts/Roboto-Medium-webfont.svg#Roboto") format("svg");
}
@font-face {
  font-family: "roboto";
  font-weight: 700;
  src: url("/assets/fonts/Roboto-Bold-webfont.eot") format("eot");
  src: url("/assets/fonts/Roboto-Bold-webfont.eot") format("embedded-opentype"), url("/assets/fonts/Roboto-Bold-webfont.woff") format("woff"), url("/assets/fonts/Roboto-Bold-webfont.ttf") format("truetype"), url("/assets/fonts/Roboto-Bold-webfont.svg#Roboto") format("svg");
}
@font-face {
  font-family: "awesome";
  src: url("/assets/fonts/fa-regular-400.woff2") format("woff2"), url("/assets/fonts/fa-regular-400.ttf") format("truetype");
}
/*----------------------------------*/
/*-------------VARIABLES------------*/
/*----------------------------------*/
/*----------COMMON COLOURS----------*/
/*------------Default WL------------*/
/*--------------ERRORS--------------*/
/*----------------------------------*/
/*-------------FUNCTIONS------------*/
/*----------------------------------*/
/*----------------------------------*/
/*---------------MIXINS-------------*/
/*----------------------------------*/
:where([class=vAlign]):before {
  content: " ";
  display: inline-block;
  height: 24px;
  vertical-align: text-bottom;
}

/*----------------------------------*/
/*-------------BASIC CSS------------*/
/*----------------------------------*/
*, :before, :after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100vh;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.3; /*BOOTSTRAP OVERWRITTEN - MIGHT STAY*/
  color: #706951;
}

HTML {
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 48px;
}

:where(html[lang=ru]) * {
  text-transform: lowercase;
}

html[lang=ru] ::first-letter {
  text-transform: uppercase;
}

body {
  background: transparent url(/assets/images/small_V_BG.jpg) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
}

/*-------------HEADERS--------------*/
h2, h4, h5, h6 {
  width: calc(100% - 12px*2);
  margin: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #245ba7;
}

h2 {
  font-size: 1.875rem;
}

h3, .navHDR {
  position: sticky;
  top: 0;
  z-index: 11;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  font-size: 1.5rem;
  line-height: 47px;
  color: #245ba7;
  background-color: #eee;
  border-bottom: solid 1px #fff;
}

section + h3 {
  border-top: solid 1px #fff;
}

.modalHDR {
  font-size: 1.5rem;
}

h3.modalHDR {
  margin: 0 0 12px;
  border-radius: 6px;
}
@media all and (orientation: landscape) {
  h3.modalHDR {
    position: static;
  }
}

h4, h5 {
  position: relative;
  font-size: 1.25rem;
}

h4 span, h5 span, .headerSPN {
  font-weight: normal;
  color: #706951;
  white-space: nowrap;
}

h5 {
  font-weight: 500;
}

.publicityHDR {
  position: relative;
  margin-top: -36px;
  text-align: center;
}

.publicityHDR span {
  padding: 12px;
  background: #fff;
}

/*-------------CONTENTS--------------*/
p {
  margin: 12px;
  font-size: 1rem;
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
  -webkit-hyphenate-limit-before: 3; /* Legacy for Safari */
  -webkit-hyphenate-limit-after: 3; /* Legacy for Safari */
  -ms-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-chars: 6 3 3; /* not yet supported */
  -moz-hyphenate-limit-chars: 6 3 3; /* not yet supported */
  hyphenate-limit-chars: 6 3 3;
  -ms-hyphenate-limit-lines: 2;
  -webkit-hyphenate-limit-lines: 2;
  hyphenate-limit-lines: 2;
  -ms-hyphenate-limit-last: always;
  hyphenate-limit-last: always;
  -ms-hyphenate-limit-zone: 8%;
  hyphenate-limit-zone: 8%;
}

h5 + :is(p, p[class]) {
  padding-top: 0;
}

[class*=oldPRC i] {
  margin: 0;
  font-size: initial;
  text-decoration: line-through;
  color: #CC3333;
}

.fromPrice {
  font-size: 1.5rem;
  text-align: right;
}

.fromPrice > .coin {
  font-size: 0.75em;
  text-transform: uppercase;
}

[class*=oldPRC i] :is(.coin, .price) {
  color: #CC3333;
}

.price {
  color: #245ba7;
}

.totalLBL {
  font-size: 1.25rem;
}

address {
  margin: 12px;
  font-style: normal;
}

/*---------------Links--------------*/
a:link, a:visited, [class$=LNK] {
  font-weight: 400;
  color: #008fcb;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:focus, a:active, [class$=LNK]:hover, [class$=LNK]:focus, [class$=LNK]:active {
  color: #006996;
}

/*---------------Lists--------------*/
:where(ul, ol) {
  margin: 0;
  padding: 0 12px 0 36px;
}

dl {
  margin: 12px 0;
  padding: 0;
}

dt {
  margin: 0 12px;
  line-height: 1.5rem;
  font-weight: 500;
  /* line-height: initial; BOOTSTRAP OVERWRITTEN*/
  color: #245ba7;
}

dd {
  margin: 0 12px;
  padding: 6px 0;
  border-bottom: solid 1px #ccc;
  line-height: 1.5;
  /* line-height: initial; BOOTSTRAP OVERWRITTEN*/
}

li {
  margin: 8px 0;
}

.guestList li:empty { /*used in CIVITFUN CMP*/
  display: none;
}

/*---------------Images--------------*/
figure {
  position: relative;
  margin: 0;
}

img {
  height: max(48px*5, 100vh/3);
}

figure {
  position: relative;
  margin: 0;
}

figure img {
  display: block;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  height: 100%;
}

figcaption {
  width: calc(100% - 12px*2);
  margin: 12px;
}

figcaption.glassBOX {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  padding: 12px;
  line-height: 1;
  text-align: center;
  color: #706951;
  border-radius: 6px;
}

figcaption [class*=ICN]:only-child:after {
  content: attr(title);
  margin-left: 6px;
}

.subtitle {
  margin: 0;
  font-size: 2rem;
}

[class*=thumb] {
  flex: 0 0 96px;
  align-self: center;
  overflow: hidden;
  object-fit: cover;
  width: 96px;
  height: 96px;
  margin: 0 12px 12px;
  padding: 0;
  box-shadow: -3px -3px 9px white, 3px 3px 9px rgba(51, 0, 51, 0.15), inset -6px -6px 18px white, inset 6px 6px 18px rgba(0, 0, 0, 0.05);
}

.galleryFIG {
  aspect-ratio: 3/2;
  width: 100%;
  margin: 12px 0;
  border-radius: 12px;
  cursor: pointer;
}
@supports not (aspect-ratio: 3/2) {
  .galleryFIG { /*For iOS previous to v15*/
    padding: 66.6666666667% 12px 0;
  }
}

.galleryIMG {
  height: 100%;
}

/*---------------Video--------------*/
.videoContainer {
  overflow: hidden;
  background-color: #000;
}

/*---------Recommended label---------*/
[class*=recommended] {
  position: relative;
}

[class*=recommended]:before {
  content: "\e0ab";
  display: block;
  position: absolute;
  top: 8px;
  width: 144px;
  height: 48px;
  font-family: "awesome";
  color: white;
  font-size: 28px;
  line-height: 48px;
  text-align: center;
  background: aliceblue;
  border: solid 20px red;
  border-color: #706951 transparent #706951 transparent;
  border-width: 0 48px 48px;
  background-clip: content-box;
  transform: rotate(-45deg);
  left: -40px;
  box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.25);
}

.recommended-2:before {
  content: "\e0ab\e0ab";
}

.recommended-3:before {
  content: "\e0ab\e0ab\e0ab";
  font-size: 24px;
}

/*------------Descriptions-----------*/
[class*=DSC] {
  --maxRows: 3;
}

.moreLNK:before {
  content: "\f06e";
  margin-right: 6px;
  font-family: awesome;
}

.visible + .moreLNK:before {
  content: "\f070";
}

.clampDSC span {
  border: solid 1px transparent; /*workaround to fix clientRects() function*/
}

[class*=DSC] + .moreLNK {
  display: none;
  margin: 12px;
}

.seeMore + .moreLNK {
  display: block;
}

.summary .moreLNK {
  margin-left: 120px;
}

.summaryContent {
  display: inline-block;
  width: calc(100% - 120px);
  vertical-align: top;
}

.summaryContent > :first-child {
  margin-top: 6px;
}

/*------------TIME & SPLITTERS------------*/
hr {
  margin: 24px 12px;
  border-width: 1px 0;
  border-color: transparent;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #fff;
}

time {
  font-size: initial;
  color: #666;
  white-space: nowrap;
}

:is(h2, h4, h5, h6) time {
  font-size: inherit;
}

[class*=timeSplitter] {
  display: block;
  position: relative;
  z-index: 5;
  margin: 0 12px;
  padding: 12px 0;
  color: #fff;
  text-align: center;
  background: inherit;
  text-shadow: 1px 1px 1px #767676;
}

.timeSplitter {
  position: sticky;
  top: 48px;
}

[class*=pill i] {
  display: inline-block;
  padding: 0 12px;
  line-height: 1.5rem;
  background: #ccc;
  border-radius: 12px;
  color: var(--pillCLR, inherit);
}

.resortPill, .filterPill {
  --pillCLR: #fff;
  margin: 0 12px 6px;
  text-shadow: 1px 1px 1px #767676;
}

.filterLST {
  padding: 0;
}

.filterPill {
  margin-left: 0;
}

.filterPill:hover {
  background-color: #006996;
  cursor: pointer;
}

.filterPill:after {
  content: "\f00d";
  display: inline-block;
  font-family: awesome;
  margin-left: 6px;
}

.filterPill:hover:after {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

[class*=timeSplitter]:before {
  content: "";
  display: block;
  position: absolute;
  top: 23px;
  z-index: -1;
  width: 100%;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #fff;
}

/*-----------PROMO CODES-----------*/
.promoCNT {
  position: relative;
  padding: 0 6px;
}

.promoPill {
  display: inline-block;
  margin: auto 6px;
  font-size: initial;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #245ba7;
  background-color: rgb(245, 231, 0);
}

.fromPrice .promoPill {
  position: absolute;
  left: 6px;
  bottom: calc(50% - 12px);
}

.promoPill.pluggedICN {
  background-color: #245ba7;
  color: #fff;
  font-weight: normal;
}

.promoIMG {
  height: auto;
}

.promoDiscount {
  font-size: 32px;
}

.promoICN:before, .removedICN:before {
  content: "\f646";
  font-size: 24px;
  line-height: 21px;
  color: #CC3333;
  vertical-align: bottom;
}

.removedICN:before {
  content: "\e2af";
}

/*-----------LEGAL TEXTS-----------*/
.documentHolder {
  margin: 0 auto;
  padding: 12px;
}

.legalTXT {
  max-width: 80rem;
  margin: 0;
  padding: 12px;
  font-size: initial;
  counter-reset: oList;
}

.legalTXT h3 {
  display: flex;
  align-content: center;
  align-items: center;
  height: 84px;
  padding: calc(48px/2 - 12px*1.25) 12px;
  line-height: 30px;
  counter-increment: oList;
}

.legalTXT h3 > span {
  display: block;
}

.legalTXT h3 > span:first-letter {
  text-transform: capitalize;
}

.legalTXT h3:before {
  content: counter(oList, upper-roman) ". ";
  margin: 6px;
}

/*--------------QR CODE-------------*/
.qrCNT {
  display: table;
  width: 100%;
}

.QR_PLH {
  width: 100%;
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}
@media only screen and (min-width: 500px) {
  .QR_PLH {
    display: table-cell;
  }
}

.QR_PLH img {
  display: inline !important;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.qrCNT > .imgHLD {
  padding: 12px;
  width: max(300px, 100%);
  text-align: center;
}
@media only screen and (min-width: 500px) {
  .qrCNT > .imgHLD {
    display: table-cell;
  }
}

.imgHLD img {
  border-radius: 12px;
}
@media only screen and (max-width: 499px) {
  .imgHLD img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

/*----------------------------------*/
/*---------------ICONS--------------*/
/*----------------------------------*/
/*-----------CONTENT ICONS-----------*/
[class*=ICN]:before {
  font-family: awesome;
}

:is([class*=ICN], [class*=ICO]):not(:empty):before {
  margin-right: 12px;
}

[class*=ICN][class*=LNK]:before, a[class*=ICN]:before {
  font-size: 1.5rem;
  line-height: 1.5rem;
  vertical-align: text-top;
}

.addICN:before {
  content: "\f067";
}

[class*=plus i]:before {
  content: "\f055";
}

.minusICN:before {
  content: "\f068";
}

.removeICN:before {
  content: "\f00d";
}

.suitcaseICN:before {
  content: "\f0f2";
}

.routeICN:before {
  content: "\f4d7";
}

.pickupICN:before {
  content: "\f601";
}

.timeICN:before {
  content: "\f017";
}

.durationICN:before {
  content: "\f252";
  display: inline-block;
  width: 16px;
  text-align: center;
}

.waitICN:before {
  content: "\f252";
}

.infoICN:before {
  content: "\f05a";
}

.phoneICN:before {
  content: "\f879";
}

.mailICN:before {
  content: "\f0e0";
}

.locationICN:before {
  content: "\f3c5";
}

.paxxICN:before {
  content: "\f500";
}

.bellICN:before {
  content: "\f0f3";
}

.photoICN:before {
  content: "\f03e";
}

.paxItemVAL:after {
  content: "\f007";
  display: inline-block;
  margin: 0 0 0 6px;
  font-family: "awesome";
}

.taxiICN:before {
  content: "\f1ba";
}

.busICN:before {
  content: "\f207";
}

.cartICN:before {
  content: "\f07a";
}

.uSettingsICN:before {
  content: "\f4fe";
}

.ticketICN:before {
  content: "\f3ff";
}

.hotelICN:before {
  content: "\f594";
}

.bedICN:before {
  content: "\f8f7";
}

.dayICN:before {
  content: "\f783";
}

.keyICN:before {
  content: "\f084";
}

.giftICN:before {
  content: "\f06b";
}

.staffICN:before {
  content: "\f508";
}

.HSICN:before {
  content: "\e05c";
}

.travelICN:before {
  content: "\f5ab";
}

.targetICN:before {
  content: "\f648";
}

.difficultyICN:before {
  content: "\f628";
}

.langICN:before {
  content: "\f0ac";
}

.closeICN:before {
  content: "\f00d";
}

.diamondICN:before {
  content: "\f3a5";
}

.awardICN:before {
  content: "\f559";
}

.shuttleICN:before {
  content: "\f5b6";
}

.carICN:before {
  content: "\f5e4";
}

.likeICN:before {
  content: "\f164";
}

[class*=plugged i]:before {
  content: "\e55c";
}

[class*=unplugged i]:before {
  content: "\f1e6";
}

/*------------Filter icons----------*/
/*TOURS*/
.boatTourICN:before {
  content: "\e445";
}

.airTourICN:before {
  content: "\e22b";
}

.airTour2ICN:before {
  content: "\f533";
}

.excrusionICN:before {
  content: "\f6ec";
}

.toursICN:before {
  content: "\f083";
}

.tours2ICN:before {
  content: "\e52e";
}

.guidesICN:before {
  content: "\f456";
}

.sightseeingICN:before {
  content: "\e52f";
}

.safariICN:before {
  content: "\f63b";
}

/*EAT & DRINK*/
.barICN:before {
  content: "\f57b";
}

.restaurantICN:before {
  content: "\f2e7";
}

/*SHOWS & EVENTS*/
:is(.showsICN, .entertainmentICN):before {
  content: "\f630";
}

/*SPORTS & ADVENTURE*/
.golfICN:before {
  content: "\f450";
}

.waterSportsICN:before {
  content: "\f5c4";
}

.seaSportsICN:before {
  content: "\e65b";
}

.skiiICN:before {
  content: "\f7c9";
}

.indoorICN:before {
  content: "\e0c3";
}

:is(.adventureICN, .adventurousICN):before {
  content: "\f14e";
}

/*ATRACTIONS*/
.ticketICN:before {
  content: "\e63f";
}

.themParkICN:before {
  content: "\e324";
}

/*WELLNESS*/
.healthICN:before {
  content: "\f21e";
}

.wellnessICN:before {
  content: "\f5bb";
}

/*MUSEUMS & MONUMENTS*/
.museumICN:before {
  content: "\f19c";
}

.miscellaneousICN:before {
  content: "\f49c";
}

.airportICN:before {
  content: "\f072";
}

.pastportICN:before {
  content: "\f5ab";
}

.discountICN:before {
  content: "\f541";
}

.discount2ICN:before {
  content: "\f663";
}

/*-----------Search-----------*/
.searchICN:before {
  content: "\f002";
}

.filterICN:before {
  content: "\f0b0";
}

.sortICN:before {
  content: "\f883";
}

/*---------Miscellanea---------*/
.downloadICN:before {
  content: "\f358";
}

.playICN:before {
  content: "\f144";
}

.doneIcon:after {
  content: "\f058";
  font-family: "awesome";
}

.tickICN:before {
  content: "\f00c";
  color: #39C;
}

.crossICN:before {
  content: "\f00d";
  color: #F30;
}

.compareTBL :is(.tickICN, .crossICN):before {
  font-size: 1.25rem;
}

.inCartICN:before {
  content: "\f218";
}

.rememberICN:before {
  content: "\e1a0";
  color: #245ba7;
}

.importantICN:before {
  content: "\f06a";
  color: #CC0;
}

.uListICN:before {
  content: "\e122";
}

:is(a, button).externalLinkICN:before {
  content: "\f14c";
  font-size: revert;
}

/*-----Theme & Cats------*/
.captive-wildlifeICN:before {
  content: "\f1b0";
}

.culturalICN:before {
  content: "\f19c";
}

.good-for-shoppingICN:before {
  content: "\f290";
}

.nature-loversICN:before {
  content: "\f4cb";
}

.partyingICN:before {
  content: "\e31b";
}

.protected-wildlifeICN:before {
  content: "\f702";
}

.sport-fishingICN:before {
  content: "\e3a8";
}

.water-activitiesICN:before {
  content: "\e3b7";
}

.relaxingICN:before {
  content: "\f5bb";
}

.sustainable-consciousICN:before {
  content: "\f4bf";
}

/*-----------Forecast Icons------------*/
.weekWeatherWDG {
  text-align: center;
}

.weekWeatherWDG [class*=ICN]:before {
  display: inline-block;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #245ba7;
}

/*========Sunny==========*/
.sunICN:before {
  content: "\e28f";
}

.sun-cloudICN:before {
  content: "\f763"; /*Sun small cloud*/
}

/*========Cloudy=========*/
.cloudsICN:before {
  content: "\f744"; /*two clouds*/
}

.cloudICN:before {
  content: "\f0c2"; /*One cloud*/
}

.cloud-sunICN:before {
  content: "\f6c4"; /*Sun Big Cloud*/
}

.clouds-sunICN:before {
  content: "\f746"; /*Sun two Cloud*/
}

.cloud-fogICN:before {
  content: "\f74e";
}

.cloud-questionICN:before {
  content: "\e492";
}

.cloud-minusICN:before {
  content: "\e35d";
}

.cloud-plusICN:before {
  content: "e35e";
}

.smokeICN:before {
  content: "f760";
}

/*========Rainy==========*/
.raindropsICN:before {
  content: "\f75c";
}

.cloud-drizzleICN:before {
  content: "\f738";
}

.cloud-sun-rainICN:before {
  content: "\f743";
}

.cloud-rainICN:before {
  content: "\f73d";
}

.cloud-hail-mixedICN:before {
  content: "\f73a";
}

.cloud-hailICN:before {
  content: "\f739";
}

.cloud-showersICN:before {
  content: "\f73f";
}

.cloud-showers-heavyICN:before {
  content: "\f740";
}

/*========Snowy=========*/
.cloud-sleetICN:before {
  content: "\f741";
  color: #99C;
}

.cloud-snowICN:before {
  content: "\f742";
  color: #99C;
}

.snowflakeICN:before {
  content: "\f2dc";
  color: #99C;
}

.snowflakesICN:before {
  content: "\f7cf";
  color: #99C;
}

/*========Stormy=========*/
.snow-blowingICN:before {
  content: "\f761";
  color: #669;
}

.cloud-boltICN:before {
  content: "\f76c";
  color: #669;
}

.cloud-bolt-sunICN:before {
  content: "\f76e";
  color: #669;
}

.tornadoICN:before {
  content: "\f76f";
  color: #669;
}

.gemICN:before {
  content: "\f3a5";
  color: #669;
}

/*----------MENU ICONS-----------*/
[class*=ICO]:before, .ticket:not(:first-child) [class*=ICO]:after {
  content: " ";
  display: inline-block;
  text-align: center;
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  mask-size: cover;
}

.tripICO:before {
  -webkit-mask-position: 0% center;
  mask-position: 0% center;
}

.destICO:before {
  -webkit-mask-position: 10% center;
  mask-position: 10% center;
}

.transferICO:before {
  -webkit-mask-position: 20% center;
  mask-position: 20% center;
}

.hotelICO:before {
  -webkit-mask-position: 30.1% center;
  mask-position: 30.1% center;
}

.ticketICO:before {
  -webkit-mask-position: 40% center;
  mask-position: 40% center;
}

.contactICO:before {
  -webkit-mask-position: 50% center;
  mask-position: 50% center;
}

.travelServicesICO:before {
  -webkit-mask-position: 60% center;
  mask-position: 60% center;
}

.rentalsICO:before {
  -webkit-mask-position: 70% center;
  mask-position: 70% center;
}

.OSICO:before {
  -webkit-mask-position: 80% center;
  mask-position: 80% center;
}

.OPICO:before {
  -webkit-mask-position: 90% center;
  mask-position: 90% center;
}

.recomICO:before {
  -webkit-mask-position: 100% center;
  mask-position: 100% center;
}

/*----------HDR ICONS-----------*/
.inFlightICO3D:before {
  -webkit-mask-position: 0% center;
  mask-position: 0% center;
}

[class*="3D"]:before {
  background-image: linear-gradient(#245ba7 60%, rgba(36, 91, 167, 0.75) 60%, rgba(36, 91, 167, 0.25) 75%, transparent 100%);
  -webkit-mask-image: url("/assets/images/headers_sprite.svg");
  mask-image: url("/assets/images/headers_sprite.svg");
}

h3[class*="3D"]:before {
  background-image: linear-gradient(#245ba7 63%, rgba(36, 91, 167, 0.75) 63%, rgba(36, 91, 167, 0.25) 75%, transparent 100%);
  width: 34px;
  height: 42px;
  margin: 0 6px 0 0;
  vertical-align: middle;
}

h4[class*="3D"]:before {
  position: absolute;
  top: -60px;
  left: calc(50% - 48px/2);
  z-index: 1;
  width: 48px;
  height: 60px;
}

.ticket:not(:first-of-type) [class*="3D"]:after {
  position: absolute;
  top: -60px;
  left: calc(50% - 12px*2.5);
  z-index: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
}

.staffICO3D:before {
  -webkit-mask-position: 100% center;
  mask-position: 100% center;
}

.taxiTransferICO3D:before {
  -webkit-mask-position: 12% center;
  mask-position: 12% center;
  background-image: conic-gradient(from 40deg, #245ba7, transparent 30%, #245ba7 70%);
  background-position: 0px 11px;
  background-size: 130%;
}

.hotelICO3D:before {
  -webkit-mask-position: 18% center;
  mask-position: 18% center;
}

.ticketICO3D:before {
  -webkit-mask-position: 23.5% center;
  mask-position: 23.5% center;
}

.sharedTransferICO3D:before {
  background-image: linear-gradient(170deg, #245ba7 60%, rgba(36, 91, 167, 0.75) 65%, rgba(36, 91, 167, 0.25) 75%, transparent 100%);
  -webkit-mask-position: 29.5% center;
  mask-position: 29.5% center;
}

h4.sharedTransferICO3D:after {
  content: "";
  width: 38px;
  height: 48px;
  background: #fff;
  position: absolute;
  top: -48px;
  left: calc(50% - 20px);
  border-radius: 8px;
}

.outFlightICO3D:before {
  -webkit-mask-position: 35.3% center;
  mask-position: 35.3% center;
}

.tripICO3D:before {
  -webkit-mask-position: 41.5% center;
  mask-position: 41.5% center;
}

.destICO3D:before {
  -webkit-mask-position: 47% center;
  mask-position: 47% center;
}

.contactICO3D:before {
  -webkit-mask-position: 53% center;
  mask-position: 53% center;
}

.travelServicesICO3D:before {
  -webkit-mask-position: 59% center;
  mask-position: 59% center;
}

.rentalsICO3D:before {
  -webkit-mask-position: 65% 2px;
  mask-position: 65% 2px;
}

.ASICO3D:before {
  -webkit-mask-position: 70.5% center;
  mask-position: 70.5% center;
}

.HSICO3D:before {
  -webkit-mask-position: 76.3% center;
  mask-position: 76.3% center;
}

.OPICO3D:before {
  -webkit-mask-position: 82.3% center;
  mask-position: 82.3% center;
}

.recomICO3D:before {
  -webkit-mask-position: 88% center;
  mask-position: 88% center;
}

.GSICO3D:before {
  -webkit-mask-position: 94% center;
  mask-position: 94% center;
}

/*-----------Civitfun & Push Landing Icons------------*/
.paxSet > [class*=ICN] {
  margin: 0 12px 0 0;
}

.paxSet > [class*=ICN]:before {
  margin-right: 6px;
}

.adultICN:before {
  content: "\f183";
  font-size: 1.25rem;
  vertical-align: middle;
}

.childICN:before {
  content: "\f1ae";
  font-size: 1rem;
  vertical-align: middle;
}

.babyICN:before {
  content: "\f77d";
  font-size: 1rem;
  vertical-align: middle;
}

[class*=ICR]:after {
  font-family: "awesome";
  font-size: 24px;
  float: right;
}

.enterDataICR:after, .checkedInICR + .cuedICR:after {
  content: "\f044";
  margin-right: -4px;
}

.cuedICR:after {
  content: "\f141";
}

.checkedInICR:after {
  content: "\f14a";
  margin: 0 2px 0 24px;
}

/*---------Highlight Icons---------*/
[class*=HLI] {
  position: relative;
  min-height: 42px;
  padding-left: 48px;
}

[class*=HLI]:before { /*HLI = HighLight Icon*/
  content: " ";
  display: inline-block;
  position: absolute;
  left: 12px;
  top: min(12px, calc(50% - 21px));
  width: 42px;
  height: 42px;
  text-align: center;
  background-color: #245ba7;
  background-repeat: no-repeat;
  -webkit-mask-image: url(/assets/images/highlights_sprite.svg);
  mask-image: url(/assets/images/highlights_sprite.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  mask-size: cover;
}

[class*=HLI] p:first-child {
  margin-top: 6px;
}

[class*=HLI] p:last-child {
  margin-bottom: 6px;
}

.meetingHLI:before {
  -webkit-mask-position: 0% center;
  mask-position: 0% center;
}

.meetingITM:first-of-type:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  line-height: 24px;
  background-color: #245ba7;
  border-radius: 50%;
}

.checkInHLI:before {
  -webkit-mask-position: 20% center;
  mask-position: 20% center;
}

.checkOutHLI:before {
  -webkit-mask-position: 40% center;
  mask-position: 40% center;
}

.infoHLI:before {
  -webkit-mask-position: 60% center;
  mask-position: 60% center;
}

.bellHLI:before {
  -webkit-mask-position: 80% center;
  mask-position: 80% center;
}

.refundHLI:before {
  -webkit-mask-position: 100% center;
  mask-position: 100% center;
}

/*----------------------------------*/
/*-------------STRUCTURE------------*/
/*----------------------------------*/
/*----------BASE MODIFIERS----------*/
:where([class$=BOX]) {
  margin: 12px;
  padding: 12px;
  border-radius: 12px;
}

:where([class$=BOX]) [class$=BOX], .ticket [class$=BOX] {
  border-radius: 6px;
}

.glassBOX:before {
  border-radius: 12px;
}

/*--------------HEADER--------------*/
body > header {
  display: flex;
  max-width: 80rem;
  margin: auto;
  justify-content: space-between;
}

@keyframes flipFlop {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(180deg);
  }
}
@keyframes flopFlip {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.flipIMG {
  position: relative;
  perspective: 300px;
}

.flipIMG .logo {
  position: absolute;
}

.logo {
  width: auto;
  height: 48px;
  margin: 12px;
  background: transparent;
}

/*--------------SIDEBAR-------------*/
aside {
  max-height: calc(100vh - 48px - 12px*3);
}

/*--------------SECTIONS-------------*/
section {
  margin: 0;
  padding: 12px;
}

main {
  background: #fff;
  max-width: 80rem;
  margin: auto;
}

main > section {
  width: 100%;
  background: #fff;
}

@media (max-width: 767px) {
  main > section:only-of-type {
    min-height: calc(100vh - 48px*3 - 12px*3);
  }
}
@media (min-width: 768px) {
  main > section:only-of-type {
    min-height: calc(100% - 48px - 1px);
  }
}

:where(section) > * {
  margin: 12px;
}

[class*=login i] {
  margin: 12px;
  background-color: unset;
}

.hasSubMenu {
  padding-bottom: 48px;
}

/*--------------ARTICLES-------------*/
article {
  position: relative;
  margin: 0 0 24px;
  text-align: left;
}

article > figure, .swiper-container {
  margin: 12px;
}

article > figure {
  aspect-ratio: 5/3;
}

article .swiper-container {
  width: max(38% - 24px, 200px);
}

article > :is(img, figure img), .swiper-slide img {
  background: #eee url(/assets/images/loader.gif) no-repeat center center;
}

.flex > :where(img, figure):first-of-type {
  flex: 0 0 calc(100% - 12px*2);
  width: min(38% - 12px*2, 100% - 12px*2);
  align-self: stretch;
}

article > img, article > figure:no(.inhouseBNR) img, .swiper-container img {
  display: block;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  min-height: 192px;
}

article > a, .helpPhone a {
  display: block;
  margin: 12px;
}

.ticketGRP {
  overflow: hidden;
  padding: 24px 0;
}

.ticket {
  margin: 0;
  padding: 24px 12px;
  border-radius: 12px;
  border: solid 1px #e6e6e6;
  border-width: 0 1px;
  background: #fff;
}

.ticket + .ticket {
  position: relative;
  border-top: dashed 2px #eee;
}

.ticket + .ticket:before, .ticket + .ticket:after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: -24px;
  border-radius: 50%;
  border: solid 12px #fff;
  transform: rotate(-45deg);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}

.ticket + .ticket:before {
  left: -24px;
  border-color: #eee #fff #fff #eee;
  background-image: linear-gradient(-45deg, #ede, #eee 38%, #eee 100%);
}

.ticket + .ticket:after {
  right: -24px;
  border-color: #fff #eee #eee #fff;
  background-image: linear-gradient(135deg, #ede, #eee 38%, #eee 100%);
}

.ticket:first-child {
  border-top: solid 1px #e6e6e6;
}

.ticket:last-child {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2);
}

.detailINF {
  margin: 12px;
}

/*----------------------------------*/
/*----------CONTENT BLOCKS----------*/
/*----------------------------------*/
:where([class$=CNT]) {
  margin: 0;
}

.summaryCNT {
  background: #eee;
  padding: 12px 0;
}

[class*=FLX] {
  display: flex;
}

.flxItem {
  flex: 1 auto;
  width: max(38%, 200px);
}

.flxItem:last-child {
  width: max(62%, 300px);
}

.flxItem:only-child {
  width: 100%;
}

.vFLX {
  flex-flow: column nowrap;
}

.hFLX {
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: center;
}

.hFLX > *:not(:only-child):not(.textTrim):not(button) {
  min-width: 33.3333333333%;
}

.hFLX > :last-child {
  text-align: right;
}

.hFLX > :first-child, .hFLX > :only-child {
  text-align: left;
}

.hFLX > [class*=iconBTN i] {
  text-align: revert;
}

.flxLBL {
  flex: 1 auto;
  padding-right: 12px;
}

.wrapFLX {
  flex-flow: row wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.wrapFLX > * + :last-child {
  margin-left: 24px;
}

.itemHDR {
  flex: 100%;
  display: block;
  max-width: none;
  font-weight: 700;
}

[class*=LBL] {
  font-weight: 500;
}

:not(.itemHDR) + [class$=VAL] {
  min-width: 60px;
  padding-left: 12px;
  text-align: right;
}

/*--------------LISTS--------------*/
:where([class$=LST]) {
  margin: 12px;
  padding: 12px;
  list-style: none;
}

.uLST {
  padding: 0 6px;
}

.lvl2LST {
  margin: 12px 0;
  padding: 0;
  color: #666;
}

.lvl2LST li {
  margin: 0;
}

/*CIVITFUN*/
.oLST {
  margin: 0;
  padding: 0;
  counter-reset: room;
}

.romanLST {
  list-style-type: lower-roman;
  padding: 0 0 0 24px;
}

[class*=splitted i] {
  padding: 0;
  color: #666;
}

[class*=splitted i] > *, .splitITM {
  padding: 12px 0;
  border-bottom: solid 1px #ccc;
}

[class*=splitted i] > * {
  margin: 0;
}

[class*=splitted i] > li:has(.lvl2LST) {
  padding: 0;
}

li:has(.lvl2LST) > h6 {
  width: initial;
  margin: 0;
  padding: 12px 0 0 0;
}

.oITM {
  font-size: 0;
}

.oITM:before {
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  counter-increment: room;
  content: counter(room);
  width: 30px;
  height: 30px;
  margin-left: 2px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  vertical-align: top;
  background-color: #245ba7;
  border-radius: 50%;
}

.oITM dt {
  display: inline-block;
  margin: 0;
  padding: 6px;
  max-width: calc(100% - 48px - 12px*2);
  font-size: initial;
  line-height: 1.25rem;
}

.oITM dd {
  font-size: initial;
}

/*-------------FACTS LIST-------------*/
.factsLST {
  padding: 0;
}

.multiCol.factsLST {
  --columnW: 180px;
}

.factsLST > [class*=ICN] {
  position: relative;
  padding: 0 0 0 24px;
}

.factsLST > [class*=ICN]:before {
  position: absolute;
  left: 0;
}

.factsLST dd {
  border: 0;
}

.factsLST .itemVAL {
  display: block;
  color: #bbb;
}

/*-------------THUMB LIST-------------*/
.thList {
  padding: 0;
}

.thItem {
  list-style: none;
}

.thList h5 {
  margin-top: 0;
}

/*------------SHOWCASE LIST------------*/
.showcaseCNT {
  width: auto;
  font-size: 0;
  white-space: nowrap;
}

.showcaseITM {
  --percentWidth: calc(50% - 24px);
  display: inline-flex;
  flex-flow: column nowrap;
  width: max(192px, var(--percentWidth));
  margin: 12px;
  font-size: initial;
  white-space: initial;
}

.showcaseITM:only-of-type {
  --percentWidth: calc(100%- 24px);
}
@media only screen and (min-width: 480px) {
  .showcaseITM:only-of-type {
    display: block;
  }
}

img.shwCSIMG {
  flex: 0;
  width: 100%;
  min-height: 144px;
  max-height: 144px;
  object-fit: cover;
  border-radius: 9px;
}

.shwCSHDR {
  flex: 1 0 auto;
  margin: 12px 0;
  font-size: 1rem;
  white-space: normal;
}

.showcaseITM .fromPrice {
  font-size: initial;
}

@media only screen and (min-width: 480px) {
  .showcaseITM:only-of-type img.shwCSIMG {
    width: 38%;
    max-height: 100%;
    float: left;
    margin-right: 12px;
  }
  .showcaseITM:only-of-type .shwCSHDR {
    font-size: 1.25rem;
  }
  .showcaseITM:only-of-type .factsLST {
    display: initial;
  }
}
/*------------HIGHLIGHT LIST-----------*/
dl[class*=HLI]:before {
  top: 0;
}

dl[class*=HLI] :is(dt, dd:only-child) {
  padding-top: 8px;
  line-height: normal;
}

dl[class*=HLI] dd {
  padding-top: 0;
  line-height: 1.1;
}

/*-------------UPGRADE LIST-------------*/
:is(details, .splitITM) + [class*=upgradeLST i] {
  margin-top: -12px;
}

[class*=splitted i] :is(.upgradeITM, .upgradeITM:has(.lvl2LST)) {
  position: relative;
  padding-left: 32px;
}

.upgradeITM:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: -4px;
  height: 48px;
  background-color: #FFBB00;
  border: solid 12px transparent;
  border-bottom-width: 12px;
  border-bottom-color: #fff;
}

.upgradeITM:after {
  content: "\f357";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  font-family: awesome;
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
  text-align: center;
}

/*-------------COMMA LIST------------*/
.commaLST {
  padding: 0;
}

.detailINF .commaLST,
.itemHDR + .commaLST {
  margin: 0;
}

.commaLST:empty {
  display: none;
}

.commaLST li {
  display: inline;
}

.commaLST li + li:before {
  content: ", ";
}

/*------------OPTIONS LIST-----------*/
.optITM:only-child [type=radio] {
  display: none;
}

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

.optITM.active {
  color: #245ba7;
}

.optITM.active:after {
  content: "\f00c";
  font-family: awesome;
  margin-left: auto;
}

/*---------ARTICLE CAROUSEL----------*/
.stockKRSL {
  white-space: nowrap;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  font-size: 0;
}

.carouselITM {
  display: inline-block;
  width: 100%;
  white-space: normal;
  scroll-snap-stop: always;
  scroll-snap-align: center;
  font-size: revert;
  vertical-align: top;
}

.krslNAV {
  display: flex;
}

.krslDOTS {
  flex: auto;
  padding: 12px;
  text-align: center;
  list-style: none;
}

.itemDOT {
  display: inline-block;
  line-height: 24px;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ff6699;
  border-radius: 50%;
}

.itemDOT.active {
  border: solid 4px #ff6699;
  background-color: #fff;
}

/*-----------TABULAR DATA------------*/
[class*=TBL] {
  width: calc(100% - 12px);
  margin: 6px;
  border-collapse: collapse;
}

[class*=TBL] :is(td, th) {
  padding: 6px;
  text-align: center;
  vertical-align: middle;
}

[class*=TBL] :first-child {
  text-align: left;
}

th span {
  display: block;
  font-weight: normal;
}

/*-----------Compare Table-----------*/
.compareTBL thead {
  font-size: 1.25rem;
  color: #245ba7;
}

/*-----------MULTI COLUMN-----------*/
[class*=multiCol] {
  --columnW: 320px;
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
  column-width: var(--columnW);
  column-gap: 24px;
  column-fill: balance;
  margin-top: 12px;
}

form[class*=multiCol] {
  margin: 0;
  column-gap: 0;
}

[class*=multiCol] > * {
  margin-top: 0;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

[class*=multiCol] > .listHDR {
  column-span: all;
  margin: 24px 12px 0;
  font-size: 1.25rem;
}

[class*=multiCol] > h5, .colSpan {
  -webkit-column-span: all;
  column-span: all;
}

/*--------SINGLE FLEX COLUMN---------*/
.flexCOL {
  width: min(432px, 100%);
  margin: auto;
}

/*----------COLUMN LAYOUT-----------*/
.respColLayout {
  display: flex;
  flex-flow: row nowrap;
}

.freeCOL {
  position: relative;
  flex: 66.6%;
  width: 66.6%;
}

.fixedCOL {
  position: relative;
  flex: max(312px, 33.3%);
}

/*--------------FLIGHT--------------*/
.flight {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 12px;
}

.duration {
  flex: 100%;
  position: relative;
  color: #999;
  text-align: center;
}

.duration:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  display: block;
  width: calc(100% - 16px - 12px/2);
  border-bottom: solid 2px #999;
  border-image: linear-gradient(to right, rgba(187, 187, 187, 0), #bbbbbb 90%) 100% 1;
}

.duration:after {
  content: "\f072";
  font-family: "awesome";
  line-height: 1.125rem;
  position: absolute;
  right: 0;
}

.duration time {
  display: inline-block;
  position: relative;
  background: #fff;
}

.countryISO {
  display: block;
}

.pointLoc {
  font-size: 16px;
}

.pointLoc:first-of-type {
  text-align: right;
}

.time {
  font-weight: 700;
}

.flightA2B {
  margin: 0 12px;
  font-size: 0.75rem;
}

/*---------------HOTEL--------------*/
.contactDesktop {
  padding: 0;
  margin: 12px 0;
}

.contactMobile {
  display: none;
}

@media only screen and (max-width: 540px) {
  .contactMobile {
    display: block;
    text-align: center;
  }
  .contactDesktop {
    display: none;
  }
}
.hInfo {
  list-style: none;
  margin: 12px;
}

.hotelCheck {
  display: inline-block;
  margin: 12px;
  width: calc(50% - 12px*2);
}

.date {
  padding: 12px;
  border: solid 2px #ccc;
  border-radius: 12px;
  font-size: 1.2rem;
}

.weekDay {
  display: block;
}

[class*=mail] {
  text-transform: lowercase;
}

/*--------BOOTH AND TERMINALS--------*/
.cropedImg {
  display: block;
  object-fit: cover;
  object-position: center center;
  overflow: hidden;
  width: 100%;
  margin: auto;
}

.boothImg {
  position: relative;
  margin: 12px;
  font-size: 1.6rem;
  vertical-align: top;
}

.boothImg img, article > :is(img, figure img) {
  height: min(48px*5, 50vh);
}

.fullScreen, .boothImg.fullScreen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 99;
  top: 0;
  left: 0;
  max-height: 100vh;
}

.boothImg.fullScreen {
  overflow: auto;
}

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

.expandImgBtn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  z-index: 1;
  text-align: center;
  color: #245ba7;
  background: #eee;
  border-radius: 12px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}

.expandImgBtn:before {
  content: "\f065";
  display: block;
  font-family: "awesome";
  font-size: 1.5rem;
  line-height: 48px;
}

.fullScreen .expandImgBtn {
  position: fixed;
}

.fullScreen .expandImgBtn:before {
  content: "\f066";
}

/*----------SUMMARY DETAILS---------*/
details {
  position: relative;
  margin: 0 12px;
  border-bottom: solid 1px #ccc;
  background-color: #eee;
  color: #666;
}

details:last-of-type {
  margin-bottom: 12px;
}

summary {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px 0;
  list-style: none; /*For FF*/
  background-color: #fff;
  cursor: pointer;
}

summary::marker {
  display: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: "\f06e";
  position: absolute;
  z-index: 0;
  top: 12px;
  right: 0;
  font-family: "awesome";
  font-size: 1.25rem;
  line-height: 48px;
  color: #008fcb;
}

summary.noDetails {
  cursor: default;
}

summary.noDetails:after {
  display: none;
}

summary h5 {
  margin: 0;
}

.summaryHDR {
  max-width: calc(100% - 12px*2);
  margin: 0;
  padding: 0 0 12px;
  font-weight: 600;
}

.unitDSC {
  display: block;
  color: #999;
  font-size: 0.875rem;
  font-weight: normal;
}

input + .summaryHDR {
  max-width: calc(100% - 48px - 12px*2);
}

.cost {
  display: block;
  width: 100%;
  font-weight: initial;
}

details[open] summary {
  border-bottom: solid 1px #ccc;
}

details[open] summary:after {
  content: "\f070";
}

details[open] [id^=unitItem]:after {
  color: #eee;
}

details dd {
  border: none;
}

details[id^=scItem] summary:after {
  content: none;
}

.detailSecondaryLST {
  font-size: 0.875rem;
}

.detailSecondaryLST > * {
  margin: 0;
  padding: 0;
}

.shoppingCart dd {
  padding: 0;
}

/*-------------CALENDAR-------------*/
.calendar {
  margin: 12px;
  table-layout: fixed;
  width: calc(100% - 12px*2);
}

.week :where(td) {
  overflow: hidden;
  width: 36px;
  height: 36px;
  padding: 4px;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  color: #ccc;
  border: solid 1px #ccc;
  border-radius: 6px;
}

.available, .rangeAvailable {
  background: #fff;
  color: #666;
}

.marked {
  color: #fff;
  background: #245ba7;
  border-color: #245ba7;
}

.rangeAvailable {
  border: dashed 3px rgba(36, 91, 167, 0.5);
}

.week .range {
  color: #245ba7;
  background: rgba(36, 91, 167, 0.25);
  border: transparent;
}

.month {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
}

/*----------------------------------*/
/*---------------FORMS--------------*/
/*----------------------------------*/
/*---------------BASIC--------------*/
form {
  box-sizing: border-box;
}

fieldset {
  padding-top: 0;
  font-size: 0;
  border: none;
}

fieldset > * {
  font-size: initial;
}

legend {
  font-size: initial;
  font-weight: 500;
  line-height: 24px;
}

.formBOX {
  margin-bottom: 12px;
  border: solid 1px #ccc;
}

/*---------------FIELDS--------------*/
label {
  /* font-weight: initial; BOOTSTRAP OVERWRITTEN*/
  margin: 12px;
  vertical-align: middle;
  cursor: pointer;
}

input:not([type=checkbox], [type=radio]), select, textarea {
  box-sizing: border-box;
  height: 48px;
  margin: 12px;
  padding: 12px;
  border: solid 1px #ccc;
  border-radius: 6px;
  font-size: 16px;
  color: #666;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #fff;
  cursor: text !important;
}

select {
  cursor: pointer;
}

.StripeElement {
  margin: 12px;
  padding: 12px;
  border: solid 1px #ccc;
  border-radius: 6px;
}

[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[type=date]::-webkit-calendar-picker-indicator, [type=text][list]::-webkit-calendar-picker-indicator,
[type=time]::-webkit-calendar-picker-indicator {
  margin: 0;
  padding-right: 0;
  background-color: #008fcb;
  background-image: none;
  -webkit-mask-image: url("/assets/images/calendar-alt.svg");
  -webkit-mask-repeat: no-repeat;
  mask-image: url("/assets/images/calendar-alt.svg");
  mask-repeat: no-repeat;
}

[type=time]::-webkit-calendar-picker-indicator {
  -webkit-mask-image: url("/assets/images/clock.svg");
  mask-image: url("/assets/images/clock.svg");
}

/*Remove type number increment arrows*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.StripeElement {
  padding: 16px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 1rem;
  color: #bbb;
  white-space: normal;
}

::-moz-placeholder { /* Firefox 19+ */
  font-size: 1rem;
  color: #bbb;
}

:-ms-input-placeholder { /* IE 10+ */
  font-size: 1rem;
  color: #bbb;
}

:-moz-placeholder { /* Firefox 18- */
  font-size: 1rem;
  color: #bbb;
}

:focus {
  outline: none;
}

.formItem {
  display: inline-block;
  position: relative;
  width: 100%;
  font-size: 0;
}

.combo {
  display: flex;
  flex-flow: row wrap;
}

.combo > * {
  flex: 1 auto;
}

.flxField {
  flex: 1 auto;
}

.mField {
  width: max(48px*5 + 12px*2, calc(100%/3*2));
}

.sField {
  width: max(48px*2.5 + 12px*2, calc(100%/3));
}

.checkBox {
  padding: 6px 12px;
}

.formItem:not(.checkBox) label {
  position: absolute;
  left: 12px;
  top: -8px;
  z-index: 1;
  font-size: 0.875rem;
  line-height: 1rem;
  backdrop-filter: blur(10px);
}

.formItem input, .formItem select, .formItem textarea {
  width: calc(100% - 12px*2);
}

select {
  position: relative;
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
  background-color: transparent;
}

/* For IE10 */
select::-ms-expand {
  display: none;
}

.select:has(select:not([multiple])):before {
  content: "\f078";
  position: absolute;
  z-index: 0;
  top: 12px;
  right: 24px;
  font-family: "awesome";
  font-size: 1.25rem;
  line-height: 48px;
  color: #008fcb;
}

.select:hover:before {
  color: #006996;
}

textarea, select[multiple] {
  height: 144px;
  resize: vertical;
}

.buttonCombo .formItem {
  width: calc(50% - 48px/2 - 12px*2);
}

.buttonCombo button {
  width: 72px;
  margin: 12px;
  padding: 12px;
  vertical-align: top;
}

.numberInput {
  margin: 12px;
  font-size: 0;
  text-align: right;
}

.numberInput > button, .numberInput > input {
  display: inline-block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin: 3px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-radius: 6px;
}

.numberInput > input {
  font-size: 1.5rem;
  color: #245ba7;
  background: inherit;
}

.numberInput :before {
  margin: 0;
}

.numberInput [type=number] {
  width: 2rem;
}

.numberInput label {
  font-size: 16px;
}

/*=======typeahead=======*/
input:not([type=date]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none;
}

select::-webkit-calendar-picker-indicator, .typeAhead [list]::-webkit-calendar-picker-indicator {
  opacity: 1;
  -webkit-mask-image: url("/assets/images/caret.svg");
  mask-image: url("/assets/images/caret.svg");
  mask-position: 0 3px;
}

.typeAhead [list]::-webkit-list-button {
  -webkit-mask-image: url("/assets/images/caret.svg");
  mask-image: url("/assets/images/caret.svg");
}

[type=search]:focus + .searchICN:before {
  color: #006996;
  font-size: 1rem;
  text-shadow: 1px 1px 2px #fff;
  background-color: transparent;
  backdrop-filter: unset;
}

.searchPNL {
  display: none;
  overflow: auto;
  position: absolute;
  bottom: calc(60px);
  left: 0;
  width: 100%;
  max-height: calc(100vh - 60px*3);
  padding: 12px;
  font-size: initial;
  text-align: left;
  background-color: #eee;
  box-shadow: 0px -6px 12px rgba(51, 0, 51, 0.15);
}

[type=search]:valid ~ .searchPNL {
  display: block;
}

.searchPNL datalist {
  display: block;
  height: 100%;
  overflow: auto;
}

[type=search] ~ .searchPNL optgroup {
  margin: 12px 0;
}

option {
  padding: 12px;
  white-space: normal;
  border-bottom: solid 1px #ccc;
}

[type=search] ~ .searchPNL option:before {
  display: inline-block;
  width: 24px;
  height: 100%;
  vertical-align: top;
}

[type=search] ~ .searchPNL option:after {
  content: attr(aria-label);
  display: inline-block;
  width: calc(100% - 24px);
  vertical-align: top;
}

/*=======readOnly=======*/
.readOnlyBOX {
  display: flex;
  align-items: center;
  position: relative;
  border: solid 1px rgba(255, 255, 255, 0.5);
  box-shadow: inset 6px 6px 24px rgba(0, 0, 0, 0.1);
}

.readOnlyLBL {
  position: absolute;
  top: 12px;
  width: 100%;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
}

input[readonly] {
  display: inline-block;
  flex: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  white-space: normal;
  background-color: transparent;
  border: none;
}

/*-------------COMBOS---------------*/
.bloodCombo {
  flex: 100%;
  font-size: 0;
}

.bloodCombo > * {
  width: 50%;
}

.bloodCombo .formItem label {
  left: 6px;
}

.bloodCombo :first-child label {
  left: 0;
}

.bloodCombo input {
  width: calc(100% - 12px/2);
}

.bloodCombo > :first-child input {
  margin: 12px 6px 12px 0;
}

.bloodCombo > :last-child input {
  margin: 12px 0 12px 6px;
}

/*======validation======*/
[type=text] {
  -webkit-appearance: none;
  appearance: none;
}

:where(input, select):where(:valid, :optional):not([type=checkbox], [type=radio]) + label:after {
  content: "";
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  height: 16px;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #fff;
  border-radius: 8px;
}

.validate:not([type=checkbox]):not(:optional):valid + label:after {
  content: "OK";
  margin-left: 12px;
  padding: 0 12px;
  background: #245ba7;
}

.validate:invalid, .validate :invalid, .invalid input, input:out-of-range {
  color: red;
  border-color: red;
}

.validate:optional:invalid + label:after {
  background-color: red;
}

:where(input, select):optional:not([type=checkbox]) + label[data-optionalLBL]:after {
  content: "Optional";
  content: attr(data-optionalLBL);
  width: auto;
  margin-left: 12px;
  padding: 0 12px;
  background: #706951;
}

.validate:optional:valid:not(:placeholder-shown) {
  border-color: #245ba7;
}

.validate:optional:valid:not(:placeholder-shown) + label:after {
  background-color: #245ba7;
}

.validate[type=radio]:invalid, .validate[type=radio]:invalid + span, .validate:invalid + label, :out-of-range + label {
  color: red;
}

.validationMSG {
  margin: 24px 12px;
  border: solid 1px red;
  border-radius: 12px;
}

.validationMSG p {
  color: red;
}

.validated .formItem, .validated fieldset {
  display: none;
}

.validated .invalid, .validated .toReview {
  display: block;
}

.valError {
  display: none;
  padding: 0 12px;
  color: red;
}

.validate:invalid ~ .valError, :out-of-range ~ .valError {
  display: block;
  font-size: 0.875rem;
  margin: -6px 12px 12px;
  list-style-position: inside;
}

/*===========CHECKS & RADIOS===========*/
/*input[type]:focus {
	outline: 0; BOOTSTRAP OVERWRITTEN
}*/
:is([type=checkbox], [type=radio]) + label {
  display: inline-block;
  position: static;
  margin: 0;
  padding: 0 12px 0 0;
  font-size: initial;
  line-height: 1.5rem;
  text-align: left;
}

:is([type=checkbox], [type=radio]):is(:focus, :checked) + label, .validate:invalid:focus + label, .validate[type=radio]:invalid:focus + span, .unitHGL {
  color: #245ba7;
}

[type=checkbox], input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 12px 0 0;
  padding: 0;
  vertical-align: top;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.formItem [type=checkbox] {
  width: 24px;
  margin: 0 12px;
}

.formItem [type=checkbox] + label {
  width: calc(100% - 48px);
}

:where([type=checkbox], [type=radio]):before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border: solid 1px #ccc;
  border-radius: 6px;
  background: #fff;
}

[type=radio]:before {
  border-radius: 50%;
}

[type=checkbox]:focus:before, .unitHGL [type=checkbox]:before {
  border-color: #245ba7;
  background-color: #245ba7;
}

[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  width: 12px;
  height: 18px;
  border: solid 6px #245ba7;
  border-width: 0 6px 6px 0;
  background: transparent;
  transform: rotate(45deg);
}

[type=checkbox]:focus:after, .unitHGL [type=checkbox]:after {
  border-color: #fff;
}

[type=radio]:checked:before {
  background: #245ba7;
  box-shadow: inset 0 0 0 5px #fff;
}

[type=radio]:focus:before, .unitHGL [type=radio]:before {
  border: solid 3px #245ba7;
  box-shadow: inset 0 0 0 3px #fff;
}

[type=checkbox]:checked ~ button .selectAll, .deSelectAll {
  display: none;
}

[type=checkbox]:checked ~ button .deSelectAll {
  display: initial;
}

/*===========RANGE SLIDER===========*/
input[type=range] {
  -webkit-appearance: none;
  vertical-align: middle;
  border: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 2px;
  cursor: pointer;
  background: #ccc;
}

input[type=range]::-moz-range-track {
  height: 2px;
  cursor: pointer;
  background: #ccc;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border: 6px solid #eee;
  border-radius: 50%;
  background: #999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  cursor: grab;
}

input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border: 6px solid #eee;
  border-radius: 50%;
  background: #999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  cursor: grab;
}

input[type=range]:active::-webkit-slider-thumb {
  background: #245ba7;
  cursor: grabbing;
}

input[type=range]:active::-moz-range-thumb {
  cursor: grabbing;
}

input[type=range] ~ datalist {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 3px;
  width: calc(100% - 12px*2);
  margin: 12px;
  padding: 6px 24px;
  text-align: justify;
}

input[type=range] ~ datalist option {
  display: block;
  height: 6px;
  width: 0;
  line-height: 0;
  font-size: 0;
  background: 0 0;
  border-left: solid 1px #ddd;
  padding: 0;
}

input[type=range] ~ datalist option:after {
  content: attr(label);
  position: relative;
  bottom: 24px;
  left: -8px;
  font-size: 0.875rem;
}

#durationFLTR ~ datalist option:after {
  content: attr(label) attr(data-hunit);
}

#durationFLTR ~ datalist option:last-child:after {
  content: attr(label);
}

[type=range] + output {
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 6px;
  font-size: 24px;
  vertical-align: middle;
}

/*----------Rating slider-----------*/
.feedBack {
  display: flex;
  flex-flow: row nowrap;
  margin: 12px;
  align-content: center;
  align-items: center;
  width: 100%;
}

#rateOutput {
  margin: 12px;
  font-size: 0;
}

#rateOutput:after, .rateInput:after {
  content: attr(value);
  display: inline-block;
  margin: 12px 0;
  font-family: awesome;
  font-size: 48px;
  vertical-align: top;
  line-height: 48px;
}

#rateOutput[value="1"]:after, .rateInput[value="1"]:after {
  content: "\f556";
}

#rateOutput[value="2"]:after, .rateInput[value="2"]:after {
  content: "\f57a";
}

#rateOutput[value="3"]:after, .rateInput[value="3"]:after {
  content: "\f11a";
}

#rateOutput[value="4"]:after, .rateInput[value="4"]:after {
  content: "\f580";
}

#rateOutput[value="5"]:after, .rateInput[value="5"]:after {
  content: "\f59a";
}

.rateInput[value="1"]:checked:after {
  color: #cc6633;
}

.rateInput[value="2"]:checked:after {
  color: orangered;
}

.rateInput[value="3"]:checked:after {
  color: #cccc00;
}

.rateInput[value="4"]:checked:after {
  color: #33CC33;
}

.rateInput[value="5"]:checked:after {
  color: #99CC66;
}

[id=ratingBox] {
  justify-content: center;
  text-align: center;
}

input.rateInput {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 48px;
  height: 48px;
  margin: 12px 6px;
  color: #666;
  background: transparent;
}

.rateInput:indeterminate ~ .formItem, .rateInput:indeterminate ~ button {
  display: none;
}

input.rateInput:before {
  display: none;
}

.rateInput:after {
  margin: 0;
}

.onOffFLX {
  align-items: center;
  justify-content: space-between;
}

.onOffFLX:not(:last-child) {
  margin-bottom: 24px;
}

.onOffLBL {
  margin: 0;
  color: #999;
}

.stOK .onOffLBL {
  color: #463;
}

.onOffCHK:checked + .onOffLBL {
  color: #245ba7;
}

.onOffCHK {
  order: 1;
  overflow: hidden;
  min-width: 48px;
  height: 24px;
  margin: 0 0 0 12px;
  background-color: inherit;
  outline: solid 1px rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.15);
}

.onOffCHK:checked {
  background: rgba(36, 91, 167, 0.2);
}

.onOffCHK:before {
  width: 20px;
  height: 20px;
  margin: 2px;
  border-radius: 12px;
  border: none;
  background-color: #fff;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
}

.onOffCHK:checked:before {
  position: relative;
  background-color: #245ba7;
  animation: on 0.75s ease-in-out;
  animation-fill-mode: both;
}

.onOffCHK:checked:after {
  display: none;
}

@keyframes on {
  0% {
    width: 20px;
    left: 0;
  }
  25% {
    width: 44px;
    left: 0;
  }
  50% {
    width: 12px;
    left: 32px;
  }
  75% {
    width: 28px;
    left: 16px;
  }
  100% {
    width: 20px;
    left: 24px;
  }
}
/*-------------filter CHCK------------*/
.filter {
  position: sticky;
  top: 96px;
  z-index: 11;
  font-size: 0;
}

.filter [type=checkbox] {
  width: auto;
  height: 36px;
  margin: 6px;
  color: #666;
}

.filter [type=checkbox]:before {
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  line-height: 30px;
  text-align: center;
  border: solid 4px #fff;
}

.filter [type=checkbox]:focus:before {
  background: #fff;
}

.filter [type=checkbox]:checked:before {
  box-shadow: -3px -3px 9px white, 3px 3px 9px rgba(51, 0, 51, 0.15), inset -6px -6px 18px white, inset 6px 6px 18px rgba(0, 0, 0, 0.1);
  color: #245ba7;
}

.filter [type=checkbox]:after {
  content: attr(aria-label);
  display: inline-block;
  position: static;
  border: none;
  transform: none;
  width: auto;
  margin: 12px;
  vertical-align: top;
}

.filter [type=checkbox]:checked:after {
  color: #245ba7;
}

.stickMe + .filter input:after {
  display: none;
}

/*---------------BUTTONS--------------*/
button, .btn {
  display: block;
  width: calc(100% - 12px*2);
  height: 48px;
  min-width: 48px;
  max-width: 432px;
  margin: 12px auto;
  padding: 0 24px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
  color: #fff;
  vertical-align: top;
  border: 0;
  border-radius: 24px;
  background: #245ba7;
}

button::first-letter, a.btn::first-letter {
  text-transform: capitalize;
}

a.btn {
  padding: 12px;
  line-height: 24px;
  text-align: center;
  color: #fff;
}

[class*=secondary] {
  background-color: #666;
  color: #fff;
}

button:focus, button:hover, .btn:focus, .btn:hover {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), -webkit-linear-gradient(#245ba7, #245ba7);
}

[disabled=disabled], [disabled=disabled]:focus, [disabled=disabled]:hover, .disabled, .disabled:focus, .disabled:hover {
  opacity: 0.25;
  filter: grayscale(0.5);
  background-image: none;
  cursor: auto;
}

[disabled=disabled] + label.summaryHDR {
  opacity: 0.25;
}

.buttonSET {
  position: relative;
  z-index: 10;
  width: -webkit-fill-available;
  width: -moz-available;
  padding: 0 6px;
  text-align: center;
  font-size: 0;
}

[class*=duoBTN i] {
  display: inline-block;
  width: calc(50% - 12px);
  margin: 12px 6px;
}

.centredBTN {
  display: block;
  margin: 12px auto;
}

[class^=inline] {
  display: inline;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px;
  line-height: 1;
  text-transform: none;
  background-color: #245ba7;
}

.logout {
  padding: 24px;
  white-space: nowrap;
  text-align: left;
}

.logout:before {
  content: "\f2f5";
  font-family: "awesome";
}

[data-ember-action]:hover {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  cursor: pointer;
}

.goBack {
  width: auto;
  position: sticky;
  bottom: 12px;
  z-index: 11;
}

.goBack:before {
  content: "\f104";
  margin: 0 12px 0 0;
  font-family: awesome;
}

.takePic:before {
  content: "\f030";
  font-family: "awesome";
}

/*======Icon and Menu buttons=====*/
[class$=iconBTN i], [class$=menuBTN i] {
  min-width: 48px;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 12px;
  line-height: 24px;
  white-space: nowrap;
  color: #008fcb;
  background: none;
  border: none;
  outline: none;
}
[class$=iconBTN i]:hover, [class$=iconBTN i]:focus, [class$=menuBTN i]:hover, [class$=menuBTN i]:focus {
  color: #006996;
  background: none;
  cursor: pointer;
}

[class$=menuBTN i] {
  float: right;
  width: auto;
  max-width: 120px;
  height: 24px;
  padding: 0;
  white-space: nowrap;
}

[class$=iconBTN i]:before, [class$=menuBTN i]:before {
  font-family: "awesome";
}

[class$=iconBTN i]:not(:empty) {
  width: auto;
}

[class$=iconBTN i]:not(:empty):before, [class$=menuBTN i]:not(:empty):before {
  margin: 0 12px;
}

[class*=right i] {
  margin-left: auto;
}

[class$=iconBTN i]:empty {
  text-align: center;
}

[class$=iconBTN i]:empty:is(:hover, :focus) {
  background-color: #eee;
}

.enterIconBTN, .clearIconBTN, .removeIconBTN, :where(.enterIconBTN, .clearIconBTN, .removeIconBTN):is(:hover, :focus) {
  position: absolute;
  right: 12px;
  top: 24px;
  height: 24px;
  width: 24px;
  min-width: 0;
  margin: 0 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #fff;
}

.clearIconBTN, .removeIconBTN {
  display: none;
}

.formItem input:valid ~ .clearIconBTN {
  display: initial;
}

:where(.clearIconBTN, .removeIconBTN):before {
  content: "\f00d";
  margin: 0;
}

.videoContainer .clearIconBTN {
  display: inline-block;
  position: fixed;
  color: #000;
}

.enterIconBTN.hidden + .removeIconBTN {
  display: initial;
}

.enterIconBTN:before {
  content: "\e2e1";
  font-size: 15px;
}

.rightArrow:before {
  content: "\f054";
}

.leftArrow:before {
  content: "\f053";
}

.collapseIconBTN {
  display: block;
  height: auto;
  margin: 12px auto 0;
  padding: 0;
}

.collapseIconBTN:before {
  content: "\f077";
}

.collapsed + .collapseIconBTN:before {
  content: "\f078";
}

[class*=chat i]:before {
  content: "\f4b6";
  font-size: 1.5rem;
  float: right;
}

.viewIconBTN:before {
  content: "\f06e";
}

.hideIconBTN:before, [open] .viewIconBTN:before {
  content: "\f070";
}

.editIconBTN:before {
  content: "\f303";
}

.binIconBTN:before {
  content: "\f2ed";
}

.plusIconBTN {
  padding-right: 0;
}

.plusIconBTN:before {
  float: right;
}

.userLikeBTN {
  width: auto;
  margin: 12px auto;
  color: #fff;
  background: #245ba7;
}

.userLikeBTN:is(:hover, :active, :focus) {
  color: #245ba7;
  background: #fff;
}

/*======Touch Buttons=====*/
.touchBTN {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 12px;
  text-decoration: none;
  text-align: center;
  background: #eee;
  border: solid 2px #fff;
  border-radius: 50%;
}

.touchBTN:hover {
  border-color: #006996;
}

a.touchBTN:before {
  font-family: "awesome";
  font-size: 1rem;
  line-height: 1rem;
  margin: 12px;
}

[class*=closeBTN i], [class*=closeBTN i]:is(:hover, :active, :focus) {
  position: fixed;
  right: 12px;
  top: 12px;
  z-index: 100;
  width: auto;
  margin: 0;
  padding: 6px;
  background-color: transparent;
  background-image: none;
}

[class*=closeBTN i]:after {
  content: "\f00d";
  font-family: awesome;
  color: #008fcb;
}

/*======Loading Buttons=====*/
/*======small Buttons=====*/
[class*=smallBTN i] {
  display: inline-block;
  width: auto;
  height: 24px;
  font-size: 0.875rem;
}

/*----------------------------------*/
/*-----------MESSAGE BOXES----------*/
/*----------------------------------*/
article .highlightBOX {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.125);
}

.stRQ {
  background-color: #eee;
}

.stALT {
  background-color: #FC3;
}

.stOK {
  color: #565;
  background-color: #AF7;
}

.stOK h4 {
  color: #463;
}

/*----------------------------------*/
/*-------------CIVITFUN-------------*/
/*----------------------------------*/
.hCheckIn {
  position: relative;
  padding: 0;
}

.hCheckIn img {
  object-fit: cover;
  width: 100%;
  max-height: 350px;
}

.hCheckIn button {
  display: block;
  width: 240px;
  padding: 12px;
  position: absolute;
  left: calc(50% - 120px);
  bottom: 0;
}

/*-----------Checkin Form-----------*/
.scroller {
  flex: auto; /*allows the element to take the max height possible if has a flex parent*/
  overflow: auto;
}

.guestListLBL {
  margin: 0 12px;
  padding: 0;
}

.guestList {
  display: flex;
  flex-flow: row wrap;
  justify-content: stretch;
  margin: 12px;
  padding: 0;
  font-size: 24px;
  font-family: "awesome";
  counter-reset: guest;
}

.guestList li {
  display: inline-block;
  text-align: left;
}

.guestList > .active:after {
  background-color: #245ba7;
  border: solid 3px #245ba7;
}

.guestList li:after {
  counter-increment: guest;
  box-sizing: border-box;
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 2px 12px 2px 12px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  vertical-align: top;
  background-color: #706951;
  border-radius: 50%;
  white-space: nowrap;
}

.guestList .adult:after {
  content: counter(guest) " \f183";
}

.guestList .child:after {
  content: counter(guest) " \f1ae";
}

.guestList .baby:after {
  content: counter(guest) " \f4f4";
}

.guestList .adult.done:after {
  content: "\f00c\f183";
}

.guestList .child.done:after {
  content: "\f00c\f1ae";
}

.guestList .baby.done:after {
  content: "\f00c\f4f4";
}

/*---Gender radio BTNs---*/
/*---ID Document image holder---*/
.imgContainer {
  font-size: 0;
}

.img:first-child label {
  background: transparent url(/assets/images/id_card_front.png) center center no-repeat;
}

.img:nth-child(2) label {
  background: transparent url(/assets/images/id_card_back.png) center center no-repeat;
}

.imgContainer .img {
  box-sizing: border-box;
  display: inline-flex;
  flex-flow: column nowrap;
  align-content: stretch;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 250px;
  padding: 12px;
  vertical-align: bottom;
}

.imgContainer .img:only-child {
  width: 100%;
  max-width: 100%;
}

.imgContainer .img label {
  position: relative;
  height: calc(30vw - 12px*2);
  max-height: 125px;
  background-size: contain;
}

.img.validate {
  border: solid 1px red;
  border-radius: 12px;
  background-color: pink;
  background-blend-mode: color-burn;
}

.img p {
  width: 100%;
  flex: auto;
}

.add {
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 48px/2);
  left: calc(50% - 48px/2);
  height: 48px;
  width: 48px;
  color: #706951;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.add:after {
  content: "\f030";
  font-family: "awesome";
  display: inline-block;
  font-size: 24px;
  vertical-align: middle;
}

.add:hover, .add:focus, [type=file]:focus + .add {
  background-color: #245ba7;
  color: #fff;
}

.img [type=file] {
  opacity: 0;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .imgContainer .img:only-child {
    max-width: 50%;
  }
}
/*----------------------------------*/
/*-------------NAVIGATION-----------*/
/*----------------------------------*/
/*==============MENUS==============*/
[class$=MNU] {
  margin: 0;
  padding: 0;
}

[class$=MNU] :where(li) {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

[class$=MNU] [class*=ICO]:before {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-color: #999;
  -webkit-mask-image: url("/assets/images/menu_sprite.svg");
  mask-image: url("/assets/images/menu_sprite.svg");
}

[class$=MNU] .closeICN {
  position: relative;
  height: auto;
  padding: 0;
  text-align: right;
}

[class$=MNU] .closeICN:before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 24px;
  font-size: 16px;
  text-align: center;
  background-color: #eee;
  border-radius: 50%;
  -webkit-mask-image: none;
  mask-image: none;
}

:where(.lvl2MNU) {
  display: none;
}

:where(.selected .lvl2MNU) {
  display: block;
}

/*------------LOGIN MENU-----------*/
.loginMNU {
  width: auto;
  margin: 12px 12px 0;
  border-top: solid 1px rgba(221, 221, 221, 0.5);
}

.loginMNU li {
  line-height: 24px;
  font-weight: 700;
  color: #008fcb;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  border-bottom: solid 1px rgba(221, 221, 221, 0.65);
}

.loginMNU li:last-of-type {
  border-bottom: none;
}

.loginMNU li:hover {
  color: #006996;
}

.loginMNU li:before {
  background-color: #245ba7;
}

.loginMNU span {
  display: inline-block;
  width: calc(100% - 48px - 12px);
  font-size: 16px;
  vertical-align: middle;
}

/*------------MAIN MENU-----------*/
.mainMNU > li {
  margin: 2px 0;
  padding: 12px;
  border-radius: 6px;
  line-height: 24px;
  color: #706951;
}

.mainMNU > .selected {
  position: relative;
  z-index: 11;
  padding: calc(12px - 3px);
  line-height: 24px;
  border: solid 3px #fff;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: -3px -3px 9px white, 3px 3px 9px rgba(51, 0, 51, 0.15), inset -6px -6px 18px white, inset 6px 6px 18px rgba(0, 0, 0, 0.05);
}

.mainMNU .selected:before {
  background-color: #245ba7;
}

:where(.mainMNU .selected):before {
  content: " ";
  display: inline-block;
  height: 24px;
  vertical-align: text-bottom;
}

/*-----------MENU SEARCH-----------*/
.searchITM {
  display: flex;
  position: relative;
  padding: 12px;
}

.searchITM:after {
  content: "\f054";
  margin-left: auto;
  font-family: awesome;
}

.searchITM.active {
  color: #245ba7;
}

.searchITM.active:after {
  content: "\f053";
}

.searchITM .clearIconBTN {
  position: static;
  display: inline-block;
  vertical-align: middle;
}

.menuSearch {
  display: none;
  padding: 0;
}

.selected .menuSearch {
  display: block;
  padding: 0;
}

.menuSearch + .lvl2MNU .searchITM:first-child {
  display: none;
}

[class*=menuPNL i] {
  display: none;
  position: fixed;
  bottom: calc(60px*2);
  left: 0;
  z-index: 13;
  width: 100vw;
  height: calc(100vh - 60px*2);
  padding: 12px;
  font-size: initial;
  text-align: left;
  background-color: #eee;
}

[class*=menuPNL i] > .scroll {
  overflow-x: hidden;
  max-height: 100%;
}

/*------------USER MENU------------*/
.userMNU {
  height: 48px;
  margin: 12px;
  padding: 6px 0;
  border-radius: 24px;
  font-size: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.userMNU > * {
  display: inline-block;
  text-decoration: none;
  padding: 0 12px;
  font-size: 1.5rem;
  text-align: center;
  vertical-align: middle;
}

.userMNU > * + a {
  border-left: solid 1px #245ba7;
}

.userMNU a:before {
  margin: 0;
  line-height: 36px;
}

[data-cartCount] {
  position: relative;
}

[data-cartCount]:after {
  content: attr(data-cartCount);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 30px;
  width: 18px;
  height: 18px;
  font-size: 0.75rem;
  background: #fff;
  border-radius: 50%;
}

/*-------------Logout--------------*/
.logout {
  padding: 12px;
}

.logout:before {
  content: "\f2f5";
  font-family: "awesome";
}

/*------------SidePanel-------------*/
.sidePanel {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  height: 100%;
  width: 300px;
  background: #fff;
  transform: translate(300px);
  -webkit-transition: transform 0.5s ease-in-out 0s;
  -moz-transition: transform 0.5s ease-in-out 0s;
  -o-transition: transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s;
}

.sidePanel.show {
  transform: translate(0);
  box-shadow: -24px 0 24px -24px rgba(0, 0, 0, 0.2);
  -webkit-transition: transform 0.5s ease-in-out 0s;
  -moz-transition: transform 0.5s ease-in-out 0s;
  -o-transition: transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s;
}

.sidePanel:before {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out 0s;
  -moz-transition: opacity 0.5s ease-in-out 0s;
  -o-transition: opacity 0.5s ease-in-out 0s;
  transition: opacity 0.5s ease-in-out 0s;
}

.sidePanel.show:before {
  content: "";
  position: fixed;
  left: initial;
  right: 300px;
  width: calc(100vw - 300px);
  box-shadow: none;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out 0.5s;
  -moz-transition: opacity 0.5s ease-in-out 0.5s;
  -o-transition: opacity 0.5s ease-in-out 0.5s;
  transition: opacity 0.5s ease-in-out 0.5s;
}

.sidePanel header {
  display: flex;
  align-content: center;
  align-items: center;
  border-bottom: solid 1px #245ba7;
}

.settingLST {
  list-style: none;
  margin: 0 12px;
  padding: 0;
  line-height: 24px;
  box-shadow: inset 0 0 12px 4px rgba(0, 0, 0, 0.06);
}

.settingLST:last-child {
  margin-bottom: 12px;
}

.settingLST li {
  margin: 0 12px;
  padding: 12px 6px;
}

.settingLST li + li {
  border-top: solid 1px #ccc;
}

/*------------Language-------------*/
.ISO {
  display: inline-block;
  width: 48px;
  line-height: 24px;
  text-transform: uppercase;
}

.currentLang {
  font-size: revert;
}

.currentLang:after {
  content: "\f0ac";
  float: right;
  font-family: "awesome";
}

.userMNU .currentLang:after {
  content: " \f0ac";
  float: none;
}

/*================TABS==============*/
.tabSet {
  position: relative;
  width: 100%;
  margin: 0;
}

:where(.tabSet) h4 {
  margin: 10px;
}

[class*=tabs] {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #eee;
  border-bottom: solid 1px #245ba7;
  font-size: 0;
}

nav:only-of-type [class*=tabs] {
  border: 0;
}

.tabNav {
  display: none;
  margin: 12px;
}

.active ~ .tabNav {
  display: inline-block;
  text-align: center;
  vertical-align: top;
}

[role=tabpanel] {
  display: none;
  position: absolute;
  overflow: hidden;
  height: 0;
  font-size: 0;
  background: #fff;
}

[role=tabpanel].active, [role=tabpanel]:target {
  display: block;
  overflow: auto;
  position: static;
  height: auto;
  font-size: revert;
}

[role=tab] {
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  list-style: none;
  min-width: 48px;
  height: 48px;
  margin: 12px;
  padding: 12px;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 12px;
}

[role=tab]:not(.active) {
  cursor: pointer;
  color: #008fcb;
}

[role=tab].active {
  position: relative;
  z-index: 2;
  border: solid 3px #fff;
  background: #fff;
  box-shadow: -3px -3px 9px white, 3px 3px 9px rgba(51, 0, 51, 0.15), inset -6px -6px 18px white, inset 6px 6px 18px rgba(0, 0, 0, 0.05);
  cursor: default;
  color: #245ba7;
}

li[role=tab]:hover {
  background: #fff;
  color: #245ba7;
}

.col2row {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
}

.col2row nav {
  margin: 12px;
}

.instructions {
  font-size: initial;
}

/*==============FILTERS==============*/
.hMenuList {
  overflow: auto;
  scrollbar-width: none; /*Firefox*/
  padding: 0;
  text-align: center;
  white-space: nowrap;
}

/*Webkit(Chrome, Android browser, Safari, Edge...)*/
.hMenuList::-webkit-scrollbar {
  height: 0;
}

[class*=FLT] {
  display: inline-block;
  min-width: 120px;
  margin: 0;
  padding: 12px;
  text-align: center;
  vertical-align: top;
  border-radius: 12px;
}

[class*=FLT]:hover {
  background-color: #eee;
}

[class*=FLT].selected {
  color: #245ba7;
}

[class*=FLT] > span {
  display: block;
  height: 60px;
  width: 90px;
  margin: 0 auto 12px;
  background-color: #666;
  -webkit-mask-image: url("/assets/images/xaSprite.svg");
  mask-image: url("/assets/images/xaSprite.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
}

[class*=FLT].selected span {
  background-color: #245ba7;
}

.attractionFLT span {
  -webkit-mask-position: 0;
  mask-position: 0;
}

.culturalFLT span {
  -webkit-mask-position: 16.6%;
  mask-position: 16.6%;
}

.eatDrinkFLT span {
  -webkit-mask-position: 33.3%;
  mask-position: 33.3%;
}

.showsFLT span {
  -webkit-mask-position: 50%;
  mask-position: 50%;
}

.sportsFLT span {
  -webkit-mask-position: 66.6%;
  mask-position: 66.6%;
}

.toursFLT span {
  -webkit-mask-position: 83.3%;
  mask-position: 83.3%;
}

.wellnessFLT span {
  -webkit-mask-position: 100%;
  mask-position: 100%;
}

/*=============Arrows==============*/
.HNav {
  position: relative;
}

#XAMenuContainer {
  background: #fff;
  position: sticky;
  top: 48px;
  z-index: 12;
}

.navArrow {
  position: absolute;
  z-index: 10;
  top: calc(50% - 24px);
  line-height: 23px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  border: solid 1px rgba(255, 255, 255, 0.75);
  box-shadow: 6px 6px 12px rgba(51, 0, 51, 0.15);
}

.navArrow:first-of-type {
  left: -12px;
}

.navArrow:last-of-type {
  right: -12px;
}

.stickMe {
  margin: 48px 0;
  padding: 6px;
  box-shadow: 0 12px 24px -24px rgba(0, 0, 0, 0.5);
}

.stickMe [class*=FLT] span {
  display: none;
}

.stickMe .navArrow:first-child {
  left: 0;
}

.stickMe .navArrow:last-of-type {
  right: 0;
}

.stickMe [class*=FLT] br {
  display: none;
}

/*----------------------------------*/
/*=============Banners==============*/
/*----------------------------------*/
/*--------Destination banners-------*/
[class*=banner i][class$=BOX] {
  --width: 338; /*for aspect ratio calculation*/
  --height: 100;
  margin-bottom: 12px;
  box-shadow: 3px 3px 12px rgba(51, 0, 51, 0.15);
}

[class*=banner i][class$=BOX] > img {
  height: 100%;
}

.destBannerBOX {
  margin: 0 0 12px;
}

.destBannerBOX h4 {
  top: 0;
  left: 0;
}

.destBannerBOX > img {
  display: block;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
}

.destBannerBOX :is(*, :link) {
  position: absolute;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(51, 0, 51, 0.25);
}

.infoBook {
  bottom: 12px;
  line-height: 24px;
}

.infoBook:before {
  content: url(/assets/images/pdfDownloadIcon.svg);
  display: inline-block;
  width: 24px;
  height: 30px;
  margin: 0 6px 0 0;
  vertical-align: middle;
  filter: drop-shadow(3px 3px 12px rgba(51, 0, 51, 0.2));
}

.destVideo {
  right: 12px;
  bottom: 12px;
  text-align: right;
  line-height: 24px;
}

.destVideo:after {
  content: url(/assets/images/movieIcon.svg);
  display: inline-block;
  width: 28px;
  height: 30px;
  margin: 0 0 0 6px;
  vertical-align: middle;
  filter: drop-shadow(3px 3px 12px rgba(51, 0, 51, 0.2));
}

.repCaption {
  display: flex;
  align-items: center;
  top: max(50% - 48px, 0px);
  bottom: initial;
  width: calc(69% - 12px*2);
  font-size: 14px;
  line-height: 1.2;
}
@media only screen and (min-width: 800px) and (max-width: 1100px), only screen and (min-width: 550px) and (max-width: 710px) {
  .repCaption {
    font-size: 18px;
  }
}
@media only screen and (max-width: 360px) {
  .repCaption {
    margin: 6px;
    padding: 6px;
  }
}

.repCaption:after {
  content: "";
  display: block;
  position: absolute;
  right: -23px;
  top: 18px;
  width: 24px;
  height: 2px;
  border: solid 1px #fff;
  transform: rotate(-10deg);
  box-shadow: 6px 6px 12px rgba(51, 0, 51, 0.25);
}

/*-----------Vector banners---------*/
figure.inhouseBNR {
  width: min(100%, 480px);
  margin: 24px auto 0;
  font-size: 0;
}

.inhouseBNR img {
  width: calc(100% - 48px);
  height: auto;
  margin: 12px;
}

.inhouseBNR figcaption {
  display: inline-block;
  width: calc(100% - 84px);
  font-size: 1.25rem;
  font-weight: 700;
  color: #245ba7;
  vertical-align: middle;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
  -webkit-hyphenate-limit-before: 3; /* Legacy for Safari */
  -webkit-hyphenate-limit-after: 3; /* Legacy for Safari */
  -ms-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-chars: 6 3 3; /* not yet supported */
  -moz-hyphenate-limit-chars: 6 3 3; /* not yet supported */
  hyphenate-limit-chars: 6 3 3;
  -ms-hyphenate-limit-lines: 2;
  -webkit-hyphenate-limit-lines: 2;
  hyphenate-limit-lines: 2;
  -ms-hyphenate-limit-last: always;
  hyphenate-limit-last: always;
  -ms-hyphenate-limit-zone: 8%;
  hyphenate-limit-zone: 8%;
}

.inhouseBNR:after {
  content: "\f35a";
  display: inline-block;
  font-family: awesome;
  font-size: 48px;
  color: #245ba7;
  vertical-align: middle;
}

.bannerIconBTN {
  min-width: 36px;
  width: 36px;
  height: 36px;
  margin: -43px 24px 12px auto;
  padding: 0;
  line-height: 36px;
  background: #eee;
  border-radius: 50%;
}

.bannerIconBTN:is(:hover, :active, :focus) {
  background: #245ba7;
  color: #eee;
}

.bannerIconBTN:before {
  margin: 0;
}

.bannerSmallBTN {
  display: none;
  margin: -37px 24px 12px auto;
}

.bannerSmallBTN:before {
  content: "";
  position: absolute;
  left: 0;
}

.hidden ~ .bannerSmallBTN {
  display: block;
}

.hidden ~ .bannerIconBTN {
  display: none;
}

.closedBannerHR {
  margin: 24px 12px;
}

/*------------MKT banner----------*/
.mktBanner img {
  width: calc(100% - 12px*2);
}

/*------------COVID banner----------*/
.bannerTab {
  position: fixed;
  top: 96px;
  z-index: 12;
  right: 0;
  max-width: 48px;
  height: 48px;
  margin: 0;
  padding: 11px 12px 0 12px;
  border-radius: 24px 0 0 24px;
  background-color: #fff;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
  transition: top 0.5s ease-in-out, max-width 0.5s ease-in-out;
}

.bannerTab.bottom {
  transition: top 0.5s ease-in-out;
  top: calc(100% - 48px*4);
}

.bannerTab.open {
  width: auto;
  max-width: calc(100% - 48px);
  transition: top 0.5s ease-in-out, max-width 0.5s ease-in-out;
}

.coteOnISO {
  overflow: hidden;
  height: 30px;
  margin: 0 3px;
  vertical-align: middle;
}

.coteOnLogo {
  display: block;
  width: min(100%, 48px*10);
  height: auto;
  margin: auto;
  padding: 12px;
}

.coteOnIMG {
  width: auto;
  margin: 12px;
  border-radius: 12px;
}

.coteOnVideoLNK:before {
  content: url(/assets/images/movieIcon.svg);
  display: inline-block;
  width: 28px;
  height: 30px;
  margin: 0 0 0 6px;
  vertical-align: middle;
}

/*------------Marketing-------------*/
/*============Scrollbars============*/
[class*=scroll i] {
  scroll-behavior: smooth;
  -ms-scroll-chaining: none; /*chained;*/ /*IE10+ over Win8 and above*/
}
@-moz-document url-prefix() {
  [class*=scroll i] {
    /*Firefox*/
    scrollbar-color: transparent #eee;
    scrollbar-width: thin;
  }
}

main.scroll {
  background-color: #eee;
}

@-moz-document url-prefix() {
  [class*=scroll i]:hover {
    scrollbar-color: #09C #eee;
  }
}
/*Webkit*/
[class*=scroll i]::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #eee;
  border-radius: 4px;
}
[class*=scroll i]::-webkit-scrollbar-track {
  background: transparent;
  padding: 2px;
}

[class*=scroll i]::-webkit-scrollbar-thumb {
  background-color: #245ba7;
  border-radius: 4px;
  background-clip: content-box;
  border: solid 2px rgba(255, 255, 255, 0.15);
}

::selection {
  background-color: #245ba7 !important;
  color: #fff !important;
}

/*----------------------------------*/
/*--------------WINDOWS-------------*/
/*----------------------------------*/
/*-----------MODAL WINDOWS----------*/
[class*=modalW i] {
  position: fixed;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 13;
  background: #eee;
}

.smallModalW {
  --display: flex;
  display: var(--display);
  margin: 0;
  text-align: center;
}

[class*=modalBody i] {
  position: relative;
  width: calc(100% - 12px*2);
  max-width: 1024px;
  height: calc(100% - 12px*2);
  margin: 12px auto;
  padding: 12px;
  background: white;
  border-radius: 12px;
}

.modalFooter {
  width: 100%;
  box-shadow: 0 -6px 12px -12px rgba(0, 0, 0, 0.5);
}

[class*=modalBody i] > .modalFooter {
  width: calc(100% - 12px*2);
}

[class*=modalBody i] > .scroller {
  max-height: calc(100% - 48px - 12px*2);
}

.totalPrice {
  position: sticky;
  z-index: 1;
  bottom: 0;
  margin: 12px 12px 0;
  padding: 12px 0;
  font-size: 1.25rem;
  background: #fff;
}

.mStickyFTR {
  position: sticky;
  bottom: 0;
  z-index: 2;
  width: 100%;
  border-top: solid 1px #efefef;
  box-shadow: 0 -6px 12px -12px rgba(0, 0, 0, 0.5);
}

.hasStickyFTR {
  max-height: calc(100% - 48px - 12px*2);
}

/*----------MESSAGE WINDOWS----------*/
[class*=WIN] {
  display: flex;
  position: fixed;
  top: 0;
  z-index: 20;
  height: 100vh;
  width: 100vw;
}

/*---------------TOASTS--------------*/
[class*=TOA] {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: clamp(320px, 100%, 480px);
  padding: 0 12px;
  will-change: transform;
  transform: translate(0, 100%);
}
@media only screen and (min-width: 505px) {
  [class*=TOA] {
    width: 360px;
    margin: 0 calc(50% - 180px);
  }
}

.msgTOA {
  background: linear-gradient(to top, #e0e0e0, rgba(224, 224, 224, 0)), linear-gradient(to right, #e0e0e0, #eee, #e0e0e0);
  border-top-style: solid;
  border-top-width: 2px;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 90%) 100% 1;
  border-radius: 12px 12px 0 0;
  box-shadow: 0px -3px 6px rgba(51, 0, 51, 0.15);
}

/*----------Toast swipe handler----------*/
[class*=TOA]:before {
  content: "";
  display: block;
  width: 48px;
  height: 6px;
  margin: 12px auto;
  background: #bbb;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.35);
}

/*-----------Toast top Shadow-----------*/
[class*=TOA]:after {
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 24px;
  background: radial-gradient(rgba(51, 0, 51, 0.1) 0%, rgba(51, 0, 51, 0) 62%);
  background-position: center 12px;
  background-repeat: no-repeat;
  border-radius: 50% 50% 0 0;
}

/*------------Toast elements------------*/
[class$=TOA] > * {
  text-align: center;
}

[class$=TOA] > h3 {
  line-height: 1.25;
  color: #245ba7;
  background: none;
  border: 0;
}

[class$=TOA] > button {
  margin: 24px auto;
}

/*-------------Toast effect-------------*/
.slideDown {
  transform: translate(0, 100%);
  transition: transform 1s ease-out;
}

.slideDown:after {
  display: none;
}

.slideUp {
  transform: translate(0, 0);
  transition: transform 0.5s ease-out;
}

.fadeOut:before, .fadeIn:before {
  animation: fadeOut 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.fadeIn:before {
  animation-name: fadeIn 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/*--------Toast message simbols--------*/
[class$=SGN] {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 48px auto;
  border: solid 12px red;
  border-radius: 50%;
  box-shadow: -6px -6px 18px white, 6px 6px 18px 6px rgba(51, 0, 51, 0.2);
}
@media only screen and (max-height: 400px) {
  [class$=SGN] {
    margin: 24px auto;
  }
}
@media only screen and (max-height: 346px) {
  [class$=SGN] {
    margin: 6px auto;
  }
}

[class$=SGN]:before {
  content: "";
  position: absolute;
}

/*=======Success=======*/
.successSGN {
  border-color: #009999;
}

.successSGN:before {
  top: 15px;
  left: 12px;
  width: 48px;
  height: 32px;
  border: solid 12px #009999;
  border-width: 0 0 12px 12px;
  transform: rotate(-45deg);
}

/*======DON'T PANIC======*/
.megaphoneSGN:before {
  top: 12px;
  left: 12px;
  width: 48px;
  height: 48px;
  background: transparent url(/assets/images/megaphone.svg) no-repeat center center;
  background-size: contain;
}

/*======PROMO-CODES======*/
.promoSGN {
  border-color: #ef2638;
}

.promoSGN:before {
  top: 5px;
  left: -5px;
  width: 70px;
  height: 58px;
  background: transparent url(/assets/images/promo_icon.png) no-repeat center center;
  background-size: contain;
}

/*======Forbiden=======*/
.forbidenSGN:before {
  top: 30px;
  left: -12px;
  width: 96px;
  height: 12px;
  background: red;
  transform: rotate(-45deg);
}

/*========Error========*/
.errorSGN:before {
  left: 0;
  width: 48px;
  height: 12px;
  margin: 30px 12px;
  background: red;
  transform: rotate(45deg);
}

.errorSGN:after {
  content: "";
  position: absolute;
  left: 0;
  width: 48px;
  height: 12px;
  margin: 30px 12px;
  background: red;
  transform: rotate(-45deg);
}

/*========Alert========*/
.alertSGN:before {
  left: 0;
  width: 12px;
  height: 36px;
  margin: 6px calc(50% - 12px/2);
  background: red;
  border-radius: 12px 12px/12px 12px 48px 48px;
}

.alertSGN:after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  margin: 48px calc(50% - 12px*2/3) 0;
  background: red;
  border-radius: 50%;
}

/*======Delivery Banner======*/
[class*=BNR]:has([class*=SGN]) {
  align-items: center;
  box-shadow: 3px 3px 12px rgba(51, 0, 51, 0.15);
}

[class*=deliverySGN i] {
  border-color: #FC6899;
}

[class*=BNR] [class*=deliverySGN i] {
  display: inline-block;
  margin: 0 12px 0 0;
  vertical-align: middle;
  text-align: center;
}

[class*=deliverySGN i]:after {
  content: url(/assets/images/deliveryICN.svg);
  display: block;
  width: 48px;
  height: 48px;
  margin: 12px;
}

/*----------Process MSG-----------*/
.msgWindow {
  display: flex;
  flex-flow: column nowrap;
  align-content: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: calc(100vw - 12px*2);
  height: calc(100vh - 12px*2);
  margin: 12px;
  text-align: center;
  background-color: #fff;
  border: solid 12px #706951;
  border-radius: 12px;
  box-shadow: 6px 6px 12px rgba(51, 0, 51, 0.15);
}

.spinningWheel {
  margin: auto;
  text-align: center;
}

.genLoader {
  display: none;
  position: fixed;
  top: calc(50% - 48px/2);
  left: 0;
  z-index: 99;
}

.genLoader:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.hidden + .hidden + .spinningWheel {
  display: block;
}

.spinningWheel:before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 36px auto;
  text-align: center;
  border: solid 8px #245ba7;
  animation: spinningDrop 2s ease infinite;
  transform: rotate(45deg);
}

@keyframes spinningDrop {
  0% {
    border-radius: 50% 50% 50% 0;
  }
  25% {
    border-radius: 0 50% 50% 50%;
  }
  50% {
    border-radius: 50% 0 50% 50%;
  }
  75% {
    border-radius: 50% 50% 0 50%;
  }
  100% {
    border-radius: 50% 50% 50% 0;
  }
}
.errorDialog:before, .successDialog:before {
  content: "\f05e";
  display: inline-block;
  font-family: "awesome";
  font-size: 72px;
  color: red;
}

.successDialog:before {
  content: "\f058";
  color: #096;
}

.errorMSG, .successMSG {
  color: red;
  margin: 24px 12px;
  padding: 0;
  width: auto;
}

.errorMSG > h5 {
  color: red;
}

.successMSG {
  color: #096;
}

/* Stripe spinning wheel */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}

.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}

.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #245ba7;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #245ba7;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

button:hover .spinner:after, button:hover .spinner:before {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), -webkit-linear-gradient(#245ba7, #245ba7);
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*----------------------------------*/
/*--------------FORECAST------------*/
/*----------------------------------*/
.forecastHDR {
  margin: 12px 6px 0;
}

.weekWeatherWDG {
  table-layout: fixed;
  width: 100%;
  margin: 0;
}

[class$=TMP] {
  display: inline-block;
  margin: 0 2px;
  text-transform: initial;
}

.maxTMP {
  font-weight: 700;
}

html:is([lang=fr], [lang=ru]) .todayLBL {
  display: none;
}

html:not([lang=fr], [lang=ru]) .weekDayLBL {
  display: none;
}

/*----------------------------------*/
/*--------------RIBBONS-------------*/
/*----------------------------------*/
[class*=ribbon i] {
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
  height: 71px; /*triangle leg*/
  width: 100px; /*hypotenusa*/
  padding: 39px 0 0; /*triangle leg minus ribon height to push ribbon down*/
}

[class*=ribbon i]:after {
  content: attr(data-label);
  display: table-cell;
  width: 100px;
  height: 30px;
  padding: 0 10px;
  color: white;
  font-size: 0.75rem;
  line-height: 1.1;
  text-align: center;
  vertical-align: middle;
  background: #706951;
  box-shadow: 0 12px 12px -12px rgba(0, 0, 0, 0.25);
}

[class*=cornerRibbon i]:after {
  padding: 0 24px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}

/*----------------------------------*/
/*--------------PLUGINS-------------*/
/*----------------------------------*/
/*------------Countdown-------------*/
.countdownCNT {
  width: 100%;
  text-align: center;
}

.circular-countdown canvas.bg {
  border-radius: 50%;
  box-shadow: -6px -6px 18px white, 6px 6px 18px 6px rgba(51, 0, 51, 0.2);
}

.circular-countdown .text {
  font-size: 0.875rem !important;
}

/*------------Swipper-------------*/
.swiper-container {
  border-radius: 12px;
}

.fullScreen.swiper-container {
  overflow: hidden;
  border-radius: 0;
}

.fullScreen .swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  height: auto;
}

.productSwipper img { /*only applies to DG Dine*/
  aspect-ratio: 3/2;
  height: auto;
  border-radius: 12px;
}

.swiper-slide img {
  height: min(48px*5, 100vh/3);
}

.fullScreen :is(.swiper-slide, .zoomedIMG) img {
  width: 100vw;
  height: 100vh;
  margin: 0;
  border-radius: 0;
}
@media only screen and (orientation: portrait) {
  .fullScreen :is(.swiper-slide, .zoomedIMG) img {
    aspect-ratio: 3/2;
    height: auto;
  }
}

.swiper-button-next, .swiper-button-prev {
  --swiper-navigation-size: 24px;
  top: min(48px*2.5 - var(--swiper-navigation-size)/2, 50vh/3 - var(--swiper-navigation-size)/2);
  padding: 24px;
  left: initial;
}

.swiper-button-next {
  right: 0;
}

.fullScreen > :is(.swiper-button-next, .swiper-button-prev) {
  top: calc(50% - 12px/2);
}

:is(.swiper-button-next, .swiper-button-prev):after {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.swiper-pagination {
  position: static;
}

.fullScreen.hidden + [class*=closeBTN i] {
  display: none;
}

/*-------------USERLIKE--------------*/
[id^=userlike i] iframe {
  z-index: 10;
}

/*========================DESKTOP MQ=========================*/
.mobileOnly {
  display: none;
}

@media only screen and (orientation: landscape) {
  body {
    background-image: url(/assets/images/small_H_BG.jpg);
  }
}
@media only screen and (min-width: 768px) {
  [class$=MNU] .closeICN {
    padding: 12px 48px;
  }
  [class$=MNU] .closeICN:before {
    position: absolute;
    right: 12px;
    margin: 0;
  }
  /*---------------MAIN---------------*/
  /*--------------SIDEBAR-------------*/
}
@media only screen and (min-width: 768px) and (orientation: portrait) {
  body {
    background-image: url(/assets/images/medium_V_BG.jpg);
  }
}
@media only screen and (min-width: 768px) and (min-height: 800px) {
  .smallModalBody {
    margin: auto;
    max-width: 360px;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  main {
    margin: 12px auto 0;
  }
}
@media only screen and (min-width: 768px) {
  main > section, main > :is(h3, .navHDR), main > .summaryCNT {
    padding-left: calc(clamp(335px, 1/3*100%, 412px) + 12px*3);
    padding-right: 12px;
  }
}
@media only screen and (min-width: 768px) {
  :where([class*=login i]) {
    width: clamp(335px, 33%, 412px);
  }
}
@media only screen and (min-width: 768px) {
  [class*=loginBOX i] {
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  aside {
    position: fixed;
    top: 60px;
    z-index: 13;
    width: clamp(335px, 33.3333333333%, 412px);
  }
}
@media only screen and (min-width: 768px) {
  [class$=MNU] li[data-ember-action]:not(.selected):hover {
    background-color: rgba(204, 204, 204, 0.1);
    backdrop-filter: blur(6px);
  }
}
@media only screen and (min-width: 768px) {
  .lvl2MNU {
    padding: 0 12px;
  }
}
@media only screen and (min-width: 768px) {
  .lvl2MNU.hidden {
    display: revert;
    visibility: hidden;
    height: 24px;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  .lvl2MNU.hidden:after {
    content: "\f078";
    visibility: visible;
    position: absolute;
    left: calc(50% - 16px);
    top: 0;
    font-family: awesome;
  }
}
@media only screen and (min-width: 768px) {
  [class*=menuPNL i], [type=search] ~ .searchPNL {
    position: absolute;
    left: calc(100% + 12px);
    top: var(--panelTop, 0);
    bottom: unset;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 4px 4px 12px rgba(51, 0, 51, 0.1), inset -6px -6px 18px rgba(255, 255, 255, 0.62), inset 6px 6px 18px rgba(0, 0, 0, 0.05);
  }
}
@media only screen and (min-width: 768px) {
  [class*=menuPNL i] > .scroll {
    height: auto;
    max-height: calc(var(--heightVar) - 24px);
  }
}
@media only screen and (min-width: 768px) {
  [type=search] ~ .searchPNL {
    left: calc(100% + 36px);
    bottom: unset;
    top: 12px;
    border-radius: 6px;
  }
}
@media only screen and (min-width: 768px) {
  .searchPNL datalist {
    max-height: 50vh;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1065px) {
  .destBannerBOX h4 {
    font-size: min(36px, 2.7777777778vw);
  }
}
@media only screen and (max-width: 687px) {
  .destBannerBOX h4 {
    font-size: max(16px, 4.1666666667vw);
  }
}
@media only screen and (min-width: 1024px) {
  /*--------------SIDEBAR-------------*/
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
  body {
    background-image: url(/assets/images/medium_H_BG.jpg);
  }
}
@media only screen and (min-width: 1024px) {
  aside {
    left: max(0px, 50% - 1280px/2);
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 20/9) {
  main.scroll {
    height: calc(100vh - 48px - 12px*3);
    overflow: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .flex > :where(img, figure):first-of-type {
    flex: 0 0 calc(38% - 12px*2);
  }
}
/*========================MOBILE MQ=========================*/
@media only screen and (min-aspect-ratio: 13/10) and (orientation: landscape) and (max-width: 869px), only screen and (max-width: 695px) and (orientation: landscape), only screen and (max-width: 1080px) and (min-aspect-ratio: 19/10) {
  [class*=login i] {
    width: auto;
    height: auto;
    margin: 12px;
  }
  .flxItem {
    width: max(62%, 300px);
  }
  .flxItem:first-child {
    width: max(38%, 200px);
  }
  body > header {
    display: none;
  }
  /*---------------MAIN--------------*/
  main.scroll {
    height: 100vh;
    margin: 0;
  }
  .swiper-slide img {
    height: max(48px*5, 50vh);
  }
  .swiper-button-next, .swiper-button-prev {
    top: max(48px*2.5 - var(--swiper-navigation-size)/2, 25vh - var(--swiper-navigation-size)/2);
  }
  /*--------------SIDEBAR-------------*/
  aside {
    top: 24px;
    max-height: calc(100vh - 48px);
  }
  .lvl2MNU {
    margin-top: 0;
  }
  .lvl2MNU li {
    font-size: 0;
    display: inline-block;
    padding: 0 0 0 12px;
  }
}
@media only screen and (max-width: 1080px) and (min-aspect-ratio: 19/10) {
  .lvl2MNU .closeICN {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  /*---------------MAIN--------------*/
  main.scroll {
    min-height: calc(100vh - 48px - 12px*3);
    padding-bottom: 60px;
  }
  .filter [type=checkbox]:after {
    content: none;
  }
  #catCheckDeselector {
    display: none;
  }
  /*--------------SIDEBAR-------------*/
  aside:not(.welcome) {
    margin: 0;
    padding: 0;
  }
  aside[class*=glass i]:not(.welcome):before {
    display: none;
  }
  aside:not(.welcome) nav ~ * {
    display: none !important;
  }
  .mainMNU {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 13;
    width: 100vw;
    min-height: 48px;
    margin: 0;
    font-size: 0;
    background-color: #f9f9f9;
    box-shadow: 0px -12px 12px -12px rgba(51, 0, 51, 0.15);
  }
  .mainMNU > li, .searchITM {
    height: 48px;
    margin: 6px 0;
    padding: 12px;
    text-align: center;
    line-height: 24px;
  }
  .lvl2MNU [class*=ICN] {
    width: 48px;
  }
  .mainMNU :is([class*=ICN], [class*=ICO]):before {
    font-size: initial;
    margin: 0;
  }
  [class$=menuBTN i] {
    display: none;
  }
  :where(.lvl2MNU) {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    border-bottom: solid 1px #ccc;
    background: #eee;
    box-shadow: 0px -12px 12px -12px rgba(51, 0, 51, 0.15);
  }
  .hasLVL2.selected:after {
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ccc;
    position: absolute;
    top: -9px;
    left: 16px;
  }
  .menuItemLvl2 {
    display: inline-block;
  }
  .menuSearch {
    position: fixed;
    left: 0;
    bottom: calc(60px*2);
    width: 100%;
    background-color: #eee;
  }
  .selected .menuSearch:not(.showMe) {
    display: none;
  }
  .menuSearch + .lvl2MNU .searchITM:first-child {
    display: inline-block;
  }
  [type=search] ~ .searchPNL:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    max-height: calc(100vh - 60px*3);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
  }
  .searchITM.active {
    color: #245ba7;
    border: solid 1px #f4f4f4;
    border-radius: 6px;
    box-shadow: inset 6px 6px 18px -6px rgba(50, 20, 50, 0.1), inset -6px -6px 18px rgba(255, 255, 255, 0.5);
  }
  [class$=MNU] .closeICN:before {
    color: #eee;
    background-color: #999;
  }
}
@media only screen and (min-width: 640px) {
  /*For DG Dine Slider*/
  .swiper-slide h5 {
    flex-basis: auto;
  }
  .swiper-slide p {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .empty + .shoppingCart {
    display: revert;
  }
  .empty {
    display: none;
  }
  .hideMe {
    display: none;
  }
  .freeCOL {
    width: 100%;
  }
  .mobileOnly {
    display: revert;
  }
  .mobileOnly + button {
    display: none;
  }
  .coteOnIMG {
    display: block;
    width: 266px;
    margin: auto;
  }
  [role=tab][class*=ICN] {
    font-size: 0;
  }
  [role=tab][class*=ICN]:before {
    font-size: initial;
    margin: 0;
  }
}
@media only screen and (max-width: 360px) {
  .bloodCombo [type=date], .bloodCombo [type=time] {
    padding: 8px;
  }
  .coteOnIMG {
    width: 100%;
  }
  /*--------------HELPER-------------*/
  .desktopOnly {
    display: none;
  }
}
/*========================LANDSCAPE MQ=========================*/
@media only screen and (min-width: 640px) and (orientation: landscape) {
  .col2row {
    flex-flow: row nowrap;
  }
  .col2row nav {
    flex: 1 72px;
    width: 72px;
  }
  .col2row .tabs {
    height: 100%;
    border-bottom: 0;
    border-right: solid 1px #245ba7;
  }
  .repPic {
    height: max(48px*6, 50vh);
  }
  .tContent {
    flex: 100%;
  }
  .boothImg {
    display: inline-block;
    width: calc(50% - 12px*2);
  }
}
@media only screen and (max-device-height: 767px) and (orientation: landscape) and (max-width: 767px) {
  aside {
    margin: 0;
    padding: 0;
  }
}
@media only screen and (max-device-height: 767px) and (orientation: landscape) {
  .mainNav ~ * {
    display: none;
  }
}
@media only screen and (max-device-height: 767px) and (orientation: landscape) {
  main:not([class*=login i]) {
    height: 100vh;
    overflow: auto;
  }
}
.hideGmap {
  display: none;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: rgba(255, 255, 255, 0.75);
  color: #FFF;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  padding-top: 20px;
}

/*----------------------------------*/
/*--------------HELPERS-------------*/
/*----------------------------------*/
[class*=stamp i] {
  padding: 12px;
}

[class*=stamp i]:before {
  margin: 0;
}

.noWrap {
  white-space: nowrap;
}

.hidden {
  display: none;
}

.showMe {
  display: revert;
}

.isHidden:before, .isHidden:after {
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    display: var(--display, block);
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.tooltipPill {
  position: absolute;
  left: calc(50% - 150px);
  bottom: -12px;
  width: 300px;
  margin: auto;
  background-color: #eee;
  text-align: center;
}

.showUp {
  animation: fadeIn 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.vanish {
  animation: fadeOut 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

[class*=blood] {
  padding: 0;
  margin: 0;
}

:where([class*=glass i]) {
  position: relative;
}

[class*=glass i]:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: solid 1px rgba(255, 255, 255, 0.75);
  border-radius: inherit;
  box-shadow: 6px 6px 12px rgba(51, 0, 51, 0.15);
}

[class*=flex i] {
  display: flex;
  flex-flow: row wrap;
}

[class*=caps i] {
  text-transform: capitalize;
}

.textTrim {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
}

:where([class*=clamp i]) {
  --maxRows: 5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--maxRows);
  -webkit-box-orient: vertical;
  text-overflow: -o-ellipsis-lastline; /*Opera*/
}

:where([class*=highlight i]) {
  display: block;
  font-size: initial;
  color: #666;
  background: #eee;
}

.shadowedHighlight {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.flash {
  animation: flash 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  border-radius: 12px;
}

@keyframes flash {
  0% {
    background: rgba(255, 255, 255, 0);
  }
  50% {
    background: rgba(255, 255, 255, 0.8);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
.clearFix:after {
  content: "";
  display: block;
  clear: both;
}

.centered2D {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.breakWord {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
  -webkit-hyphenate-limit-before: 3; /* Legacy for Safari */
  -webkit-hyphenate-limit-after: 3; /* Legacy for Safari */
  -ms-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-chars: 6 3 3; /* not yet supported */
  -moz-hyphenate-limit-chars: 6 3 3; /* not yet supported */
  hyphenate-limit-chars: 6 3 3;
  -ms-hyphenate-limit-lines: 2;
  -webkit-hyphenate-limit-lines: 2;
  hyphenate-limit-lines: 2;
  -ms-hyphenate-limit-last: always;
  hyphenate-limit-last: always;
  -ms-hyphenate-limit-zone: 8%;
  hyphenate-limit-zone: 8%;
}

.keepAspectRatio {
  position: relative;
  aspect-ratio: var(--width)/var(--height);
}
@supports not (aspect-ratio: var(--width)/var(--height)) {
  .keepAspectRatio { /*For iOS previous to v15*/
    padding: calc(var(--height) / var(--width) * 100%) 12px 0;
  }
}

.keepAspectRatio > img {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.zoomable {
  position: relative;
  cursor: pointer !important;
  cursor: -moz-zoom-in !important;
  cursor: -webkit-zoom-in !important;
  cursor: zoom-in;
}

.zoomable:after {
  content: "\f00e";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  font-family: awesome;
  line-height: 24px;
  color: #008fcb;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
  border-radius: 4px;
}

.zoomedIMG {
  margin: auto;
}

.freezed {
  overflow: hidden;
}

.alignCTR {
  text-align: center;
}

/*----------------------------------*/
/*-----------OLD HELPERS------------*/
/*----------------------------------*/
/*------------Collapsible------------*/
.collapsible {
  max-height: 1000px;
  transition: max-height 0.5s ease, margin 0.5s ease;
  overflow: auto;
  margin: 0;
}

.collapsed {
  overflow: hidden;
  max-height: 144px;
  transition: max-height 0.5s ease, margin 0.5s ease;
}

/*--------------Other------------*/
[class*=blk] {
  display: block;
}

.blocked {
  display: inline-block;
}

.noFlexCenter {
  display: block;
  text-align: center;
}

.responsiveIMG {
  width: 100%;
}

.alignL {
  text-align: left;
}

.alignR {
  text-align: right;
}

.floatR {
  float: right;
}

.floatL {
  float: left;
}

/*======Google Maps======*/
.cardMap {
  width: calc(100% - 12px*2);
  height: max(62%, 240px);
  margin: 12px;
}

.cardMap button {
  height: auto;
  min-width: auto;
}