@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@keyframes fadeIn {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

a {
  color: #000;
}

a:focus,
a:hover {
  color: #555;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#content {
  position: relative;
  min-height: 522px;
}

#maps-content {
  height: 100vh;
  width: 100%;
  position: relative;
}

.down-arrow category-arrow {
  display: none !important;
  opacity: 0 !important;
}

.search-wrapper {
  position: relative;
  display: inline-block;
  width: 333px;
  height: 50px
}

.block-list-wrapper {
  display: block !important;
}

.search {
  display: block;
  text-align: center;
  position: fixed;
  top: 20px;
  z-index: 1002;
  height: 50px;
}

.mobile .search,
.mobile .search.active {
  transition: none;
  -webkit-transition: none;
}


.popup-opened .search {
  text-align: left !important;
  z-index: 3000;
}

.popup-opened .search-wrapper {
  max-width: 100%
}

.search input {
  background-color: #fff;
  width: 100%;
  height: 50px;
  border-radius: 50px;
  border: none;
  padding: 0 20px 0 50px;
  z-index: 2;
  position: relative;
  cursor: default;
}

.search .search-icon {
  position: absolute;
  left: 19px;
  top: 15px;
  height: 20px;
  cursor: pointer;
  z-index: 2;
  pointer-events: none;
}

.search-list-data {
  background-color: #fff;
  height: 0;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
  border-radius: 19px;
  display: none
}

.search-list-data.active {
  display: block;
  height: 310px
}

.search-list-data>ul {
  transition: all .5s;
  overflow-y: auto;
  height: 0;
  background-color: #fff;
  margin-top: 38px;
}

.mobile .search-list-data>ul {
  transition: none;
  -webkit-transition: none;
}

.search-list-data.active>ul {
  position: relative;
  top: 40px;
  margin-top: 0;
  height: 250px;
  padding-left: 0;
}

.search-list-data>ul>li {
  list-style: none;
  text-align: left;
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}

/*.search-list-data > ul > li[data-index]:last-child {
  display: none;
}*/

.search-list-data>ul>li>a {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 10px 0 15px 0;
  margin: 0 20px;
  border-bottom: 1px solid #F3F3F3;
  font-weight: bold;
  user-select: none;
}


.search-list-data>ul>li img.category-arrow {
  width: 13px;
  height: 9px;
}

.search-list-data .thumbnail-wrapper {
  display: inline-block;
  width: 55px;
  text-align: center;
  pointer-events: none;
}

.search-list-data .no-thumbnail {
  display: inline-block;
  width: 5px
}

.search-list-data .search-thumbnail {
  height: 33px;
  max-width: 65px;
}

.search-list-data .desc {
  max-height: 40px;
  overflow: hidden;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
}

.search-list-data ul li ul li .block-item .desc {
  display: block !important;
}

.search-list-data ul li ul li .block-item .sub-desc {
  font-size: 0.75rem;
}

.search-list-data>ul>li.active ul {
  display: block;
  padding-left: 0;
}

.search-list-data>ul>li>img {
  position: absolute;
  right: 20px;
  top: 10px;
}

.search-list-data>ul>li ul {
  list-style: none;
  display: none;
  margin-top: 10px;
}

.search-list-data>ul>li>.block-item,
.search-list-data>ul>li>ul>li>div {
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: normal;
}

.search-list-data ol,
.search-list-data ul {
  padding-left: 0px !important;
  margin-left: 0px !important;
}


.search-list-data>ul>li>a>span,
.search-list-data>ul>li>ul>li>div>span {
  color: #818181;
  float: left;
}

.search-list-data .close-icon {
  background-image: url(/assets/img/icons/search-close-icon.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  top: 9px;
  right: 7px;
  z-index: 9999;
  width: 50px;
  height: 35px;
  padding: 15px;
  cursor: pointer;
  visibility: hidden;
}

.search-list-data ul li img {
  pointer-events: none;
}

.search-list-data.active .close-icon {
  visibility: visible;
}

.search-list-data .right-arrow {
  position: absolute;
  right: 40px;
  top: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  visibility: visible;
}

.search-list-data li {
  position: relative;
  padding-left: 0px;
}

.search-list-data li.active .right-arrow {
  display: none;
}


.search-list-data .left-arrow {
  position: absolute;
  left: 10px;
  top: 22px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.search-list-data li.active .left-arrow {
  visibility: visible !important;
}

.search-list-data li .left-arrow {
  display: none;
}

.search-list-data li.active .left-arrow {
  display: inline-block;
}

.search-list-data .right-arrow {
  position: absolute;
  right: 40px;
  top: 20px;
}

p.noresults {
  padding: 0 20px
}

.block-list {
  display: block;
  padding: 5px 0 30px 0;
  margin: 0 15px;
  border-bottom: 1px solid #F3F3F3;

}

.search-list-data a {
  padding-left: 35px !important;
}

.search-list-data .block-list {
  padding-left: 30px !important;
}


/* Hides category headings and arrows */
/*.search-list-data > ul > li > a,
.search-list-data > ul > li > img.category-arrow {
    display: none !important; 
}*/

.navigator {
  margin-top: 3px
}

.d-flex {
  display: flex
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.hide {
  display: none
}

.flex-center,
.navigator-top,
.level-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-right-auto {
  margin-right: auto;
}

.uppercase {
  text-transform: uppercase;
}

.m-0 {
  margin: 0 !important;
}

.mt-0\.5 {
  margin-top: 0.5rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-1\.5 {
  margin-top: 1.5rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mb-0\.5 {
  margin-bottom: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-3\.5 {
  margin-bottom: 3.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.rounded-big {
  border-radius: 0.65rem !important;
}

.start-location,
.destination-location,
.round-shadow {
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.start-location,
.destination-location,
.round-shadow-50 {
  min-width: 50px;
  min-height: 50px;
  border-radius: 50px;
}

.start-location,
.destination-location {
  background-color: #fff;
  color: #000;
  padding: 10px 15px;
  border: 0;
  border-radius: 30px;
  height: 50px;
  line-height: 1.7;
  font-size: 1rem;
}

.destination-location {
  background: #F36C31 no-repeat left center;
  color: #fff;
  margin-left: 10px
}

.select-location-buttons {
  justify-content: start !important;
  display: flex;
  gap: 0.5rem
}

.block-info .start-location,
.block-info .destination-location {
  display: inline-flex;
  align-items: center;
  text-align: left;
  font-size: 0.9rem;
}

.block-info .destination-location {
  background: #F36C31;
  margin-left: auto;
}

.block-info .start-location:before {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  content: '';
  color: #F36C31;
  margin-left: 0;
  background-color: #F36C31;
  margin-right: 7px;
  outline: 1px solid #F36C31;
}

.block-info .destination-location:before {
  width: 20px;
  height: 20px;
  background: url(/assets/img/icons/white-pin-icon.svg) #F36C31 no-repeat left center;
  display: inline-block;
  content: '';
  color: #fff;
  margin-left: 0;
}

.block-info,
.block-info h4 {
  color: #000
}

.block-info .info {
  display: flex;
  align-items: center;
  background: url(/assets/img/icons/link-icon.svg) transparent no-repeat left center;
  background-size: contain;
  color: #000;
  padding-left: 24px;
  height: 18px;
  font-weight: bold;
}

.block-heading {
  align-items: center;
}

.block-share {
  background-image: url(/assets/img/icons/share.svg);
  background-color: #A3D237;
  background-size: 21px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50px;
  border: 0;
  margin-left: auto
}

.block-image {
  object-fit: cover;
  align-self: start;
  width: 100%;
}

.block-name-wrapper {
  align-items: center;
}

.block-name-tag {
  width: 20px;
  height: 20px;
  margin-left: 10px
}

.block-category,
.block-ops {
  font-size: 1.1rem
}

.block-ops label,
.block-level {
  display: flex;
  align-items: center;
  background: url(/assets/img/icons/pin-icon.svg) transparent no-repeat left center;
  background-size: contain;
  height: 20px;
  padding-left: 20px;
  margin-top: 0.6rem;
  font-size: 1rem;
}

.block-ops .block-o label {
  background: url(/assets/img/icons/info-icon.svg) transparent no-repeat left center;
}

.block-ops .block-em label {
  background: url(/assets/img/icons/link.svg) transparent no-repeat left center;
}

.block-ops .block-e label {
  background: url(/assets/img/icons/event-icon.svg) transparent no-repeat left center;
}

.block-ops .block-ps label {
  background: url(/assets/img/icons/promo-icon.svg) transparent no-repeat left center;
}

.block-ops .block-o>label,
.block-ops .block-em>label,
.block-ops .block-e>label,
.block-ops .block-ps>label {
  background-size: contain;
  padding-left: 28px;
  height: 19px;
}

.block-ops .block-o>div,
.block-ops .block-em>div,
.block-ops .block-e>div,
.block-ops .block-ps>div {
  padding-left: 28px;
  font-size: 14px
}

.block-ops .block-em+.block-e {
  margin-top: 1rem
}

.block-ops ul {
  line-height: 1;
  padding: 0;
}

.block-ops ul li {
  line-height: 1;
  margin-bottom: 0.5rem;
}

.block-ops ul li::marker {
  font-size: 2rem;
}

.block-link {
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem !important;
}

.block-links {
  text-align: center;
  ;
}

.block-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.block-links a {
  border-bottom: 1px solid #000;
}

.star-icon {
  background: url(/assets/img/icons/star-rating-icon.svg) no-repeat center;
  width: 44px;
  height: 44px;
  background-size: contain;
  cursor: pointer;
  border: 0;
}

.active.star-icon {
  background: url(/assets/img/icons/active-star-rating-icon.svg) no-repeat center;
  background-size: contain;
}

.button-list {
  width: auto;
  line-height: inherit !important;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 8px;
  margin-bottom: 8px !important;
  margin-right: 8px;
}

.box {
  background-color: #fff;
  display: block;
  padding: 15px 10px;
  text-align: center;
  border-radius: 5px;
}

.box-list {
  display: inline-block;
  line-height: inherit !important;
  margin-bottom: 0 !important;
  margin-right: 15px;
}

.block-e .box-list,
.block-ps .box-list {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  margin-left: 2px;
}

.block-e .box-list {
  width: 174px;
  min-width: 174px
}

.block-ps .box-list {
  width: 191px;
  min-width: 191px
}

.button-list:last-child,
.box-list:last-child {
  margin-right: 5px
}

.box-list h5 {
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.4rem
}

.box-list div,
.box-list a {
  color: #4d4d4d !important;
  font-size: 14px;
  font-weight: normal !important;
  text-wrap: wrap
}

.list-none {
  list-style: none;
}

.nowrap {
  text-wrap: nowrap;
}

/* Colors */
.white-text {
  color: #fff !important;
}

.black-text {
  color: #000 !important;
}

.dark-cyan-text,
.\!dark-cyan-text,
.button.\!dark-cyan-text {
  color: #004853 !important;
}

.button.active,
.dark-cyan-bg,
.button.dark-cyan-bg {
  background-color: #004853 !important;
  color: #fff !important
}

.lime-bg {
  background-color: #A3D237 !important;
}

.orange-bg {
  background-color: #F36C31 !important;
}

/* Buttons */
.button {
  background-color: #fff;
  color: #4D4D4D !important;
  width: auto;
  height: 32px;
  border-radius: 32px;
  padding: 8px 20px;
  font-size: 14px;
  border: 0;
  line-height: 1;
  font-weight: normal !important;
  left: 0 !important;
  top: 0 !important
}

.button.medium {
  font-size: 15px;
  height: 35px;
  padding: 8px 15px;
}

.box-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.box-shadow-1 {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}

.view-on-map-button+.read-more-button {
  margin-left: 18px;
}

/* Share */
.modal-wrapper {
  position: fixed;
  z-index: 100000;
  width: 82%;
  max-height: 75%;
  overflow-y: scroll;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -300px);
  max-width: 380px;
  background-color: #fff;
  color: #555;
  padding: 30px 10px;
  border-radius: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.modal-wrapper.ad-modal {
  padding: 0 10px;
}

.modal-wrapper.ad-modal .close-modal {
  top: 15px;
}

.timeline-modal,
.iframe-modal {
  width: 95%;
  max-width: 95%;
  top: 50%;
  height: 100%;
  max-height: 84%;
}

.timeline-modal {
  padding-top: 10px;
  padding-bottom: 10px
}

.iframe-modal iframe {
  min-height: 450px;
}

.category-modal,
.ad-modal,
.share-modal,
.opening-hours-modal,
.feedback-modal {
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 95%;
  height: auto;
  top: 50%
}

.share-modal,
.opening-hours-modal,
.feedback-modal {
  max-width: 380px;
}

.modal-wrapper::-webkit-scrollbar {
  display: none;
}

.category-modal {
  width: 80%;
  max-width: 380px;
}

.share-modal {
  width: 87%;
  max-height: 300px;
}

.modal-backdrop {
  z-index: 3000;
}

.has-notification .ad-modal {
  top: 55%
}

.close-modal,
.close-iframe-modal,
.close-feedback-modal {
  position: relative;
  top: -15px;
  right: 7px;
  float: right;
  width: 44px;
  height: 44px;
  border-radius: 44px;
  border: 0;
  background: url(/assets/img/icons/close-icon.svg) #eeeeee no-repeat center center;
  background-size: 15px;
  color: #666;
}

.close-modal:hover,
.close-modal:focus,
.close-iframe-modal:hover,
.close-iframe-modal:focus,
.close-feedback-modal:hover,
.close-feedback-modal:focus {
  outline: 1px solid #5f6369;
}

#timeline-modal .close-modal {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 1;
}

.modal-heading,
.modal-text,
.share-button-wrapper {
  padding: 0 15px;
}

.modal-heading {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px
}

.icon-wrapper {
  text-align: center;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  background-color: #F36C31;
}

.content-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 44px 0px;
}

.content-category {
  flex: 0 1 calc(50% - 5px);
  box-sizing: border-box;
  padding: 10px;
}

.content-category img {
  width: 50px;
  height: 50px;
}

.feedback-location {
  margin: 0 25px;
}

.feedback-location .modal-heading {
  font-size: 25px;
  color: #000;
  margin-bottom: 0;
}

.feedback-location .modal-heading,
.feedback-location .modal-text {
  padding: 0;
}

.feedback-location textarea {
  width: 100%;
  border-radius: 10px;
  border-color: #A9A9A9;
  margin-bottom: 15px;
  padding: 10px;
}

.submit-button {
  border: 0;
  background-color: #004853;
  color: #fff;
  display: inline;
  border-radius: 20px;
  padding: 3px 5px;
  width: 85px;
}

.modal-text {
  margin-bottom: 10px;
}

.share-button-wrapper {
  margin-bottom: 20px;
}

.share-button-1 {
  background: url(/assets/img/icons/button-1.svg) transparent no-repeat center center;
}

.share-button-2 {
  background: url(/assets/img/icons/button-2.svg) transparent no-repeat center center;
}

.share-button-3 {
  background: url(/assets/img/icons/button-3.svg) transparent no-repeat center center;
}

.share-button-4 {
  background: url(/assets/img/icons/button-4.svg) transparent no-repeat center center;
}

.share-button {
  width: 55px;
  height: 55px;
  border: 0;
  background-size: contain
}

.copy-link-wrapper {
  border: 1px solid #cecece;
  padding: 10px;
  border-radius: 50px;
}

.copy-link-wrapper input {
  border: 0;
  width: 65%;
  font-size: 1.1rem;
  padding-left: 10px;
  color: #555;
}

.copy-button {
  margin-left: auto;
  border: 0;
  padding: 8px 28px;
  border-radius: 28px;
  background-color: #F36C31;
  color: #fff;
}

button.start-location {
  line-height: 12px;
}


/* Offers and deals */
.tabs {
  width: 100%;
  margin-top: -8px;
  padding: 0 5px;
}

.tab-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.tab-links li {
  margin-right: 10px;
}

.tab-links a {
  display: block;
  padding: 2px 15px;
  text-decoration: none;
  background-size: 18px !important;
  background-position-x: 7px !important;
  padding-left: 35px;
  background-color: #f1f1f1;
  color: #004853;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 30px;
  border: 2px solid #004853;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tab-links li a.alerts {
  background: url(/assets/img/icons/alert-icon.svg) no-repeat center left;
}

.tab-links li.active a.alerts {
  background: url(/assets/img/icons/white-alert-icon.svg) no-repeat center left;
  background-color: #004853;
  color: #fff
}

.tab-links li a.deals {
  background: url(/assets/img/icons/promo-icon.svg) no-repeat center left;
  background-size: 15px !important;
  background-position-x: 10px !important;
  padding-left: 30px;
}

.tab-links li.active a.deals {
  background: url(/assets/img/icons/white-promo-icon.svg) no-repeat center left;
  background-color: #004853;
  color: #fff;
}

.tab-links li a.events {
  background: url(/assets/img/icons/event-icon.svg) no-repeat center left;
  background-size: 15px !important;
  background-position-x: 10px !important;
  padding-left: 30px;
}

.tab-links li.active a.events {
  background: url(/assets/img/icons/white-event-icon.svg) no-repeat center left;
  background-color: #004853;
  color: #fff;
}

.results {
  margin-top: 30px !important;
  margin-bottom: 30px;
  margin-left: 10px
}

.tab-content {
  margin-top: 10px;
  padding: 0;
  font-size: 1.1rem;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.tab ul>li>a {
  position: relative;
  top: -3px;
  font-size: 0.9rem;
  line-height: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

.tab li {
  border-bottom: 1px solid #707070;
  margin-bottom: 25px;
  padding-bottom: 25px;
  list-style: none
}

.tab li:last-child {
  border-bottom: 0
}

.tab .no-results {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
}

.tab .no-results li {
  color: #333
}

.tab li::marker {
  font-size: 2rem;
}

.tab li:last-child {
  border: 0
}

.tab div {
  line-height: 1.2;
  margin-top: 10px;
  color: #333;
  text-align: left;
}

#alerts-list,
#deals-list,
#events-list {
  margin-left: 0;
  padding-left: 10px;
}

.tab .alerts-result-count,
.tab .deals-result-count,
.tab .events-result-count {
  font-size: 1rem;
  color: #707070;
  margin-bottom: 0;
  margin-top: 25px !important;
}

.tab ul li div {
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Deals */
.filter-section {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  margin-top: 30px !important
}

.filter-section.hide {
  display: none !important
}

.filter-section label {
  color: #333;
  white-space: nowrap;
}

.filter-section select {
  appearance: none;
  display: flex;
  position: absolute;
  color: #f46c31;
  left: 55px;
  height: 36px;
  width: 43%;
  padding-left: 20px;
  align-items: center;
  justify-content: center;
  border: 2px solid #f46c31;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
}

.filter-section label {
  background-color: #F36C31;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  padding-left: 50px;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  background-size: 20px 56px !important;
  background-position-x: 12px !important;
  width: 56px;
  height: 36px;
}

.filter-section label {
  background-image: url(/assets/img/icons/white-bell-icon.svg);
  background-size: 15px 56px !important;
  background-position-x: 15px !important;
}

.filter-section label.student {
  background-image: url(/assets/img/icons/white-student-icon.svg);
  background-size: 20px 56px !important;
  background-position-x: 12px !important;
}

.filter-section label.facultystaff {
  background-image: url(/assets/img/icons/white-faculty-staff-icon.svg);
  background-size: 20px 56px !important;
  background-position-x: 12px !important;
}

.filter-section label.alumni {
  background-image: url(/assets/img/icons/white-alumni-icon.svg);
  background-size: 15px 56px !important;
  background-position-x: 15px !important;
}

.filter-section label.visitor {
  background-image: url(/assets/img/icons/white-visitor-icon.svg);
  background-size: 15px 56px !important;
  background-position-x: 15px !important;
}

.results-count {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.deal-category {
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  text-transform: uppercase;
}

.deal-card {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 35px;
  margin-left: 20px;
  margin-right: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.deal-card:last-child {
  border: 0
}

.deal-card img {
  align-self: start;
  width: 70px;
  height: 70px;
  margin-top: 10px;
  margin-right: 20px;
  object-fit: cover;
}

.deal-info {
  flex-grow: 1;
}

.deal-info h3 {
  color: #000;
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.deal-info .deal-text {
  background: url(/assets/img/icons/price-tag-icon.svg) transparent no-repeat top left;
  background-size: 23px;
  background-position-y: 3px;
  color: #ff5859;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 10px;
  padding-left: 30px;
}

.view-on-map-button {
  background: url(/assets/img/icons/white-pin-icon.svg) #3283ff no-repeat center left;
  background-size: 12px;
  background-position-x: 20px;
  color: #fff;
  padding: 10px 20px 10px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.button.medium.view-on-map-button {
  padding-left: 41px !important
}

.view-on-map-button:hover {
  background-color: #0056b3;
  color: #fff;
}

.navigator-top {
  margin-bottom: 30px;
}

.filter-section:after,
.level-switcher-inner::after {
  position: absolute;
  right: 12px;
  z-index: 0;
  display: inline-block;
  content: ' ';
  background: transparent;
  background-image: url(/assets/img/icons/filter-dropdown-arrow.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 0;
  background-size: contain;
  width: 20px;
  height: 8px;
  overflow: hidden;
}

.filter-section:after {
  right: 45%
}

.level-switcher select {
  position: relative;
  z-index: 1;
  min-width: 125px;
  height: 50px;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  background-color: transparent;
  color: #000000;
  text-align: left;
  padding: 0px 40px 0 20px;
  margin-bottom: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
}

.mobile .level-switcher select {
  transition: none;
  -webkit-transition: none;
}

.notification-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-content,
.notification .close-icon {
  cursor: pointer;
}

.notification .close-icon {
  margin-left: auto;
  height: 30px;
  transition: transform 0.3s ease, height 0.3s ease;
}

.mobile .notification .close-icon {
  transition: none;
  -webkit-transition: none;
}

.notification .close-icon:hover {
  transform: scale(1.1);
}

.alerts-deals {
  cursor: pointer;
}

.alerts-deals:hover,
.alerts-deals:focus,
.tab-links li a:hover,
.tab-links li a:focus {
  background-color: rgba(0, 0, 0, 0.05);
}

.notification-bar {
  display: none;
  align-items: center;
  background-color: #004853;
  color: #fff;
  position: fixed;
  top: 0;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 100px;
  z-index: 100000;
}

.has-notification .notification-bar {
  display: flex;
}

a.notification-link {
  width: 100%;
  display: inline-block;
  color: #fff;
}

.new {
  width: 12px;
  height: 12px;
  top: 0;
  right: 0;
  border-radius: 100%;
  background-color: #ff5857;
  color: #fff
}

.new.has-number {
  font-size: 10px;
  padding: 8px;
}

.routes-panel {
  color: #2f3434;
  transition: width 0.2s, height 0.2s;
  margin: 0 auto 30px auto;
  position: relative;
  border-radius: 13px;
}

.mobile .routes-panel {
  transition: none;
  -webkit-transition: none;
}

.routes-panel.closed {
  height: 36px;
  padding: 0;
  overflow-y: hidden;
}

.routes-panel h4 {
  display: none;
  color: #313131;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0 15px 0;
  cursor: pointer;
  user-select: none;
}

.routes-panel.closed h4 {
  display: block
}

.routes-panel.closed .routes-swap {
  display: none
}

.routes-panel .arrow-up {
  background: transparent url(/assets/img/icons/up-arrow.svg) no-repeat center;
  position: absolute;
  top: -8px;
  right: 20px;
  padding: 20px;
  height: 9px;
  width: 13px;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.routes-panel.closed .arrow-up {
  transform: rotate(180deg);
}

.routes-panel .routes-footer {
  display: flex;
  margin-top: 30px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}

.routes-panel .routes-footer .routes-wheelchair {
  display: flex;
  align-items: center;
}

.routes-panel .routes-footer .routes-wheelchair .icon {
  background: transparent url(/assets/img/icons/wheelchair.svg) no-repeat center;
  background-size: 28px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.routes-panel .routes-footer .routes-wheelchair .routes-wheelchair-switch {
  background-color: #B7B7B7;
  width: 60px;
  height: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}

.routes-panel .routes-footer .routes-wheelchair .routes-wheelchair-switch.active {
  background-color: #313131;
}

.routes-panel .routes-footer .routes-wheelchair .routes-wheelchair-switch input {
  display: none;
}

.routes-panel .routes-footer .routes-wheelchair .routes-wheelchair-switch label {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

.mobile .routes-panel .routes-footer .routes-wheelchair .routes-wheelchair-switch label {
  transition: none;
  -webkit-transition: none;
}

.routes-panel .routes-footer .routes-wheelchair .routes-wheelchair-switch.active label {
  right: 5px;
  transform: translateX(30px);
}

/* Accessible route colors (blue class) */
.directionPath0.blue,
.directionPath1.blue {
  stroke: cyan !important
}

.routes-panel .routes-submit {
  background: #F36C31 url(/assets/img/icons/route-icon.svg) no-repeat left center;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  display: inline-block;
  height: 45px;
  transition: opacity 0.2s;
  cursor: pointer;
  padding-left: 48px;
  padding-right: 30px;
  border-radius: 40px;
  background-size: 15px;
  background-position-x: 15%;
}

.routes-panel .routes-submit {
  transition: none;
  -webkit-transition: none;
}

.routes-panel .routes-submit.active {
  background: #F36C31 url(/assets/img/icons/route-icon-1.svg) no-repeat left center;
  background-size: 30px;
  background-position-x: 12%;
}

.routes-panel .routes-submit:hover {
  opacity: 1;
}

.routes-panel.closed .routes-submit {
  background-size: 16px 16px !important;
  margin: 0;
}

.block-info .destination-location::before {
  background: url(/assets/img/icons/white-pin-icon.svg) left center no-repeat #F36C31 !important;
}

.routes-panel .routes-select small {
  border: 2px solid #231f20;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  float: left;
  display: block;
  margin-left: 2px;
}

.routes-panel .routes-select:first-child small {
  border-radius: 50%;
  transform: rotate(0deg);
}

.routes-panel .routes-select.filled small {
  background-color: #231F20;
  transition: background-color 0.2s;
}

.routes-panel .routes-select.filled small {
  transition: none;
  -webkit-transition: none;
}

.routes-panel .routes-select.filled:hover:not(.fixed) small {
  background-color: transparent;
  border-radius: 50%;
  transform: none;
  border: none;
}

.routes-panel .routes-select.filled:hover:not(.fixed) small:after {
  font-size: 15px;
  font-weight: bold;
  line-height: 8px;
  content: '\d7';
}

.routes-panel .routes-select.filled.fixed .routes-loc {
  color: #888;
}

.routes-panel .routes-select.filled.fixed small {
  background-color: #888;
  border-color: #888;
}

.routes-panel .routes-close {
  color: #888;
  cursor: pointer;
  font-size: 13px;
  position: absolute;
  bottom: 8px;
  left: 15px;
  transition: color 0.2s;
}

.mobile .routes-panel .routes-close {
  transition: none;
  -webkit-transition: none;
}

.routes-panel .routes-close:hover {
  color: #2f3434;
}

.routes-panel .routes-select {
  border-left: 3px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
}

.routes-panel .routes-select-end {
  border-left: 3px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
}

.mobile .routes-panel .routes-select,
.mobile .routes-panel .routes-select-end {
  transition: none;
  -webkit-transition: none;
}

.routes-panel .routes-select-end small {
  background: transparent url(/assets/img/icons/map-pointer.svg) no-repeat center;
  background-size: 15px;
  height: 24px;
  width: 15px;
}

.routes-panel .routes-select-end span {
  font-size: 12px;
  padding-left: 10px;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.routes-panel .routes-select.active {
  border-color: #6CB5F4;
  background-color: #fafafa;
}

.routes-panel .routes-select.active small {
  color: #2f3434;
}

.routes-panel .routes-select span,
.routes-panel .routes-select-end span {
  display: flex;
  align-items: center;
  position: relative;
  color: #888;
  padding: 10px 12px;
  border: 1px solid #444;
  border-radius: 30px;
  width: 75%;
  height: 50px;
  line-height: 1;
  font-size: 1rem;
  margin-left: 1rem;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.routes-panel .routes-select span img,
.routes-panel .routes-select-end span img {
  position: absolute;
  right: 12px;
  top: 10px;
  height: 20px;
  margin-top: 3px;
}

.routes-panel .routes-select.filled span {
  display: none;
}

.routes-panel .routes-loc {
  font-size: 16px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 10px;
  overflow: hidden;
}

.routes-panel .routes-dots {
  background: #fff url(/assets/img/icons/routes-dots.svg) repeat-y center;
  width: 1px;
  height: 67px;
  position: relative;
  left: 10px;
  pointer-events: none;
  background-size: 1px;
  margin-top: -19px;
  margin-bottom: -12px;
}

.routes-panel .routes-dots>span {
  background-color: #ccc;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 4px 0;
}

.routes-panel .routes-swap {
  position: absolute;
  width: 35px;
  height: 28px;
  top: 30%;
  right: 0;
  margin-top: -14px;
  cursor: pointer;
}

.icon {
  box-sizing: content-box;
  fill: #222;
  width: 16px;
  height: 16px;
  margin: 6px;
}

#maps-content .block-popup {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  cursor: default;
  width: 172px;
  height: 153px;
  -webkit-filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.2));
  align-items: end;
  justify-content: center;
  margin: 0;
}

.block-popup .inner {
  display: none !important;
  background-color: #fff;
  width: 172px;
  min-height: 123px;
  display: block;
  margin: 0;
  text-align: center;
  padding-bottom: 1px;
}

.block-popup .arrow {
  display: block;
  background: none no-repeat top center transparent;
  position: inherit;
  width: 36px;
  height: 60px;
  border-width: 0;
  border-style: solid;
  margin-left: 0;
  background-size: contain;
  top: auto;
  bottom: 0;
  margin-bottom: 0;
}

.block-popup span.heading {
  background-color: #313131;
  color: #fff;
  width: 100%;
  height: 26px;
  text-align: center;
  font-size: 10px;
  line-height: 26px;
  display: block;
}

.block-popup .info,
.block-popup img.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10.9px;
  zoom: 0.8;
  cursor: pointer !important;
}

.block-popup .info i {
  cursor: pointer !important;
}

.block-popup .info {
  color: white;
  right: auto;
  left: 0;
  padding: 7px 8px;
}

.block-popup .info:hover,
.block-popup img.close:hover {
  background-color: #767676
}

.block-popup h4 {
  text-align: center;
  display: block;
  font-size: 13px;
  color: #313131;
  margin-top: 15px;
  margin-bottom: 2px;
  font-weight: bold;
}

.block-popup span.opentime {
  font-size: 10px;
  color: #313131;
  text-align: center;
  display: block;
}

.block-popup button {
  cursor: pointer !important;
  user-select: none;
}

.fw-bold,
.block-popup button:hover {
  font-weight: bold;
}

.tour-loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-in-out;
}

.tour-loading-overlay.active {
  display: flex;
}

.tour-loading-modal {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.5s ease-in-out;
  max-width: 90%;
}

.tour-loading-modal h2 {
  margin-top: 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.spinner-border {
  width: 2rem;
  height: 2rem;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}


.select-location-buttons-tour {
  display: none;
  justify-content: start !important;
}

.select-location-buttons-tour .start-location-tour,
.select-location-buttons-tour .finish-location-tour {
  min-width: 50px;
  min-height: 50px;
  padding: 10px 15px;
  border: 0;
  height: 50px;
  line-height: 1.7;
  font-size: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
}

.select-location-buttons-tour .start-location-tour {
  background: #F36C31 no-repeat left center;
  color: #fff;
}

.select-location-buttons-tour .finish-location-tour {
  background-color: #fff;
  color: #000;
  margin-left: auto;
}

.select-location-buttons-tour .start-location-tour:before {
  width: 30px;
  height: 30px;
  background: url(/assets/img/icons/route-icon.svg) #F36C31 no-repeat left center;
  background-size: 30px;
  display: inline-block;
  content: '';
  margin-right: 7px;
}

.select-location-buttons-tour .finish-location-tour:before {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  content: '';
  background-color: #F36C31;
  margin-right: 7px;
  margin-left: 0;
  outline: 1px solid #F36C31;
}

.block-popup button.start-location,
.block-popup button.destination-location {
  display: flex;
  align-items: center;
  width: 90%;
  color: #000;
  margin: 10px 5% 0 5% !important;
  padding: 5px 10px 5px 15px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 10px;
  text-align: left;
  border: 0;
}

.block-popup button.destination-location {
  margin-bottom: 15px !important;
}

.block-popup button.start-location:before,
.block-popup button.destination-location:before {
  content: "";
  display: inline-block;
  margin: 0 5px 0 0;
}

.block-popup button.start-location:before {
  width: 13px;
  height: 13px;
  border: 2px solid #231f20;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.block-popup button.destination-location:before {
  background: transparent url(/assets/img/icons/map-pointer.svg) no-repeat center;
  height: 19px;
  width: 12px;
}

.zoom-buttons {
  display: flex;
  margin: 10px 0 55px 0;
  justify-content: center;
}

input[type=range] {
  -webkit-appearance: none;
  width: 195px;
  height: 11px;
  background: #ebebeb;
  background-image: linear-gradient(#313131, #313131);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  border-radius: 6px;
  margin: 0 16px;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-moz-range-thumb {
  border: 5px solid #000000;
  height: 18px;
  width: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: #ECECEC;
  cursor: pointer;
}

.zoom-buttons .zoomin-button,
.zoom-buttons .zoomout-button {
  background-color: transparent;
  border: none !important;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  box-shadow: none;
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
}

.mobile .zoom-buttons .zoomin-button,
.mobile .zoom-buttons .zoomout-button {
  transition: none;
  -webkit-transition: none;
}

.zoom-buttons .zoomin-button img,
.zoom-buttons .zoomout-button img {
  width: 100%;
  max-height: auto;
  ;
}

.view-steps {
  width: 145px;
  height: 33px;
  border: 1px solid #313131;
  display: flex;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  align-items: center;
  margin: 26px auto 29px auto;
  font-size: 14px;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
}

.view-steps .icon {
  background: url(/assets/img/icons/list.svg);
  margin: 0 13px 0 0;
}

.directions {
  display: none;
  border-top: 0;
  margin-top: 1rem
}

.directions.active {
  display: block !important;
  bottom: 0%;
}

.directions .directions-detail {
  padding-top: 1px;
}

.directions h4 {
  border-bottom: 0;
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}

.directions .heading {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.time-via-wrapper {
  margin-left: auto;
  text-align: right;
}

#time {
  font-weight: bold;
}

.time-wrapper {
  color: #000
}

.via-wrapper {
  font-size: 12px;
}

.directions .close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 18px;
  height: 19px;
}

.directions .steps {
  display: flex;
  flex-direction: column;
  margin: 0 22px;
  overflow-y: auto;
}

.directions .steps .item {
  font-size: 15px;
  display: flex;
  margin-bottom: 20px;
}

.directions .steps .item .icon {
  background-color: #F36C31;
  border-radius: 33px;
  padding: 5px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: flex-start;
  margin-right: 17px;
}

.directions .steps .item .icon img {
  width: 21px;
  height: 21px;
}

.directions .steps .item:last-child .icon {
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.directions .steps .item .text {
  display: flex;
  font-size: 1.1rem;
  width: 100%;
}

.directions .steps .item .text .number {
  display: flex;
  margin-right: 10px;
}

.directions .steps .item .text .number:after {
  display: inline-block;
  content: '.';
  width: 2px
}

.start-new-journey {
  display: none !important;
  background-color: #313131;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  z-index: 100;
  margin: 0 auto;
  cursor: pointer;
  max-width: 105px;
  text-align: center;
}

.start-new-journey.open {
  display: block;
}

.maps {
  display: flex;
  height: 100%;
  vertical-align: middle;
  cursor: grab;
  position: relative;
}

.maps-outer {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: auto;
  vertical-align: middle;
}

#customCSS {
  font-size: 13px;
}

.table .logo {
  text-align: center;
}

#myMaps {
  height: 100%;
  width: 100%;
  transform-origin: 0 0;
  transition: transform 0s ease 0s;
}

.mobile #myMaps {
  transition: none;
  -webkit-transition: none;
}

#myMaps div {
  height: 100%;
  margin: auto auto;
  width: 100%;
}

#controls {
  background-color: lightGrey;
  height: 50px;
  width: 100%;
  z-index: -1;
}

.thumbnail {
  max-width: 200px;
}

.new-tab::after {
  content: " ";
  display: inline-block;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  background: 0 0 transparent url("/assets/img/icons/open-in-new-window.svg");
  background-size: cover;
}

.new-tab.small-icon::after {
  width: 10px;
  height: 10px;
}

.debugPath {
  stroke: orange;
  stroke-width: 5;
}

.debugRoom {
  fill: red;
  stroke: red;
  stroke-width: 4;
}

.debug {
  width: 5px;
  height: 5px;
  background-color: red;
  position: fixed;
  top: 2px;
  left: 5px;
}

#WayfindingStatus {
  text-align: center;
}

.wayfindingRoom {
  fill: #ffc;
  /* stroke: blue; */
  stroke-width: 2;
  stroke-dasharray: 5 3;
}

.wayfindingRoom>polygon,
.wayfindingRoom>polyline {
  fill: rgba(178, 238, 71, 0.5);
}

/* Role management */
.button-group button {
  max-height: 30px;
}

/* Message */
.alert ul:last-child {
  margin-bottom: 0
}

#layout-navbar .navbar-nav-right>div>div {
  display: none !important;
}

/* Bottom sheet */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /* Center horizontally */
  width: 95%;
  /* Adjust width as needed */
  max-width: 550px;
  /* Adjust max-width as needed */
  height: auto;
  /* Allow height to adjust dynamically */
  overflow-y: auto;
  background: #fff;
  /* Background color for the bottom sheet */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  /* Start offscreen */
  transition: transform 0.3s ease, height 0.3s ease;
  /* Added height transition */
  z-index: 1001;
}

.mobile .bottom-sheet {
  transition: none;
  -webkit-transition: none
}

.bottom-sheet::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari, and Opera */
}

.bottom-sheet.show {
  transform: translateY(0);
  /* Slide up into view */
}

.bottom-sheet {
  overflow: hidden;
  /* Prevent scrolling within .bottom-sheet */
}

.bottom-sheet .header {
  position: sticky;
  /* Changed from fixed to sticky */
  top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  background-color: #fff;
  /* Background color for header */
  padding: 6px;
  /* Padding around header content */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Center content vertically */
  cursor: grab;
  user-select: none;
  z-index: 1000;
  /* Ensure header stays above other content */
}

.bottom-sheet .body {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  margin-top: 0;
  /* Remove any top margin */
  padding-top: 0;
  /* Remove any top padding */
  align-self: flex-start;
  overflow-y: auto;
  /* Enable vertical scrolling for content */
  /* No max-height set here */
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.bottom-sheet .header .drag-icon {
  cursor: grab;
  user-select: none;
  padding: 15px;
}

.bottom-sheet .header .drag-icon span {
  height: 4px;
  width: 40px;
  display: block;
  background: #c7d0e1;
  border-radius: 5px;
}

.bottom-sheet h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.filter-section::after {
  pointer-events: none !important;
}

@media (min-width: 769px) {
  .notification.notification-bar {
    max-height: 70px;
  }

  .modal-wrapper.timeline-modal,
  .modal-wrapper.iframe-modal {
    max-width: 630px;
  }
}

/* 
  MOBILE DEVICES ONLY – In LANDSCAPE orientation, hide the normal page and show the rotate prompt overlay.
  This query targets devices that report:
    • orientation: landscape
    • no hover capability (hover: none)
    • a coarse pointer (pointer: coarse)
    • a device width no greater than 1024px (covers nearly all phones in Chrome's device list)
*/
@media only screen and (orientation: landscape) and (hover: none) and (pointer: coarse) and (max-device-width: 1024px) {

  /* Hide normal page content */
  body {
    display: none;
  }

  /* Overlay styling on the html element */
  html {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 1.5rem;
    z-index: 2147483647;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Animated phone icon */
  html::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 70px;
    border: 3px solid #fff;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    animation: rotatePhone 2s infinite;
  }

  /* Inner phone screen of the icon */
  html::before::before {
    content: '';
    display: block;
    width: 30px;
    height: 50px;
    background-color: #fff;
    border-radius: 6px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Rotation message */
  html::after {
    content: "Please rotate your device vertically.";
    display: block;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 10px;
  }

  /* Keyframes for rotating the phone icon */
  @keyframes rotatePhone {
    0% {
      transform: rotate(0deg);
    }

    25% {
      transform: rotate(15deg);
    }

    50% {
      transform: rotate(0deg);
    }

    75% {
      transform: rotate(-15deg);
    }

    100% {
      transform: rotate(0deg);
    }
  }
}

/* 
  MOBILE DEVICES ONLY – In PORTRAIT orientation, always show the site normally.
  This resets any modifications made in landscape mode.
*/
@media only screen and (orientation: portrait) and (hover: none) and (pointer: coarse) and (max-device-width: 1024px) {
  body {
    display: block;
  }

  html {
    display: block;
    position: static;
    min-height: auto;
    overflow: visible;
    background-color: initial;
    color: initial;
    font-size: initial;
    z-index: auto;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    text-align: left;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Remove overlay pseudo-elements */
  html::before,
  html::after,
  html::before::before {
    content: none;
  }
}

@media only screen and (max-width: 575px) {
  #maps-content {
    top: -50px;
  }

  .search {
    position: sticky;
    width: 100%;
    padding: 0 20px
  }

  .has-notification .search {
    top: 122px
  }

  .search-wrapper {
    width: 100%;
  }

  .search-list-data {
    display: inline-block;
    position: relative;
    top: 10px;
  }

  .filter-section:after {
    right: 47%;
  }
}

@media only screen and (max-width: 350px) {
  .search-wrapper {
    width: 250px;
  }
}

@media only screen and (min-width: 576px) {

  html,
  body {
    height: 100vh;
  }

  #maps-content {
    height: 100vh;
  }

  .search {
    width: 282px;
    margin: 24px 0 24px 51px;
    float: left;
  }

  .has-notification .search {
    top: 60px
  }

  .start-new-journey {
    position: absolute;
    top: 5px;
    right: 10px;
  }

  #maps-content .maps {
    width: 100%;
    float: left;
    clear: left;
  }

  .zoom-buttons {
    display: flex !important;
    margin-bottom: 1rem;
  }

  .zoom-buttons .slider {
    margin-top: 5px;
  }

  .view-steps {
    margin: 0;
  }

  .popup-opened .view-steps {
    right: 80px;
  }

  .directions.active {
    top: 24px;
    right: 45px;
    left: auto;
    margin-left: auto;
    z-index: 100
  }

  .directions h4 {
    margin-bottom: 30px;
  }

  .search-list-data {
    height: 300px;
  }

  .search-list-data.active>ul {
    height: 250px;
  }

  .ad-modal {
    width: 333px;
    left: 217px;
    top: 353px;
    transform: translate(-50%, -257px);
  }

  .has-notification .ad-modal {
    top: 411px
  }
}

@media only screen and (min-width: 576px) and (max-width: 643.2px) {
  .mobile #status {
    position: fixed !important;
  }
}

@media only screen and (max-width: 643.2px) {
  .zoom-buttons .zoomin-button {
    right: 30px;
  }
}

@media only screen and (max-device-width: 1000px) {
  .zoom-buttons {
    display: none !important;
    margin-right: 115px;
    margin-bottom: 40px;
  }

  .zoom-buttons .zoomin-button,
  .zoom-buttons .zoomout-button {
    position: absolute;
  }

  .zoom-buttons .zoomout-button {
    left: 30px;
  }

  .zoom-buttons .zoomin-button img,
  .zoom-buttons .zoomout-button img {
    width: 30px;
    margin: 0;
  }

  #range {
    display: none;
  }
}

/* Max height */
.mh-50 {
  max-height: 50px
}

.mh-70 {
  max-height: 70px
}

.mh-100 {
  max-height: 100px
}

.mh-200 {
  max-height: 200px
}

/* Start Reset Map Mobile Fix */
@media only screen and (max-width: 575px) {
  .start-new-journey.open {
    max-width: 300px !important;
    position: absolute !important;
    top: 0px !important;
    right: 9px !important;
    border: 6px solid #ececec !important;
  }
}

/* Search - Recent Items Clock */
/* Clock before each Recent Search item */
.search-list-data .block-item.recent-item::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234D4D4D'><path d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16zm.75-13h-1.5v6l4.5 2.7.75-1.23-3.75-2.25V7z'/></svg>");
}

/* GPS - Blue Dot */
/* =========================
   Base button + icon carrier
   ========================= */
.gpsFunction {
  text-align: left;
  display: block;
}

/* Button shell */
.gps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  border-radius: 6px;
  font: 700 16px/1 sans-serif;
  text-decoration: none;
}

/* Icon placeholder (left of text) */
.gps-btn::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 24px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Divider under the control row */
.gpsFunction::after {
  content: "";
  display: block;
  border-top: 1px solid #F3F3F3;
  margin: 10px 20px;
}

/* =========================
   Fallback (before JS runs)
   Default to OFF = BLUE
   ========================= */
.gps-toggle {
  color: #3284FF;
}

.gps-toggle::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='24' viewBox='0 0 22 24'><path d='M17.154 22.0185L21.5587 2.55309C21.9119 0.992419 20.3518 -0.174034 18.9548 0.606136L1.5301 10.3367C-0.048627 11.2183 0.235349 13.5695 1.95224 13.8318L9.25614 14.9477C9.82424 15.0346 10.3021 15.3918 10.546 15.9122L13.6823 22.6022C14.4195 24.1748 16.755 23.7821 17.154 22.0185Z' fill='%233284FF'/></svg>");
}

.gps-toggle:hover {
  color: #3284FF;
}

/* =========================
   Authoritative state styling
   (driven by body classes)
   ========================= */
/* OFF (GPS disabled) => BLUE */
body.gps-off .gps-toggle {
  color: #3284FF;
}

body.gps-off .gps-toggle::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='24' viewBox='0 0 22 24'><path d='M17.154 22.0185L21.5587 2.55309C21.9119 0.992419 20.3518 -0.174034 18.9548 0.606136L1.5301 10.3367C-0.048627 11.2183 0.235349 13.5695 1.95224 13.8318L9.25614 14.9477C9.82424 15.0346 10.3021 15.3918 10.546 15.9122L13.6823 22.6022C14.4195 24.1748 16.755 23.7821 17.154 22.0185Z' fill='%233284FF'/></svg>");
}

body.gps-off .gps-toggle:hover {
  color: #3284FF;
}

/* ON (GPS enabled) => GREY */
body.gps-on .gps-toggle {
  color: #7F7F7F;
}

body.gps-on .gps-toggle::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='24' viewBox='0 0 22 24'><path d='M17.154 22.0185L21.5587 2.55309C21.9119 0.992419 20.3518 -0.174034 18.9548 0.606136L1.5301 10.3367C-0.048627 11.2183 0.235349 13.5695 1.95224 13.8318L9.25614 14.9477C9.82424 15.0346 10.3021 15.3918 10.546 15.9122L13.6823 22.6022C14.4195 24.1748 16.755 23.7821 17.154 22.0185Z' fill='%237F7F7F'/></svg>");
}

body.gps-on .gps-toggle:hover {
  color: #7F7F7F;
}

/* Always-blue icon for the center button (left-aligned via your .gpsFunction/.gps-btn) */
.gps-center {
  color: #3284FF;
}

.gps-center:hover {
  color: #3284FF;
}

.gps-center::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='24' viewBox='0 0 22 24'><path d='M17.154 22.0185L21.5587 2.55309C21.9119 0.992419 20.3518 -0.174034 18.9548 0.606136L1.5301 10.3367C-0.048627 11.2183 0.235349 13.5695 1.95224 13.8318L9.25614 14.9477C9.82424 15.0346 10.3021 15.3918 10.546 15.9122L13.6823 22.6022C14.4195 24.1748 16.755 23.7821 17.154 22.0185Z' fill='%233284FF'/></svg>");
}

/*GPS Bottom Sheet*/

a.gps-btn.gps-center.gps-btm-sheet {
  border-radius: 50%;
  margin-right: 5px;
  position: relative;
  overflow: hidden;
}

a.gps-btn.gps-center.gps-btm-sheet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%) translateX(0px);
  background-repeat: no-repeat;
  background-size: contain;
}

/* Search Style Changes */

.search li.block-list {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.search .search-list-data .block-item .sub-desc {
  font-size: 0.75rem !important;
}

.search .recent-title,
.search .categories-title {
  font-size: 14px !important;
  font-family: 'Figtree', sans-serif !important;
  font-weight: 400 !important;
  color: #4D4D4D !important;
}

div.block-item.recent-item {
  font-family: 'Figtree', sans-serif !important;
}

a.gps-btn.gps-center.gps-on {
  font-family: 'Figtree', sans-serif !important;
}

a.clear-recent {
  font-family: 'Figtree', sans-serif !important;
  color: #4D4D4D !important;
  font-weight: 400 !important;
}

.search li>a {
  margin-right: 60px !important;
  /* pushes arrow away from the text */
}

.search .search-list-data .block-item .des,
.search .search-list-data .block-item .sub-desc {
  color: #4D4D4D !important;
}

.search li.block-list {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.search ul li a {
  font-family: 'Figtree', sans-serif !important;
}

.search .search-list-data .block-item .desc {
  display: block !important;
  margin-bottom: 0px !important;
}

.search span.desc {
  color: #4D4D4D !important;
  font-family: 'Figtree', sans-serif !important;
}


.search li.block-list {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}


.search .sub-desc {
  font-size: 0.75rem !important;
}

.search,
.search * {
  font-family: 'Figtree', sans-serif !important;
}

.search .block-item.recent-item {
  padding-top: 0px !important
}


/* Remove the divider line only on the Clear Recent row */
.search .search-list-data>ul>li.clear-recent-wrapper>a {
  border-bottom: none !important;
  padding: 0 !important;
  margin: 0 16px !important;
  font-weight: normal;
}

.bottom-sheet,
.bottom-sheet * {
  font-family: 'Figtree', sans-serif !important;
}

.bottom-sheet .routes-select span,
.routes-select-end span {
  color: #404040 !important;
  ;
  font-family: 'Figtree', sans-serif !important;
  font-size: 14px;
}

.bottom-sheet .routes-select span,
.routes-select-end span {
  color: #404040 !important;
  ;
  font-family: 'Figtree', sans-serif !important;
  font-size: 14px;
}

.routes-select span,
.routes-select-end span {
  padding-right: 25px !important;
}

/* GPS Blue Dot */
body:not(.bd-has-gps) .gps-btn,
body:not(.bd-has-gps) [data-bluedot-toggle],
body:not(.bd-has-gps) .gpsFunction {
  display: none !important;
}

.level-s witcher .change-floor:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

#filter-select:focus {
  outline: none !important;
  box-shadow: none !important;
}



button.view-on-map-button.alert-title-button,
button.view-on-map-button.deal-title-button,
button.view-on-map-button.event-title-button {
  position: relative !important;
  ;
  top: -3px !important;
  ;
  font-size: 0.9rem !important;
  ;
  line-height: 1.5rem !important;
  ;
  font-weight: bold !important;
  ;
  text-transform: uppercase !important;
  ;
  color: #000 !important;
  ;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
}