@font-face {
  font-family: 'Arial, Helvetica, sans-serif';
  font-weight: 500;
		font-kerning: normal;
	padding-bottom: 4px;
  font-display: swap;
}
@font-face {
  font-family: 'Arial, Helvetica, sans-serif';
  font-weight: 700;
	font-kerning: normal;
	padding-bottom: 4px;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.view-360 {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  width: calc(var(--vw, 1vw) * 100);
  overflow: hidden;
  touch-action: none;
}

html.view-360 body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

body {
  font-family: 'DP', sans-serif;
  font-size: 16px;
}

html:not(.view-360) body {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  width: calc(var(--vw, 1vw) * 100);
  overflow: hidden;
  touch-action: none;
}

h1,
h2 {
  font-weight: 700;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  opacity: 1;
  transition: opacity .5s ease-in-out,
              z-index .5s ease-in-out;
  z-index: 999999;
}
.preloader.fade-out {
  opacity: 0;
  z-index: -1;
}
.preloader h1 {
  color: #72256B;
}
.preloader img {
  width: 50px;
  height: 50px;
}


.landscape-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}


/* Breadcrumbs */
.breadcrumbs-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  max-width: 100%;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs-wrapper::-webkit-scrollbar {
  display: none;
}
.breadcrumbs-wrapper::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 54px solid rgba(108, 160, 122, .9);
  border-right: 54px solid transparent;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  height: 54px;
  padding-left: 160px;
  padding-right: 8px;
  background: rgba(108, 160, 122, .9);
}
.breadcrumbs a::after {
  content: '>';
  display: inline-block;
  padding: 0 5px;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs a,
.breadcrumbs span {
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}
/* -- Breadcrumbs -- */


/* Menu */
.menu-open-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.menu-open-button-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-top: 100px solid #72256B;
  border-right: 150px solid transparent;
  cursor: pointer;
}
.menu-open-button {
  position: absolute;
  width: 30px;
  margin: 22px 0 0 20px;
  border: 0;
  outline: none;
  background: none;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  cursor: pointer;
}
.menu-open-button span {
  display: block;
  margin: 7px 0;
  border-top: 2px solid #fff;
}

.menu-close-button-wrapper {
  height: 60px;
  position: relative;
}
.menu-close-button {
  display: none;
  position: absolute;
  top: 14px;
  left: 20px;
  height: 36px;
  width: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  outline: none;
}
.menu-close-button::before,
.menu-close-button::after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 16px;
  width: 2px;
  background-color: #fff;
}
.menu-close-button::before {
  transform: rotate(45deg);
}
.menu-close-button::after {
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  height: 0;
  overflow: hidden;
  background-color: rgba(114, 37, 107, .9);
}
.menu > ul {
  padding-bottom: 60px;
}
.menu.active {
  height: 100%;
  overflow: visible;
}
.menu li {
  list-style: none;
}
.menu ul {
  width: 100%;
  max-width: 300px;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu ul::-webkit-scrollbar {
  display: none;
}
.menu a {
  display: flex;
  align-items: center;
  padding: 7px 15px 7px 20px;
  border-top: 2px solid #fff;
  color: #fff;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
}
.menu a::before {
  content: '';
  display: block;
  flex-shrink: 0;
  box-sizing: border-box;
  height: 36px;
  width: 36px;
  margin-right: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.menu ul ul.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  padding-top: 0;
  height: 0;
  background-color: rgba(16, 87, 66, .9);
  z-index: 3;
}

@media all and (min-width: 992px) {
  .menu li:hover ul {
    height: 100%;
    padding-top: 60px;
  }
}

@media all and (max-width: 991px) {
  .menu-close-button {
    display: block;
  }
  .menu ul ul.submenu.active {
    height: 100%;
    padding-top: 60px;
  }
}

.menu ul li:hover > a {
    background-color: #105742;
    color: #FFF;
}

/* -- Menu -- */


/* Video */
#smartVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#smartVideo video {
  object-fit: cover;
  outline: none !important;
}
.vjs-poster {
  background-size: cover;
}
.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.81666em;
  margin-left: -1.5em;
}
/* -- Video -- */


/* Footer controls */
.controls {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 280px;
  padding-right: 9px;
  background-color: rgba(114, 37, 107, .8);
  transition: 0.3s;
}
.controls::before {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  display: block;
  width: 0;
  height: 0;
  border-bottom: 70px solid rgba(114, 37, 107, .8);
  border-left: 70px solid transparent;
}
.controls::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  height: 0;
  width: 42px;
  border-bottom: 70px solid rgba(114, 37, 107, .8);
  border-left: 55px solid transparent;
  border-right: 0 solid transparent;
  z-index: -1;
}
.control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px 5px 10px;
  cursor: pointer;
  text-decoration: none !important;
  background: none;
  border: 0;
  outline: 0;
}
.control-button img {
  height: 35px;
  width: auto;
}
.control-button:last-child {
  margin-left: 12px;
}
/* -- Footer controls -- */


/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 20px 40px 20px 20px;
  background: #fff;
  z-index: 10;
}
.modal.active {
  display: block;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 40px;
  height: 40px;
  background: #009fe3;
  border: 0;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
  z-index: 1;
}
.modal-close::before,
.modal-close::after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 20px;
  width: 2px;
  background-color: #fff;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}
.modal img {
  display: block;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  height: 100%;
  object-fit: contain;
}
.modal h2 {
  width: 100%;
  font-weight: 700;
  color: #003399;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
#linksModal,
#linksModal a {
  color: #72256B;
}
#linksModal ol {
  counter-reset: item;
  list-style-type: none;
  padding-bottom: 30px;
}
#linksModal ol li {
  display: flex;
  margin-bottom: 5px;
}
#linksModal ol li::before {
  content: counter(item);
  counter-increment: item;
  width: 22px;
  flex-shrink: 0;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: calc(100% - 60px);
}
.modal-container::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 20px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%);
}
.modal-row {
  display: flex;
  height: 100%;
  width: 100%;
  margin-left: -15px;
  margin-right: -15px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-row::-webkit-scrollbar {
  display: none;
}
.modal-column {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.modal-column-header {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

#secondModal .modal-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#secondModal a {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: 20px;
  color: #003399;
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  border: 2px solid #009fe3;
  border-radius: 50px;
  text-decoration: none;
  outline: 0;
  padding: 7px;
  cursor: pointer;
}
#secondModal a:hover::before {
  transform: rotate(45deg);
}
#secondModal a::before {
  content: '';
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  background: url(../img/setting-icon.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
  transition: all .3s ease-in-out;
}

@media all and (max-width: 991px) {
  #secondModal .modal-row {
    margin-left: -10px;
    margin-right: -10px;
  }
  #secondModal .modal-column {
    padding-left: 10px;
    padding-right: 10px;
  }
  #secondModal a {
    margin-bottom: 15px;
    font-size: 15px;
  }
  #secondModal a::before {
    width: 20px;
    height: 20px;
  }
}
/* -- Modal -- */


/* iPhone safe-area fix */
@supports(padding:max(0px)) {
  body {
    padding-left: min(0vmin, env(safe-area-inset-left));
    padding-right: min(0vmin, env(safe-area-inset-right));
  }
}
/* -- iPhone safe-area fix -- */


/* Force rotate site to landscape */
@media screen and (orientation: portrait) {
  html.view-360,
  html:not(.view-360) body {
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 100vh;
    width: calc(var(--vh, 1vh) * 100);
    height: 100vw;
    height: calc(var(--vw, 1vw) * 100);
    position: absolute;
    top: 100%;
    left: 0;
  }
  .preloader {
    width: 100vh;
    width: calc(var(--vh, 1vh) * 100);
    height: 100vw;
    height: calc(var(--vw, 1vw) * 100);
  }
}
/* -- Force rotate site to landscape -- */


/* 360viewer */
#Claria360 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.popup {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 40px;
  width: 45%;
  height: 45%;
  background-color: rgba(0, 159, 227, .9);
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  z-index: 1;
  text-align: center;
}
.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.popup-close::before,
.popup-close::after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 20px;
  width: 3px;
  background-color: #fff;
}
.popup-close::before {
  transform: rotate(45deg);
}
.popup-close::after {
  transform: rotate(-45deg);
}
@media all and (max-width: 991px) {
  .popup {
    font-size: 18px;
    line-height: 24px;
  }
}
/* -- 360viewer -- */


/* Simple page content */
.page-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 100px;
}
.page-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
.page-content-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 20px;
  width: 100%;
  background: none;
}
.page-content {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  color: #72256B;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 30px;
  padding-bottom: 75px;
}
.page-content::-webkit-scrollbar {
  display: none;
}
.page-content h1 {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #72256B;
}

@media all and (max-width: 991px) {
  .page-wrapper {
    padding: 0 20px;
  }
  .page-content {
    padding-top: 20px;
  }
  .page-content h1 {
    font-size: 26px;
    text-align: right;
    margin-bottom: 35px;
  }
}
/* -- Simple page content -- */


/* Accordion */
.accordion-item {
  margin-bottom: 15px;
}
.accordion-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  outline: 0;
  font-size: 20px;
  font-weight: 700;
  color: #72256B;
  cursor: pointer;
  text-align: left;
}
.accordion-item-title::before {
  content: '+';
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #6CA07A;
  color: #fff;
  font-family: 'DP', sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  margin-right: 10px;
  overflow: hidden;
}
.accordion-item-title.active::before {
  content: '−';
}
.accordion-item-content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out
}
.accordion-item-content {
  padding-top: 5px;
  padding-left: 40px;
  line-height: 1.3;
}
.accordion-item-content ol,
.accordion-item-content ul {
  padding-left: 20px;
}
.accordion-item-content p {
  color: #72256B;
}
.accordion-item-content a {
  color: #4183c4;
}

.accordion-simple .accordion-item-content-wrapper {
  max-height: 100%;
  overflow: visible;
}
.accordion-simple .accordion-item-title::before {
  content: none;
}
.accordion-simple .accordion-item-content {
  padding-left: 0;
}
.accordion-simple .accordion-item-content a {
  color: #72256B;
  text-decoration: none;
}
@media all and (min-width: 1440px) {
  .accordion-simple .accordion-item {
    margin-bottom: 25px;
  }
  .accordion-simple .accordion-item-title {
    font-size: 25px;
  }
  .accordion-simple .accordion-item-content {
    font-size: 20px;
  }
}
/* -- Accordion -- */


/* Intro page */
.intro-page {
  background: #fff url(../img/myclaria-preview-bg.jpg) no-repeat;
  background-size: cover;
  padding: 0 50px;
}
.intro-page .page-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.preview-logo {
  height: 70px;
  object-fit: contain;
}
.intro-page p,
.intro-page li {
  width: 100%;
  color: #FFF;
  font-size: 20px;
  line-height: 1.4;
}
.intro-page .preview-text-top {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.preview-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 40px;
}
.preview-buttons button {
  width: 50%;
  color: #72256B;
  background: #CDDFD7;
  border-width: 0px;
  border-style: solid;
  border-color: #009fe3;
  border-radius: 50px;
  outline: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  padding: 20px 0;
  cursor: pointer;
  transition: color .2s ease-in-out;
}
.preview-buttons button div {
  transform: none;
}
.preview-buttons button:hover {
  color: #FFF;
  background: #6CA07A;
}
.preview-text {
  margin-top: 50px;
}
.preview-text ul {
  padding-left: 20px;
  margin-bottom: 5px;
}
.preview-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.preview-links a {
  font-size: 16px;
  color: #969696;
  text-decoration: none;
  margin: 10px;
}
.preview-links a:hover {
  text-decoration: underline;
}

@media all and (min-width: 1200px) {
  .intro-page .preview-text-top {
    margin-top: 100px;
  }
}

@media all and (max-width: 991px) {
  .intro-page {
    padding: 0 20px;
  }
  .intro-page .page-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .preview-logo {
    height: 40px;
  }
  .intro-page p,
  .intro-page li {
    font-size: 13px;
  }
  .intro-page .preview-text-top {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .preview-text {
    margin-top: 15px;
  }
  .preview-buttons {
    padding: 0 20px;
  }
  .preview-buttons button {
    font-size: 14px;
    padding: 12px 0;
  }
  .preview-links {
    margin-top: 20px;
  }
  .preview-links a {
    font-size: 13px;
  }
}
/* -- Intro page -- */


/* Privacy Policy page */
.go-back-link {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13px 20px;
  border-radius: 30px;
  background: #6CA07A;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}
.go-back-link::before {
  content: '';
  background: url(../img/left-chevron.svg) no-repeat;
  width: 10px;
  height: 10px;
  object-fit: contain;
  margin-right: 5px;
  filter: invert(1);
}
@media all and (max-width: 991px) {
  .go-back-link {
    top: 18px;
    left: 125px;
    padding: 10px;
    font-size: 12px;
  }
}

.otnotice h2 {
  margin-bottom: .5rem;
}
.otnotice ul {
  padding-left: 20px;
}
/* -- Privacy Policy page -- */


/* Video links */
.video-link {
  display: none;
  position: absolute;
}
/* -- Video links -- */


/* Welcome image */
.welcome-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* -- Welcome image -- */
