/* IMPORTS */
/* Google font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("./controllers.style.css");
@import url("./menu.style.css");
/* @import url('./introjs-modern.css'); */

/* Global variables */
:root {
  --menu-background: hsla(0, 0%, 100%, 0.85);
  --menu-text-color: hsl(0, 0%, 20%);
  --menu-icon-color: hsl(0, 0%, 50%);

  /* Adfectus colors */
  --adfectus-blue-dark: #00b6cd;
  --adfectus-blue: #b1ebf4;
  --adfectus-blue-light: #dbf9ff;
  --adfectus-red-dark: #ff8f59;
  --adfectus-red: #ffc59f;
  --adfectus-red-light: #ffead9;
  --adfectus-pink-dark: #ff90a0;
  --adfectus-pink: #ffc1cc;
  --adfectus-pink-light: #ffe5ed;
  --adfectus-green-dark: #00c1b3;
  --adfectus-green: #7ddbc9;
  --adfectus-green-light: #c3f0e7;
  --adfectus-yellow-dark: #ffb93e;
  --adfectus-yellow: #ffe5ad;
  --adfectus-yellow-light: #fff8de;
  --adfectus-green2-dark: #a5dca3;
  --adfectus-green2: #cdeec6;
  --adfectus-green2-light: #e4ffe7;
  --adfectus-purple-dark: #a6aad4;
  --adfectus-purple: #c1cdef;
  --adfectus-purple-light: #dde9ff;
}

/* Global styling */
* {
  box-sizing: border-box;
  max-width: 100%;
  font-family: "Roboto", sans-serif;
}

html,
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

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

button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 0;
  border-radius: 10px;
  background: #ffb93e;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

a {
  color: #00b5cd;
}

.hidden {
  display: none !important;
}
.vertical-spacer {
  height: 24px;
}

.container,
.panorama-viewer,
.matterport-iframe {
  width: 100vw;
  height: 100vh;
  border: 0 !important;
}
.p15 {
  padding: 15px;
}

/* SWIPER SLIDES */
.swiper-slide {
  object-fit: cover;
  object-position: top center;
}
.swiper-button-next,
.swiper-button-prev {
  color: #ffb93e !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.1) !important;
}
.swiper-pagination-bullet {
  width: 20px !important;
  height: 7px !important;
  border-radius: 20px !important;
  background: #fff !important;
  opacity: 0.75 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.5);
}
.swiper-pagination-bullet-active {
  background: #ffb93e !important;
  opacity: 1 !important;
}

.psv-navbar {
  display: none !important;
}

.qr-code-button {
  display: none !important;
  z-index: 999999;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  color: #333;
  font-size: 12px;
  border-radius: 0;
}

.cookie-container {
  z-index: 999999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner {
  width: 100%;
  max-width: 500px;
  /* height: 100%;
  max-height: 300px; */
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  /* border: 2px solid lightblue; */
  border-radius: 10px;
  box-shadow: 0 10px 20px hsla(200, 100%, 90%, 0.15),
    0 3px 6px hsla(200, 100%, 80%, 0.3);
}
h2.cookie-header {
  margin: 0;
  color: hsl(0, 0%, 25%);
}
.cookie-description {
  font-size: 18px;
}
.cookie-toggles {
  width: 100%;
}
.cookie-toggle {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cookie-toggle:nth-child(1) {
  margin-top: 0;
}
.cookie-toggle-description {
  margin-top: 6px;
  font-size: 12px;
}
.cookie-actions {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cookie-actions > * {
  width: 49%;
  padding: 12px 0;
  border-radius: 6px;
  border: 2px solid;
}
.cookie-reject-btn {
  background: transparent;
  color: #00b6cd;
  border-color: #00b6cd;
  font-weight: bold;
}
.cookie-accept-btn {
  background: #00b6cd;
  font-weight: bold;
  border-color: #00b6cd;
}

@media screen and (max-width: 650px) {
  .info-box-wrapper {
    right: -102%;
    width: 100%;
  }
  .info-box-wrapper.open {
    right: 0%;
  }
  .info-box {
    border-radius: 0;
  }
  .matterport-menu-box-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }
  .matterport-menu-box {
    border-radius: 0;
  }
  .matterport-menu-box .info-box-top {
    height: 50px;
  }
  .matterport-menu-box .info-box-top h2 {
    font-size: 16px;
  }
  .qr-code-button {
    display: none;
  }

  .cookie-container {
    align-items: flex-end;
  }
  .cookie-banner {
    border: 0;
    border-radius: 0;
  }
}
