/**
 * theme-aware - Change color of a css property based on the currently active theme
 *
 * @param  {key}     CSS property
 * @param  {color}   Color name defined in the themes under _color-palette.scss
 *
 * @example - @include theme-aware('background', 'color-background');
 * @returns - background: #FFF;
 */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1600px) {
  .d-xxxl-none {
    display: none !important;
  }

  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1780px) {
  .d-xxxxl-none {
    display: none !important;
  }

  .d-xxxxl-inline {
    display: inline !important;
  }

  .d-xxxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxxl-block {
    display: block !important;
  }

  .d-xxxxl-table {
    display: table !important;
  }

  .d-xxxxl-table-row {
    display: table-row !important;
  }

  .d-xxxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxxl-flex {
    display: flex !important;
  }

  .d-xxxxl-inline-flex {
    display: inline-flex !important;
  }
}
/* Container with native scroll-snap */
.container {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  border-radius: 3em 3em 0 0;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* overscroll-behavior: contain;*/
}
.container::-webkit-scrollbar {
  display: none;
}

#ptr {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 50;
  transition: transform 0.25s ease;
  color: #666;
  font-size: 14px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 0;
}

.loading .spinner {
  opacity: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
svg, img {
  color-scheme: light;
}

/* Screen base styles */
.screen {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.screen-second {
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.screen-second.hidden .video, .screen-second.hidden .phone-wrapper {
  opacity: 0;
  pointer-events: none;
}

/* Close button */
@media (max-width: 767.98px) {
  .close-button {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 200;
    width: 40px;
    height: 40px;
    cursor: pointer;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    will-change: opacity;
    border-width: 1.5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 2px 12px 0;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .close-button .icon {
    padding-right: 10px;
    display: flex;
    position: relative;
    top: -1px;
  }
  .close-button .icon svg {
    stroke: #2f2c28;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .close-button .icon {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) and (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .close-button .icon {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .close-button:active {
    transform: scale(0.9);
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media (max-width: 991.98px) {
  .close-button {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .close-button {
    position: fixed;
    right: 18px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .close-button {
    position: fixed;
    right: 18px;
  }
}

/* Scroll hint */
/* .scroll-hint {
   position: fixed;
   top: 20px;
   left: 16px;
   z-index: 200;
   display: flex;
   align-items: center;
   gap: 6px;
   padding: 8px 14px;
   border-radius: 50px;
   background-color: transparent;
   border: 1px solid rgba(255, 255, 255, 0.3);
   will-change: opacity;

   span {
   	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
   }

 }*/
@media (max-width: 767.98px) {
  .scroll-btn {
    position: fixed;
    top: 20px;
    left: 16px;
    z-index: 200;
    display: flex;
    align-items: center;
    padding: 2px 12px 0 8px;
    border-width: 1.5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    height: 40px;
    background-color: transparent;
    will-change: opacity;
  }
}
@media (max-width: 767.98px) {
  .scroll-btn .btn {
    font-family: "Suisse-Book";
    font-weight: 300;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 0;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    background-color: transparent;
    cursor: default;
    gap: 6px;
  }
}
.scroll-btn .chevron-left {
  margin-top: -3px;
  animation: chevron-left-move 2s ease-in-out infinite;
}
.scroll-btn .chevron-right {
  margin-left: -6px;
  margin-top: -3px;
  animation: chevron-right-move 2s ease-in-out infinite;
}
@keyframes chevron-left-move {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
}
@keyframes chevron-right-move {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

/* Horizontal slides container */
.slides-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  height: 82%;
  margin-bottom: max(2%, calc(env(safe-area-inset-bottom) + 0%));
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slides-container::-webkit-scrollbar {
  display: none;
}

/* Individual slide */
.slide {
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: 20px;
  overflow: hidden;
}

.slide-text-type {
  width: 60vw;
  height: 100%;
}

.slide-placeholder-type {
  aspect-ratio: 736/1530;
  height: 100%;
  max-width: 79vw;
}

.slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 45px;
  font-size: 14px;
  line-height: 18px;
  font-family: "Suisse-Book";
  font-weight: 300;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.35);
}
.slide-content b {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 300;
  padding-bottom: 10px;
  text-align: center;
}

.slide-placeholder {
  padding: 0;
}

.placeholder-box {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 60px;
  position: relative;
  display: flex;
  align-items: center;
  /* padding-top: 20px;*/
  z-index: 9;
}
.placeholder-box .phone-wrapper {
  position: absolute;
  top: auto;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .placeholder-box .phone-wrapper {
    width: 100%;
    height: auto;
    left: auto;
    right: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .placeholder-box .phone-wrapper {
    width: 100%;
    height: auto;
    left: auto;
    right: auto;
  }
}
@media (pointer: coarse) and (max-device-width: 567px) {
  .placeholder-box .phone-wrapper {
    /*right: -3.5vw;*/
  }
}
@media (max-width: 767.98px) {
  .placeholder-box .phone-wrapper img {
    /*height: 75vh;
    width: auto;*/
    width: 100%;
    height: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .placeholder-box .phone-wrapper img {
    /*height: 75vh;
    width: auto;*/
    width: 100%;
    height: auto;
  }
}
.placeholder-box .video {
  position: absolute;
  top: auto;
  left: 0;
  z-index: -1;
}
.placeholder-box .video video, .placeholder-box .video img {
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .placeholder-box .video video, .placeholder-box .video img {
    border-radius: 4vh;
    /*height: calc(75vh - 12px);					
    width: auto;*/
    width: calc(100% - 22px);
    height: auto;
    position: relative;
    left: 0;
    top: 1px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .placeholder-box .video video, .placeholder-box .video img {
    border-radius: 4vh;
    /*height: calc(75vh - 12px);					
    width: auto;*/
    width: calc(100% - 22px);
    height: auto;
    position: relative;
    left: 0;
    top: 1px;
  }
}

/* Bottom bar */
.bottom-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 5px;
  will-change: opacity;
}

.tab-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 4px 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tab-item {
  border: none;
  white-space: nowrap;
  font-size: 11px;
  line-height: 11px;
  padding: 12px 14px 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #2f2c28;
  text-transform: uppercase;
  font-family: "Suisse";
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 40px;
  background-color: #ffffff;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .tab-item {
    font-size: 11px;
    line-height: 11px;
    white-space: nowrap;
    padding: 13px 14px 10px;
  }
}
@media (pointer: coarse) and (max-device-width: 375px) {
  .tab-item {
    font-size: 10px;
    line-height: 10px;
    padding: 13px 10px 11px;
  }
}
.tab-item.active, .tab-item:active {
  background-color: #5b504b;
  color: #ffffff;
}
.tab-item .blings-text {
  display: inline;
}
@media (max-width: 380px) {
  .tab-item .blings-text {
    display: none;
  }
}

/* Preview slide */
.preview-slide {
  background-color: transparent;
  display: flex;
  align-items: center;
  border-radius: 60px;
  will-change: transform, width, height, left, top;
}
.preview-slide img {
  width: 100%;
  height: auto;
  position: relative;
  /*top: 5px;*/
}

/* Floating button */
.floating-button {
  position: absolute;
  bottom: 8vh;
  /*calc(20vh - 55px);*/
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  border-radius: 120px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Suisse";
  font-weight: 700;
  position: absolute;
  padding: 40px 30px 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #2f2c28;
  width: 96px;
  height: 96px;
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0;
  padding-top: 25px;
}
@media (prefers-color-scheme: dark) {
  .floating-button {
    color: #ffffff;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .floating-button {
    width: 96px;
    height: 96px;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 0;
    padding-top: 25px;
  }
}
.floating-button::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  background: linear-gradient(#d2c1a1, #f5eede);
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: -1;
  border-radius: inherit;
}
@media (prefers-color-scheme: dark) {
  .floating-button::before {
    background: linear-gradient(#413027, #624d45);
  }
}
.floating-button .icon {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  top: 26px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  stroke: #2f2c28;
}
@media (prefers-color-scheme: dark) {
  .floating-button .icon {
    stroke: #ffffff;
  }
}
@media (max-width: 767.98px) {
  .floating-button .icon {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transform-origin: center top;
    top: 19px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .floating-button .icon {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transform-origin: center top;
    top: 19px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .floating-button:hover {
    width: 180px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .floating-button:hover .icon {
    top: 18px;
  }
}

/* Safe area insets */
@supports (padding: max(0px)) {
  .screen-first {
    padding-top: max(0px, env(safe-area-inset-top));
    padding-bottom: max(0px, env(safe-area-inset-bottom));
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .floating-button {
    bottom: 8vh;
    left: 50%;
    transform: translateX(-50%);
  }

  .close-button {
    top: max(16px, calc(env(safe-area-inset-top) + 8px));
    right: max(16px, calc(env(safe-area-inset-right) + 8px));
  }

  .bottom-bar {
    bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
  }

  .slides-container {
    margin-bottom: max(3%, calc(env(safe-area-inset-bottom) + 3%));
  }
}

/*# sourceMappingURL=mobile.css.map */
