@import url(https://fonts.googleapis.com/css?family=Hind:300|PT+Sans:700&display=swap);
@import url(//fonts.googleapis.com/earlyaccess/opensanshebrew.css);
.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  text-decoration: none;
  box-sizing: border-box; }

select, input[type="text"], input[type="password"], input[type="email"], textarea, select, button {
  outline: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  resize: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  font-family: 'Hind', sans-serif;
  font-weight: 300; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: var(--color-secondary); }

.hamburger-box {
  width: 20px;
  height: 14px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -6px; }
  .hamburger-inner::after {
    bottom: -6px; }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

@font-face {
  font-family: Matterport;
  src: url("/fonts/mp-font.ttf");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal; }

.mp-icon {
  font-family: Matterport !important; }

.mp-dollhouse {
  font-family: Matterport !important; }
  .mp-dollhouse:before {
    content: "\E90D"; }

.mp-floorplan {
  font-family: Matterport !important; }
  .mp-floorplan:before {
    content: "\E90E"; }

.mp-close {
  font-family: Matterport !important; }
  .mp-close:before {
    content: "\E912"; }

button:focus,
div[role="button"]:focus {
  outline-style: none;
  border: none; }

.fb-customerchat iframe {
  margin: 0 !important; }

.fb_dialog .fb_dialog_content iframe[data-testid="bubble_iframe"] {
  margin: 0 !important;
  bottom: 104px !important; }
  @media screen and (max-width: 768px) {
    .fb_dialog .fb_dialog_content iframe[data-testid="bubble_iframe"] {
      bottom: 144px !important; } }

.fb_dialog .fb_dialog_content iframe[data-testid="unread_iframe"] {
  right: 12px !important;
  bottom: 148px !important; }
  @media screen and (max-width: 768px) {
    .fb_dialog .fb_dialog_content iframe[data-testid="unread_iframe"] {
      bottom: 188px !important; } }

.react-switch-bg {
  height: 20px !important;
  width: 48px !important; }
  .react-switch-bg div {
    height: 20px !important;
    width: 20px !important; }

.react-switch-handle {
  height: 15px !important;
  width: 15px !important;
  top: 2.5px !important; }

.loading {
  height: 100%;
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8); }
  .loading svg {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto; }

.hint-icon {
  position: absolute;
  top: 10px;
  right: 10px; }

.btn {
  background-color: transparent;
  margin: 0;
  padding: 0; }
  .btn:focus {
    box-shadow: none;
    outline: none; }

.lds-ripple {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto; }

.lds-ripple div {
  position: absolute;
  border: 4px solid var(--color-primary);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; }

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s; }

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0; } }

body,
html {
  font-family: "Hind", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  background: #f8f8f8;
  background: #333;
  font-weight: 300; }
  @media screen and (max-width: 768px) {
    body,
    html {
      font-size: 16px; } }

h1,
h2 {
  font-family: "Hind", "Helvetica", "Arial", sans-serif;
  font-style: italic;
  font-weight: 700; }

#root,
#app-root {
  height: 100%;
  width: 100%;
  background: #f8f8f8; }

.loadingDiv {
  height: 100%;
  width: 100%;
  background: #f8f8f8;
  background: #333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  line-height: 100vh;
  text-align: center; }

.left {
  float: left; }

.right {
  float: right; }

input,
select,
textarea {
  border-radius: 2px;
  font-size: 1em;
  padding: 8px;
  width: 100%;
  height: 40px;
  margin: 10px 0;
  text-indent: 8px;
  display: block;
  font-family: "Hind", sans-serif;
  font-display: swap; }

.inner-window {
  float: right;
  width: calc(100% - 180px);
  background: #f8f8f8;
  height: calc(100vh - 55px);
  position: relative; }

.primary-btn {
  background: var(--color-secondary);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  opacity: 1;
  padding: 12px 16px;
  transition: all 0.3s ease; }
  .primary-btn i {
    margin-right: 10px;
    display: inline-block; }
  .primary-btn.off {
    opacity: 0.4;
    background: #666666;
    color: #fff; }
  .primary-btn.empty {
    background: none;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    float: right;
    margin-right: 0;
    margin-left: 10px; }
    .primary-btn.empty:hover {
      background: var(--color-secondary);
      color: #fff !important;
      opacity: 1; }
  .primary-btn.black {
    background: var(--color-primary); }

.mlr-10 {
  margin: 0 10px 0 10px; }

.clearfix {
  clear: both;
  display: block;
  height: 0;
  width: 100%; }

.square-button {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  display: block;
  cursor: pointer;
  font-size: 1em;
  padding: 12px;
  width: 150px;
  transition: all 0.3s ease;
  position: relative;
  right: 0;
  left: 0;
  margin: 0 auto;
  font-family: "PT Sans", sans-serif;
  font-display: swap; }
  .square-button:hover {
    background: var(--color-secondary);
    color: #fff; }

header {
  /* TODO: background */
  background: #fff;
  height: 60px;
  line-height: 50px; }
  header .fa-plus-circle {
    margin-right: 10px; }
  header a {
    font-size: 1em;
    margin: 0 20px;
    color: #fff;
    cursor: pointer;
    float: right; }

.loader {
  height: 100%;
  z-index: 10000000;
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 180px);
  background: rgba(0, 0, 0, 0.8); }
  .loader svg {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto; }

header {
  position: relative; }
  header #input_container {
    width: 350px;
    height: 30px;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-left: 20px;
    height: 30px;
    background-color: #f4f4f4;
    color: #282828; }
  header input {
    height: 20px;
    margin: 0;
    padding-right: 30px;
    width: 100%;
    background-color: #f4f4f4;
    transform: translateY(2px); }
  header .input_img {
    height: 11.1px;
    color: #bcbcbc !important;
    margin-left: 1rem !important; }
  header .profile {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(227, 146, 151, 0.39);
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px; }
  header .clientFilter {
    position: relative;
    top: 10px;
    width: 150px;
    z-index: 100;
    height: 30px;
    margin-left: 10px; }
    header .clientFilter input {
      height: 30px; }
  header i {
    font-size: 11px; }
  header .profile-pic {
    position: static !important; }

.rectangle {
  width: 133.7px;
  height: 30px;
  background-color: var(--color-secondary); }

.tb-2 {
  transform: translateY(2px); }

.add-btn {
  font-size: 11px;
  cursor: pointer; }

.there-is-no-tour {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.23;
  text-align: center;
  color: #292929; }

.no-tour-text {
  width: 603px;
  height: 41px;
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #292929; }

.rectangle-big {
  width: 190px;
  height: 54px;
  background-color: var(--color-secondary);
  font-size: 16px; }

::-webkit-scrollbar-track {
  background: var(--color-primary); }

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: var(--color-secondary); }

::-webkit-scrollbar {
  width: var(--scroll-bar-size);
  background: var(--color-primary); }

.ReactModalPortal {
  z-index: 9999;
  position: fixed; }

.ReactModal__Overlay {
  background: rgba(0, 0, 0, 0.8) !important; }

.ReactModal__Content {
  height: 300px;
  width: 450px;
  outline: none !important;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto; }
  .ReactModal__Content .fa-times {
    color: #fff;
    font-size: 2em;
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
    background: #000;
    width: 30px;
    height: 30px;
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    z-index: 10; }
    .ReactModal__Content .fa-times:hover {
      color: var(--color-secondary); }
  .ReactModal__Content .primary-btn {
    width: 100%;
    margin: 10px 0;
    font-size: 1em; }

@keyframes scale {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.buttonBg {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  right: 5%;
  top: 40px;
  padding: 20px 20px 20px 10px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease; }
  .buttonBg.animation {
    animation: scale 3s infinite; }
  .buttonBg.open {
    right: calc(5% + 280px); }
  .buttonBg button {
    margin-right: 20px; }
  .buttonBg span {
    color: #fff;
    font-size: 1.5em;
    display: inline-block !important;
    margin: 0; }
    @media screen and (max-width: 768px) {
      .buttonBg span {
        font-size: 1.2em; } }
  @media screen and (max-width: 768px) {
    .buttonBg {
      padding: 10px 5px 10px 0px;
      top: 20px; }
      .buttonBg > span {
        display: none; } }

.appointment-btn-container {
  position: relative; }

.appointment-hint {
  position: absolute;
  z-index: 1;
  width: max-content;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px 5px 0;
  border-radius: 20px;
  top: 7px;
  right: 70px;
  white-space: nowrap; }
  .appointment-hint .fa-times-hint-icon {
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    font-size: 10px !important;
    padding: 8px;
    margin: 1px 8px; }
    .appointment-hint .fa-times-hint-icon:hover {
      background: white;
      color: var(--color-secondary); }
  .appointment-hint span {
    font-size: 12px; }
  .appointment-hint .fa-arrow-right-hint-icon {
    background: white;
    color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    font-size: 10px !important;
    padding: 3px;
    margin-left: 10px; }

.no-visible-scrollbar ::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important; }

:root {
  --color-primary: #292929;
  --color-secondary: #ea475c;
  --scroll-bar-size: 10px; }

#analytics-root {
  text-align: center;
  background: #f4f4f4; }
  #analytics-root .right {
    float: right; }
  #analytics-root .left {
    float: left; }
  #analytics-root .statistic {
    background: #fff;
    text-align: left;
    width: 32%;
    padding: 30px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 10px; }
    #analytics-root .statistic h2 {
      font-style: normal;
      font-weight: bold;
      float: left;
      font-size: 28px;
      margin-top: 5px; }
      #analytics-root .statistic h2 span {
        display: block;
        font-weight: normal;
        margin-bottom: 10px;
        font-size: 14px; }
    #analytics-root .statistic img {
      float: right; }
  #analytics-root .hero {
    padding: 40px;
    width: 100%;
    background: #fff; }
    #analytics-root .hero h1 {
      color: #000;
      font-size: 1.4em;
      float: left;
      font-style: normal;
      line-height: 42px; }
      #analytics-root .hero h1 span {
        color: var(--color-secondary); }
    #analytics-root .hero .dates,
    #analytics-root .hero select {
      float: right;
      border: solid 1px #e8e8e8 !important; }
      #analytics-root .hero .dates input,
      #analytics-root .hero select input {
        color: #000 !important;
        margin: 0 !important; }
    #analytics-root .hero select {
      width: 120px;
      margin-top: 0;
      margin-bottom: 0;
      height: 42px;
      margin-left: 15px; }
    #analytics-root .hero .react-datepicker-wrapper {
      width: 100px;
      display: inline-block !important; }
      #analytics-root .hero .react-datepicker-wrapper input {
        background: none;
        color: #fff;
        text-align: left; }
        #analytics-root .hero .react-datepicker-wrapper input:focus {
          outline: 0 !important;
          box-shadow: none !important; }
  #analytics-root .buttons {
    margin-bottom: 40px; }
    #analytics-root .buttons button {
      padding: 10px;
      font-size: 1em;
      cursor: pointer; }
      #analytics-root .buttons button:focus {
        outline: 0 !important;
        box-shadow: none !important; }
      #analytics-root .buttons button:nth-child(2) {
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc; }

.charts {
  width: 1000px;
  clear: both;
  display: block;
  position: relative;
  right: 0;
  left: 0;
  margin: 0 auto;
  margin-top: 20px;
  padding-bottom: 30px; }

.chart-container {
  background: #fff;
  border-radius: 4px;
  margin: 10px 0;
  padding: 20px;
  position: relative; }
  .chart-container h4 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: left; }
  .chart-container .floors {
    float: right; }
    .chart-container .floors button {
      float: right;
      border: 1px solid var(--color-secondary);
      margin-left: 10px; }
  .chart-container.full {
    width: 100%;
    height: auto; }
  .chart-container.half {
    width: 49%;
    height: auto; }
  .chart-container.big {
    width: calc(64% + 20px);
    height: auto;
    padding: 58px 20px; }
    .chart-container.big canvas {
      width: 100% !important; }
  .chart-container.small {
    width: 32%;
    margin-bottom: 5px;
    height: auto;
    display: inline-block; }
    .chart-container.small canvas {
      width: 100% !important; }
    .chart-container.small h4 {
      margin-bottom: 30px; }
  .chart-container .chart {
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto; }
  .chart-container .minimap {
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: max-content;
    width: max-content; }
    .chart-container .minimap .marker {
      position: absolute;
      display: block;
      background: var(--color-secondary);
      opacity: 0.1;
      border-radius: 50%;
      z-index: 3;
      font-size: 0.9em; }

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  margin-left: -8px;
  position: absolute;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
  top: 0;
  margin-top: -8px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  border-top: none;
  border-bottom-color: #f0f0f0;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  bottom: 0;
  margin-bottom: -8px;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  border-bottom: none;
  border-top-color: #fff;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  bottom: -1px;
  border-top-color: #aeaeae;
}

.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}

.react-datepicker--time-only .react-datepicker__time {
  border-radius: 0.3rem;
}

.react-datepicker--time-only .react-datepicker__time-box {
  border-radius: 0.3rem;
}

.react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.react-datepicker-popper {
  z-index: 1;
}

.react-datepicker-popper[data-placement^="bottom"] {
  margin-top: 10px;
}

.react-datepicker-popper[data-placement="bottom-end"] .react-datepicker__triangle, .react-datepicker-popper[data-placement="top-end"] .react-datepicker__triangle {
  left: auto;
  right: 50px;
}

.react-datepicker-popper[data-placement^="top"] {
  margin-bottom: 10px;
}

.react-datepicker-popper[data-placement^="right"] {
  margin-left: 8px;
}

.react-datepicker-popper[data-placement^="right"] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}

.react-datepicker-popper[data-placement^="left"] {
  margin-right: 8px;
}

.react-datepicker-popper[data-placement^="left"] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  padding-top: 8px;
  position: relative;
}

.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 2px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  background: none;
  line-height: 1.7rem;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  width: 0;
  padding: 0;
  border: 0.45rem solid transparent;
  z-index: 1;
  height: 10px;
  width: 10px;
  text-indent: -999em;
  overflow: hidden;
}

.react-datepicker__navigation--previous {
  left: 10px;
  border-right-color: #ccc;
}

.react-datepicker__navigation--previous:hover {
  border-right-color: #b3b3b3;
}

.react-datepicker__navigation--previous--disabled, .react-datepicker__navigation--previous--disabled:hover {
  border-right-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__navigation--next {
  right: 10px;
  border-left-color: #ccc;
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 80px;
}

.react-datepicker__navigation--next:hover {
  border-left-color: #b3b3b3;
}

.react-datepicker__navigation--next--disabled, .react-datepicker__navigation--next--disabled:hover {
  border-left-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__navigation--years-previous {
  top: 4px;
  border-top-color: #ccc;
}

.react-datepicker__navigation--years-previous:hover {
  border-top-color: #b3b3b3;
}

.react-datepicker__navigation--years-upcoming {
  top: -4px;
  border-bottom-color: #ccc;
}

.react-datepicker__navigation--years-upcoming:hover {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}

.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}

.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}

.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}

.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: 85px;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"] {
  -moz-appearance: textfield;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}

.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -72px;
  top: 0;
}

.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + (1.7rem / 2));
  overflow-y: scroll;
  padding-right: 0px;
  padding-left: 0px;
  width: 100%;
  box-sizing: content-box;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day-names,
.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__month--selected, .react-datepicker__month--in-selecting-range, .react-datepicker__month--in-range,
.react-datepicker__quarter--selected,
.react-datepicker__quarter--in-selecting-range,
.react-datepicker__quarter--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}

.react-datepicker__month--selected:hover, .react-datepicker__month--in-selecting-range:hover, .react-datepicker__month--in-range:hover,
.react-datepicker__quarter--selected:hover,
.react-datepicker__quarter--in-selecting-range:hover,
.react-datepicker__quarter--in-range:hover {
  background-color: #1d5d90;
}

.react-datepicker__month--disabled,
.react-datepicker__quarter--disabled {
  color: #ccc;
  pointer-events: none;
}

.react-datepicker__month--disabled:hover,
.react-datepicker__quarter--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}

.react-datepicker__day:hover,
.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover,
.react-datepicker__year-text:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}

.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}

.react-datepicker__day--highlighted:hover,
.react-datepicker__month-text--highlighted:hover,
.react-datepicker__quarter-text--highlighted:hover,
.react-datepicker__year-text--highlighted:hover {
  background-color: #32be3f;
}

.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}

.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}

.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}

.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
.react-datepicker__month-text--selected:hover,
.react-datepicker__month-text--in-selecting-range:hover,
.react-datepicker__month-text--in-range:hover,
.react-datepicker__quarter-text--selected:hover,
.react-datepicker__quarter-text--in-selecting-range:hover,
.react-datepicker__quarter-text--in-range:hover,
.react-datepicker__year-text--selected:hover,
.react-datepicker__year-text--in-selecting-range:hover,
.react-datepicker__year-text--in-range:hover {
  background-color: #1d5d90;
}

.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #2a87d0;
  color: #fff;
}

.react-datepicker__day--keyboard-selected:hover,
.react-datepicker__month-text--keyboard-selected:hover,
.react-datepicker__quarter-text--keyboard-selected:hover,
.react-datepicker__year-text--keyboard-selected:hover {
  background-color: #1d5d90;
}

.react-datepicker__day--in-selecting-range ,
.react-datepicker__month-text--in-selecting-range ,
.react-datepicker__quarter-text--in-selecting-range ,
.react-datepicker__year-text--in-selecting-range {
  background-color: rgba(33, 107, 165, 0.5);
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range , .react-datepicker__month--selecting-range
.react-datepicker__month-text--in-range , .react-datepicker__month--selecting-range
.react-datepicker__quarter-text--in-range , .react-datepicker__month--selecting-range
.react-datepicker__year-text--in-range {
  background-color: #f0f0f0;
  color: #000;
}

.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}

.react-datepicker__day--disabled:hover,
.react-datepicker__month-text--disabled:hover,
.react-datepicker__quarter-text--disabled:hover,
.react-datepicker__year-text--disabled:hover {
  background-color: transparent;
}

.react-datepicker__month-text.react-datepicker__month--selected:hover, .react-datepicker__month-text.react-datepicker__month--in-range:hover, .react-datepicker__month-text.react-datepicker__quarter--selected:hover, .react-datepicker__month-text.react-datepicker__quarter--in-range:hover,
.react-datepicker__quarter-text.react-datepicker__month--selected:hover,
.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,
.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,
.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover {
  background-color: #216ba5;
}

.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover {
  background-color: #f0f0f0;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
}

.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}

.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-top-color: #ccc;
  float: right;
  margin-left: 20px;
  top: 8px;
  position: relative;
  border-width: 0.45rem;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}

.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}

.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0px 6px 0px 0px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "\D7";
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}

.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}

@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}

.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__portal .react-datepicker__navigation {
  border: 0.81rem solid transparent;
}

.react-datepicker__portal .react-datepicker__navigation--previous {
  border-right-color: #ccc;
}

.react-datepicker__portal .react-datepicker__navigation--previous:hover {
  border-right-color: #b3b3b3;
}

.react-datepicker__portal .react-datepicker__navigation--previous--disabled, .react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover {
  border-right-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__portal .react-datepicker__navigation--next {
  border-left-color: #ccc;
}

.react-datepicker__portal .react-datepicker__navigation--next:hover {
  border-left-color: #b3b3b3;
}

.react-datepicker__portal .react-datepicker__navigation--next--disabled, .react-datepicker__portal .react-datepicker__navigation--next--disabled:hover {
  border-left-color: #e6e6e6;
  cursor: default;
}


.summary-block {
  overflow-y: auto;
  height: 100%; }

#readMore {
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  display: block;
  color: #6ab9ff; }

.slick .readMore-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px; }

.slick #readMore {
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.5em;
  cursor: pointer;
  padding: 12px 30px;
  text-transform: uppercase;
  width: fit-content;
  font-weight: normal;
  font-size: 14px; }

.fullscreen {
  height: 100%;
  width: 100%;
  background: #f8f8f8; }

@-webkit-keyframes expand {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes expand {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.buttonBg.expand {
  animation: expand 2s infinite; }

.base-tour {
  font-family: "Hind", "Helvetica", "Arial", sans-serif;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background: #f8f8f8;
  position: relative; }
  .base-tour > div,
  .base-tour > div > div {
    height: 100%;
    width: 100%;
    background: #f8f8f8; }
  .base-tour .svg-inline--fa {
    height: 15px;
    width: auto !important; }
  .base-tour i {
    font-size: 14px;
    height: auto !important;
    width: auto !important; }
  .base-tour .legal-note {
    width: 100%;
    text-align: center;
    padding: 0 120px;
    font-size: 10px;
    color: #fff;
    position: fixed;
    z-index: 3;
    line-height: 1.4;
    top: 10px; }
    .base-tour .legal-note.rtl {
      direction: rtl; }
    @media screen and (max-width: 768px) and (orientation: portrait) {
      .base-tour .legal-note {
        width: 100%;
        text-align: left;
        padding: 0 20px 0 20px;
        bottom: 120px;
        top: auto; }
        .base-tour .legal-note.rtl {
          text-align: right; } }
  .base-tour .tourLogin {
    background: #000;
    overflow: hidden;
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    height: 100vh; }
    .base-tour .tourLogin img {
      width: 200px;
      left: auto;
      top: auto;
      position: relative;
      display: block;
      max-height: 200px;
      margin: 0 auto 20px; }
    .base-tour .tourLogin form {
      position: absolute;
      right: 0;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 300px;
      height: 300px; }
    .base-tour .tourLogin input {
      width: 100%;
      height: 50px;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      margin-bottom: 20px; }
    .base-tour .tourLogin button {
      width: 100%;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      background: var(--color-primary); }
  .base-tour .buttonsBg {
    position: absolute;
    right: 0;
    margin-top: 80px;
    transition: all 0.3s ease;
    z-index: 10; }
    @media screen and (max-width: 768px) {
      .base-tour .buttonsBg {
        margin-top: 60px; } }
    @media screen and (orientation: landscape) and (max-width: 900px) {
      .base-tour .buttonsBg {
        margin-top: 50px; } }
    .base-tour .buttonsBg.open {
      right: 250px; }
  .base-tour .buttonBg {
    position: relative;
    padding: 13px;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    top: 0;
    right: 0;
    display: block;
    margin-bottom: 10px; }
    .base-tour .buttonBg .hamburger:focus {
      outline: none; }
    .base-tour .buttonBg svg,
    .base-tour .buttonBg i {
      height: 20px;
      color: #fff;
      vertical-align: middle;
      margin: 2px 10px;
      font-size: 18px;
      transition: all 0.3s ease; }
    .base-tour .buttonBg.active {
      background: var(--color-secondary); }
      .base-tour .buttonBg.active:hover {
        background: #fff; }
      .base-tour .buttonBg.active svg,
      .base-tour .buttonBg.active i {
        color: #fff; }
    .base-tour .buttonBg:hover svg,
    .base-tour .buttonBg:hover i {
      color: var(--color-secondary); }
    .base-tour .buttonBg p {
      color: #fff;
      font-size: 1em;
      margin: 0 15px; }
      .base-tour .buttonBg p:hover {
        color: var(--color-primary); }
    .base-tour .buttonBg a {
      color: #fff;
      font-size: 1.2em;
      margin: 0 15px; }
      .base-tour .buttonBg a:hover {
        color: var(--color-secondary); }
  .base-tour.preview {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 100px);
    margin-top: 20px; }
    .base-tour.preview .inner {
      position: relative;
      width: 100%;
      height: 100%; }
    .base-tour.preview nav {
      height: 100%;
      position: absolute; }
  .base-tour .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 99;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    transition: all 0.3s ease; }
  .base-tour .overlay.open {
    display: block; }
  .base-tour nav {
    position: absolute;
    right: -250px;
    width: 250px;
    top: 20px;
    z-index: 110;
    transition: all 0.3s ease;
    padding-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px; }
    .base-tour nav h2 {
      color: #fff;
      font-size: 1.1em;
      font-weight: normal;
      font-style: normal;
      margin-left: 25px;
      margin-bottom: 30px;
      text-transform: uppercase; }
    .base-tour nav.rtl {
      text-align: right;
      direction: rtl; }
      .base-tour nav.rtl h2 {
        margin-right: 25px;
        margin-left: 0; }
      .base-tour nav.rtl #book i,
      .base-tour nav.rtl .appointmentButton i,
      .base-tour nav.rtl .contactButton i {
        margin-left: 10px;
        margin-right: 0; }
    .base-tour nav #book,
    .base-tour nav .appointmentButton,
    .base-tour nav .contactButton {
      width: 200px;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      text-decoration: none;
      margin-bottom: 20px;
      border-radius: 6px;
      padding: 10px 0;
      color: #fff;
      font-size: 0.9em;
      display: block;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer; }
      .base-tour nav #book:hover,
      .base-tour nav .appointmentButton:hover,
      .base-tour nav .contactButton:hover {
        background-color: var(--color-secondary) !important; }
      .base-tour nav #book i,
      .base-tour nav .appointmentButton i,
      .base-tour nav .contactButton i {
        margin-right: 10px; }
    .base-tour nav .appointmentButton {
      background-color: var(--color-secondary); }
    .base-tour nav .contactButton {
      background-color: var(--color-primary); }
    .base-tour nav.open {
      right: 0; }
    .base-tour nav li {
      display: block;
      font-size: 1em;
      width: 100%;
      padding: 8px 23px;
      color: #fff;
      border-left: 2px solid transparent;
      position: relative;
      margin: 0 auto;
      transition: color 0.3s ease;
      line-height: 1.4;
      cursor: pointer; }
      .base-tour nav li:hover {
        color: var(--color-secondary) !important; }
      .base-tour nav li a {
        display: block;
        height: 100%; }
    .base-tour nav .sublinks,
    .base-tour nav .sub_sublinks {
      margin-left: 10px; }
      .base-tour nav .sublinks li,
      .base-tour nav .sub_sublinks li {
        color: #ccc; }
        .base-tour nav .sublinks li:hover,
        .base-tour nav .sub_sublinks li:hover {
          color: #fff !important; }
    .base-tour nav #menu {
      max-height: 40vh;
      overflow-y: auto;
      font-size: 0.9em;
      margin-bottom: 20px; }
      .base-tour nav #menu::-webkit-scrollbar-track {
        background: var(--color-primary); }
      .base-tour nav #menu::-webkit-scrollbar-thumb {
        border-radius: 2px;
        background: var(--color-secondary); }
      .base-tour nav #menu::-webkit-scrollbar {
        width: var(--scroll-bar-size);
        background: var(--color-primary); }
      .base-tour nav #menu .fa-caret-down {
        color: #fff;
        float: right;
        position: relative;
        top: 2px; }
      .base-tour nav #menu.rtl {
        text-align: right;
        direction: rtl; }
        .base-tour nav #menu.rtl .fa-caret-down {
          float: left; }
      .base-tour nav #menu .mainLink {
        user-select: cursor; }
        .base-tour nav #menu .mainLink ul {
          display: none;
          margin-top: 8px;
          padding-bottom: 0; }
        .base-tour nav #menu .mainLink.open {
          background: var(--color-secondary);
          color: #fff !important; }
          .base-tour nav #menu .mainLink.open > svg,
          .base-tour nav #menu .mainLink.open > i {
            transform: rotate(180deg); }
      .base-tour nav #menu .closed {
        display: none; }
    .base-tour nav .contact {
      text-align: left;
      padding: 0 25px;
      position: relative;
      width: 100%;
      margin: 20px 0; }
      .base-tour nav .contact.rtl span {
        text-align: right; }
      .base-tour nav .contact.rtl span i {
        margin-left: 5px;
        margin-right: 0; }
      .base-tour nav .contact.rtl img {
        margin-right: 10px;
        margin-left: 0; }
      .base-tour nav .contact span {
        display: block;
        color: #fff;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
        font-size: 12px;
        margin-bottom: 20px;
        cursor: pointer;
        transition: all 0.3s ease; }
        .base-tour nav .contact span:hover,
        .base-tour nav .contact span:hover i {
          color: var(--color-secondary); }
        .base-tour nav .contact span i {
          margin-right: 5px;
          transition: all 0.3s ease; }
      .base-tour nav .contact h5 {
        color: #fff;
        text-align: center;
        display: block;
        font-size: 12px; }
        @media screen and (max-width: 768px) {
          .base-tour nav .contact h5 {
            display: none; } }
      .base-tour nav .contact img {
        height: 30px;
        margin-left: 10px;
        vertical-align: middle; }
  .base-tour .inner {
    height: 100vh;
    width: 100vw;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s ease;
    overflow: hidden; }
  .base-tour .logo {
    position: absolute;
    z-index: 4;
    left: 20px;
    top: 20px;
    width: 100px; }
    .base-tour .logo.width {
      width: 200px; }
    @media screen and (max-width: 768px) {
      .base-tour .logo {
        width: 70px;
        top: 20px; }
        .base-tour .logo.width {
          width: 140px; } }
  .base-tour .lock-layer {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }
  .base-tour iframe {
    height: calc(100vh + 60px);
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transition: all 0.25s ease; }
  .base-tour .showcase.mesurements-mobile-not-fullscreen {
    height: 100vh; }
  .base-tour header .fa-phone,
  .base-tour header .fa-envelope {
    color: #000;
    font-size: 15px;
    position: relative; }
  .base-tour header .fa-clock,
  .base-tour header .fa-envelope {
    color: #000;
    font-size: 15px;
    position: relative; }
  .base-tour header .fa-envelope {
    margin-left: 15px; }
  .base-tour .youtube {
    height: 200px;
    width: 350px;
    position: absolute;
    bottom: 0;
    left: 60px;
    z-index: 10000; }
  @media screen and (max-width: 768px) {
    .base-tour #currentRoom {
      display: none; } }
  .base-tour .youtube .fa-times {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    padding: 8px;
    font-size: 14px;
    line-height: 10px;
    z-index: 2; }
  @media screen and (max-width: 768px) {
    .base-tour .youtube {
      width: 250px;
      height: 150px;
      right: 10px; } }
  .base-tour #ytplayer {
    height: 100%;
    width: 100%; }
  .base-tour .popup {
    background: #fff;
    height: 90%;
    width: 90%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 8px; }
    .base-tour .popup .close {
      position: absolute;
      float: none;
      z-index: 3;
      top: -15px;
      right: -15px;
      padding: 0;
      opacity: 1;
      font-size: 14px;
      cursor: pointer;
      background: #fff;
      border-radius: 50%;
      height: 30px;
      width: 30px;
      line-height: 38px;
      text-align: center; }
      .base-tour .popup .close:hover svg,
      .base-tour .popup .close:hover i {
        color: var(--color-secondary); }
      .base-tour .popup .close svg,
      .base-tour .popup .close i {
        color: #aaa;
        font-size: 20px;
        transition: all 0.3s ease; }
    .base-tour .popup h2 {
      font-size: 1.4em;
      padding: 20px 0;
      text-align: center; }
    .base-tour .popup .square-button {
      margin-top: 20px;
      text-align: center; }
    .base-tour .popup input {
      border-bottom: 1px solid #ccc; }
    .base-tour .popup iframe {
      height: 100% !important;
      width: 100% !important;
      position: relative;
      top: 0;
      left: 0;
      border-radius: 8px; }
    .base-tour .popup.rtl {
      text-align: right; }
      .base-tour .popup.rtl input {
        text-align: right; }
  .base-tour #external-popup {
    z-index: 111; }
  .base-tour #contact-pop {
    max-height: 550px;
    max-width: 600px; }
    .base-tour #contact-pop .contact-popup-content {
      overflow-y: auto;
      height: 100%;
      padding: 30px; }
    @media screen and (max-width: 768px) {
      .base-tour #contact-pop {
        max-height: 100vh;
        height: 92%; } }
    @media screen and (max-width: 768px) and (orientation: landscape) {
      .base-tour #contact-pop {
        overflow-y: auto;
        overflow-x: hidden; }
        .base-tour #contact-pop .close {
          top: 0;
          right: 0; } }
    .base-tour #contact-pop .appointment-block label {
      font-size: 12px; }
    .base-tour #contact-pop h2 {
      text-align: left;
      font-weight: normal;
      font-style: normal;
      padding: 0;
      font-size: 18px;
      margin-top: -10px;
      margin-bottom: 30px; }
    .base-tour #contact-pop .input-c {
      width: 49%;
      margin-bottom: 10px; }
      .base-tour #contact-pop .input-c.full {
        width: 100%; }
      .base-tour #contact-pop .input-c label {
        font-weight: normal; }
      .base-tour #contact-pop .input-c input,
      .base-tour #contact-pop .input-c textarea {
        border: 1px solid #eee; }
      .base-tour #contact-pop .input-c textarea {
        height: 100px; }
    .base-tour #contact-pop .square-button {
      background: var(--color-secondary);
      color: #fff;
      width: 120px;
      float: right;
      margin-top: 0; }
    .base-tour #contact-pop .agent-cards {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px; }
      .base-tour #contact-pop .agent-cards .agent-card {
        flex-basis: 50%; }
        @media screen and (max-width: 768px) {
          .base-tour #contact-pop .agent-cards .agent-card {
            width: 100% !important;
            flex-basis: 100%; } }
        .base-tour #contact-pop .agent-cards .agent-card:first-child {
          margin-left: 0; }
        .base-tour #contact-pop .agent-cards .agent-card .img {
          background-size: cover;
          background-repeat: no-repeat;
          height: 60px;
          width: 60px;
          border-radius: 50%;
          background-position: center;
          display: inline-block;
          vertical-align: middle; }
        .base-tour #contact-pop .agent-cards .agent-card .text {
          display: inline-block;
          margin-left: 10px;
          vertical-align: middle;
          width: calc(100% - 70px); }
          .base-tour #contact-pop .agent-cards .agent-card .text h4 {
            font-size: 16px;
            margin-bottom: 2px;
            text-overflow: ellipsis;
            overflow: hidden;
            width: 100%;
            white-space: nowrap; }
          .base-tour #contact-pop .agent-cards .agent-card .text a {
            color: var(--color-secondary); }
  .base-tour #share-pop {
    height: 200px;
    width: 300px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: auto;
    right: 120px;
    top: auto;
    bottom: 100px;
    padding: 20px; }
    @media screen and (max-width: 768px) {
      .base-tour #share-pop {
        background: #fff;
        bottom: 0;
        right: 0;
        width: 100%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        height: 260px;
        text-align: center; } }
    .base-tour #share-pop h3 {
      color: #fff;
      margin-bottom: 25px;
      font-size: 18px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop h3 {
          color: #000;
          text-align: left; } }
    .base-tour #share-pop .fa-times {
      color: #fff;
      font-size: 15px; }
    .base-tour #share-pop .close {
      background: none !important;
      margin: 0;
      height: auto;
      width: auto;
      line-height: 1;
      top: 10px;
      right: 15px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .close svg,
        .base-tour #share-pop .close i {
          color: #000; } }
    .base-tour #share-pop .switchLabel {
      color: #fff;
      margin-top: 30px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .switchLabel {
          position: relative;
          width: 100%;
          color: #000;
          text-align: left; } }
      .base-tour #share-pop .switchLabel > div {
        position: relative;
        top: 5px; }
        @media screen and (max-width: 768px) {
          .base-tour #share-pop .switchLabel > div {
            position: absolute !important;
            right: 0 !important; } }
    .base-tour #share-pop .primary-btn {
      border-radius: 0;
      background: var(--color-secondary) !important;
      color: #fff;
      height: 45px;
      width: 120px;
      float: right;
      margin-top: 20px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .primary-btn {
          width: 100%;
          margin: 0;
          margin-top: 20px; } }
    .base-tour #share-pop button {
      background: #e5e5e5;
      border-radius: 50%;
      padding: 8px 10px;
      margin: 0 5px;
      height: 40px;
      width: 40px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop button {
          margin: 0 10px; } }
      .base-tour #share-pop button:hover, .base-tour #share-pop button.active {
        background: var(--color-secondary); }
        .base-tour #share-pop button:hover svg,
        .base-tour #share-pop button:hover i, .base-tour #share-pop button.active svg,
        .base-tour #share-pop button.active i {
          color: #fff; }
      .base-tour #share-pop button svg,
      .base-tour #share-pop button i {
        height: 18px;
        font-size: 16px;
        vertical-align: middle; }
  .base-tour .adPop {
    height: 85%;
    width: 95%;
    max-width: 700px;
    max-height: 550px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000001;
    right: 0;
    bottom: 0;
    margin: auto; }
    @media screen and (max-width: 768px) {
      .base-tour .adPop {
        width: 320px;
        height: 450px; } }
    .base-tour .adPop .img {
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
      @media screen and (max-width: 768px) {
        .base-tour .adPop .img {
          height: 220px; } }
    .base-tour .adPop form {
      width: 100%;
      height: 120px;
      padding-top: 10px;
      background: #fff;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0; }
      @media screen and (max-width: 768px) {
        .base-tour .adPop form {
          height: 230px;
          padding: 10px 20px; } }
      .base-tour .adPop form.rtl input {
        text-align: right; }
      .base-tour .adPop form .square-button {
        width: calc(90% + 40px);
        clear: both;
        margin-top: 15px;
        background: var(--color-secondary);
        color: #fff; }
        .base-tour .adPop form .square-button:hover {
          background: var(--color-primary); }
      .base-tour .adPop form input {
        width: 30%;
        clear: none;
        display: inline-block;
        margin: 0 10px; }
        @media screen and (max-width: 768px) {
          .base-tour .adPop form input {
            width: 100%;
            margin: 5px 0; } }
  .base-tour form input,
  .base-tour form textarea {
    height: 40px;
    clear: both;
    width: 80%;
    position: relative;
    margin: 10px auto;
    right: 0;
    left: 0;
    padding: 5px;
    text-indent: 6px;
    font-size: 0.9em;
    background: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    display: block;
    font-family: "Open Sans Hebrew", sans-serif; }
  .base-tour form textarea {
    height: 80px; }
  .base-tour .mapPop iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  .base-tour form button {
    background: #58b504;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 4px;
    float: right;
    margin-right: 10%;
    margin-top: 10px;
    padding: 10px 40px;
    font-size: 0.9em; }
  .base-tour form p {
    line-height: 450px;
    text-align: center;
    font-size: 1.4em;
    position: absolute;
    top: 0;
    width: 100%; }
  .base-tour form input.error {
    border: 1px solid red; }
  .base-tour .fa-map-marked {
    right: 10px;
    bottom: 90px;
    left: auto; }
    .base-tour .fa-map-marked.active {
      color: var(--color-secondary); }
  .base-tour .autocadPop {
    height: 100px;
    text-align: center; }
  .base-tour .tagPop {
    height: 300px;
    width: 450px;
    max-height: 100vh;
    max-width: 100vw; }
    .base-tour .tagPop .fa-compress,
    .base-tour .tagPop .fa-expand {
      bottom: 10px;
      right: 10px; }
    .base-tour .tagPop iframe {
      height: 100%;
      width: 100%;
      background: #f8f8f8; }
  .base-tour .sharePop {
    height: 150px;
    text-align: center;
    padding: 20px 0;
    width: 320px; }
    @media screen and (max-width: 768px) {
      .base-tour .sharePop {
        width: 360px; } }
    .base-tour .sharePop .icon {
      color: #fff;
      background: var(--color-secondary);
      cursor: pointer;
      border-radius: 50%;
      padding: 10px;
      margin: 0 10px;
      display: inline-block;
      font-size: 1.7em; }
      .base-tour .sharePop .icon:hover {
        color: var(--color-primary); }
    .base-tour .sharePop label {
      display: block;
      margin-top: 20px; }
      .base-tour .sharePop label > div {
        top: 10px;
        margin-left: 10px;
        position: relative; }
  .base-tour .autocadPop h4 {
    padding: 10px 0;
    font-size: 1.1em; }
  .base-tour .autocadPop a {
    background: #000;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    display: inline-block; }
  .base-tour .autocadPop a:hover {
    background: #242424; }

.intro-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #888888;
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .intro-screen .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; }
  .intro-screen h1 {
    color: white;
    font-style: normal;
    font-size: 60px;
    font-weight: 700;
    max-width: 800px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .intro-screen h1 {
        max-width: 80%;
        font-size: 40px; } }
    @media screen and (max-width: 550px) {
      .intro-screen h1 {
        max-width: 90%;
        font-size: 30px; } }
    @media screen and (max-height: 569px) and (max-height: 569px) {
      .intro-screen h1 {
        font-size: 20px; } }
  .intro-screen h3 {
    font-style: normal;
    font-size: 14px;
    color: white;
    margin-bottom: 60px;
    max-width: 800px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .intro-screen h3 {
        max-width: 80%; } }
    @media screen and (max-width: 550px) {
      .intro-screen h3 {
        max-width: 90%;
        font-size: 12px; } }
    @media screen and (max-height: 569px) and (max-height: 569px) {
      .intro-screen h3 {
        font-size: 12px;
        margin-bottom: 30px; } }
  .intro-screen p {
    color: white; }
  .intro-screen .powered-by {
    margin-top: 60px; }
    @media screen and (max-width: 768px) {
      .intro-screen .powered-by {
        font-size: 12px;
        margin-top: auto;
        margin-bottom: 5px; } }
  .intro-screen .tour-play-btn {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    color: white;
    border-radius: 50%;
    font-size: 60px;
    margin-bottom: 60px;
    padding-left: 24px;
    padding-right: 18px;
    position: relative; }
    .intro-screen .tour-play-btn:focus {
      outline: none; }
    @media screen and (max-width: 375px) {
      .intro-screen .tour-play-btn {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .tour-play-btn {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px;
        margin-bottom: 30px; } }
  .intro-screen .loader-animation {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    position: relative;
    color: white;
    line-height: 150px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px; }
    .intro-screen .loader-animation:after {
      content: " ";
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      position: absolute;
      border-radius: 50%;
      border: 3px solid #fff;
      border-color: #fff transparent #fff transparent;
      animation: lds-dual-ring 1.2s linear infinite;
      top: 0;
      left: 0; }
    @media screen and (max-width: 375px) {
      .intro-screen .loader-animation {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .loader-animation {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        margin-bottom: 30px; } }
    .intro-screen .loader-animation .loader-title {
      font-size: 16px;
      color: white;
      line-height: 150px;
      text-align: center; }
      @media screen and (max-width: 375px) {
        .intro-screen .loader-animation .loader-title {
          line-height: 100px;
          font-size: 12px; } }
      @media screen and (max-height: 569px) {
        .intro-screen .loader-animation .loader-title {
          line-height: 100px;
          font-size: 12px; } }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .intro-screen .client-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-top: 60px; }
    @media screen and (max-width: 768px) {
      .intro-screen .client-logo {
        width: 100px;
        height: 100px; } }
    @media screen and (max-width: 375px) {
      .intro-screen .client-logo {
        width: 60px;
        height: 60px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .client-logo {
        width: 60px;
        height: 60px;
        margin-top: 30px !important; } }
  .intro-screen .logo {
    width: 100px; }
  .intro-screen .logo-divider {
    color: white; }
  .intro-screen .mp-logo {
    height: 18px;
    margin-bottom: 3px; }

.timer {
  z-index: 2;
  position: absolute;
  color: black;
  margin: 0px;
  right: 0;
  top: 44px;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px;
  color: white; }

.middleContainer {
  padding: 1rem;
  color: white;
  padding-top: 0px; }

.noPadding {
  padding: 0px; }

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

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

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\2022';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.ReactModal__Content.popup {
  width: 80%;
  height: 80%;
  max-width: 1000px;
  max-height: 600px;
  overflow: visible !important; }
  @media screen and (max-width: 768px) {
    .ReactModal__Content.popup {
      height: 200px; } }
  .ReactModal__Content.popup .watermark {
    position: absolute;
    z-index: 100;
    max-width: 300px;
    opacity: 0.5;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto; }
  .ReactModal__Content.popup .logo {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 10px;
    width: 70px;
    padding: 0; }
    .ReactModal__Content.popup .logo.width {
      width: 140px; }
    @media screen and (max-width: 768px) {
      .ReactModal__Content.popup .logo {
        width: 30px;
        top: 20px; }
        .ReactModal__Content.popup .logo.width {
          width: 80px; } }
  .ReactModal__Content.popup .download {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.4em;
    cursor: pointer;
    color: var(--color-primary); }
    .ReactModal__Content.popup .download:hover {
      color: var(--color-primary); }
  .ReactModal__Content.popup iframe {
    width: 100%;
    height: 100%;
    position: absolute; }
  .ReactModal__Content.popup .slick-prev,
  .ReactModal__Content.popup .slick-next {
    height: 30px;
    width: 30px; }
  .ReactModal__Content.popup .slick-prev:before,
  .ReactModal__Content.popup .slick-next:before {
    font-size: 30px; }
  .ReactModal__Content.popup .slick-next {
    right: -35px; }
  .ReactModal__Content.popup .slick-prev {
    left: -35px; }
  .ReactModal__Content.popup .gallery-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
    .ReactModal__Content.popup .gallery-slider div {
      height: 100%; }
  .ReactModal__Content.popup .slick-list {
    height: 100%; }
  .ReactModal__Content.popup .slick-track {
    height: 100%; }
  .ReactModal__Content.popup .slick-slide {
    height: 100%;
    width: 100%; }
    .ReactModal__Content.popup .slick-slide .bg {
      height: 100%;
      width: 100%;
      position: relative;
      top: 0;
      left: 0;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }

#public-asset-root {
  overflow-x: hidden;
  position: relative;
  height: 100%;
  width: 100%;
  font-weight: 300; }
  #public-asset-root.rtl {
    text-align: right;
    direction: rtl; }
    #public-asset-root.rtl h2,
    #public-asset-root.rtl p,
    #public-asset-root.rtl span,
    #public-asset-root.rtl a,
    #public-asset-root.rtl h1,
    #public-asset-root.rtl h3,
    #public-asset-root.rtl h4,
    #public-asset-root.rtl h5,
    #public-asset-root.rtl h6,
    #public-asset-root.rtl input,
    #public-asset-root.rtl button,
    #public-asset-root.rtl select {
      font-family: "Open Sans Hebrew", sans-serif; }
    #public-asset-root.rtl .intro .info-container .info,
    #public-asset-root.rtl .intro .info-container .title-container {
      float: right; }
    #public-asset-root.rtl .intro .info-container .square-button {
      margin-left: 0;
      margin-right: 10px;
      float: left; }
    #public-asset-root.rtl .floorPlans a svg,
    #public-asset-root.rtl .floorPlans a i {
      margin-right: 0;
      margin-left: 6px; }
    #public-asset-root.rtl .buttonBg {
      padding: 20px 10px 20px 20px; }
      #public-asset-root.rtl .buttonBg .hamburger {
        float: right;
        margin-left: 20px;
        margin-right: 0; }
    #public-asset-root.rtl .intro .title-container {
      border-left: 25px solid transparent;
      border-right: none; }
    #public-asset-root.rtl .intro .info {
      left: auto;
      right: 0;
      padding-left: 20px;
      padding-right: 0; }
    #public-asset-root.rtl .overview p {
      float: right; }
    #public-asset-root.rtl .overview a {
      float: right;
      margin-right: 0;
      margin-left: 10px; }
    #public-asset-root.rtl .contact a {
      float: right;
      clear: both; }
    #public-asset-root.rtl .contact form input {
      text-align: right;
      float: right; }
    #public-asset-root.rtl .right {
      float: left !important; }
    #public-asset-root.rtl .left {
      float: right !important; }
  #public-asset-root nav {
    background-color: #292929;
    position: fixed;
    right: -280px;
    width: 280px;
    height: 100%;
    top: 0;
    transition: all 0.3s ease;
    padding-top: 40px; }
    #public-asset-root nav a {
      color: #fff;
      display: block;
      text-transform: uppercase;
      font-size: 1.4em;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      width: 70%;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      margin: 10px auto;
      transition: color 0.3s ease;
      cursor: pointer; }
      #public-asset-root nav a:hover {
        color: var(--color-secondary); }
    #public-asset-root nav.open {
      right: 0; }
  #public-asset-root .content {
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    transition: all 0.3s ease; }
    #public-asset-root .content.open {
      right: 280px; }
  #public-asset-root .container {
    width: 90%;
    max-width: 1400px;
    z-index: 2;
    height: 100% !important;
    max-height: 100% !important;
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto; }
  #public-asset-root .intro {
    height: 100vh;
    width: 100vw;
    position: relative; }
    #public-asset-root .intro .container {
      max-width: 100%; }
    #public-asset-root .intro .logo {
      position: absolute;
      z-index: 2;
      left: 0;
      top: 40px;
      width: 100px;
      padding: 0; }
      #public-asset-root .intro .logo.width {
        width: 200px; }
      @media screen and (max-width: 768px) {
        #public-asset-root .intro .logo {
          width: 70px;
          top: 20px; }
          #public-asset-root .intro .logo.width {
            width: 140px; } }
    #public-asset-root .intro .title-container {
      font-size: 1.2em;
      color: #fff;
      position: relative;
      float: left;
      width: auto;
      clear: both;
      top: -10px;
      padding: 15px 20px;
      min-width: 200px;
      height: auto; }
      @media screen and (max-width: 768px) {
        #public-asset-root .intro .title-container {
          font-size: 1em; } }
      #public-asset-root .intro .title-container .color-container {
        opacity: 0.8;
        background: var(--color-secondary);
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1; }
      #public-asset-root .intro .title-container h1 {
        font-family: "Hind", sans-serif;
        font-weight: 300;
        font-style: normal;
        text-transform: uppercase;
        line-height: 1.2;
        position: relative;
        z-index: 2; }
    #public-asset-root .intro .info-container {
      position: absolute;
      bottom: 130px;
      height: 45px;
      line-height: 45px;
      width: 100%;
      left: 0; }
      @media screen and (max-width: 768px) {
        #public-asset-root .intro .info-container {
          bottom: 10px !important;
          height: auto; } }
      #public-asset-root .intro .info-container .square-button {
        float: right;
        margin: 0;
        margin-left: 10px;
        padding: 0;
        height: 100%;
        position: relative;
        text-align: center;
        background: var(--color-primary);
        border: none;
        color: #fff;
        width: 100px; }
        #public-asset-root .intro .info-container .square-button svg,
        #public-asset-root .intro .info-container .square-button i {
          margin: 0 5px; }
        @media screen and (max-width: 768px) {
          #public-asset-root .intro .info-container .square-button {
            width: 100%;
            margin: 5px 0 !important;
            top: 0; }
            #public-asset-root .intro .info-container .square-button.video-active {
              width: 45% !important;
              float: left; }
              #public-asset-root .intro .info-container .square-button.video-active.video-active.gallery-button {
                float: right; } }
        #public-asset-root .intro .info-container .square-button:hover {
          background: var(--color-secondary); }
    #public-asset-root .intro .info {
      font-size: 1em;
      height: 100%;
      float: left;
      left: 0;
      color: #fff;
      clear: both;
      background: rgba(0, 0, 0, 0.8);
      text-indent: 20px;
      padding-right: 20px;
      margin-bottom: 10px;
      text-transform: uppercase; }
      @media screen and (max-width: 768px) {
        #public-asset-root .intro .info {
          width: 100%;
          font-size: 0.9em; } }
      #public-asset-root .intro .info .amenetis {
        text-align: center; }
        #public-asset-root .intro .info .amenetis span {
          margin: 0 6px; }
      #public-asset-root .intro .info span {
        color: #fff;
        position: relative; }
        @media screen and (max-width: 768px) {
          #public-asset-root .intro .info span {
            font-size: 0.8em; } }
  #public-asset-root .intro .main-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  #public-asset-root .slick-list {
    height: 100%; }
  #public-asset-root .slick-track {
    height: 100%; }
  #public-asset-root .slick-slide {
    height: 100%;
    width: 100%; }
    #public-asset-root .slick-slide.slick-active .bg {
      transform: scale(1); }
    #public-asset-root .slick-slide .bg {
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      transition: all 8s cubic-bezier(0.7, 0, 0.3, 1);
      transform: scale(1.2); }
  #public-asset-root .section {
    width: 100%;
    position: relative; }
    #public-asset-root .section h2 {
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--color-secondary); }
  #public-asset-root .h-610 {
    height: 610px; }
    @media screen and (max-width: 768px) {
      #public-asset-root .h-610 {
        height: auto; } }
  @media screen and (max-width: 768px) {
    #public-asset-root .col-6 {
      max-width: 100% !important;
      display: block !important;
      flex: none !important; } }
  #public-asset-root .h-400 {
    height: 400px; }
    @media screen and (max-width: 768px) {
      #public-asset-root .h-400 {
        height: auto; } }
  #public-asset-root .overview,
  #public-asset-root .contact {
    background: #fff; }
    #public-asset-root .overview .container,
    #public-asset-root .contact .container {
      max-width: none !important; }
    #public-asset-root .overview .left,
    #public-asset-root .contact .left {
      padding: 80px 0;
      max-height: 400px;
      width: 60%; }
      @media screen and (max-width: 768px) {
        #public-asset-root .overview .left,
        #public-asset-root .contact .left {
          width: 100%;
          max-height: none; } }
    #public-asset-root .overview.overview .left,
    #public-asset-root .contact.overview .left {
      display: block;
      width: 50%; }
      @media screen and (max-width: 768px) {
        #public-asset-root .overview.overview .left,
        #public-asset-root .contact.overview .left {
          width: 100% !important; } }
    #public-asset-root .overview.overview .right,
    #public-asset-root .contact.overview .right {
      width: 50%; }
      @media screen and (max-width: 768px) {
        #public-asset-root .overview.overview .right,
        #public-asset-root .contact.overview .right {
          width: 100% !important; } }
    #public-asset-root .overview .right,
    #public-asset-root .contact .right {
      width: 40%;
      height: 400px; }
      #public-asset-root .overview .right iframe,
      #public-asset-root .contact .right iframe {
        height: 100%;
        width: 100%;
        background: #f8f8f8; }
    #public-asset-root .overview p,
    #public-asset-root .contact p {
      font-size: 1.2em;
      line-height: 1.4;
      max-width: 90%;
      margin-bottom: 40px; }
    #public-asset-root .overview a,
    #public-asset-root .contact a {
      float: left;
      font-size: 1em;
      text-align: center;
      display: inline-block;
      margin-right: 10px;
      margin-top: 10px; }
      @media screen and (max-width: 768px) {
        #public-asset-root .overview a,
        #public-asset-root .contact a {
          width: 100%;
          margin-right: 0;
          margin-top: 10px; } }
      #public-asset-root .overview a.map,
      #public-asset-root .contact a.map {
        display: none; }
        @media screen and (max-width: 768px) {
          #public-asset-root .overview a.map,
          #public-asset-root .contact a.map {
            display: block; } }
    #public-asset-root .overview .line,
    #public-asset-root .contact .line {
      margin: 40px 0;
      width: 100%;
      display: none;
      border: 1px dashed rgba(210, 210, 210, 0.5); }
  #public-asset-root .tour {
    height: 80vh;
    padding: 0; }
    #public-asset-root .tour .clearfix {
      width: 100%;
      height: 65px;
      background: var(--color-primary);
      line-height: 65px; }
      #public-asset-root .tour .clearfix h2 {
        font-size: 2em;
        color: #fff;
        text-align: center;
        margin: 0; }
    #public-asset-root .tour .inner {
      position: relative;
      height: calc(100% - 65px);
      width: 100%; }
    #public-asset-root .tour .bg {
      height: 100%;
      width: 100%;
      background: #f8f8f8;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      position: absolute;
      z-index: 1; }
    #public-asset-root .tour .overlay {
      position: absolute;
      height: 100%;
      width: 100%;
      background: #f8f8f8;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
      text-align: center; }
      #public-asset-root .tour .overlay .text {
        height: 200px;
        width: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto 0; }
      #public-asset-root .tour .overlay h2 {
        font-family: "Hind", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 3em;
        color: #fff; }
      #public-asset-root .tour .overlay img {
        height: 100px;
        cursor: pointer; }
    #public-asset-root .tour iframe {
      height: 100%;
      width: 100%;
      background: #f8f8f8;
      position: absolute;
      z-index: 1; }
  #public-asset-root .contact {
    padding: 0; }
    #public-asset-root .contact .left {
      padding-bottom: 0; }
      @media screen and (max-width: 768px) {
        #public-asset-root .contact .left {
          padding: 50px 0; } }
    #public-asset-root .contact form {
      padding-bottom: 120px; }
      #public-asset-root .contact form input {
        background: transparent;
        height: 50px;
        line-height: 50px;
        font-size: 1.1em;
        max-width: 70%;
        border-bottom: 1px solid rgba(210, 210, 210, 0.5);
        margin-bottom: 10px; }
      #public-asset-root .contact form a {
        margin-top: 10px;
        display: block; }
    #public-asset-root .contact .right {
      height: 500px;
      background-color: var(--color-primary);
      position: relative; }
      @media screen and (max-width: 768px) {
        #public-asset-root .contact .right {
          width: 100% !important; } }
      #public-asset-root .contact .right .lg {
        height: 160px;
        text-align: center;
        width: 100%;
        z-index: 2;
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto; }
        #public-asset-root .contact .right .lg img {
          height: 120px;
          display: block;
          position: relative;
          right: 0;
          left: 0;
          margin: 0 auto;
          margin-bottom: 30px; }
        #public-asset-root .contact .right .lg a {
          color: #fff;
          margin: 0 10px;
          font-size: 1.6em;
          transition: all 0.3s ease;
          clear: none !important;
          float: none !important;
          display: inline;
          cursor: pointer; }
          #public-asset-root .contact .right .lg a:hover {
            color: var(--color-primary); }
      #public-asset-root .contact .right .overlay {
        height: 100%;
        width: 100%;
        background: #f8f8f8;
        position: absolute;
        top: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%23d4d4d4' fill-opacity='0.4'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.1; }
  #public-asset-root .floorPlans {
    position: relative;
    padding-bottom: 10px; }
    @media screen and (max-width: 768px) {
      #public-asset-root .floorPlans {
        height: 500px !important; } }
    #public-asset-root .floorPlans .plans {
      width: 100%;
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      text-align: center;
      height: 60px;
      line-height: 60px; }
      #public-asset-root .floorPlans .plans span {
        display: inline-block;
        margin: 0 10px;
        font-size: 1.1em;
        cursor: pointer;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 200px;
        white-space: nowrap; }
        @media screen and (max-width: 768px) {
          #public-asset-root .floorPlans .plans span {
            margin: 0 5px;
            font-size: 1em; } }
        #public-asset-root .floorPlans .plans span:hover, #public-asset-root .floorPlans .plans span.selected {
          color: var(--color-primary); }
    #public-asset-root .floorPlans a {
      text-align: center; }
      #public-asset-root .floorPlans a svg,
      #public-asset-root .floorPlans a i {
        margin-right: 6px; }
    #public-asset-root .floorPlans .plan {
      text-align: center;
      display: block;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      margin: 5px auto;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }
      @media screen and (max-width: 768px) {
        #public-asset-root .floorPlans .plan {
          width: 90%; } }
    #public-asset-root .floorPlans .h-67 {
      height: 67%; }
  #public-asset-root .social {
    height: auto;
    padding: 30px 0;
    width: 100%;
    background: #1d1d1d;
    text-align: center; }
    #public-asset-root .social h3 {
      padding-bottom: 20px;
      font-size: 1.8em;
      color: #fff;
      text-transform: uppercase; }
    #public-asset-root .social a {
      color: #fff;
      font-size: 1.2em;
      border: 2px solid #fff;
      border-radius: 50%;
      padding: 0;
      margin: 0 5px;
      height: 40px;
      width: 40px;
      line-height: 35px;
      display: inline-block;
      cursor: pointer;
      transition: all 0.3s ease; }
      #public-asset-root .social a:hover {
        color: var(--color-primary);
        border-color: var(--color-primary); }
  #public-asset-root footer {
    text-align: left;
    background: var(--color-primary);
    height: 80px;
    width: 100%;
    clear: both;
    line-height: 80px; }
    @media screen and (max-width: 768px) {
      #public-asset-root footer {
        height: 160px;
        line-height: 1.4;
        text-align: center; } }
    #public-asset-root footer span,
    #public-asset-root footer h6 {
      color: #fff;
      font-size: 1em; }
    #public-asset-root footer h6 {
      float: right; }
      @media screen and (max-width: 768px) {
        #public-asset-root footer h6 {
          float: none;
          margin-top: 40px; } }
    #public-asset-root footer img {
      height: 40px;
      position: relative;
      top: 0;
      margin-left: 20px; }

#public-asset-root.slick p,
#public-asset-root.slick h1,
#public-asset-root.slick h2,
#public-asset-root.slick h3,
#public-asset-root.slick h4,
#public-asset-root.slick h5,
#public-asset-root.slick h6 {
  font-family: "Hind", sans-serif;
  font-style: initial !important;
  color: #000; }

#public-asset-root.slick .slick-header {
  z-index: 1; }
  #public-asset-root.slick .slick-header .header-logo {
    height: 100%; }
  #public-asset-root.slick .slick-header .logo {
    height: 90%; }
  #public-asset-root.slick .slick-header .navi {
    text-transform: uppercase;
    line-height: initial; }
    #public-asset-root.slick .slick-header .navi .schedule-btn {
      background: var(--color-secondary);
      color: #fff;
      font-size: 14px;
      cursor: pointer;
      opacity: 1;
      padding: 4px 16px;
      transition: all 0.3s ease;
      text-transform: initial; }

#public-asset-root.slick .intro .main-slider {
  z-index: 2;
  opacity: 0.82; }

#public-asset-root.slick .intro .slider-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: black; }

#public-asset-root.slick .slider-content {
  z-index: 3;
  position: absolute;
  top: 50%;
  color: white;
  font-size: 2em;
  padding: 0 5% 0 10%; }
  #public-asset-root.slick .slider-content p {
    color: inherit;
    text-align: start;
    font-weight: bold; }
  #public-asset-root.slick .slider-content .address {
    background: var(--color-primary);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.5em;
    text-transform: uppercase;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
  #public-asset-root.slick .slider-content .tour-title {
    font-size: 2em; }
  #public-asset-root.slick .slider-content .price {
    font-size: 1.5em; }
  #public-asset-root.slick .slider-content .price-lbl,
  #public-asset-root.slick .slider-content .price-old {
    font-size: 0.75em; }
  #public-asset-root.slick .slider-content .price-old {
    text-decoration: line-through;
    color: #9c9c9c; }
  #public-asset-root.slick .slider-content .option {
    font-size: 0.75em;
    color: var(--color-secondary);
    margin-top: 20px;
    height: 60px;
    width: 60px;
    background: #fff;
    cursor: pointer; }
    #public-asset-root.slick .slider-content .option:hover {
      border: 1px solid var(--color-secondary);
      background: #ffecee; }

#public-asset-root.slick .info-wrapper {
  z-index: 3;
  position: absolute;
  margin-top: -100px; }
  #public-asset-root.slick .info-wrapper .info-box {
    min-height: 150px;
    width: 800px;
    background: #fff;
    border: 1px solid #eee; }
    #public-asset-root.slick .info-wrapper .info-box .iconWrapper {
      height: 50px;
      width: 50px;
      background: #ffecee;
      transform: translateY(-3px); }
      #public-asset-root.slick .info-wrapper .info-box .iconWrapper svg,
      #public-asset-root.slick .info-wrapper .info-box .iconWrapper i {
        font-size: 1.5em;
        color: var(--color-secondary); }
    #public-asset-root.slick .info-wrapper .info-box .amenity {
      font-size: 1.2em;
      color: #444444;
      text-transform: uppercase;
      text-align: left; }
    #public-asset-root.slick .info-wrapper .info-box .number {
      font-size: 1.75em;
      font-weight: bold;
      color: #000;
      text-align: left;
      margin-top: 7px; }

#public-asset-root.slick .details {
  background: white;
  padding: 100px 0 50px 0; }
  #public-asset-root.slick .details .summary {
    font-size: 1.5em;
    color: #000; }
  #public-asset-root.slick .details #gallery {
    /* large */
    /* middle */
    /* small */ }
    #public-asset-root.slick .details #gallery .gcol {
      height: 40vh;
      margin-top: 10px;
      padding-right: 5px;
      padding-left: 5px;
      display: flex;
      align-items: flex-end; }
      #public-asset-root.slick .details #gallery .gcol .img {
        width: 100%;
        height: 100%;
        cursor: pointer;
        background-position: center;
        background-size: cover; }
    #public-asset-root.slick .details #gallery .align-start.gcol {
      align-items: flex-start; }
    #public-asset-root.slick .details #gallery .gcol-1,
    #public-asset-root.slick .details #gallery .gcol-4 {
      flex: 0 0 50%;
      max-width: 50%; }
      #public-asset-root.slick .details #gallery .gcol-1 .img,
      #public-asset-root.slick .details #gallery .gcol-4 .img {
        height: 100%; }
    #public-asset-root.slick .details #gallery .gcol-0,
    #public-asset-root.slick .details #gallery .gcol-2 {
      flex: 0 0 25%;
      max-width: 25%; }
      #public-asset-root.slick .details #gallery .gcol-0 .img,
      #public-asset-root.slick .details #gallery .gcol-2 .img {
        height: 75%; }
    #public-asset-root.slick .details #gallery .gcol-3,
    #public-asset-root.slick .details #gallery .gcol-5 {
      flex: 0 0 16.666667%;
      max-width: 16.666667%; }
      #public-asset-root.slick .details #gallery .gcol-3 .img,
      #public-asset-root.slick .details #gallery .gcol-5 .img {
        height: 50%; }
  #public-asset-root.slick .details .slick-section {
    min-height: 200px;
    padding: 50px 0; }
    #public-asset-root.slick .details .slick-section .title {
      font-size: 2em;
      margin-bottom: 30px;
      padding: 0; }
  #public-asset-root.slick .details .grey-section {
    background: #f5f5f5; }

#public-asset-root.slick #tourScheduler {
  padding: 50px 0; }
  #public-asset-root.slick #tourScheduler .date {
    min-height: 100px;
    min-width: 100px;
    background: #fff;
    border: 1px solid #eee;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    font-size: 10px;
    color: #000; }
    #public-asset-root.slick #tourScheduler .date .day {
      font-size: 2em;
      font-weight: bold;
      transform: translateY(2px); }
  #public-asset-root.slick #tourScheduler .selected > .date {
    border: 1px solid var(--color-secondary);
    background: #ffecee; }
  #public-asset-root.slick #tourScheduler .buttons {
    text-transform: none !important; }
    #public-asset-root.slick #tourScheduler .buttons .btn {
      cursor: pointer;
      padding: 16px 30px;
      margin-bottom: 15px;
      width: fit-content;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 0;
      width: 100% !important;
      align-content: center !important;
      justify-content: center !important; }
      #public-asset-root.slick #tourScheduler .buttons .btn svg,
      #public-asset-root.slick #tourScheduler .buttons .btn i {
        transform: translateY(2px); }
      #public-asset-root.slick #tourScheduler .buttons .btn.selected {
        border: 1px solid var(--color-secondary);
        background: #ffecee; }
        #public-asset-root.slick #tourScheduler .buttons .btn.selected svg,
        #public-asset-root.slick #tourScheduler .buttons .btn.selected i {
          color: var(--color-secondary); }
      #public-asset-root.slick #tourScheduler .buttons .btn.secondary {
        background: var(--color-secondary);
        color: #fff; }
  #public-asset-root.slick #tourScheduler .chevron-wrapper {
    cursor: pointer;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    font-size: 10px;
    color: grey;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 8px -3px rgba(160, 158, 158, 0.5); }
  #public-asset-root.slick #tourScheduler .info {
    margin-top: 30px;
    color: #000000a8;
    font-size: 0.9em; }

#public-asset-root.slick .video {
  width: 100%;
  height: 400px; }

#public-asset-root.slick .amenity-img {
  height: 400px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

#public-asset-root.slick #tour-floorPlan .tour {
  height: auto; }

#public-asset-root.slick #tour-floorPlan .tour .inner {
  height: 400px; }

#public-asset-root.slick #tour-floorPlan .title {
  cursor: pointer;
  color: #00000061; }

#public-asset-root.slick #tour-floorPlan .active {
  border-bottom: 3px solid var(--color-secondary);
  color: #000; }

#public-asset-root.slick #contact .tab-title {
  text-align: left;
  font-size: 1.2em;
  text-transform: uppercase; }

#public-asset-root.slick #contact .agents {
  min-height: 300px;
  width: 100%; }
  #public-asset-root.slick #contact .agents .agent-wrapper {
    margin-bottom: 10px;
    padding: 1em;
    cursor: pointer; }
  #public-asset-root.slick #contact .agents .agent-profile {
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; }
  #public-asset-root.slick #contact .agents .agent-info {
    text-transform: uppercase;
    overflow: hidden; }
    #public-asset-root.slick #contact .agents .agent-info p {
      font-weight: normal;
      font-size: 10px;
      margin: 3px 0; }
    #public-asset-root.slick #contact .agents .agent-info .name {
      font-weight: bold; }
  #public-asset-root.slick #contact .agents .selected .agent-wrapper {
    box-shadow: 0 5px 8px -3px rgba(160, 158, 158, 0.5); }

#public-asset-root.slick #contact .contact-form input {
  border: 1px solid #eee;
  margin: 0 0 10px 0;
  padding: 8px !important; }
  #public-asset-root.slick #contact .contact-form input.name {
    width: 49%; }

#public-asset-root.slick footer {
  background: var(--color-primary);
  position: relative; }
  #public-asset-root.slick footer .slick-logo {
    height: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0; }
  #public-asset-root.slick footer a {
    color: grey;
    font-size: 1.5em;
    margin-right: 15px;
    float: right; }
    #public-asset-root.slick footer a:hover {
      color: var(--color-secondary); }

#public-asset-root.slick .secondary-btn {
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  padding: 12px 30px;
  text-transform: uppercase;
  width: fit-content; }
  #public-asset-root.slick .secondary-btn.submit {
    background: var(--color-primary);
    text-transform: none; }

.inner-tab.tab-1 {
  height: 400px; }

#book-appointment-asset-root p,
#book-appointment-asset-root h1,
#book-appointment-asset-root h2,
#book-appointment-asset-root h3,
#book-appointment-asset-root h4,
#book-appointment-asset-root h5,
#book-appointment-asset-root h6 {
  font-family: "Hind", sans-serif;
  font-style: initial !important;
  color: #000; }

#book-appointment-asset-root .padding-bottom {
  padding-bottom: 1rem; }

#book-appointment-asset-root .center-content {
  margin: auto;
  width: 50%; }

#book-appointment-asset-root .slick-header {
  z-index: 1; }
  #book-appointment-asset-root .slick-header .header-logo {
    height: 100%; }
  #book-appointment-asset-root .slick-header .logo {
    height: 90%; }
  #book-appointment-asset-root .slick-header .navi {
    text-transform: uppercase;
    line-height: initial; }
    #book-appointment-asset-root .slick-header .navi .schedule-btn {
      background: var(--color-secondary);
      color: #fff;
      font-size: 14px;
      cursor: pointer;
      opacity: 1;
      padding: 4px 16px;
      transition: all 0.3s ease;
      text-transform: initial; }

#book-appointment-asset-root .intro .main-slider {
  z-index: 2;
  opacity: 0.6; }

#book-appointment-asset-root .intro .slider-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: black; }

#book-appointment-asset-root .leftContent {
  padding-right: 0px;
  max-width: 300px; }

#book-appointment-asset-root .rightContent {
  padding-left: 0px; }

#book-appointment-asset-root .agent-wrapper {
  margin-bottom: 10px;
  padding: 2em;
  cursor: pointer;
  background-color: white;
  justify-content: center;
  min-width: 250px; }

#book-appointment-asset-root .imageDesc {
  margin: 10px 0px;
  color: grey; }

#book-appointment-asset-root img {
  max-width: 100%;
  max-height: 100%;
  display: block; }

#book-appointment-asset-root .agent-info {
  text-transform: uppercase; }
  #book-appointment-asset-root .agent-info p {
    font-weight: normal;
    font-size: 10px;
    margin: 3px 0; }
  #book-appointment-asset-root .agent-info .name {
    font-weight: bold; }

#book-appointment-asset-root .details {
  justify-content: center;
  background: white; }
  #book-appointment-asset-root .details .slick-section {
    min-height: 200px;
    padding: 50px 0; }
    #book-appointment-asset-root .details .slick-section .title {
      font-size: 1.2em;
      margin-bottom: 15px;
      margin-top: 15px;
      padding-left: 50px; }
    #book-appointment-asset-root .details .slick-section .title_left {
      font-size: 1.2em;
      margin-bottom: 15px;
      margin-top: 15px; }
  #book-appointment-asset-root .details .grey-section {
    background: #f5f5f5; }

#book-appointment-asset-root #tourScheduler {
  padding: 50px 0; }
  #book-appointment-asset-root #tourScheduler .date {
    min-height: 120px;
    min-width: 100px;
    background: #fff;
    border: 1px solid #eee;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    font-size: 10px;
    color: #000; }
    #book-appointment-asset-root #tourScheduler .date .day {
      font-size: 2em;
      font-weight: bold;
      transform: translateY(2px); }
  #book-appointment-asset-root #tourScheduler .selected > .date {
    border: 1px solid var(--color-secondary);
    background: #ffecee; }
  #book-appointment-asset-root #tourScheduler .dateSlot {
    padding: 3px; }
  #book-appointment-asset-root #tourScheduler .dtimeSlot {
    padding: 3px; }
  #book-appointment-asset-root #tourScheduler .time {
    min-height: 45px;
    min-width: 100px;
    background: #fff;
    border: 1px solid #eee;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    font-size: 10px;
    color: #000;
    padding: 5px 15px; }
  #book-appointment-asset-root #tourScheduler .selected > .time {
    border: 1px solid var(--color-secondary);
    background: #ffecee; }
  #book-appointment-asset-root #tourScheduler h6 {
    margin-bottom: 0px; }
  #book-appointment-asset-root #tourScheduler .parentTypeTour {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #book-appointment-asset-root #tourScheduler .tourTypeButtonLeft {
    max-width: 203px;
    max-height: 55px;
    margin-right: 3px;
    margin-left: 50px;
    display: inline-block; }
  #book-appointment-asset-root #tourScheduler .tourTypeButtonRight {
    margin-right: 50px;
    margin-left: 3px;
    max-width: 206px;
    max-height: 55px;
    display: inline-block; }
  #book-appointment-asset-root #tourScheduler .btn {
    cursor: pointer;
    padding: 16px 30px;
    margin-bottom: 15px;
    width: fit-content;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    width: 100% !important;
    align-content: center !important;
    justify-content: center !important; }
    #book-appointment-asset-root #tourScheduler .btn i {
      transform: translateY(2px); }
    #book-appointment-asset-root #tourScheduler .btn.selected {
      border: 1px solid var(--color-secondary);
      background: #ffecee; }
      #book-appointment-asset-root #tourScheduler .btn.selected i {
        color: var(--color-secondary); }
    #book-appointment-asset-root #tourScheduler .btn.secondary {
      background: var(--color-secondary);
      color: #fff; }
  #book-appointment-asset-root #tourScheduler .chevron-wrapper {
    cursor: pointer;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    font-size: 10px;
    color: grey;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 8px -3px rgba(160, 158, 158, 0.5); }
  #book-appointment-asset-root #tourScheduler .info {
    margin-top: 30px;
    color: #000000a8;
    font-size: 0.9em; }

#book-appointment-asset-root .video {
  width: 100%;
  height: 400px; }

#book-appointment-asset-root .amenity-img {
  height: 400px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

#book-appointment-asset-root .footerButton {
  width: 150px; }

#book-appointment-asset-root .bookNow:active {
  border: 1px solid grey; }

#book-appointment-asset-root footer {
  padding-top: 15px;
  justify-content: center;
  padding-bottom: 1rem; }

#book-appointment-asset-root .bookNow {
  cursor: pointer;
  background: var(--color-secondary); }

#book-appointment-asset-root .secondary-btn {
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  padding: 12px 30px;
  text-transform: uppercase;
  width: fit-content; }
  #book-appointment-asset-root .secondary-btn.submit {
    background: var(--color-primary);
    text-transform: none; }

.inner-tab.tab-1 {
  height: 400px; }

#login-root {
  height: 100vh;
  width: 100%;
  background: #f8f8f8; }
  #login-root .left {
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    position: relative;
    float: left; }
  #login-root a {
    color: #fff;
    display: block;
    cursor: pointer;
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto;
    margin: 30px auto;
    width: 100% !important; }
    #login-root a:hover {
      color: var(--color-secondary) !important; }
  #login-root form {
    width: 400px;
    height: 450px;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center; }
    @media screen and (max-width: 768px) {
      #login-root form {
        width: 90%; } }
    #login-root form img {
      width: 200px;
      margin-bottom: 20px; }
    #login-root form input {
      text-align: left; }
    #login-root form button {
      width: 100%;
      margin-top: 10px; }

#conference {
  overflow: auto;
  overflow-x: hidden; }
  #conference .form-align-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  #conference form {
    height: auto;
    position: initial; }
    #conference form select {
      height: 50px;
      font-size: 0.9em;
      background: #fff;
      border: 1px solid #000;
      border-radius: 4px;
      display: block;
      font-family: "Open Sans Hebrew", sans-serif; }
  #conference .register-link {
    color: #fff;
    display: inline-block;
    cursor: pointer;
    position: relative;
    right: 0;
    left: 0;
    margin: 30px auto;
    width: 100%;
    text-align: center; }
  #conference .rtl .field-block {
    text-align: right;
    direction: rtl; }
  #conference .field-block {
    margin-bottom: 20px; }
    #conference .field-block .block-input {
      height: 35px;
      padding-top: 9px;
      margin: 5px;
      font-size: 1rem;
      border: 1px solid #eee; }
    #conference .field-block input[type="checkbox"] {
      height: auto;
      width: auto;
      display: inline;
      margin-right: 10px;
      float: left; }
    #conference .field-block label {
      margin-top: 3px;
      color: #ffffff; }
  #conference .rtl .field-block input[type="checkbox"] {
    float: right;
    margin-left: 10px;
    margin-right: 0; }

.video-popup-wrap iframe {
  max-width: 100%; }

.video-popup-wrap {
  max-width: 100%;
  width: 640px;
  height: 360px;
  padding: 0px; }

.fullscreen {
  height: 100%;
  width: 100%;
  background: #f8f8f8; }

@-webkit-keyframes expand {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes expand {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.buttonBg.expand {
  animation: expand 2s infinite; }

.base-tour {
  font-family: "Hind", "Helvetica", "Arial", sans-serif;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background: #f8f8f8;
  position: relative; }
  .base-tour > div,
  .base-tour > div > div {
    height: 100%;
    width: 100%;
    background: #f8f8f8; }
  .base-tour .svg-inline--fa {
    height: 15px;
    width: auto !important; }
  .base-tour i {
    font-size: 14px;
    height: auto !important;
    width: auto !important; }
  .base-tour .legal-note {
    width: 100%;
    text-align: center;
    padding: 0 120px;
    font-size: 10px;
    color: #fff;
    position: fixed;
    z-index: 3;
    line-height: 1.4;
    top: 10px; }
    .base-tour .legal-note.rtl {
      direction: rtl; }
    @media screen and (max-width: 768px) and (orientation: portrait) {
      .base-tour .legal-note {
        width: 100%;
        text-align: left;
        padding: 0 20px 0 20px;
        bottom: 120px;
        top: auto; }
        .base-tour .legal-note.rtl {
          text-align: right; } }
  .base-tour .tourLogin {
    background: #000;
    overflow: hidden;
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    height: 100vh; }
    .base-tour .tourLogin img {
      width: 200px;
      left: auto;
      top: auto;
      position: relative;
      display: block;
      max-height: 200px;
      margin: 0 auto 20px; }
    .base-tour .tourLogin form {
      position: absolute;
      right: 0;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 300px;
      height: 300px; }
    .base-tour .tourLogin input {
      width: 100%;
      height: 50px;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      margin-bottom: 20px; }
    .base-tour .tourLogin button {
      width: 100%;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      background: var(--color-primary); }
  .base-tour .buttonsBg {
    position: absolute;
    right: 0;
    margin-top: 80px;
    transition: all 0.3s ease;
    z-index: 10; }
    @media screen and (max-width: 768px) {
      .base-tour .buttonsBg {
        margin-top: 60px; } }
    @media screen and (orientation: landscape) and (max-width: 900px) {
      .base-tour .buttonsBg {
        margin-top: 50px; } }
    .base-tour .buttonsBg.open {
      right: 250px; }
  .base-tour .buttonBg {
    position: relative;
    padding: 13px;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    top: 0;
    right: 0;
    display: block;
    margin-bottom: 10px; }
    .base-tour .buttonBg .hamburger:focus {
      outline: none; }
    .base-tour .buttonBg svg,
    .base-tour .buttonBg i {
      height: 20px;
      color: #fff;
      vertical-align: middle;
      margin: 2px 10px;
      font-size: 18px;
      transition: all 0.3s ease; }
    .base-tour .buttonBg.active {
      background: var(--color-secondary); }
      .base-tour .buttonBg.active:hover {
        background: #fff; }
      .base-tour .buttonBg.active svg,
      .base-tour .buttonBg.active i {
        color: #fff; }
    .base-tour .buttonBg:hover svg,
    .base-tour .buttonBg:hover i {
      color: var(--color-secondary); }
    .base-tour .buttonBg p {
      color: #fff;
      font-size: 1em;
      margin: 0 15px; }
      .base-tour .buttonBg p:hover {
        color: var(--color-primary); }
    .base-tour .buttonBg a {
      color: #fff;
      font-size: 1.2em;
      margin: 0 15px; }
      .base-tour .buttonBg a:hover {
        color: var(--color-secondary); }
  .base-tour.preview {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 100px);
    margin-top: 20px; }
    .base-tour.preview .inner {
      position: relative;
      width: 100%;
      height: 100%; }
    .base-tour.preview nav {
      height: 100%;
      position: absolute; }
  .base-tour .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 99;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    transition: all 0.3s ease; }
  .base-tour .overlay.open {
    display: block; }
  .base-tour nav {
    position: absolute;
    right: -250px;
    width: 250px;
    top: 20px;
    z-index: 110;
    transition: all 0.3s ease;
    padding-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px; }
    .base-tour nav h2 {
      color: #fff;
      font-size: 1.1em;
      font-weight: normal;
      font-style: normal;
      margin-left: 25px;
      margin-bottom: 30px;
      text-transform: uppercase; }
    .base-tour nav.rtl {
      text-align: right;
      direction: rtl; }
      .base-tour nav.rtl h2 {
        margin-right: 25px;
        margin-left: 0; }
      .base-tour nav.rtl #book i,
      .base-tour nav.rtl .appointmentButton i,
      .base-tour nav.rtl .contactButton i {
        margin-left: 10px;
        margin-right: 0; }
    .base-tour nav #book,
    .base-tour nav .appointmentButton,
    .base-tour nav .contactButton {
      width: 200px;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      text-decoration: none;
      margin-bottom: 20px;
      border-radius: 6px;
      padding: 10px 0;
      color: #fff;
      font-size: 0.9em;
      display: block;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer; }
      .base-tour nav #book:hover,
      .base-tour nav .appointmentButton:hover,
      .base-tour nav .contactButton:hover {
        background-color: var(--color-secondary) !important; }
      .base-tour nav #book i,
      .base-tour nav .appointmentButton i,
      .base-tour nav .contactButton i {
        margin-right: 10px; }
    .base-tour nav .appointmentButton {
      background-color: var(--color-secondary); }
    .base-tour nav .contactButton {
      background-color: var(--color-primary); }
    .base-tour nav.open {
      right: 0; }
    .base-tour nav li {
      display: block;
      font-size: 1em;
      width: 100%;
      padding: 8px 23px;
      color: #fff;
      border-left: 2px solid transparent;
      position: relative;
      margin: 0 auto;
      transition: color 0.3s ease;
      line-height: 1.4;
      cursor: pointer; }
      .base-tour nav li:hover {
        color: var(--color-secondary) !important; }
      .base-tour nav li a {
        display: block;
        height: 100%; }
    .base-tour nav .sublinks,
    .base-tour nav .sub_sublinks {
      margin-left: 10px; }
      .base-tour nav .sublinks li,
      .base-tour nav .sub_sublinks li {
        color: #ccc; }
        .base-tour nav .sublinks li:hover,
        .base-tour nav .sub_sublinks li:hover {
          color: #fff !important; }
    .base-tour nav #menu {
      max-height: 40vh;
      overflow-y: auto;
      font-size: 0.9em;
      margin-bottom: 20px; }
      .base-tour nav #menu::-webkit-scrollbar-track {
        background: var(--color-primary); }
      .base-tour nav #menu::-webkit-scrollbar-thumb {
        border-radius: 2px;
        background: var(--color-secondary); }
      .base-tour nav #menu::-webkit-scrollbar {
        width: var(--scroll-bar-size);
        background: var(--color-primary); }
      .base-tour nav #menu .fa-caret-down {
        color: #fff;
        float: right;
        position: relative;
        top: 2px; }
      .base-tour nav #menu.rtl {
        text-align: right;
        direction: rtl; }
        .base-tour nav #menu.rtl .fa-caret-down {
          float: left; }
      .base-tour nav #menu .mainLink {
        user-select: cursor; }
        .base-tour nav #menu .mainLink ul {
          display: none;
          margin-top: 8px;
          padding-bottom: 0; }
        .base-tour nav #menu .mainLink.open {
          background: var(--color-secondary);
          color: #fff !important; }
          .base-tour nav #menu .mainLink.open > svg,
          .base-tour nav #menu .mainLink.open > i {
            transform: rotate(180deg); }
      .base-tour nav #menu .closed {
        display: none; }
    .base-tour nav .contact {
      text-align: left;
      padding: 0 25px;
      position: relative;
      width: 100%;
      margin: 20px 0; }
      .base-tour nav .contact.rtl span {
        text-align: right; }
      .base-tour nav .contact.rtl span i {
        margin-left: 5px;
        margin-right: 0; }
      .base-tour nav .contact.rtl img {
        margin-right: 10px;
        margin-left: 0; }
      .base-tour nav .contact span {
        display: block;
        color: #fff;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
        font-size: 12px;
        margin-bottom: 20px;
        cursor: pointer;
        transition: all 0.3s ease; }
        .base-tour nav .contact span:hover,
        .base-tour nav .contact span:hover i {
          color: var(--color-secondary); }
        .base-tour nav .contact span i {
          margin-right: 5px;
          transition: all 0.3s ease; }
      .base-tour nav .contact h5 {
        color: #fff;
        text-align: center;
        display: block;
        font-size: 12px; }
        @media screen and (max-width: 768px) {
          .base-tour nav .contact h5 {
            display: none; } }
      .base-tour nav .contact img {
        height: 30px;
        margin-left: 10px;
        vertical-align: middle; }
  .base-tour .inner {
    height: 100vh;
    width: 100vw;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s ease;
    overflow: hidden; }
  .base-tour .logo {
    position: absolute;
    z-index: 4;
    left: 20px;
    top: 20px;
    width: 100px; }
    .base-tour .logo.width {
      width: 200px; }
    @media screen and (max-width: 768px) {
      .base-tour .logo {
        width: 70px;
        top: 20px; }
        .base-tour .logo.width {
          width: 140px; } }
  .base-tour .lock-layer {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }
  .base-tour iframe {
    height: calc(100vh + 60px);
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transition: all 0.25s ease; }
  .base-tour .showcase.mesurements-mobile-not-fullscreen {
    height: 100vh; }
  .base-tour header .fa-phone,
  .base-tour header .fa-envelope {
    color: #000;
    font-size: 15px;
    position: relative; }
  .base-tour header .fa-clock,
  .base-tour header .fa-envelope {
    color: #000;
    font-size: 15px;
    position: relative; }
  .base-tour header .fa-envelope {
    margin-left: 15px; }
  .base-tour .youtube {
    height: 200px;
    width: 350px;
    position: absolute;
    bottom: 0;
    left: 60px;
    z-index: 10000; }
  @media screen and (max-width: 768px) {
    .base-tour #currentRoom {
      display: none; } }
  .base-tour .youtube .fa-times {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    padding: 8px;
    font-size: 14px;
    line-height: 10px;
    z-index: 2; }
  @media screen and (max-width: 768px) {
    .base-tour .youtube {
      width: 250px;
      height: 150px;
      right: 10px; } }
  .base-tour #ytplayer {
    height: 100%;
    width: 100%; }
  .base-tour .popup {
    background: #fff;
    height: 90%;
    width: 90%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 8px; }
    .base-tour .popup .close {
      position: absolute;
      float: none;
      z-index: 3;
      top: -15px;
      right: -15px;
      padding: 0;
      opacity: 1;
      font-size: 14px;
      cursor: pointer;
      background: #fff;
      border-radius: 50%;
      height: 30px;
      width: 30px;
      line-height: 38px;
      text-align: center; }
      .base-tour .popup .close:hover svg,
      .base-tour .popup .close:hover i {
        color: var(--color-secondary); }
      .base-tour .popup .close svg,
      .base-tour .popup .close i {
        color: #aaa;
        font-size: 20px;
        transition: all 0.3s ease; }
    .base-tour .popup h2 {
      font-size: 1.4em;
      padding: 20px 0;
      text-align: center; }
    .base-tour .popup .square-button {
      margin-top: 20px;
      text-align: center; }
    .base-tour .popup input {
      border-bottom: 1px solid #ccc; }
    .base-tour .popup iframe {
      height: 100% !important;
      width: 100% !important;
      position: relative;
      top: 0;
      left: 0;
      border-radius: 8px; }
    .base-tour .popup.rtl {
      text-align: right; }
      .base-tour .popup.rtl input {
        text-align: right; }
  .base-tour #external-popup {
    z-index: 111; }
  .base-tour #contact-pop {
    max-height: 550px;
    max-width: 600px; }
    .base-tour #contact-pop .contact-popup-content {
      overflow-y: auto;
      height: 100%;
      padding: 30px; }
    @media screen and (max-width: 768px) {
      .base-tour #contact-pop {
        max-height: 100vh;
        height: 92%; } }
    @media screen and (max-width: 768px) and (orientation: landscape) {
      .base-tour #contact-pop {
        overflow-y: auto;
        overflow-x: hidden; }
        .base-tour #contact-pop .close {
          top: 0;
          right: 0; } }
    .base-tour #contact-pop .appointment-block label {
      font-size: 12px; }
    .base-tour #contact-pop h2 {
      text-align: left;
      font-weight: normal;
      font-style: normal;
      padding: 0;
      font-size: 18px;
      margin-top: -10px;
      margin-bottom: 30px; }
    .base-tour #contact-pop .input-c {
      width: 49%;
      margin-bottom: 10px; }
      .base-tour #contact-pop .input-c.full {
        width: 100%; }
      .base-tour #contact-pop .input-c label {
        font-weight: normal; }
      .base-tour #contact-pop .input-c input,
      .base-tour #contact-pop .input-c textarea {
        border: 1px solid #eee; }
      .base-tour #contact-pop .input-c textarea {
        height: 100px; }
    .base-tour #contact-pop .square-button {
      background: var(--color-secondary);
      color: #fff;
      width: 120px;
      float: right;
      margin-top: 0; }
    .base-tour #contact-pop .agent-cards {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px; }
      .base-tour #contact-pop .agent-cards .agent-card {
        flex-basis: 50%; }
        @media screen and (max-width: 768px) {
          .base-tour #contact-pop .agent-cards .agent-card {
            width: 100% !important;
            flex-basis: 100%; } }
        .base-tour #contact-pop .agent-cards .agent-card:first-child {
          margin-left: 0; }
        .base-tour #contact-pop .agent-cards .agent-card .img {
          background-size: cover;
          background-repeat: no-repeat;
          height: 60px;
          width: 60px;
          border-radius: 50%;
          background-position: center;
          display: inline-block;
          vertical-align: middle; }
        .base-tour #contact-pop .agent-cards .agent-card .text {
          display: inline-block;
          margin-left: 10px;
          vertical-align: middle;
          width: calc(100% - 70px); }
          .base-tour #contact-pop .agent-cards .agent-card .text h4 {
            font-size: 16px;
            margin-bottom: 2px;
            text-overflow: ellipsis;
            overflow: hidden;
            width: 100%;
            white-space: nowrap; }
          .base-tour #contact-pop .agent-cards .agent-card .text a {
            color: var(--color-secondary); }
  .base-tour #share-pop {
    height: 200px;
    width: 300px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: auto;
    right: 120px;
    top: auto;
    bottom: 100px;
    padding: 20px; }
    @media screen and (max-width: 768px) {
      .base-tour #share-pop {
        background: #fff;
        bottom: 0;
        right: 0;
        width: 100%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        height: 260px;
        text-align: center; } }
    .base-tour #share-pop h3 {
      color: #fff;
      margin-bottom: 25px;
      font-size: 18px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop h3 {
          color: #000;
          text-align: left; } }
    .base-tour #share-pop .fa-times {
      color: #fff;
      font-size: 15px; }
    .base-tour #share-pop .close {
      background: none !important;
      margin: 0;
      height: auto;
      width: auto;
      line-height: 1;
      top: 10px;
      right: 15px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .close svg,
        .base-tour #share-pop .close i {
          color: #000; } }
    .base-tour #share-pop .switchLabel {
      color: #fff;
      margin-top: 30px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .switchLabel {
          position: relative;
          width: 100%;
          color: #000;
          text-align: left; } }
      .base-tour #share-pop .switchLabel > div {
        position: relative;
        top: 5px; }
        @media screen and (max-width: 768px) {
          .base-tour #share-pop .switchLabel > div {
            position: absolute !important;
            right: 0 !important; } }
    .base-tour #share-pop .primary-btn {
      border-radius: 0;
      background: var(--color-secondary) !important;
      color: #fff;
      height: 45px;
      width: 120px;
      float: right;
      margin-top: 20px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .primary-btn {
          width: 100%;
          margin: 0;
          margin-top: 20px; } }
    .base-tour #share-pop button {
      background: #e5e5e5;
      border-radius: 50%;
      padding: 8px 10px;
      margin: 0 5px;
      height: 40px;
      width: 40px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop button {
          margin: 0 10px; } }
      .base-tour #share-pop button:hover, .base-tour #share-pop button.active {
        background: var(--color-secondary); }
        .base-tour #share-pop button:hover svg,
        .base-tour #share-pop button:hover i, .base-tour #share-pop button.active svg,
        .base-tour #share-pop button.active i {
          color: #fff; }
      .base-tour #share-pop button svg,
      .base-tour #share-pop button i {
        height: 18px;
        font-size: 16px;
        vertical-align: middle; }
  .base-tour .adPop {
    height: 85%;
    width: 95%;
    max-width: 700px;
    max-height: 550px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000001;
    right: 0;
    bottom: 0;
    margin: auto; }
    @media screen and (max-width: 768px) {
      .base-tour .adPop {
        width: 320px;
        height: 450px; } }
    .base-tour .adPop .img {
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
      @media screen and (max-width: 768px) {
        .base-tour .adPop .img {
          height: 220px; } }
    .base-tour .adPop form {
      width: 100%;
      height: 120px;
      padding-top: 10px;
      background: #fff;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0; }
      @media screen and (max-width: 768px) {
        .base-tour .adPop form {
          height: 230px;
          padding: 10px 20px; } }
      .base-tour .adPop form.rtl input {
        text-align: right; }
      .base-tour .adPop form .square-button {
        width: calc(90% + 40px);
        clear: both;
        margin-top: 15px;
        background: var(--color-secondary);
        color: #fff; }
        .base-tour .adPop form .square-button:hover {
          background: var(--color-primary); }
      .base-tour .adPop form input {
        width: 30%;
        clear: none;
        display: inline-block;
        margin: 0 10px; }
        @media screen and (max-width: 768px) {
          .base-tour .adPop form input {
            width: 100%;
            margin: 5px 0; } }
  .base-tour form input,
  .base-tour form textarea {
    height: 40px;
    clear: both;
    width: 80%;
    position: relative;
    margin: 10px auto;
    right: 0;
    left: 0;
    padding: 5px;
    text-indent: 6px;
    font-size: 0.9em;
    background: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    display: block;
    font-family: "Open Sans Hebrew", sans-serif; }
  .base-tour form textarea {
    height: 80px; }
  .base-tour .mapPop iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  .base-tour form button {
    background: #58b504;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 4px;
    float: right;
    margin-right: 10%;
    margin-top: 10px;
    padding: 10px 40px;
    font-size: 0.9em; }
  .base-tour form p {
    line-height: 450px;
    text-align: center;
    font-size: 1.4em;
    position: absolute;
    top: 0;
    width: 100%; }
  .base-tour form input.error {
    border: 1px solid red; }
  .base-tour .fa-map-marked {
    right: 10px;
    bottom: 90px;
    left: auto; }
    .base-tour .fa-map-marked.active {
      color: var(--color-secondary); }
  .base-tour .autocadPop {
    height: 100px;
    text-align: center; }
  .base-tour .tagPop {
    height: 300px;
    width: 450px;
    max-height: 100vh;
    max-width: 100vw; }
    .base-tour .tagPop .fa-compress,
    .base-tour .tagPop .fa-expand {
      bottom: 10px;
      right: 10px; }
    .base-tour .tagPop iframe {
      height: 100%;
      width: 100%;
      background: #f8f8f8; }
  .base-tour .sharePop {
    height: 150px;
    text-align: center;
    padding: 20px 0;
    width: 320px; }
    @media screen and (max-width: 768px) {
      .base-tour .sharePop {
        width: 360px; } }
    .base-tour .sharePop .icon {
      color: #fff;
      background: var(--color-secondary);
      cursor: pointer;
      border-radius: 50%;
      padding: 10px;
      margin: 0 10px;
      display: inline-block;
      font-size: 1.7em; }
      .base-tour .sharePop .icon:hover {
        color: var(--color-primary); }
    .base-tour .sharePop label {
      display: block;
      margin-top: 20px; }
      .base-tour .sharePop label > div {
        top: 10px;
        margin-left: 10px;
        position: relative; }
  .base-tour .autocadPop h4 {
    padding: 10px 0;
    font-size: 1.1em; }
  .base-tour .autocadPop a {
    background: #000;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    display: inline-block; }
  .base-tour .autocadPop a:hover {
    background: #242424; }

.intro-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #888888;
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .intro-screen .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; }
  .intro-screen h1 {
    color: white;
    font-style: normal;
    font-size: 60px;
    font-weight: 700;
    max-width: 800px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .intro-screen h1 {
        max-width: 80%;
        font-size: 40px; } }
    @media screen and (max-width: 550px) {
      .intro-screen h1 {
        max-width: 90%;
        font-size: 30px; } }
    @media screen and (max-height: 569px) and (max-height: 569px) {
      .intro-screen h1 {
        font-size: 20px; } }
  .intro-screen h3 {
    font-style: normal;
    font-size: 14px;
    color: white;
    margin-bottom: 60px;
    max-width: 800px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .intro-screen h3 {
        max-width: 80%; } }
    @media screen and (max-width: 550px) {
      .intro-screen h3 {
        max-width: 90%;
        font-size: 12px; } }
    @media screen and (max-height: 569px) and (max-height: 569px) {
      .intro-screen h3 {
        font-size: 12px;
        margin-bottom: 30px; } }
  .intro-screen p {
    color: white; }
  .intro-screen .powered-by {
    margin-top: 60px; }
    @media screen and (max-width: 768px) {
      .intro-screen .powered-by {
        font-size: 12px;
        margin-top: auto;
        margin-bottom: 5px; } }
  .intro-screen .tour-play-btn {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    color: white;
    border-radius: 50%;
    font-size: 60px;
    margin-bottom: 60px;
    padding-left: 24px;
    padding-right: 18px;
    position: relative; }
    .intro-screen .tour-play-btn:focus {
      outline: none; }
    @media screen and (max-width: 375px) {
      .intro-screen .tour-play-btn {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .tour-play-btn {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px;
        margin-bottom: 30px; } }
  .intro-screen .loader-animation {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    position: relative;
    color: white;
    line-height: 150px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px; }
    .intro-screen .loader-animation:after {
      content: " ";
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      position: absolute;
      border-radius: 50%;
      border: 3px solid #fff;
      border-color: #fff transparent #fff transparent;
      animation: lds-dual-ring 1.2s linear infinite;
      top: 0;
      left: 0; }
    @media screen and (max-width: 375px) {
      .intro-screen .loader-animation {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .loader-animation {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        margin-bottom: 30px; } }
    .intro-screen .loader-animation .loader-title {
      font-size: 16px;
      color: white;
      line-height: 150px;
      text-align: center; }
      @media screen and (max-width: 375px) {
        .intro-screen .loader-animation .loader-title {
          line-height: 100px;
          font-size: 12px; } }
      @media screen and (max-height: 569px) {
        .intro-screen .loader-animation .loader-title {
          line-height: 100px;
          font-size: 12px; } }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .intro-screen .client-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-top: 60px; }
    @media screen and (max-width: 768px) {
      .intro-screen .client-logo {
        width: 100px;
        height: 100px; } }
    @media screen and (max-width: 375px) {
      .intro-screen .client-logo {
        width: 60px;
        height: 60px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .client-logo {
        width: 60px;
        height: 60px;
        margin-top: 30px !important; } }
  .intro-screen .logo {
    width: 100px; }
  .intro-screen .logo-divider {
    color: white; }
  .intro-screen .mp-logo {
    height: 18px;
    margin-bottom: 3px; }

.timer {
  z-index: 2;
  position: absolute;
  color: black;
  margin: 0px;
  right: 0;
  top: 44px;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px;
  color: white; }

.middleContainer {
  padding: 1rem;
  color: white;
  padding-top: 0px; }

.noPadding {
  padding: 0px; }

#public-tour-root .video-call-no-permission {
  display: block;
  margin-bottom: 10px; }

#public-tour-root #conference-chat.chat {
  display: block;
  padding: 0;
  border-radius: 8px;
  left: calc(50% - 175px);
  bottom: 0;
  top: calc(50% - 30vh); }
  @media screen and (max-width: 768px) {
    #public-tour-root #conference-chat.chat {
      background: rgba(0, 0, 0, 0.7);
      left: 0;
      top: calc(50% - 250px);
      width: 90%;
      margin: 0 auto; } }
  #public-tour-root #conference-chat.chat .socket-connection {
    color: #fff;
    font-size: 10px;
    padding: 0 10px;
    text-align: right;
    background: none; }
  #public-tour-root #conference-chat.chat .chat-header h3 {
    padding: 10px 20px;
    text-transform: uppercase;
    margin-left: 0;
    border-bottom: 1px solid #cccccc; }
    #public-tour-root #conference-chat.chat .chat-header h3 .close-btn {
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      width: 30px;
      height: 30px;
      z-index: 3;
      top: -15px;
      right: -15px;
      border-radius: 50%;
      background: #000;
      opacity: 1; }
      #public-tour-root #conference-chat.chat .chat-header h3 .close-btn:hover i {
        color: var(--color-secondary); }
      #public-tour-root #conference-chat.chat .chat-header h3 .close-btn i {
        color: #fff;
        font-size: 14px;
        transition: all 0.3s ease; }
    @media screen and (max-width: 768px) {
      #public-tour-root #conference-chat.chat .chat-header h3 {
        display: block; } }
  #public-tour-root #conference-chat.chat .messages {
    height: calc(100% - 120px); }
    #public-tour-root #conference-chat.chat .messages .message-container .message-wrap {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      width: 80%; }
      #public-tour-root #conference-chat.chat .messages .message-container .message-wrap .user-info {
        margin-right: 5px; }
        #public-tour-root #conference-chat.chat .messages .message-container .message-wrap .user-info .circle {
          background: #cccccc;
          border-radius: 50%;
          height: 40px;
          text-align: center;
          width: 40px;
          font-weight: bold; }
        #public-tour-root #conference-chat.chat .messages .message-container .message-wrap .user-info .initials {
          font-size: calc(40px / 2);
          line-height: 1;
          position: relative;
          top: calc(40px / 4);
          text-transform: uppercase; }
        #public-tour-root #conference-chat.chat .messages .message-container .message-wrap .user-info img {
          width: 40px;
          max-height: 40px; }
      #public-tour-root #conference-chat.chat .messages .message-container .message-wrap .message {
        width: 100%;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between; }
    #public-tour-root #conference-chat.chat .messages .message-container.guest {
      display: flex;
      justify-content: flex-end; }
      #public-tour-root #conference-chat.chat .messages .message-container.guest .message-wrap {
        flex-direction: row-reverse; }
        #public-tour-root #conference-chat.chat .messages .message-container.guest .message-wrap .user-info {
          margin-left: 5px; }
        #public-tour-root #conference-chat.chat .messages .message-container.guest .message-wrap .message {
          background: rgba(204, 204, 204, 0.4); }
  #public-tour-root #conference-chat.chat .send {
    width: 90%; }
    #public-tour-root #conference-chat.chat .send textarea {
      width: 100%;
      float: left;
      padding-top: 0;
      padding-bottom: 0;
      padding-right: 20px;
      height: 27px;
      margin: 0;
      background: none;
      font-family: "Hind", sans-serif !important;
      font-weight: 300;
      color: #fff;
      margin-top: 5px; }
      @media screen and (max-width: 768px) {
        #public-tour-root #conference-chat.chat .send textarea {
          color: #000; } }
    #public-tour-root #conference-chat.chat .send .send-button {
      cursor: pointer;
      position: absolute;
      right: 5px;
      color: var(--color-secondary);
      top: 4px; }
      #public-tour-root #conference-chat.chat .send .send-button i {
        font-size: 22px; }

#public-tour-root .right-top-bar {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: auto;
  border-radius: 0;
  justify-content: center;
  background: none;
  height: 35px;
  z-index: 1; }
  #public-tour-root .right-top-bar .action-icons {
    bottom: 0;
    position: relative;
    padding: 0; }
    #public-tour-root .right-top-bar .action-icons .badge {
      position: absolute;
      top: 0;
      right: 0;
      width: 14px;
      height: 14px;
      background: var(--color-secondary);
      border-radius: 50%;
      text-align: center;
      color: #ffffff;
      padding: 0;
      line-height: 16px; }
    #public-tour-root .right-top-bar .action-icons .active {
      background: var(--color-secondary); }
      #public-tour-root .right-top-bar .action-icons .active .badge {
        background: #ffffff;
        color: var(--color-secondary); }
      #public-tour-root .right-top-bar .action-icons .active i {
        color: #fff; }

#public-tour-root #conference-chats-list {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  right: -350px;
  top: 80px;
  width: 350px;
  height: 65vh;
  z-index: 102;
  transition: 0.3s ease all;
  border-radius: 8px; }
  @media screen and (max-width: 768px) {
    #public-tour-root #conference-chats-list {
      top: 0; } }
  #public-tour-root #conference-chats-list .chat-header {
    padding: 20px 20px 0; }
    #public-tour-root #conference-chats-list .chat-header h3 {
      color: #fff;
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: bold; }
  #public-tour-root #conference-chats-list.open {
    right: 80px; }
    @media screen and (max-width: 768px) {
      #public-tour-root #conference-chats-list.open {
        top: 0;
        right: 0; } }
  #public-tour-root #conference-chats-list .chat-filter {
    padding: 5px 20px 0; }
    #public-tour-root #conference-chats-list .chat-filter .input-group {
      border-radius: 7px;
      height: 40px;
      margin-top: 5px;
      margin-bottom: 10px; }
      #public-tour-root #conference-chats-list .chat-filter .input-group input {
        height: 40px;
        border-radius: 7px 0 0 7px;
        background: rgba(248, 248, 248, 0.5);
        color: white;
        margin-top: 0;
        font-family: "Hind", "Helvetica", "Arial", sans-serif; }
        #public-tour-root #conference-chats-list .chat-filter .input-group input::placeholder {
          font-family: "Hind", "Helvetica", "Arial", sans-serif; }
      #public-tour-root #conference-chats-list .chat-filter .input-group .input-group-text {
        background: var(--color-secondary);
        color: #fff;
        border: 0;
        border-radius: 0 7px 7px 0;
        width: 40px;
        justify-content: center;
        height: 40px; }
  #public-tour-root #conference-chats-list .chats-list {
    height: calc(100% - 19vh);
    overflow: auto;
    color: #fff; }
    #public-tour-root #conference-chats-list .chats-list li {
      margin-top: 10px;
      padding: 10px 20px;
      cursor: pointer;
      display: flex; }
      #public-tour-root #conference-chats-list .chats-list li .user-avatar {
        width: 48px;
        margin-right: 10px;
        position: relative; }
        #public-tour-root #conference-chats-list .chats-list li .user-avatar .badge {
          position: absolute;
          top: 0;
          left: 0;
          width: 14px;
          height: 14px;
          background: var(--color-secondary);
          border-radius: 50%;
          text-align: center;
          color: #ffffff;
          padding: 0;
          line-height: 16px; }
        #public-tour-root #conference-chats-list .chats-list li .user-avatar img {
          width: 100%; }
      #public-tour-root #conference-chats-list .chats-list li:hover {
        background-color: rgba(234, 71, 92, 0.4); }
      #public-tour-root #conference-chats-list .chats-list li .chat-item {
        display: flex;
        justify-content: space-between; }
        #public-tour-root #conference-chats-list .chats-list li .chat-item .chat-data .user-name {
          font-weight: bold;
          font-size: 16px; }
  #public-tour-root #conference-chats-list .close-btn {
    width: 30px;
    height: 30px;
    z-index: 3;
    border-radius: 50%;
    background: no-repeat;
    opacity: 1;
    position: absolute;
    bottom: 5px;
    color: #fff;
    left: calc(50% - 15px);
    display: none; }
    @media screen and (max-width: 768px) {
      #public-tour-root #conference-chats-list .close-btn {
        display: block; } }
    #public-tour-root #conference-chats-list .close-btn:hover i {
      color: var(--color-secondary); }
    #public-tour-root #conference-chats-list .close-btn i {
      color: #fff;
      font-size: 14px;
      transition: all 0.3s ease; }

#terms-wrapper iframe.pdf-frame {
  height: 100%; }

.collect-leads-modal {
  height: 440px !important;
  width: 720px !important; }
  .collect-leads-modal.big {
    height: 550px !important; }
  @media screen and (max-width: 768px) {
    .collect-leads-modal {
      height: 100vh !important;
      width: 100% !important; }
      .collect-leads-modal.big {
        height: 100vh !important; } }
  .collect-leads-modal .content {
    display: flex;
    height: 100%;
    background: #fff;
    position: relative; }
    @media screen and (max-width: 768px) {
      .collect-leads-modal .content {
        flex-direction: column;
        display: block; } }
    .collect-leads-modal .content .left,
    .collect-leads-modal .content .right {
      flex: 1 1 50%;
      width: 50%; }
      @media screen and (max-width: 768px) {
        .collect-leads-modal .content .left,
        .collect-leads-modal .content .right {
          width: 100%;
          display: block; } }
    .collect-leads-modal .content .left {
      position: relative; }
      @media screen and (max-width: 768px) {
        .collect-leads-modal .content .left {
          height: 200px; } }
      .collect-leads-modal .content .left img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .collect-leads-modal .content .left .logo-wrapper {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center; }
      .collect-leads-modal .content .left a {
        max-width: 60%;
        max-height: 60%; }
        .collect-leads-modal .content .left a img {
          object-fit: contain; }
          @media screen and (max-width: 768px) {
            .collect-leads-modal .content .left a img {
              height: 100px;
              position: absolute;
              top: 0;
              bottom: 0;
              left: 0;
              right: 0;
              margin: auto; } }
    .collect-leads-modal .content .right {
      display: flex;
      flex-direction: column;
      padding: 10px; }
      @media screen and (max-width: 768px) {
        .collect-leads-modal .content .right {
          display: block;
          height: calc(100vh - 200px);
          overflow-y: scroll;
          overflow-y: auto; }
          .collect-leads-modal .content .right::-webkit-scrollbar-track {
            background: var(--color-primary); }
          .collect-leads-modal .content .right::-webkit-scrollbar-thumb {
            border-radius: 6px;
            background: var(--color-secondary); }
          .collect-leads-modal .content .right::-webkit-scrollbar {
            width: var(--scroll-bar-size);
            height: 4px;
            background: var(--color-primary); } }
    .collect-leads-modal .content .close-btn {
      border-radius: 50%;
      position: absolute;
      top: 5px;
      right: 5px;
      background: transparent;
      padding: 0;
      z-index: 10; }
      .collect-leads-modal .content .close-btn i {
        color: #8d8d8d;
        position: relative;
        top: unset;
        right: unset;
        background: transparent; }
    .collect-leads-modal .content h3 {
      margin-bottom: 20px;
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.2;
      margin-top: 0; }
    .collect-leads-modal .content p {
      line-height: 1.4;
      margin-bottom: 10px;
      font-size: 1em;
      max-height: 160px;
      overflow-y: auto; }
      .collect-leads-modal .content p::-webkit-scrollbar-track {
        background: var(--color-primary); }
      .collect-leads-modal .content p::-webkit-scrollbar-thumb {
        border-radius: 6px;
        background: var(--color-secondary); }
      .collect-leads-modal .content p::-webkit-scrollbar {
        width: var(--scroll-bar-size);
        height: 4px;
        background: var(--color-primary); }
      @media screen and (max-width: 768px) {
        .collect-leads-modal .content p {
          overflow-y: visible;
          max-height: none; } }
    .collect-leads-modal .content form {
      display: flex;
      flex-direction: column;
      width: 100%;
      margin-bottom: 24px; }
      @media screen and (max-width: 768px) {
        .collect-leads-modal .content form {
          display: block; } }
      .collect-leads-modal .content form .field {
        margin: 10px 0 0; }
        @media screen and (max-width: 768px) {
          .collect-leads-modal .content form .field {
            display: block; } }
        .collect-leads-modal .content form .field input {
          height: 40px;
          border: 1px solid #e0e0e0;
          margin-top: 10px; }
          @media screen and (max-width: 768px) {
            .collect-leads-modal .content form .field input {
              display: block; } }
    .collect-leads-modal .content .start-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 40px;
      background: var(--color-secondary);
      color: #fff;
      margin-top: auto; }
      @media screen and (max-width: 768px) {
        .collect-leads-modal .content .start-btn {
          display: block;
          margin-bottom: 20px;
          line-height: 40px; } }

.paywallPop {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 70vh;
  max-height: 600px;
  width: 900px;
  color: #000; }
  @media screen and (max-width: 768px) {
    .paywallPop {
      height: 90vh;
      width: 90%;
      font-size: 14px; } }
  .paywallPop.small {
    height: 50vh; }
    @media screen and (max-width: 768px) {
      .paywallPop.small {
        height: 90vh; } }
  .paywallPop .title {
    text-align: center;
    color: var(--color-secondary);
    padding: 25px 0;
    font-size: 1.6em; }
  .paywallPop .blue_box {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #f2fbff;
    border-radius: 8px;
    border: 1px dotted #00b1ff;
    padding: 10px 20px;
    width: 280px; }
    @media screen and (max-width: 768px) {
      .paywallPop .blue_box {
        width: 90%;
        right: 0;
        position: absolute;
        right: 0;
        left: 0;
        margin: 0 auto; } }
    .paywallPop .blue_box .leftLabels {
      margin-top: 0; }
    .paywallPop .blue_box .rightLabels {
      margin-top: 0; }
  @media screen and (max-width: 768px) {
    .paywallPop .modalFirst {
      margin-bottom: 0; } }
  .paywallPop label {
    margin: 20px 0;
    display: block; }
    .paywallPop label > div {
      position: relative;
      top: 10px; }
    @media screen and (max-width: 768px) {
      .paywallPop label {
        width: 100%;
        margin: 10px 0; } }
  .paywallPop .wrapper {
    display: block;
    margin-bottom: 20px; }
    @media screen and (max-width: 768px) {
      .paywallPop .wrapper {
        margin-bottom: 10px; } }
  .paywallPop .leftLabels {
    width: auto;
    font-weight: bold;
    padding-right: 10px;
    display: inline; }
  .paywallPop .rightLabels {
    width: auto;
    line-height: 25px;
    padding-left: 0;
    display: inline;
    color: #00b1ff;
    font-weight: bold; }
    .paywallPop .rightLabels.full {
      clear: both;
      display: block;
      float: none;
      width: 60%;
      line-height: 1.4;
      margin: 0;
      color: darkgray;
      font-weight: normal;
      margin-left: 23px; }
      @media screen and (max-width: 768px) {
        .paywallPop .rightLabels.full {
          width: 90%; } }
  .paywallPop .opac-bg {
    height: 100%;
    width: 100%;
    background: #fff;
    position: absolute;
    z-index: -1;
    border-radius: 6px; }
  .paywallPop .produced {
    position: absolute;
    bottom: 10px;
    left: 10px; }
    .paywallPop .produced h5 {
      color: darkgray;
      display: block;
      font-size: 1.1em; }
      @media screen and (max-width: 768px) {
        .paywallPop .produced h5 {
          display: none; } }
    .paywallPop .produced img {
      height: 50px;
      margin-left: 10px;
      vertical-align: middle; }
    @media screen and (max-width: 768px) {
      .paywallPop .produced {
        display: none; } }
  .paywallPop .purchase {
    position: relative;
    background: var(--color-secondary);
    color: #fff;
    width: 100%;
    margin-top: 0;
    text-transform: uppercase; }
  .paywallPop .btn {
    background: var(--color-secondary);
    color: #fff;
    padding: 10px; }
  .paywallPop i {
    color: #fff;
    width: auto;
    font-size: 0.7em;
    vertical-align: middle;
    background: var(--color-secondary);
    border-radius: 50%;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center; }
  .paywallPop p {
    color: #000;
    line-height: 25px; }
  .paywallPop .content {
    padding: 20px;
    height: calc(100% - 150px);
    overflow-y: scroll; }
    .paywallPop .content .logo {
      position: absolute;
      width: 110px;
      right: 20px;
      top: 80px; }
      @media screen and (max-width: 768px) {
        .paywallPop .content .logo {
          display: none; } }
    @media screen and (max-width: 768px) {
      .paywallPop .content .email-data div {
        padding-right: 15px;
        padding-left: 15px; } }
    .paywallPop .content .email-data input {
      background: #fff;
      opacity: 0.7;
      border-radius: 2%;
      color: #000; }
    .paywallPop .content .required:after {
      content: " *";
      color: var(--color-secondary); }
    .paywallPop .content .w-50px {
      width: 50px; }
    .paywallPop .content .tour-desc p {
      color: #000;
      font-size: 1.2em; }
    .paywallPop .content .now-later-buttons {
      position: absolute;
      bottom: 20%;
      transform: translateX(-20px); }
  .paywallPop .third-modal {
    font-size: 1.4em; }
    @media screen and (max-width: 768px) {
      .paywallPop .third-modal .mobile-margin {
        margin: 3rem 1rem; } }

#tag-popup,
#vsimage-popup {
  background: #fff;
  height: 90%;
  width: 90%;
  max-width: 100vw !important;
  max-height: 100vh !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  right: 0;
  bottom: 0;
  margin: auto; }
  #tag-popup.iframe,
  #vsimage-popup.iframe {
    background: transparent; }
  #tag-popup.game-popup,
  #vsimage-popup.game-popup {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: rgba(0, 0, 0, 0.3); }
    #tag-popup.game-popup.finish,
    #vsimage-popup.game-popup.finish {
      background: rgba(0, 0, 0, 0.3);
      width: 300px;
      height: 110px;
      text-align: center; }
    #tag-popup.game-popup .game-tag-action-text,
    #vsimage-popup.game-popup .game-tag-action-text {
      color: white;
      overflow: hidden;
      max-height: 110px;
      padding: 0 10px; }
      #tag-popup.game-popup .game-tag-action-text .tag-title,
      #vsimage-popup.game-popup .game-tag-action-text .tag-title {
        padding: 10px 0;
        font-size: 24px;
        margin: 0; }
      #tag-popup.game-popup .game-tag-action-text .primary-btn,
      #vsimage-popup.game-popup .game-tag-action-text .primary-btn {
        width: 60%; }
    #tag-popup.game-popup .game-lock-action-text,
    #vsimage-popup.game-popup .game-lock-action-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      overflow: hidden;
      max-height: 200px;
      padding: 15px; }
      #tag-popup.game-popup .game-lock-action-text .game-lock-input,
      #vsimage-popup.game-popup .game-lock-action-text .game-lock-input {
        margin: 0 10px 10px 10px; }
        #tag-popup.game-popup .game-lock-action-text .game-lock-input:focus,
        #vsimage-popup.game-popup .game-lock-action-text .game-lock-input:focus {
          outline-color: white; }
      #tag-popup.game-popup .game-lock-action-text .primary-btn,
      #vsimage-popup.game-popup .game-lock-action-text .primary-btn {
        width: 60%; }
  #tag-popup.video-chat-popup,
  #vsimage-popup.video-chat-popup {
    background: rgba(0, 0, 0, 0.3);
    width: 300px;
    height: 270px;
    text-align: center; }
    #tag-popup.video-chat-popup .video-chat-tag-action-text,
    #vsimage-popup.video-chat-popup .video-chat-tag-action-text {
      color: white;
      overflow: hidden;
      max-height: 270px;
      padding: 0 10px; }
      #tag-popup.video-chat-popup .video-chat-tag-action-text .tag-title,
      #vsimage-popup.video-chat-popup .video-chat-tag-action-text .tag-title {
        padding: 10px 0;
        font-size: 24px;
        margin: 0; }
      #tag-popup.video-chat-popup .video-chat-tag-action-text .tag-description,
      #vsimage-popup.video-chat-popup .video-chat-tag-action-text .tag-description {
        text-align: start;
        font-size: 16px; }
      #tag-popup.video-chat-popup .video-chat-tag-action-text .tag-guests-count,
      #vsimage-popup.video-chat-popup .video-chat-tag-action-text .tag-guests-count {
        font-size: 30px; }
      #tag-popup.video-chat-popup .video-chat-tag-action-text .primary-btn,
      #vsimage-popup.video-chat-popup .video-chat-tag-action-text .primary-btn {
        width: 60%; }
  #tag-popup .close-btn,
  #vsimage-popup .close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 3;
    top: -15px;
    right: -15px;
    border-radius: 50%;
    background: #000;
    opacity: 1;
    cursor: pointer; }
    #tag-popup .close-btn:hover svg,
    #tag-popup .close-btn:hover i,
    #vsimage-popup .close-btn:hover svg,
    #vsimage-popup .close-btn:hover i {
      color: var(--color-secondary); }
    #tag-popup .close-btn svg,
    #tag-popup .close-btn i,
    #vsimage-popup .close-btn svg,
    #vsimage-popup .close-btn i {
      color: #fff;
      font-size: 14px;
      transition: all 0.3s ease; }
  #tag-popup .tag-action-image,
  #vsimage-popup .tag-action-image {
    width: 100%;
    height: 100%; }
    #tag-popup .tag-action-image .image-title,
    #vsimage-popup .tag-action-image .image-title {
      width: 100%;
      top: 0;
      position: absolute;
      left: 0;
      text-align: center;
      padding: 5px;
      font-size: 12px;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      overflow: hidden; }
    #tag-popup .tag-action-image img,
    #vsimage-popup .tag-action-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  #tag-popup .fullscreen-btn,
  #vsimage-popup .fullscreen-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 3;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer; }
    #tag-popup .fullscreen-btn:hover,
    #vsimage-popup .fullscreen-btn:hover {
      background-color: rgba(0, 0, 0, 0.5); }
      #tag-popup .fullscreen-btn:hover svg,
      #tag-popup .fullscreen-btn:hover i,
      #vsimage-popup .fullscreen-btn:hover svg,
      #vsimage-popup .fullscreen-btn:hover i {
        color: var(--color-secondary); }
    #tag-popup .fullscreen-btn svg,
    #tag-popup .fullscreen-btn i,
    #vsimage-popup .fullscreen-btn svg,
    #vsimage-popup .fullscreen-btn i {
      color: #fff;
      font-size: 14px;
      transition: all 0.3s ease; }
  #tag-popup .tag-action-text,
  #vsimage-popup .tag-action-text {
    padding: 15px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    text-align: center; }
  #tag-popup h2,
  #vsimage-popup h2 {
    font-size: 1.4em;
    padding: 20px 0;
    text-align: center; }
  #tag-popup input,
  #vsimage-popup input {
    border-bottom: 1px solid #ccc; }
  #tag-popup.contact,
  #vsimage-popup.contact {
    padding: 0 20px;
    max-height: 350px; }
  #tag-popup iframe,
  #vsimage-popup iframe {
    height: 100% !important;
    width: 100% !important;
    position: absolute;
    top: 0;
    left: 0; }
  #tag-popup.rtl,
  #vsimage-popup.rtl {
    text-align: right; }
    #tag-popup.rtl input,
    #vsimage-popup.rtl input {
      text-align: right; }

#panorama-player-1 {
  z-index: 1004; }

#panorama-player-2 {
  z-index: 1003; }

#panorama-player-3 {
  z-index: 1002; }

#panorama-player-4 {
  z-index: 1001; }

#public-tour-root #panorama-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background: #333; }
  #public-tour-root #panorama-overlay .panorama {
    opacity: 0;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    left: 100%;
    transition: opacity 2s ease;
    background: none !important; }
    #public-tour-root #panorama-overlay .panorama.show {
      opacity: 1;
      left: 0; }
  #public-tour-root #panorama-overlay .pnlm-render-container {
    background: none !important; }
  #public-tour-root #panorama-overlay .pnlm-load-box {
    display: none !important; }
  #public-tour-root #panorama-overlay .fa-times {
    position: absolute;
    z-index: 10;
    right: 10px;
    top: 10px;
    font-size: 2em;
    color: #fff;
    left: auto; }

.pano-arrows > div {
  display: block;
  -webkit-animation-name: pano-arrow;
  animation-name: pano-arrow;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAB/CAYAAACql41TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAD6NJREFUeNrsnVuMFFUax8+p7hmfdgUEIwwXNaIP+EBCBsXITWXdRGEkuBt2uYzowgzDDBIlauLiZrM+aOLG6IwyQwjqgpJNdlUYLhsWXFBjmOYad9WoMRou8mBQhtUHYKrOVk26Z2tOn3ud6q7q+r6kUtU90F1V/f3q///OOXUKIQgICAgICAgICAgICAgICAiIssDFBSJBPwhEus45gVMIgGTtPGNDGAAWAKTmzm1cCgKwACCpPKe2QFEFA0ABQFILBrYECAFQAJBaAQMr/DtsAAVRBANAAUASBwYWAIIV4BFBQBT+BqAAIKlRDCzYNlEQItgGRQFAEq0YPDh0YEGaUPAgAVAAkFSAQUPiRATEY8ABoAAgiQdDBocIGnrNS3TVRaQ6AAoAkhgwHMlrU0A8yWsABQBJLBg8KBzBv2F9PwsOj7HtASgASNLBYEHhcAChQaE/F3HqDh4Y4bVMWQAUzXAyDgbmvJbZpRIAueIS3s5T28FSF1rTS32w3rBhw/WfffbZ744dO/brpqamUeG/MZbwZ+YZ383aP0dwLLzWNR68oCCgGFpWilYM3kL/W/zkk0+Of+yxx9Zce+21D5R2wnXd/3799dd/efTRR7fu2bOnn1IEWjFc6rVnaL9AUTIOiG0r5SjCkWOB8vjjj49fv3796uuuu66Jt8MBKF999dW2jo6Obfv27etngOAywPA4IIlAAeuVYUDiBoMFSI4Hybp168Y/8cQTrWPHjl2gegABKF9++eWbPihv7t+/v18AiBsDKDQMmQIFAxhMQEytVI637dulBh+M1ePGjZtvekABKF988cVbASgHDhzop4BwFZWF1wKmCkumQMEAhlJ9IYMjxwNk7dq1g4rR0NAw39YBBqB8/vnng6C89957/RQUcYGSSeuFMw4G3cyqY6VyAkByfvKO9wvwFptgcEDZHgLFZcCiWqcAKDUKSDVapXhNqQEYDT4YrXGCwbNe7e3tIkUBUDIGSCWKbyyxUhVVDA1Q3vJBuQCgZBOQavVjMOHwwZhQbTA0ahRenUIEsGQaFJwxMGRDQnSs1PikgWEACihKDQACVspeMb9NQVFsg0LDkCpQcI2DYVp8l7VQJdFKmYKydu3abQcOHLjAUBEd6yWCpGYUBdcoGLb6MVKpGAaKolvIZ6ZGwRkCQzQkpCasVJVAqWnrhVMIBstG2bJSVenHSAIojCEsurZL1XqlahYWnHIwwErF0Orl1yj0WK84rBetHokEBacEjFQPCUkrKJIhLHFZr0SBghMMRs0NCakR65UpUHBKwMh0PwaAUj1QcMLBqOkhISmvUS4g/vB6F5XfqJXK5mFcYTB4MIgUo+aHhECNklxQcIXAACsFoKQSFBwDHCaKYW1IyF133TWis7NzyS233PKbXC73M0jjyoDy4Ycf/nnOnDk7GJaLZcGiDGGpaGcjtvz/sSYY1voxfDCuBjCqG5cuXTp3+PDhniIoJveimPSjxAoKtgSHip2KZUjI3Llzr+7q6gIwkgnKTsTulbdpvUwfKBQrIFhDNUSA6LZIgWKkDJS+vr6e2bNn70DmN22JIGE9CsIqJNgSHKpT/wMYYL2iWi/dub0iQYIN4VBVjahzSoGVyrb1KikLS2FM+lK0IcGGMImKb5X6QrkfAxSjJkH51rdemyjrxZumSHW2SC8OSLAlOHQ69nJI3pcBYGQEFF9RNlHWS9QzbzLJBFKsT6wAogOHloVC0I8BoAzvR3GR/N55V1NRkEBRjAGR3ZvhCODIIfZzNMLvARgQMkUR1SsyC0Y0Wrm0ARFZK1arFMs+5RD7QTNhK7UUwIDg1Cg8SFxJ7cJ76pbsjkYjQGStVI5IHdDwpyANLnffffcgGDfffPNvAQwIASg9HFBcicKwYEG6kJgCIirAWcsQIPPmzRvx8ssvL5s8eTKAAaEMSqFQ6J41a1YAygADjAEGKKIi3gogKurBUg7WM/Py995778iXXnpp2U033bQEwIAwBeXo0aMb77zzzndDUAwIIHEFgChBYgIIy1bRVmpofd9994188cUXm2+88cZlAAaEjbh8+fK3x48ff2XGjBlvh+BggcJr6bIOCE89WDXG4JNXFy5cOPKFF15YMWnSpGYAAyImUM5+/PHHXY2NjX+jAJFBImvZkgKiqx7hRx7nT548+atbb7319z4YP4efESLuuHLlytnt27e3Njc3/5sBiCuxWkIVUQXECa1ZRfkQHM8+++z1Tz/99CH42SAqDUl9ff1Mid1iQSIExFH4btEAxbIe86VLly6Cnwui0lFXV9ewa9euGSHbz5rbADHKBmE4mvshu9/D8TwPw88FUY1wXZd1VyrvzlalcBSUQ6dodwghAAhEVWJgYMBhwMEDRaXUYAKCNYr2sh0ABYGoVhRzj2evsAwG1t90ahCekqCwioCCQFQZEBEUvBv9rNUgSPBFgwsAApEABVGxVZFrEJlX4913DgFRbQVBgrxUrj90FYTXEjDsfVAQiGpFMfcwGv64DMQpCawoiAyYMo/n7yT8UgbxzTff/GP58uWLu7q61p0/f/4knJFIgIgu6FYtlg4ooBwGcerUqT2PPPLIgzfccMOftm7derqjo+PI6NGj13R3d7d///33J+AMRb54RwpH4wtVpAlAUYzTp0/vbmlpWThp0qQ/btmy5ZT/1pXwsnr16sI111zTunnz5rYffvjhOJwxJQVBknpDufawpSBlOwMWSxxnzpzZ1dbW1jRx4sQ/bNq0qQTGZcYyCMrKlSv7Ro0ateq1115rvXDhwjE4g9oXcmwCRhRARCoB6iEAY82aNfMnTJjwzMaNG8sUQ7Y8/PDDfSNHjlz1+uuvtwAoygoS2d04FqmFYMTZs2d729vbAzA2vPrqqzzFuCJ4HQbl8ooVKwJQVr7xxhurAJT4I29Z2iBCYDz33HM9XV1dZ5DaPdJE0PgRHj4RDN12HnroocP++ogPSuOCBQtaRowYMQ3Ouv16OA/n0ToYu3wwukNgqM7bhEJr1sR8rIkyvObm5r4AFN96NTY1NQEoCVUQAIMPhquoHiIF4d3NWfr8HChK8gABW1W0Us8//3xPZ2dnGAzW/LKiB8MgBUBo9XDR/28OKm0HihKAUvBBmQ6gRM9VUJBoNcamomKIHgyjMyUmktQhHho+GM8LQeKF/p4rggKKAharasX3WU0wRNZKBRCPY7U8xnZp7QIoAEhFImhS3blzZ4+fcEeQ2XP3iCYgvFGpHgMMGhCXUpYhUHp7e+fOmzdv/VVXXTUOflUAJA4wVOoM1YdRIkVAEGW1SHGbcEBxQvYrDJQ3f/78/f76X4cOHVpw2223tQAoAEi1FENVNVhFOkbDm3zDgBDGNpEoCl2juLNnz37HX+8EUAAQW4qhCgdRqDdkM/oRChQaDMz5m0xRhor40usQKE1FUMZCFgAglbZSoppDNLqTKECiA4rHW/ugBPPc7igqSiuAEh0QUmNgFCgQTIpvXdUgmudbBIkuKLlQMT/Uj0JZr1oBhVQDELBS5opBJD8iFvy4OPQZUUDxQgU/bcECUIJHDOw8ePBg0+23355Z65UHMCpipXiKQRSveJiCCzOUJSoodIvXoKrMmTOnZL2CGmVV1op5W4CQFIERh5WiH+9lAgYPCsRo0SICCxYVFFmNkhZQiI28zFuGg2CMkwpGEqwU0biwEE1QbFkv2nYN61Mp1ig7itYrUaAUc8/qxTofEYjEqohCP0Y1rRQxPN9YAIpN6xW2XWX1SbD2rVcSQSG2czRveUdItUGxOCREBYo4wVBRlbitF6s+ccOvkwQKR0FIlHOfN/yBrO1ARopvEtOVUgcUESwsUAijpcuRKErQ6rUgAYqi0glrFRBavrk7VOkaxPIgwqSDEQUU3X6UMByl93NI3OnoVlNR/NwjGhdsYhMQWSvBUAIVd7JWi2/CSbxq12Mqxbuu9XIYlosgtUGRtKJUpB8lBIjKYNCKt2JVBJAEWakkgKHb8qUDSul9h2G5ZIMiaUWpCCiO4yg9uTYuQMrUgrXEZbESNCSEJAwKk5YvE1BE96HIxnvR1isWUChAdAeIGgFCkHjYAw2MZ1tBUtyPkSRYMOe1ST+KiqIw+1Ditl5FQDwkvhFN6zc07Qehl6FktAVIxlqlqlWjmPSj6AyxHzZsRWC9rBTzuVyuLB+R2q3NkQBhtWDxkswrUhwJjN7e3u7ly5cfMVALAKNyzcOEY8F0rVd4mH2kG7d8QHSmVVICJq8BBBbYkKEdMwWkv7//qA9Gz7JlywochTC9g8/jQJ0lMCoBikxN6JlZhqlKaQjL+++/3zR9+nQjUIqAuIoXSaWm33wE7+qh8ilptGuQAIzdu3d3L1mypFD8XBYIYKWSY71k9ktUoxCqqZhuInZmzZoVKMq7H3zwQVNjY2OrDij5fF42cyVSBcO0BiGCGiQ4Qa6vIJ7KB128ePHI3r17Ny5evLhAq5DikuQhIVkGxaRGKXt/5syZASjvfPTRR03Tpk1rq6+vH6cJiO4US5FqEFZLB2EoCf7uu+/+09DQwP2wH3/8sbBv375XFi1aVOAU+iwAdCdDADCSB4onsF1cS3bHHXf83V+/XSgUHpg6deqauro6bnJ9+umnp5DaBOHKsMie88Gamyl8YOGhB6Xt3KVLl/7pEz8l/IE//fRT38GDBzvvv//+AmNHWUAQsFJVD6zwWpQrvLzBEkjC/27YI/5OnDixcMqUKR0+KOPDO3L+/PnNo0ePfkbSqCOaeomZByqPqBIdsMMAxGlraxvx1FNPLR4zZswvBwYGLvb19W255557+hhXJiKAhFhWjCT2fAMofGDCa/o7ySeffLJo4sSJvwg6ps+dO7d38uTJf1WoWXmNN9xcUAUEKQDCuyKIntNAGMlvohYARnpB4UHCWhDnAiurUWV2i5sTNgYr0s2oDqc+USn6daFI+5CQLNQosg5HVp3CgyOKAzHKAZVm3vCad8I8aucd6gQgyRWACGBBjIMEMGoHFBoWj+E8MKdhAGleYFXyR9liIcR/aqhILkXSiDQhQVB8p956YUXLjhWUQ+ciq9LMGxkQ0YEhzYOTAYIiEA9gpL9GQYo5hDm5YGrHiUkzr8rVQHaAsgMTHSSAUfug6OQT73NEkKjkkxVAVCFBCnCoAIIADABFYtN4uaRycSU6eYMjHqhszfsOmQ8EMAAUGRwySCLDoQMIkiS+Khi6oAAY2QQljlwiJvmTs3yAOmHSmQdg1CYoUXNJlk/E5o7aBAVrJnkqZm2EqBooOGLekEoBogsFAiggKqQqVvMJx3RgNmQSAkCpek7hBBwcQAFhM6cgnyAgICAgICAgICAgICAgICAgMhb/E2AAzOy1BLAsHi8AAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0; }

.pano-arrows > div:nth-child(2) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; }

@-webkit-keyframes pano-arrow {
  0% {
    opacity: 0;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1, 0, 0, 0, 0, 1) translateY(0) scaleY(1) scaleX(1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1, 0, 0, 0, 0, 1) translateY(0) scaleY(1) scaleX(1); }
  50% {
    opacity: 1; }
  75% {
    opacity: 0; }
  100% {
    opacity: 0;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1, 0, 0, 0, 0, 1) translateY(-75%) scaleY(0.5) scaleX(0.7);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1, 0, 0, 0, 0, 1) translateY(-75%) scaleY(0.5) scaleX(0.7); } }

@keyframes pano-arrow {
  0% {
    opacity: 0;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1, 0, 0, 0, 0, 1) translateY(0) scaleY(1) scaleX(1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1, 0, 0, 0, 0, 1) translateY(0) scaleY(1) scaleX(1); }
  50% {
    opacity: 1; }
  75% {
    opacity: 0; }
  100% {
    opacity: 0;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1, 0, 0, 0, 0, 1) translateY(-75%) scaleY(0.5) scaleX(0.7);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1, 0, 0, 0, 0, 1) translateY(-75%) scaleY(0.5) scaleX(0.7); } }

.pano-hotspot {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
  border: 2px solid #fff;
  display: block;
  font-size: 18px;
  padding: 10px; }
  .pano-hotspot.pnlm-tooltip span {
    font-family: "Hind", sans-serif;
    font-size: 14px;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    width: auto;
    display: block;
    position: absolute; }
    .pano-hotspot.pnlm-tooltip span:after {
      display: none; }
  .pano-hotspot.animated {
    height: 50px;
    width: 50px;
    padding: 0;
    border: none;
    background: none !important; }
  .pano-hotspot:hover {
    color: #000;
    background-color: #fff; }

#left-menu {
  height: 25vh;
  max-height: 40vh;
  font-size: 0.9em;
  margin-bottom: 20px; }
  #left-menu .subSubMenus, #left-menu .subMenus, #left-menu .menus {
    position: absolute;
    width: 250px;
    overflow-y: auto;
    height: inherit; }
    #left-menu .subSubMenus .mainLink i, #left-menu .subMenus .mainLink i, #left-menu .menus .mainLink i {
      float: right; }
    #left-menu .subSubMenus .mainLink.open, #left-menu .subMenus .mainLink.open, #left-menu .menus .mainLink.open {
      color: var(--color-secondary) !important; }
      #left-menu .subSubMenus .mainLink.open > i, #left-menu .subMenus .mainLink.open > i, #left-menu .menus .mainLink.open > i {
        transform: rotate(90deg); }
  #left-menu .subSubMenus {
    right: 450px;
    width: 200px;
    background: rgba(0, 0, 0, 0.6); }
  #left-menu .subMenus {
    right: 250px;
    width: 200px;
    background: rgba(0, 0, 0, 0.6); }
  #left-menu .menus {
    right: 0; }

.menu-search-container {
  display: flex;
  margin-left: 25px;
  margin-bottom: 30px;
  padding-right: 40px;
  border-radius: 7px;
  height: 40px;
  width: 250px;
  position: relative; }
  .menu-search-container input {
    height: 40px;
    border-radius: 7px 0 0 7px;
    background: rgba(248, 248, 248, 0.5);
    color: white;
    margin-top: 0;
    padding-right: 20px;
    font-family: "Hind", sans-serif !important; }
    .menu-search-container input::placeholder {
      color: #292929;
      font-size: 16px; }
  .menu-search-container .fa-times {
    position: absolute;
    left: 158px;
    top: 13px;
    color: rgba(0, 0, 0, 0.6); }
    .menu-search-container .fa-times:hover {
      color: black; }
  .menu-search-container .input-group-text {
    background: var(--color-secondary);
    color: #fff;
    border: 0;
    border-radius: 0 7px 7px 0;
    width: 40px;
    justify-content: center;
    height: 40px; }
  .menu-search-container.rtl input {
    border-radius: 0 7px 7px 0;
    padding-left: 20px;
    padding-right: 0; }
  .menu-search-container.rtl .input-group-text {
    border-radius: 7px 0 0 7px; }
  .menu-search-container.rtl .fa-times {
    left: 42px; }

.horizontal-modile-menu-view.open {
  top: 0;
  padding-top: 3vh; }
  .horizontal-modile-menu-view.open #book {
    margin-bottom: 3vh; }
  .horizontal-modile-menu-view.open .menu-search-container {
    margin-bottom: 3vh; }
  .horizontal-modile-menu-view.open h2 {
    margin-bottom: 3vh; }
  .horizontal-modile-menu-view.open .appointmentButton {
    margin-bottom: 3vh; }
  .horizontal-modile-menu-view.open .contact {
    margin: 3vh 0; }
    .horizontal-modile-menu-view.open .contact span {
      margin-bottom: 3vh; }

#reel-categories {
  position: absolute;
  bottom: 15px;
  left: calc(100% + 10px);
  overflow-x: auto;
  width: calc(100vw - calc(100% + 30px)); }
  #reel-categories::-webkit-scrollbar-track {
    background: var(--color-primary); }
  #reel-categories::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--color-secondary); }
  #reel-categories::-webkit-scrollbar {
    width: 4px;
    height: var(--scroll-bar-size);
    background: var(--color-primary); }
  @media screen and (max-width: 768px) {
    #reel-categories {
      left: 0;
      width: calc(100vw); } }
  #reel-categories span {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    color: #fff;
    padding: 5px 25px;
    font-size: 14px;
    margin: 0 5px;
    display: inline-block;
    white-space: nowrap; }
    #reel-categories span:hover {
      background: var(--color-secondary); }
      @media screen and (max-width: 768px) {
        #reel-categories span:hover {
          background: rgba(0, 0, 0, 0.3); } }
    #reel-categories span.active {
      background: var(--color-secondary) !important; }

#reel-bar {
  height: 150px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow-x: scroll;
  z-index: 1; }
  #reel-bar::-webkit-scrollbar-track {
    background: var(--color-primary); }
  #reel-bar::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--color-secondary); }
  #reel-bar::-webkit-scrollbar {
    width: 4px;
    height: var(--scroll-bar-size);
    background: var(--color-primary); }
  #reel-bar.white {
    background: rgba(255, 255, 255, 0.75); }
    #reel-bar.white::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.75); }
    #reel-bar.white::-webkit-scrollbar-thumb {
      border-radius: 6px;
      background: #319FD8; }
    #reel-bar.white::-webkit-scrollbar {
      width: 4px;
      height: var(--scroll-bar-size);
      background: var(--color-primary); }
  #reel-bar .scroll-div {
    width: auto;
    height: 100%; }
  #reel-bar .preview {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 106px;
    width: 160px;
    margin: 0 5px;
    margin-top: 6px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden; }
    #reel-bar .preview.active {
      border: 2px solid var(--color-secondary); }
    #reel-bar .preview svg,
    #reel-bar .preview i,
    #reel-bar .preview img {
      color: #fff;
      height: 16px;
      position: absolute;
      left: 7px;
      top: 7px;
      filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5)); }
    #reel-bar .preview span {
      color: #fff;
      position: absolute;
      bottom: 2px;
      left: 0;
      font-size: 14px;
      text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
      width: 100%;
      text-align: center; }

#bottom-bar {
  transition: opacity 0.33s ease;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  transition: bottom 0.3s ease; }
  #bottom-bar .data-balloon:before,
  #bottom-bar .data-balloon:after {
    font-family: "Hind", "Helvetica", "Arial", sans-serif !important; }
    @media screen and (max-width: 768px) {
      #bottom-bar .data-balloon:before,
      #bottom-bar .data-balloon:after {
        display: none !important;
        opacity: 0 !important; } }
  #bottom-bar.open {
    bottom: 150px; }
    @media screen and (max-width: 768px) {
      #bottom-bar.open .actions-bar {
        bottom: 0; }
        #bottom-bar.open .actions-bar .main-icons.categoriesOn {
          bottom: 50px;
          position: absolute; }
      #bottom-bar.open .more-bar {
        bottom: 50px; }
        #bottom-bar.open .more-bar.categoriesOn {
          bottom: 90px; }
      #bottom-bar.open .action-icons {
        bottom: 60px; } }
  #bottom-bar .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    min-width: 30px;
    width: 30px;
    height: 30px;
    padding: 0;
    color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    position: relative; }
    @media screen and (max-width: 768px) {
      #bottom-bar .btn {
        width: 35px;
        height: 35px; } }
    #bottom-bar .btn.active {
      background: var(--color-secondary); }
      #bottom-bar .btn.active.reel {
        transform: rotate(180deg); }
    #bottom-bar .btn svg,
    #bottom-bar .btn i {
      margin-top: -1px; }
    #bottom-bar .btn:not(:disabled):hover {
      background: var(--color-secondary); }
    #bottom-bar .btn:focus {
      outline: 0;
      box-shadow: none; }
    #bottom-bar .btn .panorama-icon {
      width: 16px;
      height: 16px; }
  #bottom-bar .more-bar,
  #bottom-bar .actions-bar {
    display: flex;
    position: absolute;
    left: 10px;
    padding: 10px 5px;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 2; }
    @media screen and (max-width: 768px) {
      #bottom-bar .more-bar,
      #bottom-bar .actions-bar {
        left: 0; } }
    #bottom-bar .more-bar.white,
    #bottom-bar .actions-bar.white {
      background: rgba(255, 255, 255, 0.75); }
    #bottom-bar .more-bar.active,
    #bottom-bar .actions-bar.active {
      overflow: visible; }
      #bottom-bar .more-bar.active .actions-btn,
      #bottom-bar .actions-bar.active .actions-btn {
        background-color: var(--color-secondary); }
  #bottom-bar .more-bar {
    bottom: 50px;
    overflow: visible; }
    @media screen and (max-width: 768px) {
      #bottom-bar .more-bar {
        bottom: 80px; } }
    #bottom-bar .more-bar .more-btn {
      transition: all 0.3s ease; }
      @media screen and (max-width: 768px) {
        #bottom-bar .more-bar .more-btn {
          width: 35px;
          height: 35px;
          background: rgba(0, 0, 0, 0.3); } }
    #bottom-bar .more-bar .more-btn.active {
      transform: rotate(90deg); }
  #bottom-bar .actions-bar {
    bottom: 0;
    width: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: rgba(0, 0, 0, 0.3); }
    #bottom-bar .actions-bar .main-icons {
      display: flex; }
    @media screen and (max-width: 768px) {
      #bottom-bar .actions-bar {
        justify-content: left;
        width: 100%;
        bottom: 30px;
        background: none; } }
  #bottom-bar .floors-modal, #bottom-bar .languages-modal {
    position: absolute;
    bottom: 45px;
    left: 0;
    min-width: 100px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 15px;
    z-index: 3; }
    #bottom-bar .floors-modal ul, #bottom-bar .languages-modal ul {
      margin: 0; }
      #bottom-bar .floors-modal ul li, #bottom-bar .languages-modal ul li {
        color: white;
        cursor: pointer;
        padding: 5px 0; }
        #bottom-bar .floors-modal ul li:hover, #bottom-bar .languages-modal ul li:hover {
          opacity: 0.7; }
  #bottom-bar .languages-modal ul li a {
    color: white; }
  #bottom-bar .languages-modal ul li.active a {
    color: var(--color-secondary); }
  #bottom-bar .youtube > .fa-times {
    position: absolute;
    right: -10px;
    top: -10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    color: #fff;
    padding: 8px;
    font-size: 14px;
    line-height: 10px;
    z-index: 2; }
    #bottom-bar .youtube > .fa-times:hover {
      background: var(--color-secondary) !important; }

.pdf-list {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 115px;
  height: auto;
  bottom: 0;
  left: 60px;
  text-align: left;
  border-radius: 6px;
  z-index: 3; }
  .pdf-list.wide {
    width: 200px; }

.pdf-list a {
  color: #fff !important;
  width: 100%;
  font-size: 12px;
  display: block;
  padding: 0 10px;
  font-weight: normal;
  text-shadow: none;
  margin: 15px 0;
  cursor: pointer; }

.pdf-list a:hover {
  color: var(--color-secondary) !important; }

.action-icons {
  display: flex;
  position: absolute;
  z-index: 10;
  bottom: 60px;
  padding: 0 5px;
  z-index: 1; }
  @media screen and (max-width: 768px) {
    .action-icons {
      bottom: 90px; } }
  .action-icons.right {
    right: 10px; }
  .action-icons.left {
    left: 10px; }
    @media screen and (max-width: 768px) {
      .action-icons.left {
        left: 0; } }
  .action-icons.more {
    bottom: 50px;
    left: 0;
    visibility: hidden; }
    .action-icons.more.active {
      visibility: visible; }
    .action-icons.more .more-menu {
      position: absolute;
      bottom: 0; }
      .action-icons.more .more-menu .action-icon {
        margin: 5px; }
  .action-icons .action-icon {
    position: relative;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 5px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .action-icons .action-icon {
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.3); } }
    .action-icons .action-icon:hover, .action-icons .action-icon.active {
      background: var(--color-secondary); }
    .action-icons .action-icon svg,
    .action-icons .action-icon i {
      color: #fff;
      vertical-align: middle; }
    .action-icons .action-icon img {
      width: 18px; }

#bottom-bar-help {
  display: flex;
  align-items: center;
  position: fixed;
  overflow: hidden;
  bottom: 0;
  width: auto;
  right: 0;
  border-radius: 0;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  height: 30px;
  z-index: 1;
  text-align: center;
  line-height: 30px;
  vertical-align: middle;
  padding: 0 10px; }
  @media screen and (max-width: 768px) {
    #bottom-bar-help {
      width: 100%; } }
  #bottom-bar-help button {
    display: inline-block;
    color: #fff;
    font-size: 10px;
    margin: 0 8px;
    vertical-align: middle;
    cursor: pointer; }
    #bottom-bar-help button:hover {
      color: var(--color-secondary); }
  #bottom-bar-help img {
    vertical-align: middle;
    height: 22px;
    margin: 0 8px;
    display: inline-block; }
    #bottom-bar-help img.mp-logo {
      height: 12px; }
  #bottom-bar-help .btn {
    width: auto;
    border-radius: 0;
    padding: 0 5px;
    background: none; }
    #bottom-bar-help .btn:hover {
      background: none;
      color: #fff;
      opacity: 0.7; }
  #bottom-bar-help .preview {
    background-size: contain; }

.horizontal-tabs .tab-section-title {
  height: 46px;
  background-color: #f4f4f4;
  color: var(--color-primary);
  cursor: pointer;
  width: 100%;
  line-height: 45px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s;
  margin-bottom: 15px; }
  .horizontal-tabs .tab-section-title .tab-title i {
    margin-right: 10px;
    color: #319FD8; }
  .horizontal-tabs .tab-section-title.active {
    background-color: #319FD8;
    color: #fff; }
    .horizontal-tabs .tab-section-title.active i {
      color: #ffffff; }

.horizontal-tabs .tab-section-content {
  padding: 0 20px; }
  .horizontal-tabs .tab-section-content.hide {
    display: none; }

.fullscreen {
  height: 100%;
  width: 100%;
  background: #f8f8f8; }

@-webkit-keyframes expand {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes expand {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.buttonBg.expand {
  animation: expand 2s infinite; }

.base-tour {
  font-family: "Hind", "Helvetica", "Arial", sans-serif;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background: #f8f8f8;
  position: relative; }
  .base-tour > div,
  .base-tour > div > div {
    height: 100%;
    width: 100%;
    background: #f8f8f8; }
  .base-tour .svg-inline--fa {
    height: 15px;
    width: auto !important; }
  .base-tour i {
    font-size: 14px;
    height: auto !important;
    width: auto !important; }
  .base-tour .legal-note {
    width: 100%;
    text-align: center;
    padding: 0 120px;
    font-size: 10px;
    color: #fff;
    position: fixed;
    z-index: 3;
    line-height: 1.4;
    top: 10px; }
    .base-tour .legal-note.rtl {
      direction: rtl; }
    @media screen and (max-width: 768px) and (orientation: portrait) {
      .base-tour .legal-note {
        width: 100%;
        text-align: left;
        padding: 0 20px 0 20px;
        bottom: 120px;
        top: auto; }
        .base-tour .legal-note.rtl {
          text-align: right; } }
  .base-tour .tourLogin {
    background: #000;
    overflow: hidden;
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    height: 100vh; }
    .base-tour .tourLogin img {
      width: 200px;
      left: auto;
      top: auto;
      position: relative;
      display: block;
      max-height: 200px;
      margin: 0 auto 20px; }
    .base-tour .tourLogin form {
      position: absolute;
      right: 0;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 300px;
      height: 300px; }
    .base-tour .tourLogin input {
      width: 100%;
      height: 50px;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      margin-bottom: 20px; }
    .base-tour .tourLogin button {
      width: 100%;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      background: var(--color-primary); }
  .base-tour .buttonsBg {
    position: absolute;
    right: 0;
    margin-top: 80px;
    transition: all 0.3s ease;
    z-index: 10; }
    @media screen and (max-width: 768px) {
      .base-tour .buttonsBg {
        margin-top: 60px; } }
    @media screen and (orientation: landscape) and (max-width: 900px) {
      .base-tour .buttonsBg {
        margin-top: 50px; } }
    .base-tour .buttonsBg.open {
      right: 250px; }
  .base-tour .buttonBg {
    position: relative;
    padding: 13px;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    top: 0;
    right: 0;
    display: block;
    margin-bottom: 10px; }
    .base-tour .buttonBg .hamburger:focus {
      outline: none; }
    .base-tour .buttonBg svg,
    .base-tour .buttonBg i {
      height: 20px;
      color: #fff;
      vertical-align: middle;
      margin: 2px 10px;
      font-size: 18px;
      transition: all 0.3s ease; }
    .base-tour .buttonBg.active {
      background: var(--color-secondary); }
      .base-tour .buttonBg.active:hover {
        background: #fff; }
      .base-tour .buttonBg.active svg,
      .base-tour .buttonBg.active i {
        color: #fff; }
    .base-tour .buttonBg:hover svg,
    .base-tour .buttonBg:hover i {
      color: var(--color-secondary); }
    .base-tour .buttonBg p {
      color: #fff;
      font-size: 1em;
      margin: 0 15px; }
      .base-tour .buttonBg p:hover {
        color: var(--color-primary); }
    .base-tour .buttonBg a {
      color: #fff;
      font-size: 1.2em;
      margin: 0 15px; }
      .base-tour .buttonBg a:hover {
        color: var(--color-secondary); }
  .base-tour.preview {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 100px);
    margin-top: 20px; }
    .base-tour.preview .inner {
      position: relative;
      width: 100%;
      height: 100%; }
    .base-tour.preview nav {
      height: 100%;
      position: absolute; }
  .base-tour .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 99;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    transition: all 0.3s ease; }
  .base-tour .overlay.open {
    display: block; }
  .base-tour nav {
    position: absolute;
    right: -250px;
    width: 250px;
    top: 20px;
    z-index: 110;
    transition: all 0.3s ease;
    padding-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px; }
    .base-tour nav h2 {
      color: #fff;
      font-size: 1.1em;
      font-weight: normal;
      font-style: normal;
      margin-left: 25px;
      margin-bottom: 30px;
      text-transform: uppercase; }
    .base-tour nav.rtl {
      text-align: right;
      direction: rtl; }
      .base-tour nav.rtl h2 {
        margin-right: 25px;
        margin-left: 0; }
      .base-tour nav.rtl #book i,
      .base-tour nav.rtl .appointmentButton i,
      .base-tour nav.rtl .contactButton i {
        margin-left: 10px;
        margin-right: 0; }
    .base-tour nav #book,
    .base-tour nav .appointmentButton,
    .base-tour nav .contactButton {
      width: 200px;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      text-decoration: none;
      margin-bottom: 20px;
      border-radius: 6px;
      padding: 10px 0;
      color: #fff;
      font-size: 0.9em;
      display: block;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer; }
      .base-tour nav #book:hover,
      .base-tour nav .appointmentButton:hover,
      .base-tour nav .contactButton:hover {
        background-color: var(--color-secondary) !important; }
      .base-tour nav #book i,
      .base-tour nav .appointmentButton i,
      .base-tour nav .contactButton i {
        margin-right: 10px; }
    .base-tour nav .appointmentButton {
      background-color: var(--color-secondary); }
    .base-tour nav .contactButton {
      background-color: var(--color-primary); }
    .base-tour nav.open {
      right: 0; }
    .base-tour nav li {
      display: block;
      font-size: 1em;
      width: 100%;
      padding: 8px 23px;
      color: #fff;
      border-left: 2px solid transparent;
      position: relative;
      margin: 0 auto;
      transition: color 0.3s ease;
      line-height: 1.4;
      cursor: pointer; }
      .base-tour nav li:hover {
        color: var(--color-secondary) !important; }
      .base-tour nav li a {
        display: block;
        height: 100%; }
    .base-tour nav .sublinks,
    .base-tour nav .sub_sublinks {
      margin-left: 10px; }
      .base-tour nav .sublinks li,
      .base-tour nav .sub_sublinks li {
        color: #ccc; }
        .base-tour nav .sublinks li:hover,
        .base-tour nav .sub_sublinks li:hover {
          color: #fff !important; }
    .base-tour nav #menu {
      max-height: 40vh;
      overflow-y: auto;
      font-size: 0.9em;
      margin-bottom: 20px; }
      .base-tour nav #menu::-webkit-scrollbar-track {
        background: var(--color-primary); }
      .base-tour nav #menu::-webkit-scrollbar-thumb {
        border-radius: 2px;
        background: var(--color-secondary); }
      .base-tour nav #menu::-webkit-scrollbar {
        width: var(--scroll-bar-size);
        background: var(--color-primary); }
      .base-tour nav #menu .fa-caret-down {
        color: #fff;
        float: right;
        position: relative;
        top: 2px; }
      .base-tour nav #menu.rtl {
        text-align: right;
        direction: rtl; }
        .base-tour nav #menu.rtl .fa-caret-down {
          float: left; }
      .base-tour nav #menu .mainLink {
        user-select: cursor; }
        .base-tour nav #menu .mainLink ul {
          display: none;
          margin-top: 8px;
          padding-bottom: 0; }
        .base-tour nav #menu .mainLink.open {
          background: var(--color-secondary);
          color: #fff !important; }
          .base-tour nav #menu .mainLink.open > svg,
          .base-tour nav #menu .mainLink.open > i {
            transform: rotate(180deg); }
      .base-tour nav #menu .closed {
        display: none; }
    .base-tour nav .contact {
      text-align: left;
      padding: 0 25px;
      position: relative;
      width: 100%;
      margin: 20px 0; }
      .base-tour nav .contact.rtl span {
        text-align: right; }
      .base-tour nav .contact.rtl span i {
        margin-left: 5px;
        margin-right: 0; }
      .base-tour nav .contact.rtl img {
        margin-right: 10px;
        margin-left: 0; }
      .base-tour nav .contact span {
        display: block;
        color: #fff;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
        font-size: 12px;
        margin-bottom: 20px;
        cursor: pointer;
        transition: all 0.3s ease; }
        .base-tour nav .contact span:hover,
        .base-tour nav .contact span:hover i {
          color: var(--color-secondary); }
        .base-tour nav .contact span i {
          margin-right: 5px;
          transition: all 0.3s ease; }
      .base-tour nav .contact h5 {
        color: #fff;
        text-align: center;
        display: block;
        font-size: 12px; }
        @media screen and (max-width: 768px) {
          .base-tour nav .contact h5 {
            display: none; } }
      .base-tour nav .contact img {
        height: 30px;
        margin-left: 10px;
        vertical-align: middle; }
  .base-tour .inner {
    height: 100vh;
    width: 100vw;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s ease;
    overflow: hidden; }
  .base-tour .logo {
    position: absolute;
    z-index: 4;
    left: 20px;
    top: 20px;
    width: 100px; }
    .base-tour .logo.width {
      width: 200px; }
    @media screen and (max-width: 768px) {
      .base-tour .logo {
        width: 70px;
        top: 20px; }
        .base-tour .logo.width {
          width: 140px; } }
  .base-tour .lock-layer {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }
  .base-tour iframe {
    height: calc(100vh + 60px);
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transition: all 0.25s ease; }
  .base-tour .showcase.mesurements-mobile-not-fullscreen {
    height: 100vh; }
  .base-tour header .fa-phone,
  .base-tour header .fa-envelope {
    color: #000;
    font-size: 15px;
    position: relative; }
  .base-tour header .fa-clock,
  .base-tour header .fa-envelope {
    color: #000;
    font-size: 15px;
    position: relative; }
  .base-tour header .fa-envelope {
    margin-left: 15px; }
  .base-tour .youtube {
    height: 200px;
    width: 350px;
    position: absolute;
    bottom: 0;
    left: 60px;
    z-index: 10000; }
  @media screen and (max-width: 768px) {
    .base-tour #currentRoom {
      display: none; } }
  .base-tour .youtube .fa-times {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    padding: 8px;
    font-size: 14px;
    line-height: 10px;
    z-index: 2; }
  @media screen and (max-width: 768px) {
    .base-tour .youtube {
      width: 250px;
      height: 150px;
      right: 10px; } }
  .base-tour #ytplayer {
    height: 100%;
    width: 100%; }
  .base-tour .popup {
    background: #fff;
    height: 90%;
    width: 90%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 8px; }
    .base-tour .popup .close {
      position: absolute;
      float: none;
      z-index: 3;
      top: -15px;
      right: -15px;
      padding: 0;
      opacity: 1;
      font-size: 14px;
      cursor: pointer;
      background: #fff;
      border-radius: 50%;
      height: 30px;
      width: 30px;
      line-height: 38px;
      text-align: center; }
      .base-tour .popup .close:hover svg,
      .base-tour .popup .close:hover i {
        color: var(--color-secondary); }
      .base-tour .popup .close svg,
      .base-tour .popup .close i {
        color: #aaa;
        font-size: 20px;
        transition: all 0.3s ease; }
    .base-tour .popup h2 {
      font-size: 1.4em;
      padding: 20px 0;
      text-align: center; }
    .base-tour .popup .square-button {
      margin-top: 20px;
      text-align: center; }
    .base-tour .popup input {
      border-bottom: 1px solid #ccc; }
    .base-tour .popup iframe {
      height: 100% !important;
      width: 100% !important;
      position: relative;
      top: 0;
      left: 0;
      border-radius: 8px; }
    .base-tour .popup.rtl {
      text-align: right; }
      .base-tour .popup.rtl input {
        text-align: right; }
  .base-tour #external-popup {
    z-index: 111; }
  .base-tour #contact-pop {
    max-height: 550px;
    max-width: 600px; }
    .base-tour #contact-pop .contact-popup-content {
      overflow-y: auto;
      height: 100%;
      padding: 30px; }
    @media screen and (max-width: 768px) {
      .base-tour #contact-pop {
        max-height: 100vh;
        height: 92%; } }
    @media screen and (max-width: 768px) and (orientation: landscape) {
      .base-tour #contact-pop {
        overflow-y: auto;
        overflow-x: hidden; }
        .base-tour #contact-pop .close {
          top: 0;
          right: 0; } }
    .base-tour #contact-pop .appointment-block label {
      font-size: 12px; }
    .base-tour #contact-pop h2 {
      text-align: left;
      font-weight: normal;
      font-style: normal;
      padding: 0;
      font-size: 18px;
      margin-top: -10px;
      margin-bottom: 30px; }
    .base-tour #contact-pop .input-c {
      width: 49%;
      margin-bottom: 10px; }
      .base-tour #contact-pop .input-c.full {
        width: 100%; }
      .base-tour #contact-pop .input-c label {
        font-weight: normal; }
      .base-tour #contact-pop .input-c input,
      .base-tour #contact-pop .input-c textarea {
        border: 1px solid #eee; }
      .base-tour #contact-pop .input-c textarea {
        height: 100px; }
    .base-tour #contact-pop .square-button {
      background: var(--color-secondary);
      color: #fff;
      width: 120px;
      float: right;
      margin-top: 0; }
    .base-tour #contact-pop .agent-cards {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px; }
      .base-tour #contact-pop .agent-cards .agent-card {
        flex-basis: 50%; }
        @media screen and (max-width: 768px) {
          .base-tour #contact-pop .agent-cards .agent-card {
            width: 100% !important;
            flex-basis: 100%; } }
        .base-tour #contact-pop .agent-cards .agent-card:first-child {
          margin-left: 0; }
        .base-tour #contact-pop .agent-cards .agent-card .img {
          background-size: cover;
          background-repeat: no-repeat;
          height: 60px;
          width: 60px;
          border-radius: 50%;
          background-position: center;
          display: inline-block;
          vertical-align: middle; }
        .base-tour #contact-pop .agent-cards .agent-card .text {
          display: inline-block;
          margin-left: 10px;
          vertical-align: middle;
          width: calc(100% - 70px); }
          .base-tour #contact-pop .agent-cards .agent-card .text h4 {
            font-size: 16px;
            margin-bottom: 2px;
            text-overflow: ellipsis;
            overflow: hidden;
            width: 100%;
            white-space: nowrap; }
          .base-tour #contact-pop .agent-cards .agent-card .text a {
            color: var(--color-secondary); }
  .base-tour #share-pop {
    height: 200px;
    width: 300px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: auto;
    right: 120px;
    top: auto;
    bottom: 100px;
    padding: 20px; }
    @media screen and (max-width: 768px) {
      .base-tour #share-pop {
        background: #fff;
        bottom: 0;
        right: 0;
        width: 100%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        height: 260px;
        text-align: center; } }
    .base-tour #share-pop h3 {
      color: #fff;
      margin-bottom: 25px;
      font-size: 18px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop h3 {
          color: #000;
          text-align: left; } }
    .base-tour #share-pop .fa-times {
      color: #fff;
      font-size: 15px; }
    .base-tour #share-pop .close {
      background: none !important;
      margin: 0;
      height: auto;
      width: auto;
      line-height: 1;
      top: 10px;
      right: 15px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .close svg,
        .base-tour #share-pop .close i {
          color: #000; } }
    .base-tour #share-pop .switchLabel {
      color: #fff;
      margin-top: 30px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .switchLabel {
          position: relative;
          width: 100%;
          color: #000;
          text-align: left; } }
      .base-tour #share-pop .switchLabel > div {
        position: relative;
        top: 5px; }
        @media screen and (max-width: 768px) {
          .base-tour #share-pop .switchLabel > div {
            position: absolute !important;
            right: 0 !important; } }
    .base-tour #share-pop .primary-btn {
      border-radius: 0;
      background: var(--color-secondary) !important;
      color: #fff;
      height: 45px;
      width: 120px;
      float: right;
      margin-top: 20px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .primary-btn {
          width: 100%;
          margin: 0;
          margin-top: 20px; } }
    .base-tour #share-pop button {
      background: #e5e5e5;
      border-radius: 50%;
      padding: 8px 10px;
      margin: 0 5px;
      height: 40px;
      width: 40px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop button {
          margin: 0 10px; } }
      .base-tour #share-pop button:hover, .base-tour #share-pop button.active {
        background: var(--color-secondary); }
        .base-tour #share-pop button:hover svg,
        .base-tour #share-pop button:hover i, .base-tour #share-pop button.active svg,
        .base-tour #share-pop button.active i {
          color: #fff; }
      .base-tour #share-pop button svg,
      .base-tour #share-pop button i {
        height: 18px;
        font-size: 16px;
        vertical-align: middle; }
  .base-tour .adPop {
    height: 85%;
    width: 95%;
    max-width: 700px;
    max-height: 550px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000001;
    right: 0;
    bottom: 0;
    margin: auto; }
    @media screen and (max-width: 768px) {
      .base-tour .adPop {
        width: 320px;
        height: 450px; } }
    .base-tour .adPop .img {
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
      @media screen and (max-width: 768px) {
        .base-tour .adPop .img {
          height: 220px; } }
    .base-tour .adPop form {
      width: 100%;
      height: 120px;
      padding-top: 10px;
      background: #fff;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0; }
      @media screen and (max-width: 768px) {
        .base-tour .adPop form {
          height: 230px;
          padding: 10px 20px; } }
      .base-tour .adPop form.rtl input {
        text-align: right; }
      .base-tour .adPop form .square-button {
        width: calc(90% + 40px);
        clear: both;
        margin-top: 15px;
        background: var(--color-secondary);
        color: #fff; }
        .base-tour .adPop form .square-button:hover {
          background: var(--color-primary); }
      .base-tour .adPop form input {
        width: 30%;
        clear: none;
        display: inline-block;
        margin: 0 10px; }
        @media screen and (max-width: 768px) {
          .base-tour .adPop form input {
            width: 100%;
            margin: 5px 0; } }
  .base-tour form input,
  .base-tour form textarea {
    height: 40px;
    clear: both;
    width: 80%;
    position: relative;
    margin: 10px auto;
    right: 0;
    left: 0;
    padding: 5px;
    text-indent: 6px;
    font-size: 0.9em;
    background: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    display: block;
    font-family: "Open Sans Hebrew", sans-serif; }
  .base-tour form textarea {
    height: 80px; }
  .base-tour .mapPop iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  .base-tour form button {
    background: #58b504;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 4px;
    float: right;
    margin-right: 10%;
    margin-top: 10px;
    padding: 10px 40px;
    font-size: 0.9em; }
  .base-tour form p {
    line-height: 450px;
    text-align: center;
    font-size: 1.4em;
    position: absolute;
    top: 0;
    width: 100%; }
  .base-tour form input.error {
    border: 1px solid red; }
  .base-tour .fa-map-marked {
    right: 10px;
    bottom: 90px;
    left: auto; }
    .base-tour .fa-map-marked.active {
      color: var(--color-secondary); }
  .base-tour .autocadPop {
    height: 100px;
    text-align: center; }
  .base-tour .tagPop {
    height: 300px;
    width: 450px;
    max-height: 100vh;
    max-width: 100vw; }
    .base-tour .tagPop .fa-compress,
    .base-tour .tagPop .fa-expand {
      bottom: 10px;
      right: 10px; }
    .base-tour .tagPop iframe {
      height: 100%;
      width: 100%;
      background: #f8f8f8; }
  .base-tour .sharePop {
    height: 150px;
    text-align: center;
    padding: 20px 0;
    width: 320px; }
    @media screen and (max-width: 768px) {
      .base-tour .sharePop {
        width: 360px; } }
    .base-tour .sharePop .icon {
      color: #fff;
      background: var(--color-secondary);
      cursor: pointer;
      border-radius: 50%;
      padding: 10px;
      margin: 0 10px;
      display: inline-block;
      font-size: 1.7em; }
      .base-tour .sharePop .icon:hover {
        color: var(--color-primary); }
    .base-tour .sharePop label {
      display: block;
      margin-top: 20px; }
      .base-tour .sharePop label > div {
        top: 10px;
        margin-left: 10px;
        position: relative; }
  .base-tour .autocadPop h4 {
    padding: 10px 0;
    font-size: 1.1em; }
  .base-tour .autocadPop a {
    background: #000;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    display: inline-block; }
  .base-tour .autocadPop a:hover {
    background: #242424; }

.intro-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #888888;
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .intro-screen .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; }
  .intro-screen h1 {
    color: white;
    font-style: normal;
    font-size: 60px;
    font-weight: 700;
    max-width: 800px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .intro-screen h1 {
        max-width: 80%;
        font-size: 40px; } }
    @media screen and (max-width: 550px) {
      .intro-screen h1 {
        max-width: 90%;
        font-size: 30px; } }
    @media screen and (max-height: 569px) and (max-height: 569px) {
      .intro-screen h1 {
        font-size: 20px; } }
  .intro-screen h3 {
    font-style: normal;
    font-size: 14px;
    color: white;
    margin-bottom: 60px;
    max-width: 800px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .intro-screen h3 {
        max-width: 80%; } }
    @media screen and (max-width: 550px) {
      .intro-screen h3 {
        max-width: 90%;
        font-size: 12px; } }
    @media screen and (max-height: 569px) and (max-height: 569px) {
      .intro-screen h3 {
        font-size: 12px;
        margin-bottom: 30px; } }
  .intro-screen p {
    color: white; }
  .intro-screen .powered-by {
    margin-top: 60px; }
    @media screen and (max-width: 768px) {
      .intro-screen .powered-by {
        font-size: 12px;
        margin-top: auto;
        margin-bottom: 5px; } }
  .intro-screen .tour-play-btn {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    color: white;
    border-radius: 50%;
    font-size: 60px;
    margin-bottom: 60px;
    padding-left: 24px;
    padding-right: 18px;
    position: relative; }
    .intro-screen .tour-play-btn:focus {
      outline: none; }
    @media screen and (max-width: 375px) {
      .intro-screen .tour-play-btn {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .tour-play-btn {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px;
        margin-bottom: 30px; } }
  .intro-screen .loader-animation {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    position: relative;
    color: white;
    line-height: 150px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px; }
    .intro-screen .loader-animation:after {
      content: " ";
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      position: absolute;
      border-radius: 50%;
      border: 3px solid #fff;
      border-color: #fff transparent #fff transparent;
      animation: lds-dual-ring 1.2s linear infinite;
      top: 0;
      left: 0; }
    @media screen and (max-width: 375px) {
      .intro-screen .loader-animation {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .loader-animation {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        margin-bottom: 30px; } }
    .intro-screen .loader-animation .loader-title {
      font-size: 16px;
      color: white;
      line-height: 150px;
      text-align: center; }
      @media screen and (max-width: 375px) {
        .intro-screen .loader-animation .loader-title {
          line-height: 100px;
          font-size: 12px; } }
      @media screen and (max-height: 569px) {
        .intro-screen .loader-animation .loader-title {
          line-height: 100px;
          font-size: 12px; } }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .intro-screen .client-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-top: 60px; }
    @media screen and (max-width: 768px) {
      .intro-screen .client-logo {
        width: 100px;
        height: 100px; } }
    @media screen and (max-width: 375px) {
      .intro-screen .client-logo {
        width: 60px;
        height: 60px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .client-logo {
        width: 60px;
        height: 60px;
        margin-top: 30px !important; } }
  .intro-screen .logo {
    width: 100px; }
  .intro-screen .logo-divider {
    color: white; }
  .intro-screen .mp-logo {
    height: 18px;
    margin-bottom: 3px; }

.timer {
  z-index: 2;
  position: absolute;
  color: black;
  margin: 0px;
  right: 0;
  top: 44px;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px;
  color: white; }

.middleContainer {
  padding: 1rem;
  color: white;
  padding-top: 0px; }

.noPadding {
  padding: 0px; }

#ecommerce-tour-root #contact-pop .square-button {
  background: var(--color-secondary);
  border: 1px solid var(--color-secondary); }

#ecommerce-tour-root .contact-popup-content::-webkit-scrollbar-track {
  background: white; }

#ecommerce-tour-root .contact-popup-content::-webkit-scrollbar-thumb {
  background: var(--color-secondary); }

#ecommerce-tour-root .contact-popup-content::-webkit-scrollbar {
  width: 8px;
  height: var(--scroll-bar-size);
  background: white; }

#ecommerce-tour-root .popup .close:hover svg,
#ecommerce-tour-root .popup .close:hover i {
  color: var(--color-secondary); }

#ecommerce-tour-root .buttonsBg.open {
  right: 800px !important; }
  @media screen and (max-width: 768px) {
    #ecommerce-tour-root .buttonsBg.open {
      right: 85% !important; } }

#ecommerce-tour-root .buttonsBg .buttonBg.white {
  background: rgba(255, 255, 255, 0.5); }
  #ecommerce-tour-root .buttonsBg .buttonBg.white i {
    color: var(--color-secondary); }

#ecommerce-tour-root .buttonsBg.left {
  left: 0;
  right: auto;
  top: 40%;
  margin: 0;
  width: 70px; }
  #ecommerce-tour-root .buttonsBg.left .buttonBg:hover {
    text-decoration: none; }
    #ecommerce-tour-root .buttonsBg.left .buttonBg:hover i {
      color: white; }

@media screen and (max-width: 768px) {
  #ecommerce-tour-root .buttonsBg.left {
    display: none; } }

#ecommerce-tour-root .buttonBg.active {
  background: var(--color-secondary); }

#ecommerce-tour-root .buttonBg:hover i {
  color: white; }

#ecommerce-tour-root .left .buttonBg {
  width: 100%;
  background: var(--color-secondary);
  border-radius: 0 28px 28px 0;
  padding: 0 10px 0 0;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center; }

#ecommerce-tour-root nav#menu-container.rtl {
  width: 0; }

#ecommerce-tour-root nav#menu-container.open {
  width: 800px; }
  @media screen and (max-width: 768px) {
    #ecommerce-tour-root nav#menu-container.open {
      width: 85%; } }

#ecommerce-tour-root nav#menu-container #menu {
  margin-bottom: 90px; }
  #ecommerce-tour-root nav#menu-container #menu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 0;
    padding-right: 40px; }
    #ecommerce-tour-root nav#menu-container #menu li.open {
      background: var(--color-secondary); }
  #ecommerce-tour-root nav#menu-container #menu .sublinks, #ecommerce-tour-root nav#menu-container #menu .sub_sublinks {
    margin-left: 0; }

#ecommerce-tour-root nav#menu-container .menu-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-right: 13px; }

#ecommerce-tour-root nav#menu-container.white {
  background: rgba(255, 255, 255, 0.75); }
  #ecommerce-tour-root nav#menu-container.white h2 {
    color: var(--color-primary);
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    margin-bottom: 15px;
    padding-bottom: 15px;
    margin-right: 40px; }
  #ecommerce-tour-root nav#menu-container.white li {
    color: var(--color-primary); }
  #ecommerce-tour-root nav#menu-container.white .contact h5 {
    color: var(--color-primary); }

#ecommerce-tour-root .logo-wrap {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 20px; }
  #ecommerce-tour-root .logo-wrap .header-logo {
    width: 100px; }
    #ecommerce-tour-root .logo-wrap .header-logo.width {
      width: 200px; }
    @media screen and (max-width: 768px) {
      #ecommerce-tour-root .logo-wrap .header-logo {
        width: 70px;
        top: 20px; }
        #ecommerce-tour-root .logo-wrap .header-logo.width {
          width: 140px; } }
  #ecommerce-tour-root .logo-wrap .more-info {
    font-family: "Hind", "Helvetica", "Arial", sans-serif;
    z-index: 2;
    position: relative;
    top: 15px;
    margin: 0 auto;
    width: 75px;
    background: var(--color-secondary);
    color: #fff;
    border-radius: 4px;
    padding: 0;
    line-height: 24px;
    text-align: center;
    font-size: 11px; }

#ecommerce-tour-root #external-popup {
  z-index: 111; }

#ecommerce-tour-root nav li:hover {
  color: var(--color-secondary) !important; }

#ecommerce-tour-root .popup-about {
  border-radius: 15px;
  background: rgba(41, 41, 41, 0.5);
  min-height: 300px;
  width: 500px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 104;
  right: 0;
  bottom: 0;
  margin: auto;
  max-height: 500px;
  height: fit-content;
  padding: 20px; }
  @media screen and (max-width: 768px) {
    #ecommerce-tour-root .popup-about {
      width: 80%; } }
  #ecommerce-tour-root .popup-about .close {
    position: absolute;
    float: none;
    z-index: 3;
    top: 10px;
    right: 10px;
    padding: 0;
    opacity: 1;
    font-size: 14px;
    cursor: pointer;
    height: 15px;
    width: 15px;
    line-height: 14px;
    text-align: center; }
    #ecommerce-tour-root .popup-about .close:hover svg,
    #ecommerce-tour-root .popup-about .close:hover i {
      color: var(--color-secondary); }
    #ecommerce-tour-root .popup-about .close svg,
    #ecommerce-tour-root .popup-about .close i {
      color: #F8F8F8;
      font-size: 16px;
      transition: all 0.3s ease; }
  #ecommerce-tour-root .popup-about .square-button {
    margin-top: 20px;
    text-align: center; }
  #ecommerce-tour-root .popup-about iframe {
    height: 100% !important;
    width: 100% !important;
    position: relative;
    top: 0;
    left: 0;
    border-radius: 8px; }
  #ecommerce-tour-root .popup-about.rtl {
    text-align: right; }
    #ecommerce-tour-root .popup-about.rtl input {
      text-align: right; }
  #ecommerce-tour-root .popup-about .about-logo {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    align-items: center; }
    #ecommerce-tour-root .popup-about .about-logo img {
      height: 100px; }
  #ecommerce-tour-root .popup-about .about-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 24px;
    text-align: center;
    color: #fff;
    margin-top: 25px;
    padding: 0 15px; }
  #ecommerce-tour-root .popup-about .about-social-icons {
    display: flex;
    justify-content: space-evenly;
    width: 225px;
    margin: 25px auto 0; }
    #ecommerce-tour-root .popup-about .about-social-icons a {
      background: var(--color-primary);
      border-radius: 50%;
      width: 42px;
      height: 42px;
      display: flex;
      justify-content: center;
      align-items: center; }
      #ecommerce-tour-root .popup-about .about-social-icons a:hover {
        text-decoration: none;
        color: var(--color-primary); }
      #ecommerce-tour-root .popup-about .about-social-icons a i {
        font-size: 24px;
        color: white; }

#ecommerce-tour-root #bottom-bar .action-icons .more-menu {
  width: 110px; }
  #ecommerce-tour-root #bottom-bar .action-icons .more-menu .data-balloon {
    float: left;
    margin-bottom: 5px; }

#ecommerce-tour-root #bottom-bar .action-icons .action-icon.active {
  background: var(--color-secondary); }

#ecommerce-tour-root #bottom-bar .action-icons .action-icon:hover {
  background: var(--color-secondary); }

#ecommerce-tour-root #bottom-bar .btn:hover, #ecommerce-tour-root #bottom-bar .btn.active {
  background: var(--color-secondary); }

#ecommerce-tour-root #menu .mainLink.open > svg:last-child,
#ecommerce-tour-root #menu .mainLink.open > i:last-child {
  transform: rotate(0deg) !important; }

#ecommerce-tour-root #reel-bar .preview {
  background-size: contain;
  height: 116px; }

#ecommerce-tour-root #reel-bar .mini-cart-total {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  margin-top: 15px;
  padding-top: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-weight: normal;
  font-size: 13px;
  text-align: left;
  color: var(--color-primary); }
  #ecommerce-tour-root #reel-bar .mini-cart-total .mini-cart-items span {
    font-weight: bold; }
  #ecommerce-tour-root #reel-bar .mini-cart-total .mini-cart-total-price {
    background: rgba(49, 159, 216, 0.2);
    border-radius: 5px;
    margin: 0 12px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
    text-align: right;
    color: #292929; }
    #ecommerce-tour-root #reel-bar .mini-cart-total .mini-cart-total-price div:last-child {
      text-align: left;
      color: #319fd8; }

#ecommerce-tour-root #reel-bar .mini-cart-price {
  height: 20px;
  width: 40px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #f8f8f8;
  border-radius: 10px;
  background: var(--color-secondary);
  margin: 5px 5px 0;
  line-height: 20px; }

#ecommerce-tour-root #reel-bar .vertical-price-quantity-box {
  display: flex !important;
  flex-direction: column;
  top: 5px;
  right: 0;
  left: auto !important;
  width: 27px !important;
  z-index: 999 !important;
  border-radius: 20px;
  height: 81px;
  padding-left: 1px;
  padding-top: 1px;
  background: rgba(255, 255, 255, 0.75); }
  #ecommerce-tour-root #reel-bar .vertical-price-quantity-box .quantity-input {
    width: 25px;
    height: 24px;
    background: none;
    font-size: 16px;
    color: var(--color-primary);
    margin: 2px 0;
    text-align: left;
    padding: 0 0 0 1px;
    border-radius: 2px; }
  #ecommerce-tour-root #reel-bar .vertical-price-quantity-box .quantity-button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #319fd8;
    color: white;
    font-weight: bold;
    line-height: 25px; }
    #ecommerce-tour-root #reel-bar .vertical-price-quantity-box .quantity-button:focus {
      outline: none; }

#ecommerce-tour-root #menu-container {
  padding: 0; }
  #ecommerce-tour-root #menu-container .menu-product-filter {
    height: 100%;
    padding: 20px 10px 20px 20px; }
    @media screen and (max-width: 768px) {
      #ecommerce-tour-root #menu-container .menu-product-filter {
        display: none; } }
  #ecommerce-tour-root #menu-container .menu-product-items {
    padding: 20px 0 20px 0;
    border-left: 1px solid rgba(41, 41, 41, 0.2); }
  #ecommerce-tour-root #menu-container.rtl .input-group {
    flex-direction: row-reverse;
    padding-left: 25px;
    padding-right: 20px; }
  #ecommerce-tour-root #menu-container .input-group {
    margin-left: 25px;
    margin-bottom: 30px;
    padding-right: 40px;
    border-radius: 7px;
    height: 40px;
    width: 250px; }
    @media screen and (max-width: 768px) {
      #ecommerce-tour-root #menu-container .input-group {
        width: calc(100% - 12px); } }
    #ecommerce-tour-root #menu-container .input-group input {
      height: 40px;
      border-radius: 7px 0 0 7px;
      background: rgba(41, 41, 41, 0.3);
      color: #F8F8F8;
      margin-top: 0;
      font-family: "Hind", sans-serif; }
      #ecommerce-tour-root #menu-container .input-group input::placeholder {
        color: #F8F8F8;
        font-size: 16px; }
    #ecommerce-tour-root #menu-container .input-group .input-group-text {
      background: var(--color-secondary);
      color: #fff;
      border: 0;
      border-radius: 0 7px 7px 0;
      width: 40px;
      justify-content: center;
      height: 40px; }
  #ecommerce-tour-root #menu-container .payment-button {
    width: 200px;
    border-radius: 5px;
    padding: 10px 0;
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    right: 0;
    left: 0;
    text-decoration: none;
    background-color: var(--color-secondary);
    margin: 30px auto 0; }
    #ecommerce-tour-root #menu-container .payment-button:hover {
      background-color: var(--color-primary); }
    #ecommerce-tour-root #menu-container .payment-button i {
      margin-right: 5px; }
  #ecommerce-tour-root #menu-container .filter-button {
    width: 130px;
    border-radius: 5px;
    padding: 10px 0;
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    right: 0;
    left: 0;
    text-decoration: none;
    background-color: var(--color-secondary); }
    #ecommerce-tour-root #menu-container .filter-button:hover {
      background-color: var(--color-primary); }
    #ecommerce-tour-root #menu-container .filter-button i {
      margin-right: 5px; }
  #ecommerce-tour-root #menu-container .product-list {
    height: 510px;
    overflow: auto;
    margin-bottom: 20px; }
    #ecommerce-tour-root #menu-container .product-list::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0); }
    #ecommerce-tour-root #menu-container .product-list::-webkit-scrollbar-thumb {
      background: var(--color-secondary); }
    #ecommerce-tour-root #menu-container .product-list::-webkit-scrollbar {
      width: 8px;
      height: var(--scroll-bar-size);
      background: rgba(255, 255, 255, 0); }
    #ecommerce-tour-root #menu-container .product-list .product {
      cursor: pointer;
      margin-bottom: 15px;
      height: 240px; }
      #ecommerce-tour-root #menu-container .product-list .product .product-image {
        height: 180px;
        text-align: center; }
        #ecommerce-tour-root #menu-container .product-list .product .product-image img {
          width: auto;
          max-height: 180px;
          max-width: 100%;
          margin-bottom: 10px; }
      #ecommerce-tour-root #menu-container .product-list .product .product-name {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        color: #fff;
        height: 30px;
        overflow: hidden;
        line-height: 30px;
        font-weight: bold; }
      #menu-container.white .product-name,
      #menu-container.white .product-price,
      #menu-container.white .old-price {
        color: var(--color-primary) !important; }
      #ecommerce-tour-root #menu-container .product-list .product .product-price {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        color: #f8f8f8; }
        #ecommerce-tour-root #menu-container .product-list .product .product-price .current-price {
          height: 20px;
          border-radius: 10px;
          background: var(--color-secondary);
          color: #ffffff !important;
          padding: 0 5px;
          margin: 0 5px; }
        #ecommerce-tour-root #menu-container .product-list .product .product-price .old-price {
          color: #f8f8f8;
          opacity: 0.5;
          text-decoration: line-through; }

#filter-popup {
  max-height: 330px;
  max-width: 850px;
  width: 100%;
  padding: 30px;
  z-index: 111;
  background: white; }
  #filter-popup .close {
    top: 30px;
    right: 30px;
    background: none;
    color: var(--color-primary); }
    #filter-popup .close:hover {
      color: var(--color-secondary); }
  #filter-popup h2 {
    font-style: normal;
    padding: 0;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 30px;
    color: #292929;
    text-align: left; }
  #filter-popup .filter-price input {
    background: #fff;
    border: 1px solid #efefef; }
    #filter-popup .filter-price input ::placeholder {
      font-size: 16px;
      color: #282828;
      opacity: 0.5; }
  #filter-popup .square-button {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
    border-radius: 4px;
    width: 120px;
    float: right;
    margin-top: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    text-align: center; }
    #filter-popup .square-button.clear-form {
      background: var(--color-primary);
      border-color: var(--color-primary); }

.price-quantity-box {
  margin-left: 15px; }
  .price-quantity-box .quantity-button {
    width: 34px;
    height: 32px;
    background: var(--color-secondary);
    color: white;
    font-weight: bold; }
    .price-quantity-box .quantity-button:focus {
      outline: none; }
  .price-quantity-box .quantity-input {
    width: 100px;
    height: 32px;
    text-align: center;
    border: 0;
    background: white;
    margin-top: 0; }

.copyright-container {
  font-family: "Hind", sans-serif;
  font-size: 20px;
  line-height: 16px;
  color: #727272;
  display: flex;
  align-items: center; }
  .copyright-container:hover {
    color: #727272;
    text-decoration: none; }
  .copyright-container img {
    margin-left: 10px; }

#e-commerce-product-popup {
  background: white;
  width: 80%;
  height: 80%;
  padding: 30px; }
  @media screen and (max-width: 768px) {
    #e-commerce-product-popup {
      height: 80%;
      width: 90%; } }
  #e-commerce-product-popup .close:hover {
    color: var(--color-secondary); }
  #e-commerce-product-popup .scroll {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-bottom: 15px; }
    #e-commerce-product-popup .scroll::-webkit-scrollbar-track {
      background: white; }
    #e-commerce-product-popup .scroll::-webkit-scrollbar-thumb {
      background: var(--color-secondary); }
    #e-commerce-product-popup .scroll::-webkit-scrollbar {
      width: 8px;
      height: var(--scroll-bar-size);
      background: white; }
    #e-commerce-product-popup .scroll .product-container {
      min-height: 100%;
      margin-bottom: -50px; }
      #e-commerce-product-popup .scroll .product-container .payment-button {
        background: #00b1ff;
        width: 250px;
        height: 50px;
        line-height: 50px;
        text-transform: uppercase;
        font-size: 15px; }
  #e-commerce-product-popup h2 {
    font-weight: bold;
    font-size: 32px;
    line-height: 34px;
    color: var(--color-secondary); }
  #e-commerce-product-popup .product-media .product-image {
    max-height: 500px;
    max-width: 330px;
    margin: 0 auto; }
    #e-commerce-product-popup .product-media .product-image img {
      padding: 0 5px;
      max-height: 500px;
      max-width: 100%;
      width: auto !important;
      margin: 0 auto; }
  #e-commerce-product-popup .action-icon-buttons .button-icon {
    width: 30px;
    height: 30px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50px;
    margin-top: 15px; }
    #e-commerce-product-popup .action-icon-buttons .button-icon.button-opacity {
      color: var(--color-secondary);
      background: rgba(49, 159, 216, 0.2); }
    #e-commerce-product-popup .action-icon-buttons .button-icon:focus {
      outline: none; }
  #e-commerce-product-popup .description h3 {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #727272;
    text-transform: uppercase; }
    #e-commerce-product-popup .description h3 i {
      color: var(--color-secondary); }
  #e-commerce-product-popup .description .description-text {
    font-size: 16px;
    line-height: 23px;
    color: #2c2c2c;
    margin-left: 30px; }
    #e-commerce-product-popup .description .description-text em {
      font-style: italic; }
    #e-commerce-product-popup .description .description-text strong {
      font-weight: bold; }
    @media screen and (max-width: 768px) {
      #e-commerce-product-popup .description .description-text {
        height: 80%;
        margin-left: 0; } }
  #e-commerce-product-popup .file-list .file {
    cursor: pointer;
    height: 38px;
    background: rgba(232, 232, 232, 0.2);
    border: 1px solid #e8e8e8;
    font-family: "Hind", sans-serif;
    font-size: 16px;
    line-height: 38px;
    color: #2c2c2c; }
    #e-commerce-product-popup .file-list .file div:last-child {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center; }
    #e-commerce-product-popup .file-list .file i {
      color: var(--color-secondary); }
  #e-commerce-product-popup .options label {
    font-family: "Hind", sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.13em;
    line-height: 16px;
    color: #727272; }
  #e-commerce-product-popup .options .basic-single input {
    height: unset;
    margin: unset; }
  #e-commerce-product-popup .small-description {
    font-family: "Hind", sans-serif;
    font-size: 16px;
    line-height: 23px;
    color: #2c2c2c; }
  #e-commerce-product-popup .price-box {
    font-family: "Hind", sans-serif;
    min-height: 200px;
    max-height: 300px;
    border-radius: 5px;
    background: rgba(0, 177, 255, 0.05);
    border: 1px dashed #00b1ff;
    padding: 15px; }
    #e-commerce-product-popup .price-box .original-price {
      font-size: 20px;
      line-height: 35px;
      color: #727272; }
      #e-commerce-product-popup .price-box .original-price span {
        font-weight: bold;
        color: var(--color-secondary); }
    #e-commerce-product-popup .price-box .our-price {
      font-size: 20px;
      line-height: 35px;
      color: var(--color-secondary);
      font-weight: bold; }
      #e-commerce-product-popup .price-box .our-price span {
        font-weight: bold;
        color: #00b1ff; }
    #e-commerce-product-popup .price-box .quantity {
      font-size: 20px;
      line-height: 35px;
      color: #727272;
      margin-bottom: 15px; }
      #e-commerce-product-popup .price-box .quantity .out-off-stock {
        font-weight: bold;
        color: var(--color-secondary); }
    #e-commerce-product-popup .price-box .buy {
      width: 100%;
      height: 55px;
      border-radius: 5px;
      background: var(--color-secondary);
      border: 1px solid var(--color-secondary);
      box-shadow: 0 8px 15px rgba(49, 159, 216, 0.25);
      font-family: "Hind", sans-serif;
      font-weight: bold;
      font-size: 20px;
      line-height: 16px;
      text-align: center;
      color: #fff;
      text-transform: uppercase; }
      #e-commerce-product-popup .price-box .buy:disabled {
        opacity: .75; }
    @media screen and (max-width: 768px) {
      #e-commerce-product-popup .price-box .quantity {
        flex-direction: column; } }
  #e-commerce-product-popup .message {
    font-weight: bold;
    color: #00b1ff;
    font-size: 20px;
    line-height: 35px; }
    #e-commerce-product-popup .message.error {
      color: var(--color-secondary); }
  #e-commerce-product-popup .favorite {
    margin-top: 25px;
    width: 100%;
    border-radius: 5px;
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    color: #fff;
    font-size: 16px;
    font-family: "Hind", sans-serif;
    font-weight: normal;
    height: 45px; }
    #e-commerce-product-popup .favorite i {
      margin-right: 5px; }
  #e-commerce-product-popup .social {
    margin-top: 25px; }
    #e-commerce-product-popup .social .social-title {
      font-family: "Hind", sans-serif;
      font-weight: bold;
      font-size: 14px;
      line-height: 16px;
      color: #727272;
      text-transform: uppercase; }
    #e-commerce-product-popup .social .social-icons a {
      width: 26px;
      height: 26px;
      color: #2c2c2c;
      font-size: 22px;
      margin-right: 10px; }
  #e-commerce-product-popup .line {
    border: 1px solid #e8e8e8;
    margin: 25px 0; }
  #e-commerce-product-popup .specification h3 {
    font-family: "Hind", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #727272;
    text-transform: uppercase;
    margin-bottom: 10px; }
    #e-commerce-product-popup .specification h3 i {
      color: var(--color-secondary);
      margin-right: 10px; }
  #e-commerce-product-popup .specification .items .item {
    font-family: "Hind", sans-serif;
    font-size: 16px;
    line-height: 23px;
    color: #727272; }
    #e-commerce-product-popup .specification .items .item span {
      font-weight: bold; }
  #e-commerce-product-popup .similar h3 {
    font-family: "Hind", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #727272;
    text-transform: uppercase;
    margin-bottom: 10px; }
    #e-commerce-product-popup .similar h3 i {
      color: var(--color-secondary);
      margin-right: 10px; }
  #e-commerce-product-popup .similar h5 {
    background: #5f9ea0;
    color: #fff;
    font-size: 36px;
    line-height: 100px;
    margin: 10px;
    padding: 2%;
    position: relative;
    text-align: center; }
  #e-commerce-product-popup .similar .slick-arrow i {
    color: #D9EAEC;
    font-size: 20px; }
  #e-commerce-product-popup .similar .slick-next {
    right: -15px; }
  #e-commerce-product-popup .similar .slick-prev {
    left: -15px; }
  #e-commerce-product-popup .similar .slick-prev:before, #e-commerce-product-popup .similar .slick-next:before {
    content: ""; }
  #e-commerce-product-popup .similar .product-item {
    padding-right: 12px;
    padding-left: 12px;
    cursor: pointer; }
    #e-commerce-product-popup .similar .product-item .product-image {
      position: relative;
      height: 180px;
      display: flex;
      justify-content: center;
      align-items: center; }
      #e-commerce-product-popup .similar .product-item .product-image img {
        max-width: 100%;
        max-height: 100%; }
      #e-commerce-product-popup .similar .product-item .product-image .product-prices {
        position: absolute;
        bottom: 10px;
        right: 10px;
        border-radius: 17px;
        background: #fff;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px 10px 2px; }
        #e-commerce-product-popup .similar .product-item .product-image .product-prices .old-price {
          font-family: "Hind", sans-serif;
          font-weight: bold;
          font-size: 16px;
          line-height: 23px;
          color: var(--color-secondary);
          text-decoration: line-through;
          margin-right: 5px; }
        #e-commerce-product-popup .similar .product-item .product-image .product-prices .price {
          font-family: "Hind", sans-serif;
          font-weight: bold;
          font-size: 20px;
          line-height: 23px;
          text-align: left;
          color: #00b1ff; }
    #e-commerce-product-popup .similar .product-item .product-title {
      font-family: "Hind", sans-serif;
      font-weight: bold;
      font-size: 16px;
      line-height: 23px;
      text-align: center;
      color: #2c2c2c;
      margin-top: 10px;
      margin-bottom: 5px;
      height: 23px;
      overflow: hidden; }
    #e-commerce-product-popup .similar .product-item .product-description {
      font-family: "Hind", sans-serif;
      font-size: 16px;
      line-height: 20px;
      color: #2c2c2c; }
  #e-commerce-product-popup.popup iframe {
    position: relative !important; }

#cart-popup {
  width: 80%;
  height: 80%; }
  #cart-popup .close {
    top: -15px;
    right: -15px; }
    #cart-popup .close:hover {
      color: var(--color-secondary); }
  #cart-popup .scroll {
    overflow: auto;
    max-height: 100%;
    background: #fff;
    padding: 30px; }
  #cart-popup h2 {
    font-weight: bold;
    font-size: 32px;
    color: var(--color-secondary); }
  #cart-popup .product-block {
    margin-top: 30px; }
    #cart-popup .product-block .product-image img {
      width: auto;
      border-radius: 5px;
      max-height: 75px; }
    #cart-popup .product-block .product-title {
      font-weight: 600;
      font-size: 18px;
      line-height: 25px;
      text-align: left;
      color: #00b1ff; }
    #cart-popup .product-block .product-qty {
      font-weight: bold;
      font-size: 16px;
      line-height: 23px;
      color: #727272;
      display: flex;
      align-items: center;
      margin-top: 20px; }
      #cart-popup .product-block .product-qty .status {
        font-size: 14px;
        line-height: 16px;
        color: #727272;
        margin-left: 30px;
        font-weight: normal; }
      #cart-popup .product-block .product-qty .quantity-input {
        width: 80px;
        background: rgba(0, 177, 255, 0.1);
        font-size: 20px;
        line-height: 35px;
        text-align: center;
        color: #727272; }
    #cart-popup .product-block .product-options {
      margin-top: 10px; }
      #cart-popup .product-block .product-options .product-option {
        font-size: 16px;
        line-height: 23px;
        color: var(--color-primary); }
        #cart-popup .product-block .product-options .product-option ul > li {
          margin-top: 10px; }
          #cart-popup .product-block .product-options .product-option ul > li span {
            font-weight: bold; }
    #cart-popup .product-block .price-block {
      width: 100%;
      height: 100px;
      border-radius: 5px;
      background: rgba(0, 177, 255, 0.05);
      border: 1px dotted #00b1ff;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-direction: column; }
      #cart-popup .product-block .price-block .price-block-title {
        font-weight: bold;
        font-size: 14px;
        letter-spacing: 0.13em;
        line-height: 16px;
        color: var(--color-primary);
        opacity: 0.5; }
      #cart-popup .product-block .price-block .price {
        font-weight: bold;
        font-size: 24px;
        line-height: 35px;
        color: var(--color-primary); }
      #cart-popup .product-block .price-block .old-price {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center; }
        #cart-popup .product-block .price-block .old-price .price {
          font-size: 16px;
          line-height: 23px;
          color: var(--color-secondary);
          text-decoration: line-through;
          margin-left: 5px; }
        #cart-popup .product-block .price-block .old-price .discount {
          padding: 5px;
          font-weight: 600;
          font-size: 14px;
          line-height: 23px;
          color: #00b1ff;
          background: rgba(0, 177, 255, 0.1); }
  #cart-popup .line {
    border: 1px solid #e8e8e8; }
  #cart-popup .input-c input {
    border: 1px solid #eee; }
  #cart-popup .protection .protection-title {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #727272; }
    #cart-popup .protection .protection-title i {
      color: var(--color-secondary);
      margin-right: 10px; }
  #cart-popup .protection .protection-info {
    font-size: 16px;
    line-height: 23px;
    color: #2c2c2c;
    margin-top: 15px;
    margin-left: 27px; }
  #cart-popup .summary {
    height: 200px;
    width: 260px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 11px 50px rgba(0, 0, 0, 0.11);
    padding: 20px; }
    #cart-popup .summary .summary-title {
      text-transform: uppercase;
      font-weight: bold;
      font-size: 14px;
      letter-spacing: 0.13em;
      line-height: 16px;
      text-align: center;
      color: #727272; }
    #cart-popup .summary ul.summary-list {
      margin-top: 20px; }
      #cart-popup .summary ul.summary-list li {
        font-size: 16px;
        line-height: 23px;
        color: #2c2c2c;
        margin-top: 10px; }
        #cart-popup .summary ul.summary-list li span:last-child {
          float: right; }
      #cart-popup .summary ul.summary-list .total {
        display: flex;
        justify-content: space-between;
        align-items: center; }
        #cart-popup .summary ul.summary-list .total span:last-child {
          font-weight: bold;
          font-size: 24px;
          line-height: 35px;
          color: #2c2c2c; }
  #cart-popup .buy {
    width: 100%;
    height: 55px;
    border-radius: 5px;
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    box-shadow: 0 8px 15px rgba(49, 159, 216, 0.25);
    font-family: "Hind", sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    text-transform: uppercase; }
    #cart-popup .buy:disabled {
      opacity: .75; }

#e-commerce-tag-products-popup {
  background: rgba(0, 0, 0, 0.4);
  height: 540px;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 0;
  width: 50%; }
  #e-commerce-tag-products-popup .close {
    right: -15px;
    top: -15px; }
    #e-commerce-tag-products-popup .close:hover {
      color: var(--color-secondary); }
  #e-commerce-tag-products-popup .product-list {
    height: 510px;
    overflow: auto;
    margin-bottom: 20px; }
    #e-commerce-tag-products-popup .product-list::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0); }
    #e-commerce-tag-products-popup .product-list::-webkit-scrollbar-thumb {
      background: var(--color-secondary); }
    #e-commerce-tag-products-popup .product-list::-webkit-scrollbar {
      width: 8px;
      height: var(--scroll-bar-size);
      background: rgba(0, 0, 0, 0); }
    #e-commerce-tag-products-popup .product-list .product {
      cursor: pointer;
      margin-bottom: 15px;
      height: 240px; }
      #e-commerce-tag-products-popup .product-list .product .product-image {
        height: 180px;
        text-align: center; }
        #e-commerce-tag-products-popup .product-list .product .product-image img {
          width: auto;
          max-height: 180px;
          max-width: 100%;
          margin-bottom: 10px; }
      #e-commerce-tag-products-popup .product-list .product .product-name {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        color: #fff;
        height: 30px;
        overflow: hidden;
        line-height: 30px; }
      #menu-container.white .product-name,
      #menu-container.white .product-price,
      #menu-container.white .old-price {
        color: var(--color-primary) !important; }
      #e-commerce-tag-products-popup .product-list .product .product-price {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        color: #f8f8f8; }
        #e-commerce-tag-products-popup .product-list .product .product-price .current-price {
          height: 20px;
          border-radius: 10px;
          background: var(--color-secondary);
          color: #ffffff !important;
          padding: 0 5px;
          margin: 0 5px; }
        #e-commerce-tag-products-popup .product-list .product .product-price .old-price {
          color: #f8f8f8;
          opacity: 0.5;
          text-decoration: line-through; }
  #e-commerce-tag-products-popup .product-list {
    padding-bottom: 0;
    height: 500px; }
    #e-commerce-tag-products-popup .product-list .row {
      height: 100%; }
    #e-commerce-tag-products-popup .product-list .product {
      height: 240px; }

#video-overlay {
  overflow: hidden; }
  #video-overlay .loader {
    width: 100% !important; }
  #video-overlay .notifications {
    background: red;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    top: -8px;
    left: -8px;
    color: white;
    font-family: "Hind", "Helvetica", "Arial", sans-serif; }
  #video-overlay .banner-wait-host {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: white;
    z-index: 101 !important;
    background: rgba(0, 0, 0, 0.95) !important; }
    #video-overlay .banner-wait-host.open {
      display: flex !important; }

#video-name-overlay {
  display: block !important;
  z-index: 101 !important; }
  #video-name-overlay .name-pop {
    background: rgba(0, 0, 0, 0.5);
    width: 400px;
    height: 140px;
    padding: 20px;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    text-align: center; }
    @media screen and (max-width: 768px) {
      #video-name-overlay .name-pop {
        width: 320px; } }
    #video-name-overlay .name-pop h3 {
      line-height: 100px;
      color: #fff;
      font-size: 16px; }
    #video-name-overlay .name-pop label {
      color: #fff;
      margin-bottom: 15px;
      clear: both;
      text-align: left;
      line-height: 1;
      font-size: 14px;
      width: 100%; }
    #video-name-overlay .name-pop input {
      height: 50px;
      float: left;
      width: 70%;
      line-height: 1;
      margin: 0;
      font-size: 16px;
      font-family: "Hind", sans-serif;
      font-weight: 300; }
    #video-name-overlay .name-pop button {
      float: right;
      height: 50px;
      line-height: 1;
      font-size: 14px;
      width: 30%; }
    #video-name-overlay .name-pop .switch-video-camera {
      display: flex;
      align-items: center;
      padding-top: 10px; }
      #video-name-overlay .name-pop .switch-video-camera span {
        padding-right: 10px; }

.users-list {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  right: 0;
  bottom: 100px;
  padding: 10px;
  width: 150px;
  height: 200px;
  z-index: 4;
  overflow-y: scroll; }
  .users-list li {
    color: #fff;
    margin: 5px 0; }

#public-tour-root .chat {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  right: -350px;
  bottom: 80px;
  width: 350px;
  height: 60vh;
  z-index: 111;
  transition: 0.3s ease all;
  padding: 20px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px; }
  @media screen and (max-width: 768px) {
    #public-tour-root .chat {
      background: #fff;
      bottom: -70vh;
      height: 70vh;
      width: 100%;
      right: 0; } }
  #public-tour-root .chat h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 10px; }
    @media screen and (max-width: 768px) {
      #public-tour-root .chat h3 {
        display: none; } }
  #public-tour-root .chat.open {
    right: 0; }
    @media screen and (max-width: 768px) {
      #public-tour-root .chat.open {
        bottom: 0; } }
  #public-tour-root .chat .socket-connection {
    color: #fff;
    font-size: 10px;
    padding: 0 10px;
    text-align: right;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50px; }
  #public-tour-root .chat .messages {
    height: calc(100% - 50px);
    position: relative;
    top: 0;
    right: 0;
    overflow-y: scroll;
    padding: 10px;
    width: 100%; }
    #public-tour-root .chat .messages::-webkit-scrollbar-track {
      background: var(--color-primary); }
    #public-tour-root .chat .messages::-webkit-scrollbar-thumb {
      border-radius: 2px;
      background: var(--color-secondary); }
    #public-tour-root .chat .messages::-webkit-scrollbar {
      width: var(--scroll-bar-size);
      background: var(--color-primary); }
    #public-tour-root .chat .messages .message {
      color: #fff;
      display: block;
      margin: 5px 0;
      line-height: 1.4;
      background: var(--color-secondary);
      border-top-left-radius: 30px;
      border-bottom-right-radius: 30px;
      border-top-right-radius: 30px;
      padding: 5px 15px 5px 30px;
      margin-bottom: 15px; }
      @media screen and (max-width: 768px) {
        #public-tour-root .chat .messages .message {
          background: #f8f8f8;
          color: #000; } }
      #public-tour-root .chat .messages .message .name {
        color: #fff;
        margin-right: 6px;
        display: block;
        width: 100%;
        font-size: 12px; }
        @media screen and (max-width: 768px) {
          #public-tour-root .chat .messages .message .name {
            color: #000; } }
        #public-tour-root .chat .messages .message .name span {
          float: right; }
  #public-tour-root .chat .send {
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 0;
    width: 80%;
    left: 0;
    height: 30px;
    border-radius: 50px;
    background: #292929;
    color: #fff;
    top: 8px; }
    @media screen and (max-width: 768px) {
      #public-tour-root .chat .send {
        background: #f8f8f8;
        color: #000; } }
    #public-tour-root .chat .send input {
      width: 100%;
      float: left;
      height: 100%;
      margin: 0;
      background: none;
      font-family: "Hind", sans-serif !important;
      font-weight: 300;
      color: #fff; }
      @media screen and (max-width: 768px) {
        #public-tour-root .chat .send input {
          color: #000; } }

.videos {
  position: fixed;
  left: 5px;
  top: 5px;
  z-index: 99;
  width: 160px; }
  @media screen and (max-width: 768px) {
    .videos {
      width: 100px; } }
  @media screen and (min-height: 1000px) {
    .videos {
      width: 200px; } }
  .videos div {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 6px; }
    .videos div video {
      z-index: 1;
      position: relative;
      width: 100% !important;
      max-height: 120px;
      padding: 1px;
      background-color: #000;
      display: block;
      margin-bottom: 10px; }
    .videos div.full {
      position: fixed;
      right: 0;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      height: 100%;
      width: 100%;
      background: #f8f8f8;
      background: #000;
      z-index: 10; }
      .videos div.full video {
        height: 100%;
        max-height: 100% !important; }
      .videos div.full .full-screen {
        color: #fff;
        font-size: 20px !important;
        top: 30px !important;
        left: 30px !important;
        bottom: auto !important;
        right: auto !important; }
    .videos div .full-screen {
      position: absolute;
      right: 10px !important;
      bottom: 7px !important;
      color: #fff;
      z-index: 10;
      cursor: pointer;
      font-size: 12px !important;
      padding: 0 !important; }
    .videos div .microphone {
      position: absolute;
      bottom: 7px !important;
      color: #fff;
      z-index: 10;
      cursor: pointer;
      font-size: 12px !important;
      padding: 0 !important; }
      .videos div .microphone.off {
        right: 27px !important; }
      .videos div .microphone.on {
        right: 30px !important; }
    .videos div span {
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.9);
      width: 100%;
      padding: 5px;
      font-size: 13px;
      color: #fff;
      bottom: 0;
      left: 0;
      z-index: 3; }
      @media screen and (max-width: 768px) {
        .videos div span {
          padding: 3px;
          font-size: 11px; } }

#public-tour-root .countDownWrap {
  display: flex;
  text-align: center;
  justify-content: center;
  position: fixed;
  margin: 0 auto;
  right: 0;
  left: 0;
  z-index: 103;
  top: 0;
  padding: 0;
  height: auto !important;
  width: auto !important;
  background: transparent; }
  @media screen and (max-width: 768px) {
    #public-tour-root .countDownWrap {
      justify-content: right !important;
      left: auto;
      margin-right: 5px; } }
  #public-tour-root .countDownWrap .primary-btn {
    position: relative;
    border-radius: 50px;
    margin-left: 10px;
    top: 10px;
    height: 40px; }
  #public-tour-root .countDownWrap .socket-connection {
    position: absolute;
    font-size: 10px;
    width: 100px;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    margin-top: 2px; }
  #public-tour-root .countDownWrap .countDown {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50px;
    top: 10px;
    height: 40px;
    position: relative;
    padding: 5px 10px;
    line-height: 30px;
    width: auto !important;
    z-index: 1;
    color: #fff; }
    #public-tour-root .countDownWrap .countDown i {
      color: red;
      cursor: pointer;
      position: relative;
      margin: 0 3px;
      background: rgba(0, 0, 0, 0.8);
      border-radius: 50%;
      height: 30px !important;
      width: 30px !important;
      line-height: 30px; }
      #public-tour-root .countDownWrap .countDown i.on {
        color: #0ff10f; }

#minimap {
  position: absolute !important;
  right: 10px;
  bottom: 170px;
  z-index: 2;
  width: auto;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 150px;
  padding: 10px;
  margin: 0;
  left: auto;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px; }
  @media screen and (max-width: 768px) {
    #minimap {
      right: 0; } }
  #minimap .control-buttons {
    display: none;
    position: absolute;
    left: -40px;
    top: 0;
    flex-direction: column; }
    #minimap .control-buttons .control-btn {
      height: 30px !important;
      width: 30px !important;
      min-height: 30px !important;
      min-width: 30px !important;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      transition: all 0.3s ease;
      cursor: pointer;
      text-align: center;
      margin: 5px 5px 0; }
      @media screen and (max-width: 768px) {
        #minimap .control-buttons .control-btn {
          width: 35px;
          height: 35px;
          background: rgba(0, 0, 0, 0.3); } }
      #minimap .control-buttons .control-btn:hover, #minimap .control-buttons .control-btn.active {
        background: var(--color-secondary); }
      #minimap .control-buttons .control-btn:focus {
        outline: none; }
      #minimap .control-buttons .control-btn svg,
      #minimap .control-buttons .control-btn i {
        color: #fff;
        vertical-align: middle; }
      #minimap .control-buttons .control-btn img {
        width: 18px; }
    #minimap .control-buttons .rotate-right {
      transform: scale(-1, 1); }
  #minimap:hover .control-buttons {
    display: flex; }
  #minimap .minimapC {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    overflow: hidden; }
    #minimap .minimapC .image-container {
      width: 100%;
      height: 100%; }
    #minimap .minimapC > div:first-child {
      width: 100%;
      height: 100%; }
      #minimap .minimapC > div:first-child > div:first-child {
        width: 100%;
        height: 100%; }
  #minimap .iconButton {
    display: none; }
  #minimap.narrow {
    height: 350px; }
    @media screen and (max-width: 768px) {
      #minimap.narrow {
        height: 180px; } }
    @media screen and (max-height: 550px) and (min-width: 768px) {
      #minimap.narrow {
        height: 180px; } }
  #minimap.active {
    height: 400px; }
    #minimap.active.narrow {
      height: 535px; }
    @media screen and (max-height: 550px) and (min-width: 768px) {
      #minimap.active {
        height: 300px; }
        #minimap.active.narrow {
          height: 300px; } }
    @media screen and (max-width: 768px) {
      #minimap.active {
        height: 300px; }
        #minimap.active.narrow {
          height: 370px; } }
    #minimap.active #mapWalker {
      font-size: 20px; }
  @media screen and (orientation: landscape) {
    #minimap.mobile {
      bottom: 50px; } }
  #minimap img {
    height: 100%;
    width: auto;
    display: block;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none; }
    #minimap img:focus {
      box-shadow: none;
      outline: none; }
  #minimap #mapWalker {
    position: absolute;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--color-secondary);
    font-size: 14px;
    z-index: 3; }
    #minimap #mapWalker svg,
    #minimap #mapWalker i {
      background: #fff;
      border-radius: 50%; }
  #minimap .marker {
    font-size: 14px;
    opacity: 0.35;
    display: none;
    z-index: 2;
    cursor: pointer;
    position: absolute;
    background: transparent;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease; }
    #minimap .marker svg,
    #minimap .marker i {
      background: var(--color-secondary);
      border-radius: 50%; }
    #minimap .marker.hide {
      opacity: 0; }
      #minimap .marker.hide:hover {
        opacity: 1;
        display: block; }
    #minimap .marker:hover, #minimap .marker.active {
      opacity: 1;
      display: block; }
    #minimap .marker:focus {
      outline: none; }
  #minimap:hover .marker {
    display: block !important; }
  #minimap .zero {
    transform: rotate(0deg); }
  #minimap .ninety {
    transform: rotate(90deg); }
  #minimap .flip {
    transform: rotate(180deg); }
  #minimap .twoSeventy {
    transform: rotate(270deg); }
  #minimap .minusNinety {
    transform: rotate(-90deg); }

.add-appointment {
  background: #fff;
  padding: 28px 33px 21px 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.appointment-terms {
  text-align: center;
  color: blue;
  padding: 10px 0;
  display: block; }

.appointment-main {
  height: 620px !important;
  width: 540px !important; }
  .appointment-main .primary-btn {
    width: 100%;
    margin-top: 10px; }

.appointment-mobile {
  height: 100% !important;
  width: 100% !important;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  bottom: 0;
  top: auto;
  overflow-y: auto;
  overflow-x: hidden; }
  .appointment-mobile .scroll {
    max-height: 100%; }
  @media screen and (orientation: portrait) {
    .appointment-mobile .appointment-block .block-head {
      font-size: 1rem; }
    .appointment-mobile .appointment-block .block-input {
      font-size: 1rem;
      height: 40px; }
    .appointment-mobile .appointment-block .date {
      min-width: 80px;
      padding: 7px 0 0 0; }
    .appointment-mobile .primary-btn {
      width: 100%;
      margin-top: 10px; } }
  @media screen and (max-width: 359px) and (orientation: portrait) {
    .appointment-mobile .appointment-head h2 {
      font-size: 1.2em !important; }
    .appointment-mobile .mt-3 {
      margin-top: 0 !important; }
    .appointment-mobile .appointment-block .block-input {
      margin: 0; }
    .appointment-mobile .appointment-block .date-slot {
      padding: 0; }
    .appointment-mobile .appointment-block .date {
      min-width: 72px; } }
  @media screen and (orientation: landscape) {
    .appointment-mobile {
      height: 90% !important;
      width: 90% !important;
      overflow-y: auto; }
      .appointment-mobile .fa-times {
        right: 0 !important;
        top: 0 !important; }
      .appointment-mobile .primary-btn {
        margin: 20px 0; } }

.rtl .appointment-head {
  direction: rtl;
  text-align: right; }
  .rtl .appointment-head .fa-times {
    right: auto;
    left: -15px; }
    @media screen and (max-width: 768px) {
      .rtl .appointment-head .fa-times {
        right: auto !important;
        left: 0 !important; } }

.appointment-head .fa-times {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 3;
  top: -15px;
  right: -15px;
  border-radius: 50%;
  background: #000;
  opacity: 1;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease; }
  .appointment-head .fa-times:hover {
    color: var(--color-secondary); }
  @media screen and (max-width: 768px) {
    .appointment-head .fa-times {
      top: 0 !important;
      right: 0 !important; } }

.appointment-head div {
  display: flex;
  justify-content: space-between;
  align-items: baseline; }
  .appointment-head div h2 {
    padding: 0 !important;
    font-size: 1.45rem;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.5px; }
  .appointment-head div span {
    font-size: 2rem; }

.appointment-head span {
  font-size: 14px;
  color: grey; }

.rtl .appointment-block {
  text-align: right;
  direction: rtl; }

.appointment-block .block-head {
  display: flex;
  font-size: 1.1rem;
  justify-content: space-between; }
  .appointment-block .block-head :nth-child(2) {
    margin-top: 3px;
    color: grey; }

.appointment-block .block-input {
  height: 35px;
  padding-top: 9px;
  margin: 5px;
  font-size: 1rem;
  border: 1px solid #eee; }

.appointment-block input[type="checkbox"] {
  height: auto;
  width: auto;
  display: inline;
  margin-right: 10px;
  float: left; }

.appointment-block label {
  margin-top: 3px; }

.appointment-mobile .appointment-block label {
  font-size: 12px;
  margin-top: 15px; }

.rtl .appointment-block input[type="checkbox"] {
  float: right;
  margin-left: 10px;
  margin-right: 0; }

.close-line {
  margin: -10px auto 40px auto;
  width: 60px;
  height: 3px;
  background: grey;
  border-radius: 1px;
  top: 0; }

.close-rect {
  height: 100px;
  position: absolute;
  width: 100vw;
  top: 0;
  right: 0; }

.date-slot {
  padding: 3px; }

.date {
  min-height: 45px;
  min-width: 100px;
  background: #eee;
  cursor: pointer;
  text-align: center;
  color: #000;
  padding: 7px 15px 0 15px; }

.selected > .date {
  background: var(--color-secondary);
  color: #fff; }

.chevron-wrapper {
  cursor: pointer;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  font-size: 10px;
  color: grey;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 8px -3px rgba(160, 158, 158, 0.5); }
  .chevron-wrapper:active {
    background: var(--color-secondary); }

.chevron-wrapper-mobile {
  height: 30px;
  width: 30px;
  font-size: 10px;
  color: grey;
  display: flex;
  justify-content: center;
  align-items: center; }

.close {
  cursor: pointer; }

#public-tour-root .sweep-pop {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  z-index: 1111111111;
  max-width: 100vw !important;
  max-height: 100vh !important; }
  #public-tour-root .sweep-pop .fa-times {
    top: -10px;
    right: -10px; }
  #public-tour-root .sweep-pop.text {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    height: 40px;
    line-height: 40px;
    width: 400px;
    font-size: 16px;
    padding: 0; }
  #public-tour-root .sweep-pop.image {
    height: 500px;
    width: 600px;
    max-width: 100vw;
    max-height: 100vh;
    background: #fff; }
    #public-tour-root .sweep-pop.image.s {
      height: 400px; }
    #public-tour-root .sweep-pop.image .img {
      height: 100%;
      width: 100%;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      display: block; }
  #public-tour-root .sweep-pop.video, #public-tour-root .sweep-pop.iframe {
    height: 400px;
    width: 600px; }
    #public-tour-root .sweep-pop.video iframe, #public-tour-root .sweep-pop.iframe iframe {
      height: 100%;
      width: 100%;
      background: #f8f8f8; }
  #public-tour-root .sweep-pop.iframe {
    width: 1500px;
    height: 600px; }
  #public-tour-root .sweep-pop.green-screen {
    background: transparent; }
    #public-tour-root .sweep-pop.green-screen.left {
      right: auto; }
    #public-tour-root .sweep-pop.green-screen.right {
      left: auto; }
      #public-tour-root .sweep-pop.green-screen.right .close {
        left: -10px;
        right: auto; }
    #public-tour-root .sweep-pop.green-screen video {
      height: 100%;
      width: 100%;
      background: #f8f8f8;
      background: transparent; }

.numeric-keypad {
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #EEEEEE;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(6, 40px);
  grid-template-rows: repeat(6, 60px);
  grid-gap: 5px;
  border: 10px solid #707070;
  font-family: Montserrat;
  font-size: 30px;
  text-align: center; }
  .numeric-keypad .key {
    border: 2px solid;
    border-radius: 5px;
    grid-column: span 2;
    font-size: 20px;
    text-align: center;
    background: black;
    background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.129289) 16%, #707070 100%, #989898 100%);
    border-image-source: linear-gradient(to right bottom, #949494 100%, #707070 100%); }
    .numeric-keypad .key:hover {
      border: 1px solid #eeeeee; }
  .numeric-keypad .input {
    font-family: Montserrat;
    font-size: 25px;
    background: #D0D0D0;
    border: none;
    grid-column: span 6;
    -moz-appearance: textfield; }
    .numeric-keypad .input:focus {
      outline-color: #D0D0D0; }
    .numeric-keypad .input::-webkit-outer-spin-button, .numeric-keypad .input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .numeric-keypad .header {
    grid-column: span 6; }

.fullscreen {
  height: 100%;
  width: 100%;
  background: #f8f8f8; }

@-webkit-keyframes expand {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes expand {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.buttonBg.expand {
  animation: expand 2s infinite; }

.base-tour {
  font-family: "Hind", "Helvetica", "Arial", sans-serif;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background: #f8f8f8;
  position: relative; }
  .base-tour > div,
  .base-tour > div > div {
    height: 100%;
    width: 100%;
    background: #f8f8f8; }
  .base-tour .svg-inline--fa {
    height: 15px;
    width: auto !important; }
  .base-tour i {
    font-size: 14px;
    height: auto !important;
    width: auto !important; }
  .base-tour .legal-note {
    width: 100%;
    text-align: center;
    padding: 0 120px;
    font-size: 10px;
    color: #fff;
    position: fixed;
    z-index: 3;
    line-height: 1.4;
    top: 10px; }
    .base-tour .legal-note.rtl {
      direction: rtl; }
    @media screen and (max-width: 768px) and (orientation: portrait) {
      .base-tour .legal-note {
        width: 100%;
        text-align: left;
        padding: 0 20px 0 20px;
        bottom: 120px;
        top: auto; }
        .base-tour .legal-note.rtl {
          text-align: right; } }
  .base-tour .tourLogin {
    background: #000;
    overflow: hidden;
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    height: 100vh; }
    .base-tour .tourLogin img {
      width: 200px;
      left: auto;
      top: auto;
      position: relative;
      display: block;
      max-height: 200px;
      margin: 0 auto 20px; }
    .base-tour .tourLogin form {
      position: absolute;
      right: 0;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 300px;
      height: 300px; }
    .base-tour .tourLogin input {
      width: 100%;
      height: 50px;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      margin-bottom: 20px; }
    .base-tour .tourLogin button {
      width: 100%;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      background: var(--color-primary); }
  .base-tour .buttonsBg {
    position: absolute;
    right: 0;
    margin-top: 80px;
    transition: all 0.3s ease;
    z-index: 10; }
    @media screen and (max-width: 768px) {
      .base-tour .buttonsBg {
        margin-top: 60px; } }
    @media screen and (orientation: landscape) and (max-width: 900px) {
      .base-tour .buttonsBg {
        margin-top: 50px; } }
    .base-tour .buttonsBg.open {
      right: 250px; }
  .base-tour .buttonBg {
    position: relative;
    padding: 13px;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    top: 0;
    right: 0;
    display: block;
    margin-bottom: 10px; }
    .base-tour .buttonBg .hamburger:focus {
      outline: none; }
    .base-tour .buttonBg svg,
    .base-tour .buttonBg i {
      height: 20px;
      color: #fff;
      vertical-align: middle;
      margin: 2px 10px;
      font-size: 18px;
      transition: all 0.3s ease; }
    .base-tour .buttonBg.active {
      background: var(--color-secondary); }
      .base-tour .buttonBg.active:hover {
        background: #fff; }
      .base-tour .buttonBg.active svg,
      .base-tour .buttonBg.active i {
        color: #fff; }
    .base-tour .buttonBg:hover svg,
    .base-tour .buttonBg:hover i {
      color: var(--color-secondary); }
    .base-tour .buttonBg p {
      color: #fff;
      font-size: 1em;
      margin: 0 15px; }
      .base-tour .buttonBg p:hover {
        color: var(--color-primary); }
    .base-tour .buttonBg a {
      color: #fff;
      font-size: 1.2em;
      margin: 0 15px; }
      .base-tour .buttonBg a:hover {
        color: var(--color-secondary); }
  .base-tour.preview {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 100px);
    margin-top: 20px; }
    .base-tour.preview .inner {
      position: relative;
      width: 100%;
      height: 100%; }
    .base-tour.preview nav {
      height: 100%;
      position: absolute; }
  .base-tour .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 99;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    transition: all 0.3s ease; }
  .base-tour .overlay.open {
    display: block; }
  .base-tour nav {
    position: absolute;
    right: -250px;
    width: 250px;
    top: 20px;
    z-index: 110;
    transition: all 0.3s ease;
    padding-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px; }
    .base-tour nav h2 {
      color: #fff;
      font-size: 1.1em;
      font-weight: normal;
      font-style: normal;
      margin-left: 25px;
      margin-bottom: 30px;
      text-transform: uppercase; }
    .base-tour nav.rtl {
      text-align: right;
      direction: rtl; }
      .base-tour nav.rtl h2 {
        margin-right: 25px;
        margin-left: 0; }
      .base-tour nav.rtl #book i,
      .base-tour nav.rtl .appointmentButton i,
      .base-tour nav.rtl .contactButton i {
        margin-left: 10px;
        margin-right: 0; }
    .base-tour nav #book,
    .base-tour nav .appointmentButton,
    .base-tour nav .contactButton {
      width: 200px;
      position: relative;
      right: 0;
      left: 0;
      margin: 0 auto;
      text-decoration: none;
      margin-bottom: 20px;
      border-radius: 6px;
      padding: 10px 0;
      color: #fff;
      font-size: 0.9em;
      display: block;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer; }
      .base-tour nav #book:hover,
      .base-tour nav .appointmentButton:hover,
      .base-tour nav .contactButton:hover {
        background-color: var(--color-secondary) !important; }
      .base-tour nav #book i,
      .base-tour nav .appointmentButton i,
      .base-tour nav .contactButton i {
        margin-right: 10px; }
    .base-tour nav .appointmentButton {
      background-color: var(--color-secondary); }
    .base-tour nav .contactButton {
      background-color: var(--color-primary); }
    .base-tour nav.open {
      right: 0; }
    .base-tour nav li {
      display: block;
      font-size: 1em;
      width: 100%;
      padding: 8px 23px;
      color: #fff;
      border-left: 2px solid transparent;
      position: relative;
      margin: 0 auto;
      transition: color 0.3s ease;
      line-height: 1.4;
      cursor: pointer; }
      .base-tour nav li:hover {
        color: var(--color-secondary) !important; }
      .base-tour nav li a {
        display: block;
        height: 100%; }
    .base-tour nav .sublinks,
    .base-tour nav .sub_sublinks {
      margin-left: 10px; }
      .base-tour nav .sublinks li,
      .base-tour nav .sub_sublinks li {
        color: #ccc; }
        .base-tour nav .sublinks li:hover,
        .base-tour nav .sub_sublinks li:hover {
          color: #fff !important; }
    .base-tour nav #menu {
      max-height: 40vh;
      overflow-y: auto;
      font-size: 0.9em;
      margin-bottom: 20px; }
      .base-tour nav #menu::-webkit-scrollbar-track {
        background: var(--color-primary); }
      .base-tour nav #menu::-webkit-scrollbar-thumb {
        border-radius: 2px;
        background: var(--color-secondary); }
      .base-tour nav #menu::-webkit-scrollbar {
        width: var(--scroll-bar-size);
        background: var(--color-primary); }
      .base-tour nav #menu .fa-caret-down {
        color: #fff;
        float: right;
        position: relative;
        top: 2px; }
      .base-tour nav #menu.rtl {
        text-align: right;
        direction: rtl; }
        .base-tour nav #menu.rtl .fa-caret-down {
          float: left; }
      .base-tour nav #menu .mainLink {
        user-select: cursor; }
        .base-tour nav #menu .mainLink ul {
          display: none;
          margin-top: 8px;
          padding-bottom: 0; }
        .base-tour nav #menu .mainLink.open {
          background: var(--color-secondary);
          color: #fff !important; }
          .base-tour nav #menu .mainLink.open > svg,
          .base-tour nav #menu .mainLink.open > i {
            transform: rotate(180deg); }
      .base-tour nav #menu .closed {
        display: none; }
    .base-tour nav .contact {
      text-align: left;
      padding: 0 25px;
      position: relative;
      width: 100%;
      margin: 20px 0; }
      .base-tour nav .contact.rtl span {
        text-align: right; }
      .base-tour nav .contact.rtl span i {
        margin-left: 5px;
        margin-right: 0; }
      .base-tour nav .contact.rtl img {
        margin-right: 10px;
        margin-left: 0; }
      .base-tour nav .contact span {
        display: block;
        color: #fff;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
        font-size: 12px;
        margin-bottom: 20px;
        cursor: pointer;
        transition: all 0.3s ease; }
        .base-tour nav .contact span:hover,
        .base-tour nav .contact span:hover i {
          color: var(--color-secondary); }
        .base-tour nav .contact span i {
          margin-right: 5px;
          transition: all 0.3s ease; }
      .base-tour nav .contact h5 {
        color: #fff;
        text-align: center;
        display: block;
        font-size: 12px; }
        @media screen and (max-width: 768px) {
          .base-tour nav .contact h5 {
            display: none; } }
      .base-tour nav .contact img {
        height: 30px;
        margin-left: 10px;
        vertical-align: middle; }
  .base-tour .inner {
    height: 100vh;
    width: 100vw;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s ease;
    overflow: hidden; }
  .base-tour .logo {
    position: absolute;
    z-index: 4;
    left: 20px;
    top: 20px;
    width: 100px; }
    .base-tour .logo.width {
      width: 200px; }
    @media screen and (max-width: 768px) {
      .base-tour .logo {
        width: 70px;
        top: 20px; }
        .base-tour .logo.width {
          width: 140px; } }
  .base-tour .lock-layer {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }
  .base-tour iframe {
    height: calc(100vh + 60px);
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transition: all 0.25s ease; }
  .base-tour .showcase.mesurements-mobile-not-fullscreen {
    height: 100vh; }
  .base-tour header .fa-phone,
  .base-tour header .fa-envelope {
    color: #000;
    font-size: 15px;
    position: relative; }
  .base-tour header .fa-clock,
  .base-tour header .fa-envelope {
    color: #000;
    font-size: 15px;
    position: relative; }
  .base-tour header .fa-envelope {
    margin-left: 15px; }
  .base-tour .youtube {
    height: 200px;
    width: 350px;
    position: absolute;
    bottom: 0;
    left: 60px;
    z-index: 10000; }
  @media screen and (max-width: 768px) {
    .base-tour #currentRoom {
      display: none; } }
  .base-tour .youtube .fa-times {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    padding: 8px;
    font-size: 14px;
    line-height: 10px;
    z-index: 2; }
  @media screen and (max-width: 768px) {
    .base-tour .youtube {
      width: 250px;
      height: 150px;
      right: 10px; } }
  .base-tour #ytplayer {
    height: 100%;
    width: 100%; }
  .base-tour .popup {
    background: #fff;
    height: 90%;
    width: 90%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 8px; }
    .base-tour .popup .close {
      position: absolute;
      float: none;
      z-index: 3;
      top: -15px;
      right: -15px;
      padding: 0;
      opacity: 1;
      font-size: 14px;
      cursor: pointer;
      background: #fff;
      border-radius: 50%;
      height: 30px;
      width: 30px;
      line-height: 38px;
      text-align: center; }
      .base-tour .popup .close:hover svg,
      .base-tour .popup .close:hover i {
        color: var(--color-secondary); }
      .base-tour .popup .close svg,
      .base-tour .popup .close i {
        color: #aaa;
        font-size: 20px;
        transition: all 0.3s ease; }
    .base-tour .popup h2 {
      font-size: 1.4em;
      padding: 20px 0;
      text-align: center; }
    .base-tour .popup .square-button {
      margin-top: 20px;
      text-align: center; }
    .base-tour .popup input {
      border-bottom: 1px solid #ccc; }
    .base-tour .popup iframe {
      height: 100% !important;
      width: 100% !important;
      position: relative;
      top: 0;
      left: 0;
      border-radius: 8px; }
    .base-tour .popup.rtl {
      text-align: right; }
      .base-tour .popup.rtl input {
        text-align: right; }
  .base-tour #external-popup {
    z-index: 111; }
  .base-tour #contact-pop {
    max-height: 550px;
    max-width: 600px; }
    .base-tour #contact-pop .contact-popup-content {
      overflow-y: auto;
      height: 100%;
      padding: 30px; }
    @media screen and (max-width: 768px) {
      .base-tour #contact-pop {
        max-height: 100vh;
        height: 92%; } }
    @media screen and (max-width: 768px) and (orientation: landscape) {
      .base-tour #contact-pop {
        overflow-y: auto;
        overflow-x: hidden; }
        .base-tour #contact-pop .close {
          top: 0;
          right: 0; } }
    .base-tour #contact-pop .appointment-block label {
      font-size: 12px; }
    .base-tour #contact-pop h2 {
      text-align: left;
      font-weight: normal;
      font-style: normal;
      padding: 0;
      font-size: 18px;
      margin-top: -10px;
      margin-bottom: 30px; }
    .base-tour #contact-pop .input-c {
      width: 49%;
      margin-bottom: 10px; }
      .base-tour #contact-pop .input-c.full {
        width: 100%; }
      .base-tour #contact-pop .input-c label {
        font-weight: normal; }
      .base-tour #contact-pop .input-c input,
      .base-tour #contact-pop .input-c textarea {
        border: 1px solid #eee; }
      .base-tour #contact-pop .input-c textarea {
        height: 100px; }
    .base-tour #contact-pop .square-button {
      background: var(--color-secondary);
      color: #fff;
      width: 120px;
      float: right;
      margin-top: 0; }
    .base-tour #contact-pop .agent-cards {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px; }
      .base-tour #contact-pop .agent-cards .agent-card {
        flex-basis: 50%; }
        @media screen and (max-width: 768px) {
          .base-tour #contact-pop .agent-cards .agent-card {
            width: 100% !important;
            flex-basis: 100%; } }
        .base-tour #contact-pop .agent-cards .agent-card:first-child {
          margin-left: 0; }
        .base-tour #contact-pop .agent-cards .agent-card .img {
          background-size: cover;
          background-repeat: no-repeat;
          height: 60px;
          width: 60px;
          border-radius: 50%;
          background-position: center;
          display: inline-block;
          vertical-align: middle; }
        .base-tour #contact-pop .agent-cards .agent-card .text {
          display: inline-block;
          margin-left: 10px;
          vertical-align: middle;
          width: calc(100% - 70px); }
          .base-tour #contact-pop .agent-cards .agent-card .text h4 {
            font-size: 16px;
            margin-bottom: 2px;
            text-overflow: ellipsis;
            overflow: hidden;
            width: 100%;
            white-space: nowrap; }
          .base-tour #contact-pop .agent-cards .agent-card .text a {
            color: var(--color-secondary); }
  .base-tour #share-pop {
    height: 200px;
    width: 300px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: auto;
    right: 120px;
    top: auto;
    bottom: 100px;
    padding: 20px; }
    @media screen and (max-width: 768px) {
      .base-tour #share-pop {
        background: #fff;
        bottom: 0;
        right: 0;
        width: 100%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        height: 260px;
        text-align: center; } }
    .base-tour #share-pop h3 {
      color: #fff;
      margin-bottom: 25px;
      font-size: 18px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop h3 {
          color: #000;
          text-align: left; } }
    .base-tour #share-pop .fa-times {
      color: #fff;
      font-size: 15px; }
    .base-tour #share-pop .close {
      background: none !important;
      margin: 0;
      height: auto;
      width: auto;
      line-height: 1;
      top: 10px;
      right: 15px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .close svg,
        .base-tour #share-pop .close i {
          color: #000; } }
    .base-tour #share-pop .switchLabel {
      color: #fff;
      margin-top: 30px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .switchLabel {
          position: relative;
          width: 100%;
          color: #000;
          text-align: left; } }
      .base-tour #share-pop .switchLabel > div {
        position: relative;
        top: 5px; }
        @media screen and (max-width: 768px) {
          .base-tour #share-pop .switchLabel > div {
            position: absolute !important;
            right: 0 !important; } }
    .base-tour #share-pop .primary-btn {
      border-radius: 0;
      background: var(--color-secondary) !important;
      color: #fff;
      height: 45px;
      width: 120px;
      float: right;
      margin-top: 20px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop .primary-btn {
          width: 100%;
          margin: 0;
          margin-top: 20px; } }
    .base-tour #share-pop button {
      background: #e5e5e5;
      border-radius: 50%;
      padding: 8px 10px;
      margin: 0 5px;
      height: 40px;
      width: 40px; }
      @media screen and (max-width: 768px) {
        .base-tour #share-pop button {
          margin: 0 10px; } }
      .base-tour #share-pop button:hover, .base-tour #share-pop button.active {
        background: var(--color-secondary); }
        .base-tour #share-pop button:hover svg,
        .base-tour #share-pop button:hover i, .base-tour #share-pop button.active svg,
        .base-tour #share-pop button.active i {
          color: #fff; }
      .base-tour #share-pop button svg,
      .base-tour #share-pop button i {
        height: 18px;
        font-size: 16px;
        vertical-align: middle; }
  .base-tour .adPop {
    height: 85%;
    width: 95%;
    max-width: 700px;
    max-height: 550px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000001;
    right: 0;
    bottom: 0;
    margin: auto; }
    @media screen and (max-width: 768px) {
      .base-tour .adPop {
        width: 320px;
        height: 450px; } }
    .base-tour .adPop .img {
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
      @media screen and (max-width: 768px) {
        .base-tour .adPop .img {
          height: 220px; } }
    .base-tour .adPop form {
      width: 100%;
      height: 120px;
      padding-top: 10px;
      background: #fff;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0; }
      @media screen and (max-width: 768px) {
        .base-tour .adPop form {
          height: 230px;
          padding: 10px 20px; } }
      .base-tour .adPop form.rtl input {
        text-align: right; }
      .base-tour .adPop form .square-button {
        width: calc(90% + 40px);
        clear: both;
        margin-top: 15px;
        background: var(--color-secondary);
        color: #fff; }
        .base-tour .adPop form .square-button:hover {
          background: var(--color-primary); }
      .base-tour .adPop form input {
        width: 30%;
        clear: none;
        display: inline-block;
        margin: 0 10px; }
        @media screen and (max-width: 768px) {
          .base-tour .adPop form input {
            width: 100%;
            margin: 5px 0; } }
  .base-tour form input,
  .base-tour form textarea {
    height: 40px;
    clear: both;
    width: 80%;
    position: relative;
    margin: 10px auto;
    right: 0;
    left: 0;
    padding: 5px;
    text-indent: 6px;
    font-size: 0.9em;
    background: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    display: block;
    font-family: "Open Sans Hebrew", sans-serif; }
  .base-tour form textarea {
    height: 80px; }
  .base-tour .mapPop iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  .base-tour form button {
    background: #58b504;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 4px;
    float: right;
    margin-right: 10%;
    margin-top: 10px;
    padding: 10px 40px;
    font-size: 0.9em; }
  .base-tour form p {
    line-height: 450px;
    text-align: center;
    font-size: 1.4em;
    position: absolute;
    top: 0;
    width: 100%; }
  .base-tour form input.error {
    border: 1px solid red; }
  .base-tour .fa-map-marked {
    right: 10px;
    bottom: 90px;
    left: auto; }
    .base-tour .fa-map-marked.active {
      color: var(--color-secondary); }
  .base-tour .autocadPop {
    height: 100px;
    text-align: center; }
  .base-tour .tagPop {
    height: 300px;
    width: 450px;
    max-height: 100vh;
    max-width: 100vw; }
    .base-tour .tagPop .fa-compress,
    .base-tour .tagPop .fa-expand {
      bottom: 10px;
      right: 10px; }
    .base-tour .tagPop iframe {
      height: 100%;
      width: 100%;
      background: #f8f8f8; }
  .base-tour .sharePop {
    height: 150px;
    text-align: center;
    padding: 20px 0;
    width: 320px; }
    @media screen and (max-width: 768px) {
      .base-tour .sharePop {
        width: 360px; } }
    .base-tour .sharePop .icon {
      color: #fff;
      background: var(--color-secondary);
      cursor: pointer;
      border-radius: 50%;
      padding: 10px;
      margin: 0 10px;
      display: inline-block;
      font-size: 1.7em; }
      .base-tour .sharePop .icon:hover {
        color: var(--color-primary); }
    .base-tour .sharePop label {
      display: block;
      margin-top: 20px; }
      .base-tour .sharePop label > div {
        top: 10px;
        margin-left: 10px;
        position: relative; }
  .base-tour .autocadPop h4 {
    padding: 10px 0;
    font-size: 1.1em; }
  .base-tour .autocadPop a {
    background: #000;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    display: inline-block; }
  .base-tour .autocadPop a:hover {
    background: #242424; }

.intro-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #888888;
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .intro-screen .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; }
  .intro-screen h1 {
    color: white;
    font-style: normal;
    font-size: 60px;
    font-weight: 700;
    max-width: 800px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .intro-screen h1 {
        max-width: 80%;
        font-size: 40px; } }
    @media screen and (max-width: 550px) {
      .intro-screen h1 {
        max-width: 90%;
        font-size: 30px; } }
    @media screen and (max-height: 569px) and (max-height: 569px) {
      .intro-screen h1 {
        font-size: 20px; } }
  .intro-screen h3 {
    font-style: normal;
    font-size: 14px;
    color: white;
    margin-bottom: 60px;
    max-width: 800px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .intro-screen h3 {
        max-width: 80%; } }
    @media screen and (max-width: 550px) {
      .intro-screen h3 {
        max-width: 90%;
        font-size: 12px; } }
    @media screen and (max-height: 569px) and (max-height: 569px) {
      .intro-screen h3 {
        font-size: 12px;
        margin-bottom: 30px; } }
  .intro-screen p {
    color: white; }
  .intro-screen .powered-by {
    margin-top: 60px; }
    @media screen and (max-width: 768px) {
      .intro-screen .powered-by {
        font-size: 12px;
        margin-top: auto;
        margin-bottom: 5px; } }
  .intro-screen .tour-play-btn {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    color: white;
    border-radius: 50%;
    font-size: 60px;
    margin-bottom: 60px;
    padding-left: 24px;
    padding-right: 18px;
    position: relative; }
    .intro-screen .tour-play-btn:focus {
      outline: none; }
    @media screen and (max-width: 375px) {
      .intro-screen .tour-play-btn {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .tour-play-btn {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px;
        margin-bottom: 30px; } }
  .intro-screen .loader-animation {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    position: relative;
    color: white;
    line-height: 150px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px; }
    .intro-screen .loader-animation:after {
      content: " ";
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      position: absolute;
      border-radius: 50%;
      border: 3px solid #fff;
      border-color: #fff transparent #fff transparent;
      animation: lds-dual-ring 1.2s linear infinite;
      top: 0;
      left: 0; }
    @media screen and (max-width: 375px) {
      .intro-screen .loader-animation {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .loader-animation {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        margin-bottom: 30px; } }
    .intro-screen .loader-animation .loader-title {
      font-size: 16px;
      color: white;
      line-height: 150px;
      text-align: center; }
      @media screen and (max-width: 375px) {
        .intro-screen .loader-animation .loader-title {
          line-height: 100px;
          font-size: 12px; } }
      @media screen and (max-height: 569px) {
        .intro-screen .loader-animation .loader-title {
          line-height: 100px;
          font-size: 12px; } }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .intro-screen .client-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-top: 60px; }
    @media screen and (max-width: 768px) {
      .intro-screen .client-logo {
        width: 100px;
        height: 100px; } }
    @media screen and (max-width: 375px) {
      .intro-screen .client-logo {
        width: 60px;
        height: 60px; } }
    @media screen and (max-height: 569px) {
      .intro-screen .client-logo {
        width: 60px;
        height: 60px;
        margin-top: 30px !important; } }
  .intro-screen .logo {
    width: 100px; }
  .intro-screen .logo-divider {
    color: white; }
  .intro-screen .mp-logo {
    height: 18px;
    margin-bottom: 3px; }

.timer {
  z-index: 2;
  position: absolute;
  color: black;
  margin: 0px;
  right: 0;
  top: 44px;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px;
  color: white; }

.middleContainer {
  padding: 1rem;
  color: white;
  padding-top: 0px; }

.noPadding {
  padding: 0px; }

#global-fullscreen #public-tour-root .game-tour-main {
  background: url("/login.png") center center/cover no-repeat fixed black;
  height: 100vh;
  overflow: auto; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-form {
    min-width: 300px;
    padding-top: 100px;
    color: #ffffff;
    text-align: center; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-gameName {
    margin: 15px 0 0;
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: center;
    color: #f8f8f8; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-welcome {
    margin: 0 0 15px;
    opacity: 0.6;
    font-size: 26px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    color: #f8f8f8; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-input::placeholder {
    color: #d9d9d9; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-input {
    margin: 36px 0 40px 0;
    padding: 22px 0 22px 0;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    height: 68px;
    font-size: 20px;
    font-weight: 500; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-buttons-wrap {
    text-align: left; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-btn:focus {
    outline: 0px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4); }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-start {
    background-color: var(--color-secondary);
    color: #fff; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-btn {
    height: 86px;
    font-size: 20px;
    border-radius: 5px;
    width: 48%;
    font-size: 26px;
    font-weight: 600; }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-tutorial {
    background-color: #d2d2d2;
    color: var(--color-secondary);
    float: right;
    border: 2px solid var(--color-secondary); }
  #global-fullscreen #public-tour-root .game-tour-main .game-tour-video {
    margin-top: 53px;
    height: 400px;
    margin-bottom: 100px; }
    #global-fullscreen #public-tour-root .game-tour-main .game-tour-video iframe {
      height: 100%;
      width: 100%; }
  #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen {
    font-size: 15px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-congratz {
      display: flex;
      justify-content: center; }
      #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-congratz div:first-child {
        padding: 0px 15px;
        background: #00ff0059;
        border-radius: 3px;
        line-height: 34px; }
      #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-congratz div:nth-child(2) {
        padding: 0px 15px;
        line-height: 34px;
        font-size: 17px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-mgs1 {
      margin-top: 15px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-score-mgs {
      margin-top: 35px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-score-value {
      font-size: 45px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-time-mgs {
      margin-top: 25px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-time-value {
      font-size: 45px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-credits-mgs {
      margin-top: 15px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-credits-block {
      margin-top: 5px;
      font-size: 25px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-buttons-block {
      margin-top: 15px;
      margin-bottom: 100px; }
    #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-buttons-block {
      display: flex;
      justify-content: center; }
      #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-buttons-block .game-endgame-buttons {
        border-radius: 16px;
        width: 32px;
        height: 32px;
        line-height: 34px;
        text-align: left;
        padding-left: 9px;
        margin: 0px 5px;
        cursor: pointer; }
        #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-buttons-block .game-endgame-buttons.endgame-buttons-blue {
          background: #00ccff; }
        #global-fullscreen #public-tour-root .game-tour-main.game-endgame-screen .endgame-buttons-block .game-endgame-buttons.endgame-buttons-red {
          background: var(--color-secondary); }
  #global-fullscreen #public-tour-root .game-tour-main .game-login-greeting-block {
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px; }
    #global-fullscreen #public-tour-root .game-tour-main .game-login-greeting-block iframe {
      width: 100%;
      height: 100%; }
    #global-fullscreen #public-tour-root .game-tour-main .game-login-greeting-block img {
      width: 100%;
      height: 100%; }
  @media only screen and (max-width: 720px) {
    #global-fullscreen #public-tour-root .game-tour-main .game-tour-form {
      height: 100%;
      padding-top: 67px; }
    #global-fullscreen #public-tour-root .game-tour-main .game-tour-welcome {
      margin: 0;
      opacity: 0.6;
      font-size: 20px;
      font-weight: 600;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.35;
      letter-spacing: normal;
      text-align: center;
      color: #f8f8f8; }
    #global-fullscreen #public-tour-root .game-tour-main .game-tour-gameName {
      margin: 0;
      font-size: 30px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.37;
      letter-spacing: normal;
      text-align: center;
      color: #f8f8f8; }
    #global-fullscreen #public-tour-root .game-tour-main .game-tour-video {
      margin-bottom: 0px;
      height: initial; }
      #global-fullscreen #public-tour-root .game-tour-main .game-tour-video iframe {
        height: 188px; }
    #global-fullscreen #public-tour-root .game-tour-main .game-tour-btn {
      width: 100%;
      margin-bottom: 20px;
      height: 60px;
      font-size: 20px; }
    #global-fullscreen #public-tour-root .game-tour-main .game-tour-input {
      height: 65px;
      font-size: 16px; }
    #global-fullscreen #public-tour-root .game-tour-main .game-tour-buttons-wrap {
      padding-bottom: 25px; }
    #global-fullscreen #public-tour-root .game-tour-main .game-login-greeting-block {
      overflow: auto; } }

#global-fullscreen .game-universal-show-button {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  bottom: 61px;
  z-index: 1;
  border-radius: 15px;
  text-align: center;
  padding-top: 4px;
  cursor: pointer; }

#global-fullscreen .game-show-hint-button {
  left: 101px; }
  #global-fullscreen .game-show-hint-button:hover, #global-fullscreen .game-show-hint-button.active {
    background-color: var(--color-secondary); }
  #global-fullscreen .game-show-hint-button.disabled {
    background-color: #d7d7d7; }

#global-fullscreen .game-show-backpack-button {
  left: 61px; }
  #global-fullscreen .game-show-backpack-button:hover, #global-fullscreen .game-show-backpack-button.active {
    background-color: var(--color-secondary); }

#global-fullscreen .game-show-hint-modal {
  display: none;
  position: absolute;
  z-index: 1;
  width: 50%;
  height: calc(100% - 200px);
  left: 25%;
  top: 100px;
  color: #ffffff; }
  #global-fullscreen .game-show-hint-modal.active {
    display: block; }
  #global-fullscreen .game-show-hint-modal .game-modal-content-wrap {
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 15px; }
  #global-fullscreen .game-show-hint-modal .game-modal-header-wrap {
    padding-left: 80px;
    height: 35px;
    cursor: pointer; }
    #global-fullscreen .game-show-hint-modal .game-modal-header-wrap .game-hint-label {
      display: inline-block;
      border-bottom: 35px solid #2d2d2d;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      height: 0;
      width: 207px;
      float: left;
      text-align: center;
      position: absolute; }
      #global-fullscreen .game-show-hint-modal .game-modal-header-wrap .game-hint-label.active {
        border-bottom: 45px solid black;
        margin-top: -10px;
        z-index: 1; }
    #global-fullscreen .game-show-hint-modal .game-modal-header-wrap .game-hintB {
      margin-left: 176px; }
    #global-fullscreen .game-show-hint-modal .game-modal-header-wrap .game-solution {
      margin-left: 350px; }
  #global-fullscreen .game-show-hint-modal .hint-modal-close-button {
    position: absolute;
    left: calc(50% - 12px);
    bottom: -26px; }
  #global-fullscreen .game-show-hint-modal .hint-modal-content-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  #global-fullscreen .game-show-hint-modal .game-hint-open-button {
    height: 35px;
    width: 138px;
    border-radius: 5px; }

#global-fullscreen .game-tour-timer {
  position: absolute;
  right: 0px;
  top: 174px;
  z-index: 1;
  width: 227px;
  height: 205px;
  padding: 20px 32px 30px 24.4px;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  color: #ffffff; }
  #global-fullscreen .game-tour-timer i.fa-times {
    position: absolute;
    left: 22px;
    top: 27px;
    display: none;
    font-size: 25px; }
  #global-fullscreen .game-tour-timer .game-user-label {
    margin: 0 0 14px 0;
    font-size: 25px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: right;
    color: #f8f8f8; }
    #global-fullscreen .game-tour-timer .game-user-label i.fa-user-circle {
      margin-right: 5px; }
  #global-fullscreen .game-tour-timer .game-timer-time-label {
    margin: 0 0 0 2px;
    opacity: 0.7;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: right;
    color: #f8f8f8; }
  #global-fullscreen .game-tour-timer .game-timer-time {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: normal;
    text-align: right;
    color: #f8f8f8; }
  #global-fullscreen .game-tour-timer .game-timer-progress-label {
    margin-top: 14px;
    opacity: 0.7;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: right;
    color: #f8f8f8; }
  #global-fullscreen .game-tour-timer .game-timer-progress {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: normal;
    text-align: right;
    color: #f8f8f8; }
  @media only screen and (max-width: 720px) {
    #global-fullscreen .game-tour-timer {
      width: 90%; }
      #global-fullscreen .game-tour-timer.minimized {
        width: 74px;
        height: 73px;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px; }
        #global-fullscreen .game-tour-timer.minimized div {
          display: none; }
      #global-fullscreen .game-tour-timer i.fa-times {
        display: block; } }

#global-fullscreen .game-condition-popup-modal {
  width: 90%;
  margin: 5%;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 15px;
  z-index: 2;
  position: absolute;
  text-align: center; }
  #global-fullscreen .game-condition-popup-modal .gamecond-button-wrap {
    margin-top: 15px; }
  #global-fullscreen .game-condition-popup-modal img {
    max-width: 100%; }
  #global-fullscreen .game-condition-popup-modal iframe {
    width: 100%;
    min-height: 500px; }

@media only screen and (max-width: 720px) {
  #global-fullscreen .game-show-hint-modal.active {
    z-index: 3; }
  #global-fullscreen .game-show-hint-modal .game-modal-header-wrap {
    height: 35px;
    padding-left: 50px; }
    #global-fullscreen .game-show-hint-modal .game-modal-header-wrap .game-hint-label {
      margin-top: 5px;
      border-bottom: 30px solid #2d2d2d;
      width: 115px; }
      #global-fullscreen .game-show-hint-modal .game-modal-header-wrap .game-hint-label.active {
        border-bottom: 35px solid black;
        margin-top: 0px;
        z-index: 1; }
      #global-fullscreen .game-show-hint-modal .game-modal-header-wrap .game-hint-label.game-hintB {
        margin-left: 87px; }
      #global-fullscreen .game-show-hint-modal .game-modal-header-wrap .game-hint-label.game-solution {
        margin-left: 173px; }
  #global-fullscreen .game-universal-show-button {
    width: 35px;
    height: 35px;
    bottom: 90px;
    z-index: 2; }
  #global-fullscreen .game-show-hint-modal {
    height: 70%;
    width: 100%;
    overflow: hidden;
    left: 0px; } }

.game-tutorial-modal {
  overflow: visible;
  padding: 25px;
  width: 100%;
  height: 100%; }
  .game-tutorial-modal i.fas.fa-times {
    top: 5px;
    right: 5px; }
  .game-tutorial-modal .game-tutorial-modal-wrap {
    position: relative;
    margin: auto;
    overflow-x: auto; }
    .game-tutorial-modal .game-tutorial-modal-wrap iframe {
      width: 100%;
      height: 100%; }
    .game-tutorial-modal .game-tutorial-modal-wrap img {
      width: 100%;
      height: 100%; }

.game-time-is-up-modal {
  overflow: visible;
  padding: 25px;
  width: 100%;
  height: 100%; }
  .game-time-is-up-modal i.fas.fa-times {
    top: 5px;
    right: 5px; }
  .game-time-is-up-modal .game-tutorial-modal-wrap {
    position: relative;
    margin: auto;
    overflow-x: auto; }
    .game-time-is-up-modal .game-tutorial-modal-wrap iframe {
      width: 100%;
      height: 100%; }
    .game-time-is-up-modal .game-tutorial-modal-wrap img {
      width: 100%;
      height: 100%; }
    .game-time-is-up-modal .game-tutorial-modal-wrap .game-time-is-up-text {
      height: 300px;
      width: 500px;
      background: white;
      padding: 15px;
      border-radius: 5px;
      margin: auto;
      position: relative;
      margin-top: 20px; }

.close-button {
  position: absolute;
  top: 10px;
  right: 10px; }

.close-button .icon-close {
  font-size: 14px;
  text-shadow: none;
  color: #222; }

.close-button.close-button-light .icon-close {
  color: #fff; }

.close-button.close-button-shadow .icon-close {
  color: #fff;
  text-shadow: 1px 1px 2px #000; }

@font-face {
  font-family: mp-font;
  src: url(/fonts/mp-font.woff2) format("woff2"), url(/fonts/mp-font.woff) format("woff"), url(/fonts/mp-font.svg#mp-font) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: block; }

.mp-font {
  font-family: mp-font !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-toggle-pencil:before {
  content: "\E90C"; }

.icon-notes:before {
  content: "\E901"; }

.icon-brush-outline:before {
  content: "\E902"; }

.icon-comment:before {
  content: "\E903"; }

.icon-reply:before {
  content: "\E904"; }

.icon-blur-outline:before {
  content: "\E909"; }

.icon-arrows:before {
  content: "\E972"; }

.icon-error:before {
  content: "\E971"; }

.icon-info:before {
  content: "\E96E"; }

.icon-revert:before {
  content: "\E970"; }

.icon-delete:before {
  content: "\E952"; }

.icon-settings:before {
  content: "\E94C"; }

.icon-list:before {
  content: "\E966"; }

.icon-question:before {
  content: "\E908"; }

.icon-blocked:before {
  content: "\E90D"; }

.icon-dpad-down:before {
  content: "\E90E"; }

.icon-dpad-left:before {
  content: "\E90F"; }

.icon-dpad-right:before {
  content: "\E910"; }

.icon-dpad-up:before {
  content: "\E911"; }

.icon-close:before {
  content: "\E912"; }

.icon-ext-link:before {
  content: "\E936"; }

.icon-pause:before {
  content: "\E938"; }

.icon-pin:before {
  content: "\E939"; }

.icon-play-unicode:before {
  content: "\E93A"; }

.icon-fullscreen2:before {
  content: "\E91B"; }

.icon-user:before {
  content: "\E943"; }

.icon-minus:before {
  content: "\E94E"; }

.icon-zoom-reset:before {
  content: "\E94F"; }

.icon-360:before {
  content: "\E90B"; }

.icon-rotate:before {
  content: "\E93D"; }

.icon-photo-2d:before {
  content: "\E94A"; }

.icon-photo-360:before {
  content: "\E94B"; }

.icon-transitions:before {
  content: "\E973"; }

.icon-photo-add:before {
  content: "\E953"; }

.icon-hlr:before {
  content: "\E91C"; }

.icon-rotate-right:before {
  content: "\E961"; }

.icon-rotate-left:before {
  content: "\E962"; }

.icon-play:before {
  content: "\E93B"; }

.icon-start-location:before {
  content: "\E90A"; }

.icon-hlr-badge:before {
  content: "\E900"; }

.icon-eye-hide:before {
  content: "\E905"; }

.icon-eye-show:before {
  content: "\E906"; }

.icon-more-vert:before {
  content: "\E907"; }

.icon-mesh:before {
  content: "\E954"; }

.icon-vr:before {
  content: "\E944"; }

.icon-floor-controls-all:before {
  content: "\E914"; }

.icon-floor-controls:before {
  content: "\E915"; }

.icon-panorama:before {
  content: "\E916"; }

.icon-dollhouse:before {
  content: "\E917"; }

.icon-floorplan:before {
  content: "\E918"; }

.icon-fullscreen-exit:before {
  content: "\E919"; }

.icon-fullscreen:before {
  content: "\E91A"; }

.icon-share:before {
  content: "\E93E"; }

.icon-link:before {
  content: "\E91D"; }

.icon-email:before {
  content: "\E91E"; }

.icon-facebook:before {
  content: "\E91F"; }

.icon-linkedin:before {
  content: "\E920"; }

.icon-pinterest:before {
  content: "\E921"; }

.icon-twitter:before {
  content: "\E922"; }

.icon-media-mix:before {
  content: "\E946"; }

.icon-stem-height:before {
  content: "\E951"; }

.icon-toolbar-360-view:before {
  content: "\E956"; }

.icon-toolbar-edit-vr:before {
  content: "\E957"; }

.icon-toolbar-hlr:before {
  content: "\E958"; }

.icon-toolbar-labels:before {
  content: "\E959"; }

.icon-toolbar-mattertags:before {
  content: "\E95A"; }

.icon-toolbar-measurements:before {
  content: "\E95B"; }

.icon-toolbar-more-horiz:before {
  content: "\E95C"; }

.icon-toolbar-photos:before {
  content: "\E95D"; }

.icon-toolbar-scan-mgmt:before {
  content: "\E95E"; }

.icon-toolbar-start-location:before {
  content: "\E95F"; }

.icon-checkmark:before {
  content: "\E968"; }

.icon-back:before {
  content: "\E965"; }

.icon-plus:before {
  content: "\E967"; }

.icon-help:before {
  content: "\E96D"; }

.icon-escape-key:before {
  content: "\E96A"; }

.icon-draw-lines:before {
  content: "\E96B"; }

.icon-drag-edit:before {
  content: "\E96C"; }

.icon-finger-drag:before {
  content: "\E97B"; }

.icon-press-hold:before {
  content: "\E97C"; }

.icon-tape-measure:before {
  content: "\E964"; }

[class*=" icon-"],
[class^=icon-] {
  font-family: mp-font !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class*=" icon-"] > :not([class^=path]),
[class^=icon-] > :not([class^=path]) {
  font-family: Roboto, sans-serif; }

.align-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.align-vcenter {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.button {
  position: relative;
  font-weight: 700;
  text-align: center;
  letter-spacing: .2px;
  color: #f5f4f3;
  transition: all .4s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  pointer-events: auto;
  line-height: 23px;
  padding: 8px 18px;
  background-color: #222;
  font-family: IBM Plex Sans;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden; }

.button:not(.button-small) {
  height: 39px;
  min-width: 100px; }

.button.button-small {
  height: 36px;
  line-height: 20px;
  font-size: 12px;
  letter-spacing: 1.5px; }

.button.button-large {
  padding: 7.5px 25px;
  height: 40px;
  line-height: 25px;
  letter-spacing: 2px; }

@media (max-width: 576px) {
  .button.button-large {
    padding-left: 15px;
    padding-right: 15px; } }

.button.button-clear {
  background-color: transparent;
  color: #fff; }

.button.button-toolbar {
  height: 55px;
  line-height: 40px;
  background-color: #fff;
  box-shadow: inset 1px 0 0 #dadada;
  color: #222;
  font-size: 14px;
  letter-spacing: 2px; }

@media (max-width: 576px) {
  .button.button-toolbar {
    font-size: 12px; } }

.button.button-toolbar.button-dimmed,
.button.button-toolbar.button-disabled {
  background-color: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.3); }

.button.button-light {
  background-color: #f5f4f3;
  color: #222; }

.button.button-light.button-dimmed,
.button.button-light.button-disabled {
  background-color: rgba(245, 244, 243, 0.3);
  color: rgba(0, 0, 0, 0.3); }

.button.button-secondary {
  height: 39px;
  line-height: 19px;
  border: 2px solid #222;
  color: #222;
  background-color: #fff; }

.button.button-secondary.button-light {
  border-color: #f5f4f3;
  color: #f5f4f3;
  background-color: transparent; }

.button.button-secondary.button-large {
  height: 40px;
  line-height: 23px; }

.button.button-secondary + .button {
  margin-left: 20px; }

.button.button-active,
.button.button-busy {
  background-color: #ff3158;
  color: #fff; }

.button.button-inline {
  display: inline-block; }

.button.button-dimmed,
.button.button-disabled {
  background-color: rgba(0, 0, 0, 0.3); }

.button.button-overlay {
  background-color: #fff;
  color: #222;
  border-radius: 30px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); }

.button.button-overlay.button-active,
.button.button-overlay.button-busy {
  background-color: #ff3158;
  color: #fff; }

.button.button-overlay.button-dimmed,
.button.button-overlay.button-disabled {
  background-color: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.5);
  box-shadow: none; }

.button.button-with-icon {
  display: flex;
  align-items: center;
  font-size: 14px; }

.button.button-with-icon.button-inline {
  display: inline-flex; }

.button.button-with-icon:not(.button-toolbar).button-large {
  font-size: 16px; }

.button.button-with-icon .icon {
  margin-right: 6px;
  font-size: 18px; }

.button.button-busy,
.button.button-decorative,
.button.button-disabled {
  pointer-events: none;
  cursor: default; }

.no-touch .button:not(.button-dimmed):hover {
  background-color: #ff3158;
  color: #fff; }

.no-touch .button:not(.button-dimmed).button-clear:hover {
  background-color: transparent;
  color: #ff3158; }

.no-touch .button:not(.button-dimmed).button-toolbar:hover {
  background-color: #fff;
  color: #ff3158; }

.no-touch .button:not(.button-dimmed).button-secondary:hover {
  background: #fff;
  color: #ff3158;
  border-color: #ff3158; }

.no-touch .button:not(.button-dimmed).button-overlay:hover {
  background-color: #ff3158;
  color: #fff; }

.no-touch .button.button-dimmed.button-overlay:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.5); }

.icon-button {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  font-weight: 700;
  text-align: center;
  letter-spacing: .2px;
  transition-property: opacity, color, background-color;
  transition-duration: .5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  pointer-events: auto; }

.icon-button .icon {
  padding: 10px;
  line-height: 35px;
  color: #f5f4f3;
  font-family: mp-font;
  text-shadow: 1px 1px 2px #000;
  font-size: 22px; }

.icon-button.icon-button-plain {
  padding: 0;
  border-radius: 0; }

.icon-button.icon-button-plain .icon {
  color: #222;
  font-size: 14px;
  line-height: 41px;
  text-shadow: none; }

.icon-button.icon-button-plain.button-dimmed .icon {
  color: #bdbdbd; }

.icon-button.icon-button-toolbar {
  height: 55px;
  min-width: 44px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: inset 1px 0 0 #dadada; }

.icon-button.icon-button-toolbar .icon {
  color: #222;
  line-height: 55px;
  text-shadow: none; }

.icon-button.icon-button-toolbar .icon.icon-help {
  font-size: 16px; }

.icon-button.icon-button-toolbar .icon.icon-revert {
  font-size: 24px; }

.icon-button.icon-button-overlay {
  height: 31px;
  width: 31px;
  margin: 5px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0;
  vertical-align: top;
  text-transform: none; }

.icon-button.icon-button-overlay .icon {
  padding: 0;
  color: #fff;
  font-size: 15px;
  text-shadow: none; }

.icon-button.icon-button-overlay.button-dimmed,
.icon-button.icon-button-overlay.button-disabled {
  background-color: rgba(0, 0, 0, 0.2); }

.icon-button.icon-button-overlay.button-dimmed .icon,
.icon-button.icon-button-overlay.button-disabled .icon {
  color: rgba(255, 255, 255, 0.3); }

.icon-button.icon-button-overlay > span {
  line-height: 31px; }

.icon-button.icon-button-overlay.button-active,
.icon-button.icon-button-overlay.button-busy {
  background-color: #222; }

.icon-button.icon-button-overlay.button-active .icon,
.icon-button.icon-button-overlay.button-busy .icon {
  color: #ff3158; }

.icon-button.icon-button-primary {
  height: 40px;
  width: 40px;
  font-size: 18px;
  background-color: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); }

.icon-button.icon-button-primary .icon {
  color: #222;
  text-shadow: none; }

.icon-button.icon-button-primary.button-active,
.icon-button.icon-button-primary.button-busy {
  background-color: #ff3158; }

.icon-button.icon-button-primary.button-active .icon,
.icon-button.icon-button-primary.button-busy .icon {
  color: #fff; }

.icon-button.icon-button-primary.button-dimmed,
.icon-button.icon-button-primary.button-disabled {
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: none; }

.icon-button.icon-button-primary.button-dimmed .icon,
.icon-button.icon-button-primary.button-disabled .icon {
  color: rgba(0, 0, 0, 0.5); }

.icon-button.button-disabled {
  opacity: .5; }

.icon-button.button-active .icon,
.icon-button.button-busy .icon {
  color: #ff3158;
  text-shadow: none; }

.icon-button.button-interactive {
  position: absolute;
  top: 0;
  right: 0; }
  .icon-button.button-interactive .icon {
    font-size: 16px; }

.icon-button:not(.button-interactive) {
  cursor: default;
  pointer-events: none; }

.icon-button.button-interactive:not(.button-dimmed):active .icon {
  color: #ff3158;
  text-shadow: none; }

.icon-button.button-interactive:not(.button-dimmed):active.icon-button-overlay {
  background-color: #222; }

.icon-button.button-interactive:not(.button-dimmed):active.icon-button-primary {
  background-color: #ff3158; }

.icon-button.button-interactive:not(.button-dimmed):active.icon-button-primary .icon {
  color: #fff; }

.icon-button-social {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  text-align: center;
  color: #222;
  background: #f5f4f3;
  border-radius: 100%;
  cursor: pointer; }

.icon-button-social .icon {
  color: inherit;
  text-shadow: none;
  font-size: 24px; }

.no-touch .icon-button:not(.button-disabled):not(.button-dimmed):hover .icon {
  color: #ff3158;
  text-shadow: none; }

.no-touch .icon-button:not(.button-disabled):not(.button-dimmed):hover.icon-button-overlay {
  background-color: #222; }

.no-touch .icon-button:not(.button-disabled):not(.button-dimmed):hover.icon-button-primary {
  background-color: #ff3158; }

.no-touch .icon-button:not(.button-disabled):not(.button-dimmed):hover.icon-button-primary .icon {
  color: #fff; }

[data-balloon] {
  position: relative; }

[data-balloon]:after,
[data-balloon]:before {
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .05s ease-out .05s;
  bottom: 100%;
  left: 50%;
  position: absolute;
  z-index: 75;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
  line-height: normal; }

[data-balloon]:before {
  content: "";
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(0, 0, 0, 0.75)' d='M2.658 0h32.004c-6 0-11.627 12.002-16.002 12.002C14.285 12.002 8.594 0 2.658 0z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-bottom: 5px; }

[data-balloon]:after {
  content: attr(data-balloon);
  padding: 6px;
  margin-bottom: 11px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  color: #fff;
  font-family: Roboto;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .2px;
  white-space: nowrap; }

[data-balloon][data-balloon-size=xs]:after {
  font-size: 10px;
  padding: .3em; }

[data-balloon]:hover:not(.disabled):not(.tooltip-hidden):after,
[data-balloon]:hover:not(.disabled):not(.tooltip-hidden):before {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1; }

[data-balloon][data-balloon-pos=down-left]:before,
[data-balloon][data-balloon-pos=down-right]:before,
[data-balloon][data-balloon-pos=down]:before {
  bottom: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(0, 0, 0, 0.75)' d='M33.342 12H1.338c6 0 11.627-12.002 16.002-12.002C21.715-.002 27.406 12 33.342 12z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 2px;
  margin-bottom: 0; }

[data-balloon][data-balloon-pos=down-left]:after,
[data-balloon][data-balloon-pos=down-right]:after,
[data-balloon][data-balloon-pos=down]:after {
  margin-top: 8px;
  bottom: auto;
  top: 100%; }

[data-balloon][data-balloon-pos=down]:after {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%); }

[data-balloon][data-balloon-pos=down-left]:after {
  left: 20px;
  -webkit-transform: translate(-100%);
  transform: translate(-100%); }

[data-balloon][data-balloon-pos=down-right]:after {
  left: calc(50% - 14px);
  -webkit-transform: translate(0);
  transform: translate(0); }

[data-balloon][data-balloon-pos=left]:after,
[data-balloon][data-balloon-pos=left]:before {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

[data-balloon][data-balloon-pos=left]:after {
  margin-right: 11px; }

[data-balloon][data-balloon-pos=left]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(0, 0, 0, 0.75)' d='M0 33.342V1.338c0 6 12.002 11.627 12.002 16.002C12.002 21.715 0 27.406 0 33.342z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0; }

[data-balloon][data-balloon-pos=right]:after,
[data-balloon][data-balloon-pos=right]:before {
  bottom: auto;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

[data-balloon][data-balloon-pos=right]:after {
  margin-left: 11px; }

[data-balloon][data-balloon-pos=right]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(0, 0, 0, 0.75)' d='M12 2.658v32.004c0-6-12.002-11.627-12.002-16.002C-.002 14.285 12 8.594 12 2.658z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px; }

[data-balloon][data-balloon-pos=right]:hover:after,
[data-balloon][data-balloon-pos=right]:hover:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

[data-balloon][data-balloon-pos=up-right]:after {
  left: 11px;
  -webkit-transform: none;
  transform: none; }

[data-balloon][data-balloon-pos=up-left]:after {
  left: auto;
  right: 0;
  -webkit-transform: none;
  transform: none; }

[data-balloon][data-balloon-width]:after {
  white-space: normal; }

[data-balloon][data-balloon-width][data-balloon-width=small]:after {
  width: 80px; }

[data-balloon][data-balloon-width][data-balloon-width=medium]:after {
  width: 135px; }

[data-balloon][data-balloon-width][data-balloon-width=large]:after {
  width: 260px; }

[data-balloon][data-balloon-width][data-balloon-width=xlarge]:after {
  width: 90vw; }

@media screen and (min-width: 768px) {
  [data-balloon][data-balloon-width][data-balloon-width=xlarge]:after {
    width: 380px; } }

[data-balloon][data-balloon-width][data-balloon-width=fit]:after {
  width: 100%; }

[data-balloon][data-balloon-pre]:after {
  white-space: pre; }

[data-balloon].tooltip-hidden:after,
[data-balloon].tooltip-hidden:before {
  opacity: 0; }

button[data-balloon] {
  overflow: visible; }

.mobile [data-balloon]:after,
.mobile [data-balloon]:before {
  opacity: 0; }

button.icon {
  padding: 0;
  background: inherit;
  border: none;
  outline: inherit;
  font-size: inherit; }

button.icon:not(.disabled) {
  pointer-events: auto;
  cursor: pointer; }

button.icon:not(.disabled):hover,
button.icon:not(.disabled):hover:before {
  color: #ff3158; }

.tour-container .outerScrollbarWrapper {
  position: relative;
  overflow: hidden;
  width: calc(100% + 27px);
  height: calc(100% + 27px);
  margin-right: -27px; }

.tour-container .outerScrollbarWrapper.button-scrolling.vertical .innerScrollbarWrapper {
  top: 40px;
  bottom: 40px; }

.tour-container .outerScrollbarWrapper.button-scrolling.horizontal .innerScrollbarWrapper {
  left: 40px;
  right: 40px; }

.tour-container .outerScrollbarWrapper .innerScrollbarWrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  touch-action: manipulation; }

.tour-container .outerScrollbarWrapper .innerScrollbarWrapper .paddingScrollbarWrapper {
  position: absolute;
  padding-right: 27px;
  padding-bottom: 27px;
  box-sizing: content-box; }

.tour-container .outerScrollbarWrapper .scrollbarTrack {
  position: absolute;
  bottom: 27px;
  right: 27px;
  background-color: transparent;
  border-radius: 5px; }

.tour-container .outerScrollbarWrapper .scrollbarTrack .scrollbarThumb {
  position: relative;
  transition: opacity .25s ease-in-out;
  opacity: 0;
  background-color: rgba(181, 180, 179, 0.5);
  border-radius: 5px; }

.tour-container .outerScrollbarWrapper .scrollbarTrack.horizontal {
  left: 0;
  height: 8px;
  margin-right: 8px;
  margin-left: 8px; }

.tour-container .outerScrollbarWrapper .scrollbarTrack.horizontal .scrollbarThumb {
  height: 4px; }

.tour-container .outerScrollbarWrapper .scrollbarTrack.vertical {
  top: 0;
  width: 8px;
  margin-top: 8px;
  margin-bottom: 8px; }

.tour-container .outerScrollbarWrapper .scrollbarTrack.vertical .scrollbarThumb {
  width: 4px; }

.tour-container .outerScrollbarWrapper.dual-scroll {
  overflow: scroll; }

.tour-container .outerScrollbarWrapper.vertical,
.tour-container .outerScrollbarWrapper.verticalOnly {
  height: 100%; }

.tour-container .outerScrollbarWrapper.vertical .scroll-forward,
.tour-container .outerScrollbarWrapper.verticalOnly .scroll-forward {
  bottom: 0; }

.tour-container .outerScrollbarWrapper.vertical .innerScrollbarWrapper,
.tour-container .outerScrollbarWrapper.verticalOnly .innerScrollbarWrapper {
  overflow-x: hidden;
  overflow-y: scroll; }

.tour-container .outerScrollbarWrapper.vertical .innerScrollbarWrapper .paddingScrollbarWrapper,
.tour-container .outerScrollbarWrapper.verticalOnly .innerScrollbarWrapper .paddingScrollbarWrapper {
  padding-bottom: 0; }

.tour-container .outerScrollbarWrapper.horizontal,
.tour-container .outerScrollbarWrapper.horizontalOnly {
  width: 100%; }

.tour-container .outerScrollbarWrapper.horizontal .scroll-forward,
.tour-container .outerScrollbarWrapper.horizontalOnly .scroll-forward {
  right: 0; }

.tour-container .outerScrollbarWrapper.horizontal .innerScrollbarWrapper,
.tour-container .outerScrollbarWrapper.horizontalOnly .innerScrollbarWrapper {
  overflow-x: scroll;
  overflow-y: hidden; }

.tour-container .outerScrollbarWrapper.horizontal .innerScrollbarWrapper .paddingScrollbarWrapper,
.tour-container .outerScrollbarWrapper.horizontalOnly .innerScrollbarWrapper .paddingScrollbarWrapper {
  padding-right: 0; }

.tour-container .outerScrollbarWrapper .scroll-forward {
  position: absolute; }

.tour-container div:active > .outerScrollbarWrapper .scrollbarTrack.horizontal .scrollbarThumb,
.tour-container div:active > .outerScrollbarWrapper .scrollbarTrack.vertical .scrollbarThumb,
.tour-container div:active > div > .outerScrollbarWrapper .scrollbarTrack.horizontal .scrollbarThumb,
.tour-container div:active > div > .outerScrollbarWrapper .scrollbarTrack.vertical .scrollbarThumb,
.tour-container div:hover > .outerScrollbarWrapper .scrollbarTrack.horizontal .scrollbarThumb,
.tour-container div:hover > .outerScrollbarWrapper .scrollbarTrack.vertical .scrollbarThumb,
.tour-container div:hover > div > .outerScrollbarWrapper .scrollbarTrack.horizontal .scrollbarThumb,
.tour-container div:hover > div > .outerScrollbarWrapper .scrollbarTrack.vertical .scrollbarThumb {
  opacity: 1; }

.tour-container #reel.sorting .scrollbarTrack {
  visibility: hidden; }

.tour-container #pause-button {
  opacity: 1;
  transition: opacity .5s;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  cursor: pointer; }

.tour-container #pause-button.faded-out {
  opacity: 0;
  pointer-events: none; }

.tour-container #pause-button.faded-out * {
  pointer-events: none !important; }

.tour-container #pause-button img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(2);
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
  transition: all .7s; }

.tour-container #pause-button img.justPaused {
  opacity: 1;
  transition: all .7s;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1); }

.tour-container .tour-playing #pause-button {
  pointer-events: auto; }

.tour-container .overlay-ui {
  width: 100%;
  height: 100%; }

.tour-container .overlay-layer,
.tour-container .overlay-ui {
  position: absolute;
  top: 0;
  left: 0; }

.tour-container .overlay-layer {
  bottom: 0;
  right: 0;
  overflow: hidden; }

.tour-container *,
.tour-container :after,
.tour-container :before {
  box-sizing: border-box; }

.tour-container select,
.tour-container textarea {
  font-family: Roboto;
  letter-spacing: .2px; }

.tour-container canvas {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.tour-container p {
  letter-spacing: .2px; }

.tour-container input {
  font-family: Roboto; }

.tour-container input:focus {
  outline-color: #ff3158; }

.tour-container .hidden {
  display: none !important; }

.tour-container .invisible {
  visibility: hidden; }

.tour-container ::-moz-selection {
  background: rgba(255, 49, 88, 0.1); }

.tour-container ::selection {
  background: rgba(255, 49, 88, 0.1); }

.tour-container .link,
.tour-container .link-btn {
  cursor: pointer;
  color: inherit;
  letter-spacing: .2px;
  pointer-events: auto;
  transition: color .25s; }

.tour-container .link-btn.link,
.tour-container .link.link {
  white-space: nowrap;
  text-decoration: underline;
  font-weight: 500; }

.tour-container .link-btn.disabled,
.tour-container .link.disabled {
  opacity: .3;
  pointer-events: none;
  cursor: default; }

.tour-container .link-btn.active,
.tour-container .link.active {
  color: #ff3158;
  pointer-events: none;
  text-decoration: none;
  cursor: default; }

.tour-container .link-btn:hover,
.tour-container .link:hover {
  color: #ff3158; }

.tour-container .clear-floats:after {
  content: "";
  display: table;
  clear: both; }

.tour-container .strong {
  font-weight: 700; }

.tour-container .note {
  font-size: .8em;
  font-weight: 500;
  color: #777; }

.tour-container #terms-modal #terms-wrapper {
  position: absolute;
  top: 50px;
  left: 50px;
  right: 25px;
  bottom: 50px;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.tour-container #terms-modal #terms-wrapper #terms-text {
  padding-right: 25px; }

.tour-container #terms-modal.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin: 0;
  height: 80vh;
  max-width: 95%;
  max-height: 95%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  overflow-y: scroll;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border: 0;
  pointer-events: auto;
  color: #fff;
  z-index: 111;
  background: rgba(0, 0, 0, 0.5); }

.tour-container #help-modal .navigation {
  display: table;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%); }

@media only screen and (max-height: 600px) and (max-width: 700px) {
  .tour-container #help-modal .navigation {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); } }

.tour-container #help-modal .navigation.small {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.tour-container #help-modal .navigation .row {
  display: flex;
  justify-content: center;
  align-items: center; }

.tour-container #help-modal .navigation .row.topInfo {
  font-size: 16px;
  letter-spacing: .2px; }

.tour-container #help-modal .navigation .row.topInfo .column {
  padding: 6vh 4vw; }

.tour-container #help-modal .navigation .row.bigImage img {
  vertical-align: bottom;
  width: calc(3.2vh + 3.2vw);
  margin-bottom: 15px; }

.tour-container #help-modal .navigation .row.bigImage img[src="/images/nav_help_mouse_click.png"],
.tour-container #help-modal .navigation .row.bigImage img[src="/images/nav_help_mouse_position_right.png"] {
  width: calc(3.936vh + 3.936vw); }

.tour-container #help-modal .navigation .row.bigImage img[src="/images/nav_help_mouse_position_left.png"] {
  width: calc(3.744vh + 3.744vw); }

.tour-container #help-modal .navigation .row.hr .column {
  padding: 3vh; }

.tour-container #help-modal .navigation .row.hr .column hr {
  width: 6vh; }

.tour-container #help-modal .navigation .row.hr .column.noDivider {
  visibility: hidden; }

.tour-container #help-modal .navigation .row.bottomInfo {
  font-size: 16px; }

.tour-container #help-modal .navigation .row.bottomInfo .column {
  padding: 0 6vw 6vh; }

.tour-container #help-modal .navigation .row.keyboard img {
  vertical-align: middle;
  width: 8.66vh; }

.tour-container #help-modal .navigation .row.keyboard img[src="/images/nav_help_inside_key.png"],
.tour-container #help-modal .navigation .row.keyboard img[src="/images/nav_help_keyboard_up_down.png"] {
  width: 4.33vh; }

.tour-container #help-modal .navigation .row.keyboard img[src="/images/nav_help_keyboard_all.png"] {
  width: 12.99vh; }

@media only screen and (max-height: 600px) and (max-width: 700px) {
  .tour-container #help-modal .navigation .row.keyboard img {
    width: 10vh; }
  .tour-container #help-modal .navigation .row.keyboard img[src="/images/nav_help_inside_key.png"],
  .tour-container #help-modal .navigation .row.keyboard img[src="/images/nav_help_keyboard_up_down.png"] {
    width: 5vh; }
  .tour-container #help-modal .navigation .row.keyboard img[src="/images/nav_help_keyboard_all.png"] {
    width: 15vh; } }

.tour-container #help-modal .navigation .row .column {
  display: table-cell;
  width: 30%; }

@media only screen and (max-height: 600px) and (max-width: 700px) {
  .tour-container #help-modal .navigation .row.bottomInfo,
  .tour-container #help-modal .navigation .row.topInfo {
    font-size: 2vw; }
  .tour-container #help-modal .navigation .row.bottomInfo .column,
  .tour-container #help-modal .navigation .row.topInfo .column {
    padding: 0 2vw 4vh; } }

@media only screen and (max-height: 600px) and (max-width: 700px) {
  .tour-container #help-modal .navigation.small .row {
    font-size: 1.9vw; }
  .tour-container #help-modal .navigation.small .row .column {
    padding: 0 1.5vw 3vh; } }

@media only screen and (orientation: landscape) {
  .tour-container #help-modal.mobile .navigation {
    width: 90%; }
  .tour-container #help-modal.mobile .navigation .row.topInfo {
    font-size: 1.9vw; }
  .tour-container #help-modal.mobile .navigation .row.topInfo .column {
    padding: 2vw 4vw; }
  .tour-container #help-modal.mobile .navigation .row.bigImage img {
    width: 6.3vw; }
  .tour-container #help-modal.mobile .navigation .row.bigImage img[src="/images/nav_help_gesture_drag.png"] {
    width: 5.87511628vw; }
  .tour-container #help-modal.mobile .navigation .row.bigImage img[src="/images/nav_help_gesture_tap.png"] {
    width: 8.20465116vw; }
  .tour-container #help-modal.mobile .navigation .row.bigImage img[src="/images/nav_help_gesture.drag_two_finger.png"] {
    width: 5.42093023vw; } }

@media only screen and (orientation: portrait) {
  .tour-container #help-modal.mobile .navigation {
    position: absolute;
    overflow: hidden;
    top: 55px;
    bottom: 20px;
    height: calc(100% - 75px);
    left: 0;
    right: 0;
    -webkit-transform: none;
    transform: none; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper {
    display: flex;
    flex-direction: column;
    width: 68vw;
    max-width: 218px; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row {
    font-size: 14px;
    margin: auto; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.topInfo {
    padding-top: 1.5em; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.bigImage {
    padding-top: 1em; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.bigImage img {
    width: 43px; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.bigImage img[src="/images/nav_help_gesture_drag.png"] {
    width: 40.1px; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.bigImage img[src="/images/nav_help_gesture_tap.png"] {
    width: 56px; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.bigImage img[src="/images/nav_help_gesture.drag_two_finger.png"] {
    width: 37px; }
  .tour-container #help-modal.mobile .navigation .paddingScrollbarWrapper {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); } }

@media screen and (min-height: 550px) and (orientation: portrait) {
  .tour-container #help-modal.mobile .navigation .paddingScrollbarWrapper {
    top: 50%;
    -webkit-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%); } }

@media screen and (min-height: 650px) and (orientation: portrait) {
  .tour-container #help-modal.mobile .navigation .nav-wrapper {
    max-width: 240px; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.topInfo {
    font-size: 16px;
    padding-top: 3em;
    padding-bottom: 1em; }
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.bigImage img {
    -webkit-transform: scale(1.4);
    transform: scale(1.4); } }

@media screen and (min-width: 650px) and (orientation: portrait) {
  .tour-container #help-modal.mobile .navigation .nav-wrapper > div.row.topInfo {
    font-size: 16px; } }

.tour-container #help-modal .more-help-wrapper {
  position: absolute;
  overflow: hidden;
  top: 55px;
  bottom: 20px;
  left: 0;
  right: 0; }

.tour-container #help-modal .more-help-wrapper .more-help {
  display: table;
  padding: 3vw; }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow {
  display: table-row; }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow > div {
  display: table-cell;
  table-layout: fixed;
  min-width: 190px;
  line-height: 1.29;
  padding: 0 1.5vw;
  width: 20vw; }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.topInfo {
  vertical-align: bottom;
  font-size: 1.45vw;
  font-weight: 500; }

@media screen and (max-width: 1100px) {
  .tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.topInfo {
    font-size: 16px; } }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage {
  padding: 1.85vw 0;
  font-size: 2.5vw;
  position: relative; }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage img {
  height: 2.5vw; }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage .icon-vr {
  font-size: 2vw; }

@media screen and (max-width: 1100px) {
  .tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage {
    padding: 20px 0;
    font-size: 30px; }
  .tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage .icon-vr {
    font-size: 24px; }
  .tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage img {
    height: 30px; } }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage.floors {
  position: relative;
  top: 5px; }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage.floors span span {
  position: absolute;
  top: 28%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.2vw;
  font-weight: 700; }

@media screen and (max-width: 1100px) {
  .tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bigImage.floors span span {
    font-size: 14px; } }

.tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bottomInfo {
  vertical-align: top;
  font-size: 1.25vw; }

@media screen and (max-width: 1100px) {
  .tour-container #help-modal .more-help-wrapper .more-help .innerRow > div.bottomInfo {
    font-size: 14px; } }

.tour-container #help-modal .more-help-wrapper .more-help .rowPadding {
  height: 10vh;
  min-height: 50px; }

@media screen and (min-height: 550px) {
  .tour-container #help-modal .more-help-wrapper.desktop .paddingScrollbarWrapper {
    top: 45%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%); } }

@media only screen and (orientation: portrait) {
  .tour-container #help-modal .more-help-wrapper.desktop .rowPadding {
    height: 15vh; } }

.tour-container #help-modal .more-help-wrapper.mobile .paddingScrollbarWrapper {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

@media only screen and (orientation: portrait) {
  .tour-container #help-modal .more-help-wrapper.mobile .more-help .innerRow > div {
    min-width: 40vw; }
  .tour-container #help-modal .more-help-wrapper.mobile .more-help .innerRow > div.topInfo {
    font-size: calc(8px + 1vh); }
  .tour-container #help-modal .more-help-wrapper.mobile .more-help .innerRow > div.bottomInfo {
    font-size: calc(5px + 1vh); } }

@media only screen and (orientation: landscape) {
  .tour-container #help-modal .more-help-wrapper.mobile .more-help .innerRow > div {
    min-width: 27vw; }
  .tour-container #help-modal .more-help-wrapper.mobile .more-help .innerRow > div.topInfo {
    font-size: calc(8px + 1vw); }
  .tour-container #help-modal .more-help-wrapper.mobile .more-help .innerRow > div.bottomInfo {
    font-size: calc(5px + 1vw); } }

.tour-container #help-modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: #dadada;
  z-index: 111;
  opacity: 0;
  transition: opacity .5s; }

.tour-container #help-modal.faded-in {
  opacity: 1;
  pointer-events: auto; }

.tour-container #help-modal .tabs {
  transition: all .3s;
  font-weight: 500; }

.tour-container #help-modal .tabs div {
  padding: 16px 55px 15px 20px;
  display: inline-block;
  font-size: 18px; }

.tour-container #help-modal .tabs div span {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  letter-spacing: .3px;
  transition: all .3s; }

.tour-container #help-modal .tabs div.active span {
  border-bottom: 1px solid #fff; }

.tour-container #help-modal .tabs div:hover {
  cursor: pointer;
  color: #ff3158; }

.tour-container #help-modal .tabs div:hover.active span {
  border-bottom: 1px solid #ff3158; }

.tour-container #help-modal.mobile .tabs div {
  padding: 16px 25px 15px 20px;
  font-size: 14px; }

