:root {
  --black: black;
  --grey: #dbdbdb;
  --white: white;
  --brand: #389af0;
  --brand-2: #898bff;
  --dark-text-2: #666;
  --dark-text: #212121;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

p {
  margin-bottom: 0;
  line-height: 1.4;
}

a {
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

.tour-container {
  z-index: 1;
  width: 100vw;
  height: 100vh;
  position: absolute;
  overflow: hidden;
}

.tour-container.bg-black {
  background-color: var(--black);
}

.header-logo {
  z-index: 2;
  opacity: 1;
  cursor: pointer;
  object-fit: contain;
  object-position: 50% 0%;
  width: 120px;
  height: 60px;
  margin-left: 50%;
  transition: opacity .2s;
  position: absolute;
  inset: 20px 0% auto;
  transform: translate(-50%);
}

.header-logo:hover {
  opacity: .71;
}

.header-logo.inverted {
  opacity: .31;
  filter: invert();
}

.link {
  outline-offset: 0px;
  color: #6891f8;
  outline: 3px #379af0;
  text-decoration: none;
}

.link:hover {
  border-bottom: 1px #389af0;
}

.link.grey {
  color: var(--grey);
}

.link.white {
  color: #fff;
}

.spacer-small {
  height: 30px;
}

.spacer-small.isscrollsectionblur {
  background-image: linear-gradient(to bottom, var(--white), #fff0);
  filter: blur(5px);
}

.heading {
  letter-spacing: -2px;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 50px;
  font-weight: 600;
  line-height: 110%;
}

.heading.align-center {
  text-align: center;
  flex: 1;
  line-height: 120%;
  display: block;
}

.heading.align-center.homepage {
  font-family: Inter, sans-serif;
}

.heading.my-tours {
  display: none;
}

.heading.upgrade-heading {
  margin-bottom: 0;
}

.heading.no-pad {
  margin-top: 20px;
}

.align-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.align-center.padding {
  color: var(--white);
}

.align-center.padding.bg-gradient {
  background-image: linear-gradient(66deg, var(--brand), var(--brand-2));
}

.button {
  box-shadow: none;
  outline-offset: 0px;
  color: #414040;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
  cursor: pointer;
  background-color: #00000008;
  border: 1px solid #b3b3b3;
  border-radius: 16px;
  outline: 3px #000;
  margin-bottom: 15px;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.button:hover {
  transform: none;
  opacity: .85;
  
}

.button.cta {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  color: #fff;
  background-color: #389af0;
  background-image: linear-gradient(to right, #379af0, #898bff);
  border-style: none;
  border-color: #0000;
  margin-left: auto;
  margin-right: auto;
}


.button.cta.full-width {
  flex: 1;
}

.button.cta.share {
  margin-top: 10px;
  line-height: 20px;
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
}

.button.cta.share.visible {
  display: inline-block;
}

.button.cta.publish {
  text-align: center;
  border-color: #0000;
  justify-content: center;
  align-items: center;
  width: 140px;
  display: none;
  position: relative;
  top: auto;
  right: auto;
}

.button.cta.publish.hidden {
  display: none;
}

.button.cta.publish.visible {
  display: inline-block;
}

.button.cta.left {
  margin-left: 0;
}

.button.cta.is-menu {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.button.cta.is-menu.w--current {
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  display: block;
}

.button.cta.left-image {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.button.cta.left-image:hover {
  color: var(--white);
}

.button.cta.upgrade {
  border-radius: 16px;
  margin-right: 0;
}

.button.margin-left {
  margin-left: 12px;
}

.button.save-tour-details {
  display: none;
}

.button.edit-tour-details {
  z-index: 1;
  color: #fff;
  background-color: #ffffff47;
  border-color: #fff;
  position: absolute;
  inset: 10px 0% auto auto;
}

.button.delete-tour {
  color: #888;
  background-color: #f5f5f7;
  border: none;
  margin-left: 14px;
  padding: 10px;
  min-width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button.delete-tour svg {
  width: 18px;
  height: 18px;
}

.button.delete-tour:hover {
  color: #e60012;
  background-color: #ffe1e1;
}

.button.back {
  z-index: 6;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff;
  background-color: #414040ad;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  display: none;
  position: absolute;
  inset: 20px auto auto 20px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.back:hover {
  background: radial-gradient(circle at center, rgba(55, 154, 240, 0.25) 0%, #414040dd 70%);
  border-color: rgba(55, 154, 240, 0.5);
  box-shadow: 0 0 20px rgba(55, 154, 240, 0.3), inset 0 0 20px rgba(55, 154, 240, 0.1);
  transform: scale(1.05);
}

.button.back svg,
.button.settings svg,
.button.preview svg {
  width: 20px;
  height: 20px;
  stroke: white;
  flex-shrink: 0;
  transition: stroke 250ms ease, filter 250ms ease;
}

.button.back:hover svg,
.button.settings:hover svg,
.button.preview:hover svg {
  stroke: #6ab7ff;
  filter: drop-shadow(0 0 4px rgba(55, 154, 240, 0.6));
}

.button.back.visible {
  font-size: 20px;
  display: flex;
}

.button.setpos {
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  background-color: #0000004d;
  border-style: solid;
  border-color: #fff3;
  font-size: 11px;
  line-height: 16px;
  display: none;
  position: absolute;
  bottom: 180px;
  left: 50%;
  right: auto;
  transform: scale(.9)translate(-50%);
}

.button.setpos:hover {
  border-color: #fff6;
}

.button.unpublish {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #fff;
  text-align: center;
  background-color: #00000080;
  border-color: #fff0;
  justify-content: center;
  align-items: center;
  width: 140px;
  display: none;
}

.button.unpublish:hover {
  border-color: #fff6;
}

.button.unpublish.hidden {
  display: none;
}

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

.button.white {
  box-shadow: none;
  color: #fff;
  border-color: #fff;
}

.button.white.login {
  z-index: 9999;
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  perspective-origin: 100% 0;
  transform-origin: 100% 0;
  background-color: #0000004d;
  border-style: solid;
  border-color: #fff3;
  margin-top: 30px;
  margin-right: 20px;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: scale(.9);
}

.button.delete {
  color: red;
  background-color: #0000;
  border-color: red;
}

.button.delete.margin-left {
  display: none;
}

.button.delete.margin-left.visible {
  display: inline-block;
}

.button.secondary {
  background-color: #ffffff08;
}

.button.secondary.login {
  z-index: 999;
  position: absolute;
  inset: 0% 0% auto auto;
}

.button.disabled {
  opacity: .6;
  cursor: not-allowed;
}

.button.disabled:hover {
  transform: none;
}

.button.settings {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff;
  background-color: #414040ad;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.settings:hover {
  background: radial-gradient(circle at center, rgba(55, 154, 240, 0.25) 0%, #414040dd 70%);
  border-color: rgba(55, 154, 240, 0.5);
  box-shadow: 0 0 20px rgba(55, 154, 240, 0.3), inset 0 0 20px rgba(55, 154, 240, 0.1);
  transform: scale(1.05);
}

.button.settings.visible {
  display: flex;
}

.button.blue {
  box-shadow: none;
  color: #6393f6;
  background-color: #0000;
  border-color: #0985ff;
}

.button.preview {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff;
  background-color: #414040ad;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.preview:hover {
  background: radial-gradient(circle at center, rgba(55, 154, 240, 0.25) 0%, #414040dd 70%);
  border-color: rgba(55, 154, 240, 0.5);
  box-shadow: 0 0 20px rgba(55, 154, 240, 0.3), inset 0 0 20px rgba(55, 154, 240, 0.1);
  transform: scale(1.05);
}

.button.preview.visible {
  display: flex;
}

.button.preview.sticky-top {
  display: flex;
  position: absolute;
}

.button.preview.tour-settings-preview {
  background-color: #414040ad;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  display: none;
  position: static;
  gap: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.button.preview.tour-settings-preview:hover {
  background: radial-gradient(circle at center, rgba(55, 154, 240, 0.25) 0%, #414040dd 70%);
  border-color: rgba(55, 154, 240, 0.5);
  box-shadow: 0 0 20px rgba(55, 154, 240, 0.3), inset 0 0 20px rgba(55, 154, 240, 0.1);
  transform: scale(1.05);
}

.button.preview.tour-settings-preview svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.button.glass {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0000004d;
  border-style: solid;
  border-color: #fff3;
}

.button.no-margin {
  margin-right: 0;
}

.button.share {
  display: flex;
  position: absolute;
  top: 20px;
  right: 271px;
}

.button.embed {
  background-color: #00000080;
  border-color: #fff0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
  display: none;
}

.button.embed:hover {
  border-color: #fafafa66;
}

.button.embed.visible {
  background-image: url('../images/Group-2_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  min-width: 50px;
  min-height: 50px;
  display: flex;
}

.button.roundme {
  color: var(--white);
}

.hero {
  z-index: 999;
  color: #fff;
  text-align: center;
  background-color: #0000001f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.hero.bg-black {
  background-color: #000;
}

.spacer {
  height: 60px;
}

.spacer.tiny {
  height: 20px;
}

.subtitle {
  color: #ffffffd9;
  text-align: center;
  margin-top: -20px;
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 120%;
  position: relative;
}

.subtitle.beta {
  letter-spacing: 2px;
  font-size: .8rem;
  display: none;
}

.homepage-2 {
  overflow: hidden;
}

.homepage-2.bg-black {
  background-color: #000;
}

.bg-tour {
  z-index: -10;
  background-color: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.body {
  background-color: #e9e9e9;
}

.body.bg-grey {
  background-color: #eee;
  font-family: Inter, sans-serif;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.tour-wrapper {
  justify-content: center;
  min-width: 80vw;
  max-width: 100vw;
  min-height: 900px;
  max-height: 90vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.p-big {
  color: #666;
  max-width: 70ch;
  margin-bottom: 40px;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 140%;
}

.p-big.no-margin {
  margin-bottom: 0;
}

.columns {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.heading-3 {
  letter-spacing: -1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.heading-3.dashboard-name {
  margin-right: 30px;
  display: inline-block;
}

.p {
  color: #666;
}

.p.author {
  color: #414141;
  margin-left: 26px;
}

.p.small {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 140%;
}

/* Team context banner - shown when user is a collaborator */
.team-context-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f4fd 0%, #f0e6ff 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 16px 0;
}

.team-context-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.team-context-text {
  font-size: 13px;
  line-height: 1.4;
  color: #374151;
}

.team-context-text strong {
  display: block;
  color: #1f2937;
  margin-bottom: 2px;
}


/* Create Tour Hero */
.sidebar-create-section {
  text-align: left;
}

.create-hero {
  margin-bottom: 16px;
}

.create-hero-icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.create-hero-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 6px 0 0 0;
}

/* Team banner (compact) */
.team-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #4b5563;
}

.team-banner-icon {
  width: 18px;
  height: 18px;
  color: #6366f1;
  flex-shrink: 0;
}

.team-banner-text {
  line-height: 1.3;
}

/* Form styling */
.sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.sidebar-input:focus {
  outline: none;
  border-color: #6366f1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.sidebar-input::placeholder {
  color: #9ca3af;
}

.sidebar-create-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 4px 12px rgba(56, 154, 240, 0.25);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-create-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(56, 182, 255, 0.35);
}

.sidebar-btn-icon {
  width: 18px;
  height: 18px;
}

/* Divider */
.sidebar-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 20px 0;
}

/* Quick links */
.sidebar-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #6b7280;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.15s ease;
  text-decoration: none;
}

.sidebar-link:hover {
  background: #f3f4f6;
  color: #111827;
}

.sidebar-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Quick links row (outside card) */
.sidebar-links-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 4px 0;
}

.sidebar-link-pill {
  padding: 8px 12px;
  font-size: 13px;
  color: #6b7280;
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.sidebar-link-pill:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #111827;
}

/* Side-by-side cards row */
/* Responsive */
@media (max-width: 768px) {
  .sidebar-card {
    padding: 20px;
  }
  
  .sidebar-links {
    grid-template-columns: 1fr;
  }
}

/* Upgrade Banner for Settings Page */
.upgrade-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.upgrade-banner-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.upgrade-banner-content {
  flex: 1;
}

.upgrade-banner-content h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.upgrade-banner-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.upgrade-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.upgrade-benefits li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

/* Team features container - gated state */
.team-features-container.gated {
  opacity: 0.4;
  pointer-events: none;
  filter: blur(2px);
  user-select: none;
}

/* Responsive */
@media (max-width: 600px) {
  .upgrade-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .upgrade-benefits {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.form-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
}

.form-container.scaled {
  transform: scale(.5);
}

.form-container.min-width {
  min-width: 400px;
}

.form-container.upgrade {
  color: #fff;
}

.form-container.upgrade.hidden {
  display: none;
}

.form-container.lightgrey.settings {
  border-radius: 15px;
  width: 30%;
  min-width: 490px;
  max-width: 560px;
  max-height: 95svh;
  margin-right: 20px;
  padding: 0 30px;
  transition: transform .5s cubic-bezier(.86, 0, .07, 1);
  position: relative;
  overflow: visible; /* Changed from hidden to allow tooltips to show */
  box-shadow: -9px 0 12px 2px #0006;
}

/* Ensure scrolling still works for the inner form content */
.form-container.lightgrey.settings #tour-settings-form {
  overflow-y: auto;
  max-height: calc(95svh - 200px); /* Account for header and publish toggle */
}

.form-container.update-pano {
  border-radius: 0;
  max-width: 460px;
  padding: 0 30px;
  transition: all .5s cubic-bezier(.444, .135, .14, .966);
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: auto;
  transform: translate(-100%);
  box-shadow: 9px 0 5px #0003;
}

.form-container.update-pano.visible {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  transform: translate(0);
}

.people {
  margin-bottom: 20px;
}

.col-vert {
  align-items: center;
  display: flex;
}

.stars {
  width: 100%;
  height: auto;
}

.body-dashboard {
  background-color: #f3f3f3;
}

.form-field-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 10px;
  display: flex;
}

.form-wrapper {
  width: 100%;
  max-width: 540px;
  display: flex;
  margin: 0 auto;
}

.field-description {
  color: #0009;
  margin-top: 3px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
}

.disconnect-link {
  text-align: right;
  padding: 13px;
  text-decoration: underline;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.disconnect-link:hover {
  color: #000;
}

.checkbox-label {
  color: var(--dark-text-2);
  margin-bottom: 17px;
  padding-top: 3px;
  padding-left: 5px;
  font-weight: 500;
}

.disconnect-image {
  width: 16px;
}

.social-content {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}

.form-div-line {
  background-color: #e4e4e4;
  width: 40%;
  height: .8px;
}

.form-divider {
  color: #000c;
  letter-spacing: 2px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  display: flex;
}

.input-field {
  border: 1px solid #dbdbdb;
  border-radius: 10rem;
  padding: 10px 20px;
  line-height: 120%;
  display: inline-block;
  position: relative;
}

.input-field.large-input {
  padding: 1.5rem;
  font-size: 1.1rem;
  min-height: 40px;
  line-height: 1.2rem;
}

.input-field.share-url {
  height: auto;
  padding: 10px 20px;
  line-height: 150%;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Disabled state for share elements when tour is unpublished */
body[data-tour-published="false"] .input-field.share-url,
body[data-tour-published="false"] .embed-code-container {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

body[data-tour-published="false"] #open-client-view {
  opacity: 0.4;
  pointer-events: none;
}

/* Publish toggle row */
.publish-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f7f6f6;
  border-radius: 10px;
  margin-bottom: 16px;
}

.publish-toggle-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.publish-status-text {
  font-weight: 600;
  font-size: 14px;
  color: #4a9d5b;
}

.publish-status-text.unpublished {
  color: #dc3545;
}

/* Branding badge */
.branding-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  display: none;
}

.branding-badge.free {
  background: #fef3e2;
  color: #b08d57;
}

.branding-badge.free.clickable {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 10px;
  border: 1px solid #e5d4b8;
}

.branding-badge.free.clickable:hover {
  background: #fde8c7;
  border-color: #d4b896;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.branding-badge.pro {
  background: #e8f5e9;
  color: #4a9d5b;
}

/* Show branding badge only when published */
body[data-tour-published="true"] .branding-badge.free,
body[data-tour-published="true"] .branding-badge.pro {
  display: inline-block;
}

/* Toggle switch */
.publish-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.publish-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.publish-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dc3545;
  transition: 0.3s;
  border-radius: 28px;
}

.publish-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.publish-toggle input:checked + .publish-toggle-slider {
  background-color: #4a9d5b;
}

.publish-toggle input:checked + .publish-toggle-slider:before {
  transform: translateX(22px);
}

/* Settings toggle (grey off, green on) - for edit pano and tour settings */
.settings-toggle {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.settings-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.settings-toggle-slider {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
  flex-shrink: 0;
}

.settings-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.settings-toggle input:checked + .settings-toggle-slider {
  background-color: #4a9d5b;
}

.settings-toggle input:checked + .settings-toggle-slider:before {
  transform: translateX(20px);
}

.settings-toggle-label {
  font-weight: 500;
  color: var(--dark-text-2);
  font-size: 14px;
  line-height: 1.3;
}

/* Compact version for inline use */
.settings-toggle.compact {
  margin-bottom: 8px;
}

.settings-toggle.compact .settings-toggle-slider {
  width: 38px;
  height: 20px;
}

.settings-toggle.compact .settings-toggle-slider:before {
  height: 14px;
  width: 14px;
}

.settings-toggle.compact input:checked + .settings-toggle-slider:before {
  transform: translateX(18px);
}

/* Legacy branding status (for settings modal) */
.branding-status {
  font-size: 12px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.branding-status.free {
  color: #b08d57;
}

.branding-status.pro {
  color: #4a9d5b;
}

.branding-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.branding-dot.free {
  background-color: #b08d57;
}

.branding-dot.pro {
  background-color: #4a9d5b;
}

/* Share upgrade nudge */
.share-upgrade-nudge {
  font-size: 14px;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #e8f4fd 0%, #f0e8ff 100%);
  border-radius: 12px;
  border: 1px solid rgba(55, 154, 240, 0.15);
  animation: fadeSlideIn 0.3s ease-out;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.share-upgrade-nudge.visible {
  display: flex;
}

.share-upgrade-nudge span {
  color: #555;
  line-height: 1.5;
}

.share-upgrade-nudge .link {
  display: inline-block;
  background: linear-gradient(135deg, #379af0 0%, #898bff 100%);
  color: #fff !important;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 13px;
}

.share-upgrade-nudge .link:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(55, 154, 240, 0.4);
}

.share-upgrade-nudge .button.cta.small {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 20px;
}

/* Share Modal Redesign */
.form-container.share-modal {
  max-width: 440px;
  width: 100%;
  margin: 15px;
  padding: 0;
  max-height: calc(100vh - 30px);
  max-height: calc(100dvh - 30px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.form-container.share-modal .share-modal-header {
  padding: 28px 32px 0;
  flex-shrink: 0;
}

.form-container.share-modal .heading-2 {
  margin-bottom: 20px;
}

.form-container.share-modal .share-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 32px;
  -webkit-overflow-scrolling: touch;
}

.form-container.share-modal .share-modal-footer {
  padding: 12px 32px 20px;
  flex-shrink: 0;
  background: #fff;
  border-top: none;
}

.publish-section {
  margin-bottom: 24px;
}

.publish-section .publish-toggle-row {
  padding: 14px 16px;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 0;
}

.publish-section .publish-toggle-left {
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.publish-section .publish-status-text {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}

.publish-section .publish-explainer {
  color: rgba(0,0,0,0.4);
  margin-top: 2px;
}

.publish-section .publish-toggle {
  width: 46px;
  height: 28px;
}

.publish-section .publish-toggle-slider {
  border-radius: 28px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.publish-section .publish-toggle-slider:before {
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.publish-section .publish-toggle input:checked + .publish-toggle-slider {
  background-color: #34c759;
}

.publish-section .publish-toggle input:checked + .publish-toggle-slider:before {
  transform: translateX(18px);
}

.publish-section .publish-toggle input:not(:checked) + .publish-toggle-slider {
  background-color: rgba(0,0,0,0.12);
}

.publish-explainer {
  display: block;
  font-size: 12px;
  color: #999;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.3;
}

/* Share Action Buttons */
.share-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px 0 20px;
  border-bottom: 1px solid #eee;
}

.share-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px 12px;
  background: #f7f7f7;
  border: 2px solid #eee;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 72px;
  color: #666;
}

.share-action-btn:hover {
  background: #e8f4fd;
  border-color: #379af0;
  color: #379af0;
}

.share-action-btn.active {
  background: linear-gradient(135deg, #379af0 0%, #5b8af0 100%);
  border-color: #379af0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(55, 154, 240, 0.3);
}

.share-action-btn svg {
  width: 24px;
  height: 24px;
}

.share-action-btn span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-align: center;
}

/* Tab Content */
.share-tab-content {
  min-height: 80px;
  margin-bottom: 16px;
}

.share-tab-panel {
  display: none;
  animation: fadeIn 0.2s ease;
}

.share-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Share URL Section */
.share-url-section {
  margin-bottom: 0;
}

.share-url-section .form-label {
  margin-bottom: 10px;
}

.share-url-wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.share-url-wrapper .share-url {
  flex: 1;
  margin: 0;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.copy-url-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #379af0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
  min-width: 48px;
}

.copy-url-btn:hover {
  background: #2a7bc4;
  transform: scale(1.02);
}

.copy-url-btn.copied {
  background: #4a9d5b;
}

/* QR Code Section */
.qr-code-section {
  text-align: center;
  padding: 8px 0;
}

.qr-code-section .form-label {
  margin-bottom: 16px;
}

.qr-code-container {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #eee;
  display: inline-block;
  margin: 0 0 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.qr-code-container canvas {
  display: block;
}

/* Embed Section */
.embed-section {
  margin-bottom: 0;
}

.embed-section .form-label {
  margin-bottom: 6px;
}

.embed-explainer {
  font-size: 13px;
  color: #888;
  margin: 0 0 14px;
  line-height: 1.5;
}

.embed-section .embed-code-container {
  margin-bottom: 14px;
}

/* Button variants */
.button.small {
  padding: 10px 18px;
  font-size: 12px;
}

.button.secondary {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.button.secondary:hover {
  background: #e8e8e8;
}

/* Share modal close button — matches sidebar cancel visual */
.form-container.share-modal #close-share-page {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 25px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #414040;
  background: #ececec;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  letter-spacing: 0.02rem;
  box-shadow: none;
}
.form-container.share-modal #close-share-page:hover {
  background: #e0e0e0;
}

/* Disabled state for unpublished tours */
body[data-tour-published="false"] .share-actions {
  opacity: 0.5;
  pointer-events: none;
}

body[data-tour-published="false"] .share-tab-content {
  opacity: 0.4;
  pointer-events: none;
}

/* Client view note */
.client-view-note {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  margin-bottom: 4px;
}

.client-view-note .link {
  color: #5a7fd4;
}

.client-view-note .upgrade-link {
  color: #5a7fd4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.client-view-note .upgrade-link:hover {
  color: #3d5fb0;
  text-decoration: underline;
}

/* Client view button styling */
#open-client-view {
  width: 100%;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.input-field.textarea {
  border-radius: 8px;
  min-height: 100px;
}

.input-field.textarea.infospot-textarea {
  resize: none;
  padding-top: 20px;
  padding-bottom: 20px;
}

.input-field.ghost {
  color: #fff;
  background-color: #fff0;
  border-color: #fff;
  min-height: 40px;
  font-size: 16px;
}

.input-field.ghost.with-margin-bottom {
  margin-bottom: 20px;
}

.flex-row-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-label {
  color: #726f6f;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-label.white {
  color: #fff;
}

.checkbox-field {
  margin-top: 5px;
  margin-bottom: 20px;
}

.text-field-wrapper {
  flex-direction: column;
  width: 100%;
  margin-bottom: 12px;
  display: flex;
}

.text-field-wrapper.half {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 49%;
}

.form-wrapper {
  z-index: 50;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 360px;
  display: flex;
  position: relative;
  overflow: visible;
}

._100 {
  width: 100%;
}

.social-image {
  width: 24px;
}

.social-text {
  font-weight: 400;
}

.social-btn {
  color: #000;
  border: 1px solid #dcdce5;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 40px 12px 15px;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  box-shadow: 0 1px 2px #dcdce580;
}

.social-btn:hover {
  box-shadow: none;
  border-color: #374252;
}

.social-btn:focus {
  border: 1px solid #000;
}

.social-btn::placeholder {
  color: #6e6e6e;
}

.social-btn.google:hover {
  border-color: #4285f4;
}

.checkbox {
  width: 14px;
  height: 14px;
}

.checkbox.w--redirected-checked {
  background-color: #2d323e;
}

.tour-name {
  color: #333;
  margin-top: 0;
  font-weight: 400;
  text-decoration: none;
}

.padding {
  padding: 40px;
}

.form {
  max-width: 600px;
}

.form.negative-bottom-margin.infospot-form {
  min-width: 400px;
  max-height: 70vh;
}

#create-infospot-screen .form-container {
  max-height: 90vh;
  overflow-y: auto;
}

.small-heading {
  color: #b4b4b4;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.tour-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 0;
}

.tour-item.hidden {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: none;
  position: relative;
}

.tour-item-img {
  object-fit: cover;
  background-color: #7c7c7c;
  background-image: url('../images/OG-new_1.avif');
  background-position: 50%;
  background-size: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  position: relative;
}

.tour-item-img.eg {
  background-image: url('../images/eg_1.avif'), url('../images/OG-new_1.avif');
  background-position: 0 0, 50%;
  background-size: cover, cover;
}

.tour-item-img.resi-2 {
  background-image: url('../images/Bitmap-7_1.avif'), url('../images/OG-new_1.avif');
  background-position: 0 0, 50%;
  background-size: cover, cover;
}

.tour-item-img.photography-1 {
  background-image: url('../images/Bitmap_2.avif'), url('../images/OG-new_1.avif');
  background-position: 0 0, 50%;
  background-size: cover, cover;
}

.tour-item-img.photography-2 {
  background-image: url('../images/Bitmap-6_1.avif'), url('../images/OG-new_1.avif');
  background-position: 50%, 50%;
  background-size: auto, cover;
}

.tour-item-img._3d-1 {
  background-image: url('../images/Bitmap-3_1.avif'), url('../images/OG-new_1.avif');
  background-position: 0 0, 50%;
  background-size: cover, cover;
}

.tour-item-img._3d-2 {
  background-image: url('../images/Bitmap-5_1.avif'), url('../images/OG-new_1.avif');
  background-position: 0 0, 50%;
  background-size: cover, cover;
}

.tour-item-img.travel-1 {
  background-image: url('../images/Bitmap-4_1.avif'), url('../images/OG-new_1.avif');
  background-position: 0%, 50%;
  background-size: auto, cover;
}

.tour-item-img.travel-2 {
  background-image: url('../images/Bitmap-2_1.avif'), url('../images/OG-new_1.avif');
  background-position: 0 0, 50%;
  background-size: cover, cover;
}

.heading-2 {
  margin-bottom: 20px;
  font-size: 23px;
  font-weight:600;
  letter-spacing: -0.04rem;
}

.heading-2.upgrade-heading {
  font-weight: 600;
}

.tour-page {
  font-family: Inter, sans-serif;
  overflow: hidden;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.overlay.edit-pano {
  z-index: 110;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.85);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: none;
}

.overlay.share {
  z-index: 350;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.88);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}

.overlay.not-found {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}

.overlay.desktop-mode {
  z-index: 70;
  display: none;
}

.overlay.busy {
  z-index: 240;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: wait;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: none;
}

.overlay.update-pano {
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0006;
  justify-content: flex-start;
  display: none;
  inset: 0%;
}

.overlay.settings {
  z-index: 80;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0006;
  flex-wrap: wrap;
  display: none;
}

.overlay.settings.visible {
  display: flex;
}

.overlay.roundme {
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
}

.overlay.publish-success {
  z-index: 351;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.88);
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
}

.overlay.splash-screen {
  z-index: 151;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.88);
  padding-left: 1rem;
  padding-right: 1rem;
  display: none;
}

.overlay.splash-screen.visible {
  display: flex;
}

.overlay.landing-screen {
  z-index: 4;
  background-color: #222222e3;
  justify-content: center;
  align-items: center;
  display: none;
}

.overlay.landing-screen.visible {
  display: flex;
}

.overlay.customalert {
  z-index: 410;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.85);
  flex-flow: column;
  display: none;
}

.overlay.customalert.visible {
  z-index: 500;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.92);
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.overlay.visible {
  z-index: 349;
  display: flex;
}

.overlay.choose-media-screen {
  z-index: 116;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #0009;
  flex-flow: column;
  padding-top: 60px;
  padding-bottom: 60px;
  display: none;
  overflow-y: auto;
}

.overlay.choose-media-screen.visible {
  flex-flow: column;
  display: flex;
}

.overlay.choose-media-screen.hidden {
  display: none;
}

.overlay.media-coming-soon {
  z-index: 455;
  color: #fff;
  flex-flow: column;
  display: none;
}

.close-popup {
  z-index: 99;
  position: relative;
}

.upload {
  background-image: linear-gradient(#fdfdfd80, #fdfdfd80);
  border: 1px dashed #cfcfcf;
  border-radius: 8px;
  box-shadow: inset 2px 2px 13px 1px #0000001f;
}

.pano-thumbs {
  z-index: 5;
  background-image: linear-gradient(0deg, #0000007d, #0000);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 180px;
  padding: 40px 20px;
  display: flex;
  position: relative;
  inset: auto 0% 0;
}

.pano-thumbs.empty.hidden {
  opacity: 0;
}

.pano-thumbs.up {
  top: 0;
  bottom: auto;
}

.pano-thumb {
  opacity: .8;
  cursor: pointer;
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 10rem;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  margin-left: 20px;
  margin-right: 20px;
  transition: all .45s cubic-bezier(.018, .007, .58, 1);
  display: none;
  position: relative;
  /* Prevent text selection on drag */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.pano-thumb:hover {
  opacity: 1;
}

.pano-thumb.add {
  opacity: 1;
  outline-offset: 0px;
  background-color: #389af0;
  background-image: linear-gradient(112deg, #389af0, #898bff);
  outline: 1px #fff0;
  display: none;
  position: relative;
}

.pano-thumb.add:hover {
  outline-offset: 6px;
  outline: 1px #ffffff80;
  display: none;
}

.pano-thumb.add.visible {
  display: block;
}

.pano-thumb.hidden {
  display: none;
}

.pano-thumb.hidden:hover {
  outline-offset: 6px;
  outline: 1px #ffffff80;
  box-shadow: 0 0 0 5px #ffffff54;
}

.pano-thumb.selected {
  display: flex;
  box-shadow: 2px 2px 4px #0000003b;
}

.pano-thumb.selected:hover {
  display: flex;
}

.pano-thumb.visible {
  display: flex;
  box-shadow: 2px 2px 4px #0000003b;
}

/* ========== DRAG & DROP REORDERING SYSTEM ========== */

/* Multi-select state */
.pano-thumb.drag-selected {
  outline: 3px solid #389af0;
  outline-offset: 3px;
  opacity: 1;
  transform: scale(1.05);
  z-index: 10;
}

.pano-thumb.drag-selected::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 10rem;
  background: rgba(56, 154, 240, 0.15);
  pointer-events: none;
}

/* Selection count badge */
.pano-thumb.drag-selected.has-count::before {
  content: attr(data-select-count);
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #389af0, #898bff);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Dragging state */
.pano-thumb.dragging {
  opacity: 0.4 !important;
  transform: scale(0.95);
  outline: 2px dashed rgba(255,255,255,0.5);
  outline-offset: 2px;
}

/* Ghost preview during drag */
.pano-thumb-ghost {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.9;
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.3);
  border-radius: 10rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s ease;
}

.pano-thumb-ghost.multi {
  transform: scale(1.1) rotate(-3deg);
}

.pano-thumb-ghost.multi::before {
  content: attr(data-count);
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #389af0, #898bff);
  color: white;
  font-size: 13px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Stacked ghost effect for multi-select */
.pano-thumb-ghost.multi::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: inherit;
  background-size: cover;
  background-position: center;
  border-radius: 10rem;
  z-index: -1;
  transform: translate(6px, 6px) rotate(4deg);
  opacity: 0.6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Drop zone indicators */
.pano-thumb-dropzone {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70px;
  background: linear-gradient(180deg, transparent, #389af0 20%, #389af0 80%, transparent);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 15;
}

.pano-thumb-dropzone.left {
  left: -13px;
}

.pano-thumb-dropzone.right {
  right: -13px;
}

.pano-thumb-dropzone.active {
  opacity: 1;
  animation: dropzone-pulse 0.8s ease-in-out infinite;
}

@keyframes dropzone-pulse {
  0%, 100% { 
    transform: translateY(-50%) scaleY(1);
    box-shadow: 0 0 10px rgba(56, 154, 240, 0.5);
  }
  50% { 
    transform: translateY(-50%) scaleY(1.1);
    box-shadow: 0 0 20px rgba(56, 154, 240, 0.8);
  }
}

/* Drag mode active on container - subtle highlight */
.pano-thumbs.drag-mode {
  background-image: linear-gradient(0deg, rgba(56, 154, 240, 0.1), transparent);
}

/* Touch-friendly larger hit areas */
@media (hover: none) and (pointer: coarse) {
  .pano-thumb {
    min-width: 70px;
    min-height: 70px;
    width: 70px;
    height: 70px;
  }
  
  .pano-thumb.drag-selected {
    outline-width: 4px;
    outline-offset: 4px;
  }
  
  .pano-thumb-dropzone {
    width: 8px;
    height: 80px;
  }
}

/* ========== PANO THUMBS — wrapper & container ========== */

.pano-thumbs-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
  background-image: none;
}
.pano-thumbs-wrapper.empty.hidden {
  opacity: 0;
}
.pano-thumbs-wrapper.up {
  top: 0;
  bottom: auto;
}

.pano-thumbs {
  z-index: 5;
  background-image: linear-gradient(0deg, #0000007d, #0000);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  transform: none !important;
}
.pano-thumbs.many {
  justify-content: flex-start;
}
.pano-thumbs.many::before {
  content: '';
  flex: 1 1 0;
  min-width: 20px;
}
.pano-thumbs.many::after {
  content: '';
  flex: 1 1 0;
  min-width: 20px;
}
.pano-thumbs.empty.hidden {
  opacity: 0;
}
.pano-thumbs.up {
  top: 0;
  bottom: auto;
}
.pano-thumbs.hidden {
  display: none !important;
}
.pano-thumbs.drag-mode {
  background-image: linear-gradient(0deg, rgba(56, 154, 240, 0.1), transparent);
}
.pano-thumbs > * {
  pointer-events: all;
  touch-action: initial;
  -webkit-touch-callout: none;
}
body[data-admin=true] .pano-thumbs,
.pano-thumbs.many {
  pointer-events: all;
  touch-action: initial;
}
body.is-dragging .pano-thumbs {
  pointer-events: none !important;
  touch-action: none !important;
}

.pano-thumbs-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ========== PANO THUMB — selection ring & admin states ========== */

.pano-thumb {
  border-radius: 50%;
  background-color: transparent;
  background-clip: padding-box;
  -webkit-border-radius: 50%;
  margin-left: 30px;
  margin-right: 30px;
}
.pano-thumb.selected {
  outline: none;
  position: relative;
}
.pano-thumb.selected::before,
.pano-thumb:not(.selected)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px white;
  transition: top 0.3s, left 0.3s, right 0.3s, bottom 0.3s, box-shadow 0.3s ease-in-out;
}
.pano-thumb.selected::before {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}
.pano-thumb:not(.selected)::after {
  box-shadow: inset 0 0 0 1px transparent;
}
.pano-thumb:not(.selected):hover::after {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  box-shadow: inset 0 0 0 1px white;
}
body[data-admin="true"] .pano-thumb.selected {
  z-index: 5;
}
body[data-admin="true"] .pano-thumb {
  transition: transform 0.2s ease, box-shadow 0.3s ease-in-out;
}

/* ========== PANO THUMB — labels ========== */

.pano-thumb.selected .pano-thumb-label,
.pano-thumb:hover .pano-thumb-label {
  display: flex;
}
.pano-thumbs.hide-labels .pano-thumb-label {
  display: none !important;
}

.pano-thumb-label {
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 42px;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  display: flex;
  position: absolute;
  inset: auto 0% 110% -20px;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  text-shadow: 0px 2px 3px rgb(0 0 0);
}
.pano-thumb-label-text {
  text-overflow: ellipsis;
  word-wrap: break-word;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  width: 100%;
  max-height: 3rem;
}

.pano-thumb-text {
  color: #fff;
  text-align: center;
  height: 30px;
  margin-top: -25%;
  font-family: Lato, sans-serif;
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  inset: 50% 0% 0%;
}

/* ========== PANO THUMB — drag & interaction states ========== */

body.is-dragging .panorama:hover,
body.is-dragging .pano-thumb:hover,
body.is-dragging canvas:hover {
  cursor: crosshair !important;
}
.pano-thumb.dragging {
  border: 1px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
body.is-dragging .pano-thumbs .pano-thumb.dragging {
  cursor: not-allowed !important;
}

/* ========== PANO THUMB — move/edit/tick buttons ========== */

.pano-thumb:not(.selected) .move-thumbail-left,
.pano-thumb:not(.selected) .move-thumbail-right,
.pano-thumb:not(.selected) .edit-icon,
.pano-thumb:not(.selected) .tick-icon {
  display: none !important;
}
.move-thumbail-left, .move-thumbail-right {
  display: none !important;
}
.move-thumbail-left {
  left: 0;
  transform: translateX(-110%) scale(1);
}
.move-thumbail-right {
  right: 0;
  transform: translateX(110%) scale(-1, 1);
}
.pano-thumb.selected:hover .move-thumbail-left {
  transform: translateX(-120%) scale(1);
}
.pano-thumb.selected:hover .move-thumbail-right {
  transform: translateX(120%) scale(-1, 1);
}
.pano-thumb:first-of-type:not(.add) .move-thumbail-left {
  display: none !important;
}
.pano-thumb:not(.add) + .pano-thumb.add ~ .pano-thumb .move-thumbail-right,
.pano-thumb:not(.add):last-child .move-thumbail-right {
  display: none !important;
}
.pano-thumb.selected:last-of-type:not(.add) .move-thumbail-right,
.pano-thumb.selected:nth-last-of-type(2):not(.add) .move-thumbail-right {
  display: none !important;
}
body[data-number-hotspots="1"] .move-thumbail-left,
body[data-number-hotspots="1"] .move-thumbail-right {
  display: none !important;
}

.edit-icon, .tick-icon {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  bottom: -16px;
  transition: transform .3s ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
  transform: translateX(-50%) scale(0);
  z-index: 11;
  cursor: pointer;
  background: linear-gradient(135deg, #379af0 0%, #898bff 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(55, 154, 240, 0.4);
  white-space: nowrap;
}
.edit-icon svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.edit-icon svg path {
  stroke: white;
}
.edit-icon-text {
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.pano-thumb.selected .edit-icon {
  display: flex;
  transform: translateX(-50%) scale(1);
  animation: editBounce 0.4s ease-out, editGlow 3s ease-in-out infinite 0.4s;
}
.pano-thumb.selected .tick-icon {
  transform: translateX(-50%) scale(1);
  transition-delay: 0s;
}
.tick-icon {
  display: none;
  border-color: green;
  z-index: 12;
}
.edit-icon.show, .tick-icon.show {
  display: flex;
}
@keyframes editBounce {
  0% { transform: translateX(-50%) scale(0); }
  50% { transform: translateX(-50%) scale(1.1); }
  100% { transform: translateX(-50%) scale(1); }
}
@keyframes editGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(55, 154, 240, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(55, 154, 240, 0.6), 0 0 30px rgba(137, 139, 255, 0.3); }
}
.edit-icon:hover {
  background: linear-gradient(135deg, #4aa8ff 0%, #9a9cff 100%);
  box-shadow: 0 6px 24px rgba(55, 154, 240, 0.5), 0 0 20px rgba(137, 139, 255, 0.3);
  transform: translateX(-50%) scale(1.08);
}
.edit-icon:active {
  transform: translateX(-50%) scale(0.95);
  box-shadow: 0 2px 10px rgba(55, 154, 240, 0.4);
}
@media screen and (max-width: 767px) {
  .edit-icon, .tick-icon {
    padding: 8px 14px;
    bottom: -18px;
  }
  .edit-icon svg {
    width: 16px;
    height: 16px;
  }
  .edit-icon-text {
    font-size: 13px;
  }
}

/* ========== PANO THUMBS — mobile ========== */

@media screen and (max-width: 767px) {
  .pano-thumbs-wrapper {
    display: block !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    height: 160px;
  }
  .pano-thumbs {
    overflow: visible !important;
    display: inline-flex !important;
    width: auto !important;
    min-width: 100%;
    padding: 30px 30px 15px 30px !important;
    justify-content: center;
    box-sizing: border-box;
  }
  .pano-thumbs.many {
    justify-content: flex-start;
  }
  .pano-thumb {
    margin-left: 14px !important;
    margin-right: 14px !important;
    flex-shrink: 0;
  }
}

.panorama {
  background-color: #000;
  width: 100vw;
  height: 100vh;
}

/* ===== IMAGE VARIATION MODES ===== */

/* Side-by-Side Mode */
#panorama-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

/* Ensure admin infospot panel stays above dual viewers */
.tour-admin-infospot-panel {
  z-index: 100 !important;
}

.split-view {
  position: relative;
  background-color: #2c2c2c;
  overflow: hidden;
}

.split-view canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

/* Landscape: left/right split */
@media (orientation: landscape) {
  .split-view {
    width: 50%;
    height: 100%;
  }
  .split-view:first-child {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
  }
}

/* Portrait: top/bottom split */
@media (orientation: portrait) {
  #panorama-wrapper {
    flex-direction: column;
  }
  .split-view {
    width: 100%;
    height: 50%;
  }
  .split-view:first-child {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
}

/* Comparison Slider Mode */
#panorama-comparison-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #2c2c2c;
}

#panorama-base,
#panorama-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#panorama-overlay {
  clip-path: inset(0 50% 0 0); /* Default: shows left 50% */
}

#comparison-slider {
  position: fixed;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100vh;
  height: 100dvh;
  background: white;
  cursor: ew-resize;
  z-index: 80;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.2s ease;
}

#comparison-slider:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  pointer-events: auto;
}

.slider-handle::before,
.slider-handle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

/* Left arrow - bigger */
.slider-handle::before {
  border-width: 10px 14px 10px 0;
  border-color: transparent #333 transparent transparent;
  left: 18px;
}

/* Right arrow - bigger */
.slider-handle::after {
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #333;
  right: 18px;
}

/* Mobile: slightly smaller handle */
@media screen and (max-width: 767px) {
  .slider-handle {
    width: 60px;
    height: 60px;
  }
  .slider-handle::before {
    border-width: 8px 11px 8px 0;
    left: 12px;
  }
  .slider-handle::after {
    border-width: 8px 0 8px 11px;
    right: 12px;
  }
}

/* Variation Mode Radio Options Styling — replaced by unified .radio-card-group */

/* Variation Labels - Bottom Left Positioning */
.variation-label {
  position: absolute;
  bottom: 80px; /* Above thumbnails */
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  z-index: 20;
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-family: inherit;
}

.variation-label.left {
  left: 20px;
}

.variation-label.right {
  left: 20px; /* Also bottom left for right side */
}

/* Portrait: keep labels bottom left */
@media (orientation: portrait) {
  .variation-label.left {
    bottom: calc(50% + 80px); /* Bottom of top half, above thumbnails */
    left: 20px;
  }
  
  .variation-label.right {
    bottom: 80px; /* Bottom of bottom half, above thumbnails */
    left: 20px;
  }
}

/* For side-by-side mode, keep labels bottom left within each split */
#panorama-wrapper .variation-label {
  bottom: 80px;
  left: 20px;
}

#panorama-wrapper .split-view .variation-label.left,
#panorama-wrapper .split-view .variation-label.right {
  bottom: 80px;
  left: 20px;
  right: auto;
}

/* Hide labels when not needed */
body[data-variation-labels="false"] .variation-label {
  display: none;
}

.embed-code-container {
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  max-width: 500px;
  max-height: 100px;
  padding: 10px 20px;
  overflow: scroll;
}

.please-wait {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.3rem;
}

.please-wait.small {
  font-size: 1rem;
}

.hidden {
  display: none;
}

.list-of-links {
  max-height: 270px;
  margin-top: 10px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.linked-spots-hint {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  line-height: 1.4;
  margin: 0 0 4px;
}

.link-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.link-list-item:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}

.link-list-thumb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(0,0,0,0.05);
}

.link-list-text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.delete-pano-link {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: rgba(0,0,0,0.25);
  border-radius: 8px;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.delete-pano-link:hover {
  background: rgba(255,59,48,0.08);
  color: #ff3b30;
}

.user-guide-message {
  z-index: 7;
  color: #fff;
  text-align: center;
  cursor: none;
  display: none;
  position: absolute;
  inset: auto 0% 140px;
}

.user-guide-message.visible {
  display: block;
}

.empty-tour-prompt {
  position: absolute;
  z-index: 7;
  bottom: 155px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  animation: emptyPromptFadeIn 0.8s ease 0.5s both;
  -webkit-tap-highlight-color: transparent;
}

body[data-admin="true"][data-number-hotspots="0"] .empty-tour-prompt {
  display: flex;
}

.empty-tour-prompt__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  transition: all 0.25s ease;
}

.empty-tour-prompt:hover .empty-tour-prompt__icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.empty-tour-prompt__text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.empty-tour-prompt__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.empty-tour-prompt__arrow {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  animation: emptyPromptBounce 2s ease-in-out infinite;
}

@keyframes emptyPromptFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes emptyPromptBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.pricing-tabs {
  flex-direction: column;
  align-items: center;
  display: flex;
  width: 100%;
}

.tab-title {
  color: #333;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.price {
  color: #000;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

.paragraph {
  opacity: .9;
  font-weight: 500;
  line-height: 1.5;
}

.paragraph.white {
  color: #fff;
}

.paragraph.huge {
  color: var(--dark-text-2);
  font-size: 20px;
}

.paragraph.huge.text-color-white {
  color: var(--white);
}

.paragraph.margin-bottom {
  margin-bottom: 20px;
}

.paragraph.small {
  font-size: .9rem;
}

.frequency {
  opacity: .6;
  color: #000;
  margin-bottom: auto;
  font-size: 13px;
  font-weight: 400;
}

.price-card-name {
  color: #000;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
}

._4-1-grid {
  grid-row-gap: 16px;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "Area"
                 "Area-2"
                 "."
                 "."
                 "."
                 "."
                 "."
                 / 1fr;
  grid-auto-flow: column;
  align-content: start;
  min-height: 500px;
  margin-top: 0;
  margin-bottom: 0;
}

.h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
}

.content-wrap-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.content-wrap-center.max-width-800 {
  max-width: 800px;
}

.price-large-span {
  font-size: 30px;
}

.feature-label {
  font-size: 14px;
  font-weight: 600;
}

.button-2 {
  color: #fff;
  background-color: #434de7;
  border-radius: 10px;
  height: 50px;
  padding: 15px 35px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 10px 20px -3px #1d01501a;
}

.button-2:hover {
  box-shadow: none;
  background-color: #000;
}

.button-2.secondary {
  color: #434de7;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #434de7;
  padding-top: 13px;
  padding-left: 25px;
  padding-right: 25px;
}

.button-2.secondary:hover {
  color: #000;
  border-color: #000;
}

.tabs-menu-3 {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8rem;
  margin-bottom: 30px;
  display: inline-block;
}

.tabs-menu-3.half {
  margin-bottom: 20px;
}

._1-3-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.paragraph-small {
  color: #000;
  min-height: auto;
  margin-bottom: 0;
  font-weight: 400;
}

.tab-link-3 {
  color: #000;
  background-color: #0000;
  border: 1px #0000;
  border-radius: 10px;
  width: 200px;
  padding: 20px 0;
  font-weight: 600;
}

.tab-link-3.w--current {
  color: #006bff;
  background-color: #cfcfcf29;
  border: 1px #4498f2;
  border-radius: 10rem;
  box-shadow: 0 2px 10px #0003;
}

.tab-link-3.half {
  width: 190px;
}

.tabs-content-3 {
  overflow: visible;
}

.spacer-xs {
  width: 100%;
  height: 10px;
}

.spacer-m {
  width: 100%;
  height: 20px;
}

.main-container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: #fff;
  border: 1px solid #f2f3ff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 32px 25px;
  display: flex;
  box-shadow: 0 20px 30px -10px #1d01501a;
}

.pricing-card.left-align {
  text-align: left;
  align-items: flex-start;
}

.icon {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  overflow: hidden;
}

.feature-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  align-items: center;
  display: flex;
}

.feature-wrap.white {
  color: #fff;
}

.spacer-xxl {
  width: 100%;
  height: 50px;
}

.stripe {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Trust badges (payment methods) */
.trust-badges {
  display: block;
  margin: 24px auto 8px;
  max-width: 320px;
  height: auto;
}

.pricing-login {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.navbar-logo {
  opacity: .79;
  width: 5.5rem;
  height: 100%;
}

.navbar {
  box-shadow: none;
  background-color: #fff;
  border-bottom: 1px solid #b3b3b380;
  justify-content: center;
  padding: .25rem 2.5rem;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.icon-2 {
  color: #838383;
  transform: scale(1.5);
}

.navbar_menu {
  color: #666;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  display: flex;
}

.nav-link, .nav-link-2, .nav-link-3 {
  text-align: center;
}

.menu-button {
  color: #333;
}

.menu-button.w--open {
  background-color: #fff;
}

.centered {
  opacity: .5;
  margin-left: auto;
  margin-right: auto;
}

.brand {
  opacity: .5;
  text-align: center;
  width: 200px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.upgrade {
  background-image: linear-gradient(83deg, #3d99f0, #828cfd);
  border-radius: 8px;
  display: block;
}

.example-tour-iframe {
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: 95vh;
  max-height: 68rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  display: flex;
}

.heading-4 {
  margin-bottom: 20px;
}

.heading-main {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 110%;
}

.heading-main.align-center {
  text-align: center;
  flex: 1;
  line-height: 120%;
  display: block;
}

.heading-main.no-pad {
  margin-top: 0;
  margin-bottom: 0;
}

.button-3 {
  outline-offset: 0px;
  color: #414141;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #00000008;
  border: 1px solid #b3b3b3;
  border-radius: 16px;
  outline: 3px #000;
  margin-bottom: 15px;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
  box-shadow: 0 2px 5px 1px #0003;
}

.button-3:hover {
  color: #000;
  border-color: #1a1a1a;
  transform: scale(.98);
}

.button-3.cta {
  color: #fff;
  background-color: #389af0;
  background-image: linear-gradient(to right, #379af0, #898bff);
  border-style: none;
  border-color: #0000;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 1px 6px 4px -2px #00000026;
}

.heading-6, .heading-7, .heading-8, .heading-9 {
  margin-bottom: 20px;
}

.grid-blog-android {
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding-top: 3.1rem;
  padding-bottom: 3.1rem;
  display: grid;
}

.grid-blog-android_wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.grid-blog-android_phone-image {
  height: 26rem;
  padding-bottom: 1rem;
}

.rich-text {
  width: 100%;
}

.rich-text li {
  color: var(--dark-text-2);
  margin-top: .5rem;
  margin-bottom: .5rem;
  line-height: 2;
}

.rich-text p {
  color: var(--dark-text-2);
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}

.rich-text a {
  color: var(--brand);
  text-decoration: none;
}

.no-margin {
  margin-top: 0;
}

._360-embed {
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.blog-container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.color-cta {
  color: #6891f8;
}

.dashboard-container {
  max-width: 95vw;
}

.grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.pill {
  color: #585858;
  background-color: #0000000d;
  border-radius: 20px;
  margin-left: -15px;
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
}

.pill.hidden {
  display: none;
}

.pill.top-right {
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #ffffffc7;
  background-color: #000000ad;
  margin-top: 10px;
  margin-right: 7px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.pill.top-right.cta {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--dark-text);
  background-color: #ffffffad;
}

.pill.top-right.watermarked {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  background-color: rgba(180, 100, 50, 0.8);
}

.dashboard-header {
  align-items: center;
  height: 5rem;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.dashboard-header.right {
  justify-content: flex-end;
  padding-top: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Consistent header element sizing */
.header-actions a {
  text-decoration: none;
}

.header-actions .pill,
.header-actions .header-team-badge {
  margin-left: 0;
  padding: 8px 14px;
  font-size: 1rem;
  height: 36px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  font-weight: 500;
}

.header-actions .pill {
  color: #379af0;
}

/* Team badge in header */
.header-team-badge {
  gap: 6px;
  color: #6b7280;
}

.header-team-badge svg {
  color: #379af0;
}

.header-settings-btn svg {
  width: 20px;
  height: 20px;
}

.top-gradient {
  z-index: 1;
  background-image: linear-gradient(#0000008f, #0000);
  height: 100px;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
}

.top-gradient.hidden {
  display: none;
}

.top-gradient.visible {
  display: block;
}

.navbar_menu-wrapper {
  justify-content: flex-start;
  align-items: center;
  padding-top: .2rem;
  padding-bottom: .2rem;
  display: flex;
}

.navbar_logo-link {
  height: 100%;
  margin-top: -5px;
  padding-left: 0;
  padding-right: 2rem;
  display: flex;
}

.navlink {
  color: var(--dark-text-2);
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: .9rem 1.2rem;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.navlink:hover {
  color: var(--dark-text);
}

.hide {
  display: none;
}

.site-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--mk-space-lg, 1.5rem);
  padding-right: var(--mk-space-lg, 1.5rem);
  position: relative;
  box-sizing: border-box;
}

@media (min-width: 1400px) {
  .site-container {
    max-width: 1400px;
  }
}

.flex-vert-tc {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.all-caps {
  text-transform: uppercase;
}

.section_hero-grid-component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.bullet-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: flex-start;
  margin-bottom: 16px;
  display: flex;
}

.bullet_list-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.bullet_list-wrapper.is-center {
  align-items: center;
}

.text-bold {
  font-weight: 600;
}

.margin-xhuge {
  margin: 8rem;
}

.text-weight-bold {
  font-weight: 700;
}

.icon-height-small {
  height: 1rem;
}

.background-color-black {
  color: #f5f5f5;
  background-color: #000;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.form_message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.align-center-2 {
  margin-left: auto;
  margin-right: auto;
}

.text-size-small {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-size-small.text-color-dark-grey {
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.margin-0 {
  margin: 0;
}

.text-weight-xbold {
  font-weight: 800;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-0 {
  padding: 0;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.text-size-tiny {
  font-size: .75rem;
  line-height: 1.3;
}



.padding-section-medium {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.background-color-white {
  background-color: #fff;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.text-align-right {
  text-align: right;
}

.text-size-large {
  font-size: 1.5rem;
}

.text-size-large.text-color-white {
  line-height: 120%;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.overflow-visible {
  overflow: visible;
}

.text-weight-medium {
  font-weight: 500;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.icon-height-large {
  height: 3rem;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.spacer-small-2 {
  width: 100%;
  padding-top: 1rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.margin-small {
  margin: 1rem;
}

.text-size-regular {
  font-size: 1rem;
}

.padding-xsmall {
  padding: .5rem;
}

.padding-xhuge {
  padding: 8rem;
}

.icon-height-medium {
  height: 2rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.padding-custom3 {
  padding: 3.5rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-xxhuge {
  margin: 12rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.margin-huge {
  margin: 6rem;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.fs-styleguide_heading-large {
  font-size: 6rem;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.margin-medium {
  margin: 2rem;
}

.text-color-white {
  color: #fff;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.faq-heading {
  font-weight: 600;
  line-height: 150%;
}

.padding-small {
  padding: 1rem;
}

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

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.text-color-grey {
  color: gray;
  font-family: Inter, sans-serif;
}

.heading-style-h2 {
  margin-top: .5rem;
  margin-bottom: 0;
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.global-styles {
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

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

.text-style-link {
  color: #000;
  text-decoration: underline;
}

.margin-xsmall {
  margin: .5rem;
}

.heading-style-h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-style-italic {
  font-style: italic;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #2d40ea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #be4aa5;
}

.fs-styleguide_label.is-hex {
  color: #000;
  background-color: #f5f5f5;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-size-medium {
  font-size: 1.25rem;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.text-align-left {
  text-align: left;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.overflow-auto {
  overflow: auto;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.home-message_tile {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding_heading {
  padding-bottom: 1rem;
}

.padding-bottom.padding-text-caps {
  padding-bottom: .5rem;
}

.padding-bottom.padding-custom {
  padding-bottom: 6rem;
}

.padding-bottom.padding-p {
  padding-bottom: 1.2rem;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.form_component {
  margin-bottom: 0;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.form_input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.margin-tiny {
  margin: .125rem;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-large {
  padding: 3rem;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.fs-styleguide_version {
  z-index: 5;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.text-weight-light {
  font-weight: 300;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.padding-xxsmall {
  padding: .25rem;
}

.text-style-nowrap {
  white-space: nowrap;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.padding-xxhuge {
  padding: 12rem;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.background-color-grey {
  background-color: #f5f5f5;
}

.text-style-muted {
  opacity: .6;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.padding-medium {
  padding: 2rem;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.spacer-large {
  padding-top: 3rem;
}

.fs-styleguide_header {
  background-color: #0000000d;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin_h3 {
  margin-bottom: .5rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.form_message-success {
  background-color: var(--brand);
  color: var(--white);
  padding: 1.25rem;
}

.padding-huge {
  padding: 6rem;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.fs-styleguide_color.is-3 {
  background-color: #fff;
}

.fs-styleguide_color.is-1 {
  background-color: #000;
}

.fs-styleguide_color.is-2 {
  background-color: #f5f5f5;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.button-4 {
  color: #fff;
  text-align: center;
  background-color: #000;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button-4.is-secondary {
  color: #000;
  background-color: #0000;
  border: 2px solid #000;
  border-bottom-width: .125rem;
}

.button-4.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button-4.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button-4.is-large {
  padding: 1rem 2rem;
}

.button-4.is-small {
  padding: .5rem 1.25rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.margin-large {
  margin: 3rem;
}

.padding-tiny {
  padding: .125rem;
}

.fs-styleguide_spacing-all {
  display: none;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.heading-style-h1 {
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1.1;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.hero-grid_right-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.hero_tour-iframe {
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: 100%;
}

.section_c {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section_c.home-hero {
  display: flex;
}

.section_c.affiliate-hero {
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section_c.real-estate-hero {
  justify-content: flex-start;
  display: flex;
}

.section_c.blog-hero {
  z-index: 10;
  justify-content: flex-end;
  padding-bottom: 6rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section_c.blog {
  z-index: 11;
  position: relative;
}

.text-color-brand {
  color: var(--brand);
}

.button-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2rem;
  display: flex;
}

.button-wrapper.is-cta {
  z-index: 10;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 0;
  position: relative;
}

.button-wrapper.is-hero {
  grid-row-gap: 0rem;
}

.button-wrapper.is-center {
  justify-content: center;
}

.button-wrapper.is-menu {
  display: none;
}

.button_cta {
  background-image: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.7rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.button_cta:hover {
  transform: scale(.95);
}

.button_cta.w--current {
  color: var(--white);
}

.button_cta.is-inverse {
  border: 1px solid var(--grey);
  color: var(--dark-text);
  background-color: #00000008;
  background-image: none;
}

.button_cta.has-left-image {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--white);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button_cta.has-left-image.is-inverse {
  background-color: var(--white);
  color: var(--brand);
}

.button_cta.has-left-image.is-inverse.button-shadow {
  box-shadow: none;
  border-style: none;
}

.button_cta.has-left-image.is-ghost {
  border: 1px solid var(--white);
  color: var(--white);
  background-image: none;
}

.button_cta.has-left-image.is-ghost.button-shadow {
  box-shadow: none;
  border-style: none;
}

.button_cta.show-tablet {
  display: none;
}

.button_cta.small {
  align-self: center;
  margin-left: 10px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.button_cta.small.visible {
  display: none;
}

.button_cta.small.share {
  align-self: flex-start;
  height: 50px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: none;
}

.button_cta.small.share:hover {
  transform: scale(1.1);
}

.button_cta.small.share.visible {
  flex: 0 auto;
  display: flex;
}

.button-shadow {
  box-shadow: 0 2px 5px #0003;
}

.flex-gap-large {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  display: flex;
}

.flex-hor-cl {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-vert-ct {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.flex-vert-c-b {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.flex-gap-medium {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  display: flex;
}

.flex-vert-cc {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-vert-c-dsa {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex-child-extend {
  flex: 1;
}

.home-message_grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.flex-vert-lt {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-vert-rt {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.home-message_component {
  color: #fff;
  min-height: 100vh;
  padding: 3rem;
  display: flex;
}

.flex-hor-bl {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.flex-vert-c-dse {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  display: flex;
}

.flex-hor-tl {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-gap-small {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.home-message_content {
  color: #000;
  background-color: #0000000d;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  padding: 2.5rem;
  display: flex;
}

.padding-navbar {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.icon-embed-koala {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: .9rem;
  display: flex;
}

.text-size-large-p {
  font-size: 1.15rem;
  font-weight: 400;
}

.text-color-dark-grey {
  color: var(--dark-text-2);
}

.hero_image-bg {
  background-image: linear-gradient(24deg, #ffffffe3 21%, #389af061 63%, #898bff54);
  border-radius: 0 4rem 2rem 2rem;
  width: 90%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% -6% 0% auto;
}

.hero_image-bg.left {
  inset: 0% auto 0% -6%;
  transform: rotate(180deg);
}

.hero_image-bg.is-left {
  left: -6%;
  right: auto;
}

.border-radius-small {
  border-radius: 5px;
}

.grid_text-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.grid_image-wrapper {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.grid_image-wrapper.is-bottom {
  justify-content: flex-end;
}

.grid_component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.grid_component.is-left-image {
  grid-template-columns: 1fr 1fr;
}

.cta-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--brand);
  background-image: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--white);
  border-radius: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 5.7rem 3.9rem;
  display: grid;
  position: relative;
  overflow: hidden;
}

.koala-cta-bg {
  z-index: 1;
  opacity: .17;
  height: 160%;
  position: absolute;
  inset: 0% -15% 0% auto;
}

.div-block {
  display: flex;
}

.text-size-tiny-2 {
  font-size: .75rem;
}

.grid_features {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_features-tile {
  background-color: var(--white);
  border: 0 solid #d3d3d3;
  border-radius: 1.5rem;
  flex-direction: column;
  padding: 2.4rem;
  display: flex;
}

.grid_wrapper {
  padding-top: 3rem;
}

.grid_wrapper.isblog {
  padding-top: 5rem;
}

.grid-image {
  z-index: 10;
  object-fit: contain;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.how-people-using_stack {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 0;
  display: grid;
}

.full-image {
  border-radius: 1.2rem;
  width: 100%;
}

.full-image.is-using {
  object-fit: cover;
  height: 12rem;
  margin-bottom: 1rem;
}

.full-image.is-using.tourism {
  object-fit: fill;
  object-position: 0% 50%;
}

.full-image.border-white {
  border: 1px solid #ffffff80;
}

.section_how-people-using {
  position: relative;
}

.padding-global-2 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.heading_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2.5rem;
  display: flex;
}

.heading_wrapper.faq {
  align-items: flex-start;
}

.text-color-dark-grey-2 {
  color: #494949;
}

.text-color-blue {
  color: #0056cd;
}

.text-size-small-2 {
  font-size: .875rem;
}

.tile_how-people-are-using {
  width: 100%;
}

.card-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: .5rem;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  display: flex;
  position: relative;
}

.card-wrapper.summary {
  width: 100%;
}

.card-wrapper.summary.credit-card {
  display: none;
}

.arrow {
  color: #494949;
  font-size: 1.5rem;
}

.slider_nav {
  font-size: .8rem;
  bottom: 20px;
}

.testimonial-stack {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: -2rem;
  padding: 0;
  display: grid;
}

.slider_testimonial {
  background-color: #fff;
  flex-direction: column;
  height: auto;
  padding-bottom: 5rem;
  display: flex;
}

.text-color-dark-grey-3 {
  color: #494949;
}

.proof-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: row;
  align-items: center;
  padding-bottom: .4rem;
  display: flex;
}

.review_star-wrapper {
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.slider_heading {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.slider_testimonial-slide_content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: flex-start;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.slide_testimonial-slide {
  width: 100%;
}

.review-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.icon-review-star {
  color: #ffb801;
  width: 1rem;
}

.testimonial-image {
  border-radius: 100vw;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}

.faq_content-wrapper {
  width: 100%;
  height: 100%;
}

.faq1_question {
  cursor: pointer;
  border-top: 1px solid #e8e8e8;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.faq1_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.padding-global-3 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.faq1_component {
  border-bottom: 1px solid #e8e8e8;
}

.faq-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.container-large-2 {
  width: 100%;
  max-width: 76rem;
  margin-left: auto;
  margin-right: auto;
}

.faq1_icon {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
  display: flex;
}

.section_faq {
  background-image: linear-gradient(#f5f5f5, #f5f5f5);
  position: relative;
}

.accordian-section {
  background-color: #f7f7f7;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.accordian-section.transparent {
  background-color: #f7f7f700;
}

.grid_faq-sticky {
  align-items: flex-start;
  display: flex;
  position: sticky;
  inset: 12% 0% 0%;
}

.showcase-tour-wrapper {
  justify-content: center;
  display: flex;
}

.top-banner {
  z-index: 9999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--brand);
  background-image: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.1rem 3.9rem;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
  overflow: hidden;
}

.menu-2 {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.footer-bg {
  z-index: -1;
  width: 100vw;
  position: absolute;
  inset: auto 0% 0%;
}

.centered-wrapper {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #fff;
  text-align: center;
  background-color: #0056cd;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  min-width: 18rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  box-shadow: 0 8px 12px 3px #0056cd3d;
}

.section_comparison {
  position: relative;
}

.button_sub-text-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.icon-tiny {
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon-tiny.text-color-light-grey {
  color: #ccc;
}

.padding-global-4 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.bullet-point_point-wrapper {
  background-color: #e7f1ff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: .2rem;
  display: flex;
}

.bullet-point_point-wrapper.is-trans {
  background-color: #0000;
  padding: 0;
}

.proof-wrapper-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.summary-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 1rem;
  display: grid;
}

.bullet-point_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.div-block-2 {
  display: flex;
}

.footer-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-logo-link {
  padding-bottom: 2.4rem;
  padding-left: 0;
  display: flex;
}

.footer-logo {
  opacity: .79;
  object-fit: contain;
  width: 8rem;
  height: 2rem;
}

.div-block-3 {
  flex-direction: column;
  display: flex;
}

.footer-heading-pad {
  padding-bottom: 1rem;
}

.footer-link {
  color: var(--dark-text);
  padding-bottom: 1rem;
  text-decoration: none;
}

.section-footer {
  background-color: var(--dark-text);
  color: var(--grey);
}

.stars-no-credit-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  padding-left: .5rem;
  display: flex;
}

.feature-icon-wrapper {
  perspective-origin: 0 0;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  padding: 1.1rem;
  display: flex;
  transform: scale(1.3);
}

.feature-icon-wrapper.red {
  background-image: linear-gradient(54deg, #ff4a7d, #ff5e00);
}

.feature-icon-wrapper.yellow {
  background-image: linear-gradient(51deg, #ffc567, #fff369);
}

.feature-icon-wrapper.blue {
  background-image: linear-gradient(42deg, var(--brand), var(--brand-2));
}

.feature-icon-wrapper.green {
  background-image: linear-gradient(61deg, #b9e200, #60f8bb);
}

.feature-icon-wrapper.purple {
  background-color: var(--brand-2);
}

.feature-icon-wrapper.black {
  background-color: var(--dark-text);
}

.feature-icon-bg {
  width: 2rem;
  height: 2rem;
}

.icon-emoji {
  font-size: 2rem;
}

.bold-text-2 {
  font-weight: 600;
}

.red {
  color: #f10;
}

.showcase-tour-preview {
  height: 50vh;
}

.showcase_grid {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.tour-icon {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  cursor: pointer;
  border-radius: 10rem;
  width: 3rem;
  height: 3rem;
  margin-left: 10px;
  transition: transform .4s cubic-bezier(.165, .84, .44, 1);
  display: none;
}

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

.tour-icon.visible {
  display: block;
}

.tour-icon.visible.active {
  background-color: #0000;
}

.progress-bar {
  background-color: #fff;
  width: 0%;
  height: 5px;
  opacity: 1;
  transition: opacity .5s;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  z-index: 9999;
}

.progress-bar.finish {
  opacity: 0;
}

.section_hero-affiliate-grid-component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.koala-hero {
  z-index: 1;
  opacity: .17;
  height: 50vw;
  position: absolute;
  inset: 50% -15% 0% auto;
  transform: translate(0, -50%);
}

.koala-hero.pointer-events-off {
  z-index: -1;
}

.koala-hero.isblog {
  z-index: -1;
  opacity: .05;
}

.koala-hero.is-invest {
  left: -15%;
  right: auto;
}

.grid_affiliate-process {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section_features {
  background-color: var(--white);
  position: relative;
}

.landing-wrapper {
  z-index: 10;
  position: relative;
}

.video {
  z-index: 10;
  object-fit: contain;
  border-radius: .25rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.camera-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: grid;
}

.camera-grid-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.link-product-page {
  color: var(--dark-text-2);
  font-size: .9rem;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
}

.image-camera {
  object-fit: contain;
  width: 180px;
}

.image-camera.max-height {
  height: 15rem;
}

.image-camera.issquare {
  padding-bottom: 1.5rem;
}

.camera-grid_info-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.camera-grid-chip {
  background-color: var(--white);
  border-radius: 100rem;
  margin-top: 1rem;
  padding: 5px 12px;
  font-size: .8rem;
}

.blog-image {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.tripod-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: grid;
}

.grid_blog {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_blog-tile {
  background-color: var(--white);
  color: var(--dark-text);
  border: 1px solid #d3d3d3;
  border-radius: 1rem;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.grid_blog-tile_text-wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
}

.tile_blog-image {
  object-fit: cover;
  object-position: 50% 50%;
  height: 190px;
  margin-bottom: 1rem;
}

.heading-blog {
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1.3;
}

.dropdown {
  color: var(--dark-text-2);
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 500px;
  width: 100%;
}

.multi-image-upload_wrapper {
  background-color: var(--dark-text);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.multi-image-upload_wrapper.hide {
  display: none;
}

.multi-image-upload_element {
  z-index: 10;
  background-color: #2121214d;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.html-embed {
  width: 100px;
  height: 100px;
}

.multi-image-upload_text-wrapper {
  z-index: 98;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.multi-image-upload_border {
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: absolute;
}

.image-upload-svg {
  width: 8rem;
}

.multi-image-upload-button-wrapper {
  z-index: 99;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 5vh;
}

.file-count-text {
  padding-bottom: 1rem;
}

.multi-image-upload_input-element {
  z-index: 99;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.multi-image-content-wrapper {
  z-index: 10;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.multi-image-upload_text {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.multi-image-upload_text-wrapper-copy {
  z-index: 98;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.drop-overlay {
  z-index: 90;
  background-color: var(--black);
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.code-handle-input {
  display: none;
}

.upload-image-content {
  flex-direction: column;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.tablet-down {
  display: none;
}

.links-container {
  z-index: 99;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}

.links-container.margin-bottom {
  margin-bottom: 20px;
}

.dropdown-spacer {
  margin-bottom: 25px;
}

.koala-success {
  z-index: 1;
  opacity: 1;
  width: 20%;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.negative-bottom-margin {
  margin-bottom: -10px;
}

.max-width-settings-contain {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.accordion-section-heading {
  cursor: pointer;
  background-color: #f7f6f6;
  border-top: 1px #d3d3d3;
  border-bottom: 1px #d3d3d3;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem .75rem 20px;
  transition: border-radius 0.2s ease;
  display: flex;
}

/* When accordion is open, flatten bottom corners */
.accordion-section-heading.is-open,
.according-section-wrapper.is-open .accordion-section-heading {
  border-radius: 20px 20px 0 0;
}

.according-section-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 1rem;
}

.settings-wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.accordian-options-wrapper {
  margin-bottom: 20px;
  padding-top: 20px;
}

.accordian-form-button-wrapper {
  z-index: 99;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-image: linear-gradient(#fff0, #fff 14%, #fff);
  width: 100%;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.accordian-form {
  z-index: 9;
  position: relative;
}

.accordian-elements-wrapper {
  max-height: 55vh;
}

.form-block {
  position: relative;
}

.div-block-4 {
  z-index: 10;
  background-image: linear-gradient(#fff, #fff0 80%, #fff0);
  width: 100%;
  height: 40px;
  position: absolute;
  inset: 0% 0% auto;
}

.accordian-code, .plausible-script {
  display: none;
}

.publish-unpublish-wrap {
  z-index: 2;
  display: none;
  position: absolute;
  top: 23px;
  right: 20px;
}

.tour-admin-small-button-wrap {
  z-index: 2;
  grid-column-gap: 5px;
  display: flex;
  position: absolute;
  inset: 20px 20px auto auto;
}

.publish-tour-warning {
  cursor: pointer;
  flex-direction: column;
  display: none;
}

.publish-tour-warning.visible {
  background-color: #ff10010a;
  border: 1px dashed #ff1001;
  border-radius: 12px;
  flex-direction: column;
  padding: 5px 20px 10px;
  display: flex;
  max-width: 90%;
}

.publish-tour-warning.visible.unpublish {
  background-color: #04a50e30;
  border-color: #04a50e;
}

.publish-tour-warning.visible.floating {
  z-index: 600;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: auto;
  background-color: #ffffffe3;
  border-style: none;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-bottom: 25px;
  display: none;
  inset: 1.5rem 0% auto;
  box-shadow: 7px 7px 6px #0003;
}

.publish-tour-warning.unpublish {
  background-color: #04a50e33;
  border: 1px dashed #04a50e;
  border-radius: 12px;
  flex-direction: column;
  padding: 5px 20px 10px;
  display: none;
}

.publish-tour-warning.unpublish.visible {
  display: flex;
}

.publish-tour-warning.floating {
  flex-direction: column;
  width: 400px;
  position: fixed;
  inset: 0% 0% auto;
}

.overlay-preview-embed {
  background-color: #fff;
  align-items: center;
  width: 40vw;
  min-width: 300px;
  height: 20vw;
  min-height: 300px;
  display: flex;
}

.grid_premium-feautres {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_service-complete-tours {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.is-premium-text {
  background-color: var(--brand);
  color: var(--white);
  border-radius: 100vw;
  padding: .5rem 1rem;
  font-size: .9rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.grid_pricing-tile {
  background-color: var(--white);
  border: 0 solid #d3d3d3;
  border-radius: 1.5rem;
  flex-direction: column;
  padding: 2.4rem;
  display: flex;
  position: relative;
}

.button-wrapper-right {
  justify-content: flex-start;
  padding-top: 2rem;
  display: flex;
}

.image-drawing {
  z-index: 0;
  height: 15rem;
  position: absolute;
  bottom: 22rem;
  left: 1rem;
}

.floorplan {
  z-index: 50;
  height: 15rem;
  position: absolute;
  bottom: 0;
}

.virtual-tour {
  width: 100%;
  height: 65vh;
}

.settings-embed-preview-container {
  background-color: #000;
  background-image: url('../images/loading_1loading.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  display: block;
}
/* Reset old margins/constraints when used inside the sidebar overlay */
.settings-sidebar-overlay .settings-embed-preview-container,
.settings-sidebar-preview.settings-embed-preview-container,
#settings-embed-preview-container.settings-sidebar-preview {
  min-height: 0;
  max-height: none;
  margin: 0;
}

.live-tour-button-wrap {
  z-index: 13;
  justify-content: flex-end;
  height: 100px;
  padding-top: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.settings-embed-iframe {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 96vh;
  transition: transform 1s cubic-bezier(.86, 0, .07, 1);
  display: block;
}

.splash-screen-container {
  text-align: center;
  flex-flow: column;
  flex: 1;
  align-self: center;
  align-items: center;
  display: flex;
}

.statitics_grid-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 4rem;
  display: grid;
}

.grid_statistics-tile {
  background-color: var(--white);
  border: 0 solid #d3d3d3;
  border-radius: 1.5rem;
  flex-direction: column;
  padding: 2.4rem;
  display: flex;
  box-shadow: 0 2px 5px #0000001c;
}

.statistics_grid-tile-heading-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.team-tile {
  background-color: var(--white);
  border: 0 solid #d3d3d3;
  border-radius: 1.5rem;
  flex-direction: column;
  padding: 2.4rem;
  display: flex;
}

.grid_team {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team_grid-image {
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.team_grid-image.background-color-brand {
  background-color: var(--brand);
}

.landing-screen_grid {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: start;
  width: 100%;
  margin-top: -2.5rem;
  display: grid;
}

.faq1_answer {
  overflow: hidden;
}

.faq1_accordion2 {
  color: var(--white);
  border-bottom: .5px solid #b3b3b347;
  border-radius: .3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: .2rem;
  padding-bottom: .2rem;
  padding-left: 0;
}

.faq1_accordion2.is-last {
  border-bottom-style: none;
  border-bottom-width: 0;
}

.faq1_accordion2.is-first {
  border-top: 1px solid #b3b3b347;
  border-bottom: 1px solid #b3b3b347;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.faq1_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
  display: flex;
}

.text-size-medium-3 {
  font-size: 1.25rem;
}

.text-size-medium-3.text-weight-bold {
  font-weight: 700;
}

.faq1_component-2 {
  width: 100%;
}

.faq1_question-2 {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .5rem;
  display: flex;
}

.all-zero-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.video_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.landing-screen_overflow-wrapper {
  align-items: center;
  display: flex;
}

.icon-embed-custom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7.5rem;
  height: 7.5rem;
  display: flex;
}

.faq-heading-svg-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.landing_heading-wrapper {
  padding-bottom: 2rem;
}

.landing_heading-wrapper.is-video {
  padding-bottom: 0;
}

.text-color-off-white {
  color: #b9b9b9;
}

.text-color-off-white.hide-desktop-only {
  display: none;
}

.icon-faq-arrow {
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  display: flex;
}

.component_wrapper {
  position: relative;
}

.compass_component {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  color: var(--white);
  background-color:#41404032;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 284.797px;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.compass_direction-slider {
  z-index: 0;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  inset: 0%;
}

.compass_direction-slider.test {
  flex-wrap: wrap;
  max-width: 14.3rem;
  height: 100%;
  display: none;
  position: relative;
  overflow: hidden;
}

.compass_text {
  text-align: center;
  text-shadow: 0 1px 7px #ffffff78;
  justify-content: center;
  font-size: 1.5rem;
  display: flex;
}

.compass_text.small {
  font-size: 1rem;
}

.icon-embed-custom-2, .icon-embed-custom-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.375rem;
  height: 1.8125rem;
  display: flex;
}

.compass_lines {
  color: var(--grey);
  min-width: 4.6rem;
  height: 1.1rem;
  margin-left: 10px;
  margin-right: 10px;
}

.compass_lines.is-left {
  margin-left: 0;
}

.compass_icon {
  cursor: pointer;
  order: -1;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  transition: all .3s;
  display: flex;
  position: absolute;
  left: 1rem;
}

.compass_icon.is-right {
  order: 1;
  left: auto;
  right: 1rem;
}

.compass_icon.is-right.active {
  filter: saturate();
}

.compass_icon.setpos {
  display: none;
}

.compass_icon.setpositionicon {
  filter: saturate(0%);
  left: 0;
}

.compass_icon.setpositionicon.active {
  filter: saturate();
}

.compass_icon.northposition {
  filter: saturate(0%);
  order: 1;
  left: auto;
  right: 0;
}

.compass_icon.active {
  filter: saturate();
}

.test-component-section {
  flex-direction: column;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 5.2rem;
  display: flex;
}

.compass_direction-wrapper {
  justify-content: flex-start;
  width: 67%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.compass_direction-wrapper.no-events {
  transform: scale(.9);
}

.tour-admin-steps-wrap {
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(57deg, #ffffff45, #fffc);
  border: 1px solid #ffffff47;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 22px;
  left: 50%;
  overflow: visible;
  transform: translate(-50%);
}

.tour-admin-steps-wrap.visible {
  display: flex;
}

.step-button {
  color: #242424;
  text-align: center;
  letter-spacing: -.5px;
  cursor: pointer;
  border-radius: 100vw;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 1.3rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.step-button:hover {
  color: #000;
}

.step-button.active {
  background-color: #fff;
  box-shadow: 0 0 5px 2px #ffffff73;
}

.tour-admin-steps-wrap-line {
  background-color: #717171;
  width: 1px;
  height: 1rem;
}

.green {
  color: #04a50e;
}

.compass-wrap {
  z-index: 78;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--compass-bottom, 140px);
  transition: bottom 0.3s ease;
}

.compass-wrap.visible {
  display: block;
}

.pano-thumbs-wrapper {
  z-index: 5;
  background-image: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 0% 0;
  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.pano-thumbs-wrapper.empty.hidden {
  opacity: 0;
}

.pano-thumbs-wrapper.up {
  top: 0;
  bottom: auto;
}

.lightbox-link {
  color: #333;
  text-decoration: none;
}

.watch-help-video {
  cursor: pointer;
  border: 1px solid #ffffff52;
  border-radius: 7px;
  width: 100%;
  height: auto;
  box-shadow: 1px 1px 5px #0003;
}

.infospot-css {
  transition: all .2s;
  display: none;
}

.break {
  float: none;
  clear: none;
  width: 1px;
  height: 1px;
  display: block;
}

.panoramic-inline-preview-image {
  aspect-ratio: 2;
  object-fit: cover;
  background-color: #e0e0e0;
  background-image: url('../images/360_F_268556012_c1WBaKFN5rjRxR2eyV33znK4qnYeKZjm.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #d3d3d3;
  border-radius: 15px;
  width: 100%;
  transition: all .2s;
}

.panoramic-inline-preview-image.thumbnail {
  aspect-ratio: 1;
  border-radius: 10rem;
  max-width: 160px;
}

.panoramic-image-preview-wrap {
  border-radius: 0;
  max-width: 420px;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
}

.panoramic-image-preview-wrap.loading {
  cursor: wait;
  pointer-events: none;
}

.sticky-top {
  z-index: 77;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffff8f;
  padding-top: 40px;
  padding-bottom: 20px;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-bottom {
  z-index: 999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffff8f;
  padding-top: 20px;
  position: sticky;
  bottom: 0;
}



.scrollable-basic-settings {
  max-height: 50vh;
  overflow: auto;
}

.variationtoggle {
  z-index: 14;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: #414040ad;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  height: 48px;
  padding: 4px;
  gap: 4px;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.variationtoggle.visible {
  display: flex;
}

.togglebutton {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: 12px;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  min-width: 50px;
  max-width: 150px;
  height: 40px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  border: 1px solid transparent;
}

.togglebutton:hover:not(.active) {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.togglebutton.left.active {
  padding-right: 24px;
}

.togglebutton.right.active {
  padding-left: 24px;
}

.togglebutton.active {
  color: #1a1a1a;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.togglebutton.active:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.togglebuttontext {
  text-wrap: nowrap;
  -webkit-user-select: none;
  user-select: none;
  line-height: 100%;
  display: inline-flex;
  letter-spacing: 0.01em;
}

.alert-image {
  border-radius: 1rem;
  max-width: 94%;
  margin-bottom: 30px;
  box-shadow: 0 0 33px 11px #0000005c;
}

.large-text {
  font-size: 1.25rem;
  line-height: 120%;
}

.splash-screen-title {
  color: #fff;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 120%;
  display: none;
}

.splash-screen-title.visible {
  display: block;
}

.max-width-tight {
  max-width: 360px;
}

.splash-screen-author {
  color: #ffffff91;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-weight: 500;
  display: none;
}

.splash-screen-author.visible {
  display: block;
}

.splash-screen-form-label {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 400;
}

/* Old infospot icons - replaced by panel in global.css */

.infospot-media-tabs {
  margin-bottom: 20px;
}

.infospot-media-tab {
  border: 1px solid var(--grey);
  color: #716f6f;
  background-color: #fff;
  border-radius: 10rem;
  margin-bottom: 10px;
  margin-right: 5px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
}

.infospot-media-tab.w--current {
  color: #007ef1;
  background-color: #fff0;
  border-width: 1px;
  border-color: #6f91f9;
}

.watermark {
  z-index: 153;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: 0% 0%;
  width: 7rem;
  height: 7rem;
  display: none;
  position: fixed;
  inset: 20px auto auto 20px;
}

.watermark.visible {
  display: block;
}

/* Koala360 branding watermark for free users */
.koala-branding {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 153;
  font-family: 'Lato', sans-serif;
  pointer-events: none;
}

.koala-branding.visible {
  display: flex;
  pointer-events: auto;
}
body[data-admin="true"] .koala-branding,
body[data-admin="true"] .koala-branding.visible {
  display: none !important;
  pointer-events: none !important;
}

.koala-branding-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.koala-branding-link:hover {
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  text-decoration: none;
}

.koala-branding-link::after {
  content: '↗';
  font-size: 11px;
  opacity: 0.7;
}

.koala-branding-upgrade {
  /* Upgraded from subtle link to eye-catching button */
  display: inline-block;
  background: linear-gradient(135deg, #379af0 0%, #898bff 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
  margin-top: 6px;
  text-shadow: none;
  box-shadow: 0 2px 10px rgba(55, 154, 240, 0.4);
  animation: koala-pulse-glow 2.5s ease-in-out infinite;
}

.koala-branding-upgrade:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(55, 154, 240, 0.6);
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #4aa8f7 0%, #9a9cff 100%);
}

@keyframes koala-pulse-glow {
  0%, 100% { box-shadow: 0 2px 10px rgba(55, 154, 240, 0.4); }
  50% { box-shadow: 0 2px 20px rgba(55, 154, 240, 0.7); }
}

/* Repeating tiled watermark overlay for free users */
.koala-watermark-overlay {
  display: none;
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 152;
  pointer-events: none;
  background-image: url('../images/watermark.webp');
  background-repeat: repeat;
  background-size: 280px auto;
  opacity: 0.22;
  transform: rotate(-25deg);
  transform-origin: center center;
  animation: watermark-pulse 4s ease-in-out infinite;
}

.koala-watermark-overlay.visible {
  display: block;
}

/* Subtle drift animation - slowly moves the pattern */
@keyframes watermark-drift {
  0%, 100% { 
    background-position: 0 0; 
  }
  50% { 
    background-position: 60px 40px; 
  }
}

/* Subtle pulse animation - gently fades in/out */
@keyframes watermark-pulse {
  0%, 100% { 
    opacity: 0.00; 
  }
  50% { 
    opacity: 0.20; 
  }
}

@media screen and (max-width: 767px) {
  .koala-branding {
    top: 15px;
    left: 15px;
  }
  .koala-branding-link {
    font-size: 11px;
    padding: 5px 10px;
  }
  .koala-branding-link::after {
    font-size: 10px;
  }
  .koala-branding-upgrade {
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media screen and (max-width: 479px) {
  .koala-branding {
    top: 12px;
    left: 12px;
  }
  .koala-branding-link {
    font-size: 10px;
    padding: 4px 8px;
  }
  .koala-branding-link::after {
    font-size: 9px;
  }
  .koala-branding-upgrade {
    font-size: 10px;
    padding: 5px 10px;
  }
}

.media-option-box {
  color: #fff;
  cursor: pointer;
  background-color: #42424269;
  border: 1px solid #ffffff30;
  border-radius: 15px;
  padding: 1.5rem;
  transition: all .2s;
}

.media-option-box:hover {
  background-color: #42424296;
  border-color: #ffffff96;
}

.media-option-image {
  box-sizing: border-box;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.media-option-image.faded {
  opacity: 0.3;
}

.media-option-image-wrap {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.upload-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.upload-icon-overlay svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}

.media-option-box:hover .upload-icon-overlay svg {
  transform: scale(1.1);
}

@media screen and (min-width: 1024px) {
  .upload-icon-overlay svg {
    width: 96px;
    height: 96px;
  }
}

.media-option-title {
  -webkit-user-select: none;
  user-select: none;
}

.media-option-p {
  color: #ffffff80;
  -webkit-user-select: none;
  user-select: none;
  max-width: 40ch;
  font-size: .9rem;
}

.media-option-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  max-width: 90vw;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: visible;
}

@media screen and (max-width: 991px) {
  .button.cta.is-menu {
    line-height: 20px;
  }

  .section.tour-wrapper {
    min-height: 600px;
  }

  .form-container {
    position: static;
    overflow: visible; /* Changed from hidden to allow tooltips */
  }

  .form-container.lightgrey.settings {
    height: auto;
    margin-right: 0;
  }

  .body-dashboard {
    /* padding-left: 20px;
    padding-right: 20px; */
  }

  .tour-name {
    font-size: 24px;
    line-height: 110%;
  }

  .overlay.landing-screen {
    align-items: flex-start;
  }

  .overlay.choose-media-screen.visible {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .please-wait {
    line-height: 1.2;
  }

  .list-of-links {
    max-height: 245px;
  }

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar_menu {
    background-color: var(--white);
    padding: .5rem 2.5rem 2rem;
    box-shadow: 0 2px 7px #0003;
  }

  .menu-button {
    margin-right: -18px;
  }

  .example-tour-iframe {
    width: 100%;
    height: 65vh;
  }

  .grid-blog-android {
    grid-column-gap: 2.5rem;
  }

  .grid-blog-android_phone-image {
    height: 22rem;
  }

  ._360-embed {
    height: 430px;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-header {
    margin-top: 80px;
  }

  .navbar_menu-wrapper {
    justify-content: space-between;
  }

  .navlink {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    padding-left: 0;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .section_hero-grid-component {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .bullet_list-wrapper.is-hero {
    align-items: center;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .hide-tablet {
    display: none;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2.6rem;
  }

  .heading-style-h3 {
    font-size: 1.8rem;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .heading-style-h5 {
    display: flex;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .hero-grid_left-wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .section_c.home-hero, .section_c.affiliate-hero, .section_c.real-estate-hero {
    height: auto;
    display: block;
  }

  .section_c.blog-hero {
    height: auto;
    padding-top: 2em;
    padding-bottom: 4.8rem;
    display: block;
  }

  .button-wrapper.is-cta {
    justify-content: flex-start;
    padding-top: 1rem;
  }

  .button-wrapper.is-hero {
    justify-content: center;
  }

  .button-wrapper.is-menu {
    padding-top: 1rem;
    display: flex;
  }

  .button_cta.is-menu {
    padding: .3rem 2.4rem;
  }

  .padding-navbar {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero_image-bg.left {
    width: 80%;
    height: 80%;
    top: 25%;
    left: 6%;
  }

  .hero_image-bg.is-left {
    width: 90%;
    height: 80%;
    top: 7%;
    left: -4%;
  }

  .hero_image-bg.is-hero {
    top: 6%;
    right: -4%;
  }

  .hero_image-bg.is-right {
    width: 70%;
    height: 80%;
    right: 4%;
  }

  .grid_component {
    grid-template-columns: 1.25fr;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .koala-cta-bg {
    height: 110%;
    top: 24%;
  }

  .text-size-tiny-2 {
    font-size: .7rem;
  }

  .grid_wrapper.isblog {
    padding-top: 2rem;
  }

  .how-people-using_stack {
    grid-template-columns: 1fr 1fr;
  }

  .heading_wrapper.faq {
    text-align: center;
    align-items: center;
  }

  .tile_how-people-are-using {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .card-wrapper.summary.credit-card {
    display: none;
  }

  .arrow.right {
    margin-right: -2.5rem;
  }

  .arrow.left {
    margin-left: -2.5rem;
  }

  .slider_testimonial {
    background-color: #0000;
  }

  .slider_testimonial-slide_content-wrapper {
    color: #0000;
    flex-direction: column;
  }

  .faq-grid {
    grid-column-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .top-banner {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .footer-bg {
    width: 160vw;
  }

  .button_sub-text-wrapper {
    align-items: center;
  }

  .stars-no-credit-wrap {
    justify-content: center;
  }

  .feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    margin-bottom: 2rem;
    padding: .9rem;
  }

  .feature-icon-wrapper.red {
    width: 3rem;
    height: 3rem;
  }

  .showcase_grid {
    grid-template-columns: 1fr 1fr;
  }

  .section_hero-affiliate-grid-component {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .koala-hero {
    height: 60%;
  }

  .koala-hero.isblog {
    height: 100%;
    top: 60%;
  }

  .grid_affiliate-process {
    grid-template-columns: 1fr 1fr;
  }

  .camera-grid, .tripod-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .grid_blog {
    grid-template-columns: 1fr 1fr;
  }

  .grid_blog-tile_text-wrapper {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .tile_blog-image {
    height: 170px;
  }

  .heading-blog {
    font-size: 1.3rem;
  }

  .desktop-only {
    display: none;
  }

  .tablet-down {
    display: flex;
  }

  .koala-success {
    height: 110%;
    top: 24%;
  }

  .max-width-settings-contain {
    justify-content: center;
  }

  .accordian-form-button-wrapper {
    position: static;
    bottom: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .accordian-elements-wrapper {
    padding-bottom: 10px;
  }

  .overlay-preview-embed {
    display: none;
  }

  .grid_premium-feautres {
    grid-template-columns: 1fr 1fr;
  }

  .grid_service-complete-tours {
    grid-template-columns: 1fr;
  }

  .settings-embed-preview-container {
    display: none;
  }

  .statitics_grid-wrapper, .grid_team {
    grid-template-columns: 1fr 1fr;
  }

  .landing-screen_grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    max-height: 100dvh;
    margin-top: 0;
    padding-top: 5rem;
    display: grid;
  }

  .faq1_component-2 {
    width: 100%;
    padding-bottom: 5rem;
  }

  .video_wrapper {
    align-items: center;
  }

  .landing_screen-scroll {
    overflow: auto;
  }

  .landing-screen_overflow-wrapper {
    overflow: scroll;
  }

  .landing_heading-wrapper.is-video {
    padding-bottom: 0;
  }

  .text-color-off-white.hide-desktop-only {
    display: flex;
  }

  .infospot-media-tab {
    cursor: pointer;
  }

  .media-option-container {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    margin-bottom: 0;
    overflow: auto;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 44px;
  }

  .button {
    padding: 15px 20px;
  }

  .button.cta.publish {
    justify-content: center;
    align-items: center;
  }

  .button.back {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .button.unpublish {
    border-color: #fff3;
    justify-content: center;
    align-items: center;
  }

  .button.unpublish:hover {
    border-color: #fff6;
  }

  .button.settings {
    padding-left: 15px;
    padding-right: 15px;
    right: 179px;
  }

  .button.settings.visible {
    position: static;
  }

  .button.preview {
    padding-left: 15px;
    padding-right: 15px;
    right: 116px;
  }

  .button.preview.visible {
    position: static;
  }

  .button.preview.tour-settings-preview {
    display: flex;
  }

  .button.embed {
    padding-left: 15px;
    padding-right: 15px;
    right: 241px;
  }

  .button.embed.visible {
    position: static;
  }

  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section.tour-wrapper {
    min-height: 500px;
  }

  .columns {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .form-container.update-pano.visible {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .col-vert {
    flex-direction: column;
  }

  .padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form.negative-bottom-margin.infospot-form {
    min-width: 300px;
  }

  .overlay.desktop-mode {
    padding-left: 20px;
    padding-right: 20px;
  }

  .overlay.choose-media-screen {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pano-thumbs {
    justify-content: center;
    display: flex;
  }

  .pano-thumb {
    cursor: pointer;
  }

  .embed-code-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .please-wait {
    line-height: 1.6rem;
  }

  ._4-1-grid {
    min-height: 0;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .tabs-menu-3 {
    border-radius: 1.8rem;
    flex-direction: column;
    display: flex;
  }

  .tabs-menu-3.half {
    flex-direction: row;
    justify-content: space-between;
  }

  .tabs-menu-3.pricing {
    flex-flow: row;
    max-width: 90vw;
  }

  ._1-3-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    max-width: 350px;
  }

  .navbar, .navbar_menu {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .example-tour-iframe {
    width: auto;
  }

  .heading-main {
    font-size: 44px;
  }

  .button-3 {
    padding: 10px 15px;
  }

  .grid-blog-android {
    grid-template-columns: 1fr;
  }

  ._360-embed {
    height: 350px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .pill.hidden {
    display: flex;
  }

  .dashboard-header.right {
    justify-content: flex-start;
    display: none;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-medium {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .fs-styleguide_heading-large {
    font-size: 3rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .fs-styleguide_version {
    font-size: .875rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin_h3 {
    margin-bottom: 0;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .hero_tour-iframe {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .button_cta.small {
    padding: 20px 1.5rem;
  }

  .home-message_component {
    padding: 0;
  }

  .home-message_content {
    border-radius: 0;
  }

  .hero_image-bg.is-hero {
    width: 80%;
    bottom: -2%;
    right: -3%;
  }

  .grid_features {
    grid-template-columns: 1fr;
  }

  .grid_features-tile {
    padding: 1.5rem;
  }

  .how-people-using_stack {
    grid-column-gap: 1rem;
    grid-row-gap: 2.5rem;
  }

  .full-image.is-using {
    margin-bottom: .5rem;
  }

  .padding-global-2 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .heading_wrapper.text-align-center {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
  }

  .heading_wrapper.faq {
    padding-bottom: 1rem;
  }

  .card-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .card-wrapper.summary.credit-card {
    display: flex;
  }

  .arrow.right {
    margin-right: -1.5rem;
  }

  .arrow.left {
    margin-left: -1.5rem;
  }

  .slider_testimonial {
    justify-content: center;
  }

  .faq1_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .padding-global-3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .faq-grid {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .faq1_icon {
    width: 1.75rem;
  }

  .footer-bg {
    width: 1100px;
  }

  .button_sub-text-wrapper {
    align-items: center;
  }

  .padding-global-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bullet-point_wrapper {
    min-width: 219px;
  }

  .showcase_grid {
    grid-template-columns: 1fr;
  }

  .koala-hero.isblog {
    top: 70%;
  }

  .koala-hero.is-invest {
    top: 20%;
    left: auto;
  }

  .grid_affiliate-process {
    grid-template-columns: 1fr;
  }

  .image-camera {
    width: 130px;
  }

  .image-camera.max-height {
    height: 10rem;
  }

  .grid_blog {
    grid-template-columns: 1fr;
  }

  .tile_blog-image {
    height: 270px;
  }

  .image-upload-svg {
    width: 7rem;
  }

  .half-always {
    display: flex;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .accordion-section-heading {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .publish-unpublish-wrap {
    display: none;
    right: 10px;
  }

  .grid_premium-feautres, .grid_service-complete-tours {
    grid-template-columns: 1fr;
  }

  .grid_pricing-tile {
    padding: 1.5rem;
  }

  .buy-tour-features-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .statitics_grid-wrapper {
    grid-template-columns: 1fr;
  }

  .grid_statistics-tile, .team-tile {
    padding: 1.5rem;
  }

  .grid_team {
    grid-template-columns: 1fr;
  }

  .landing-screen_grid {
    padding-top: 6rem;
  }

  .faq1_icon-wrapper {
    width: 1.75rem;
  }

  .faq1_component-2 {
    padding-bottom: 3rem;
  }

  .faq1_question-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .video_wrapper.landing-video {
    display: none;
  }

  .step-button {
    height: 50px;
    padding: 0 2rem;
    font-size: .8rem;
  }

  .step-button.customise {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .splash-screen-title {
    font-size: 2rem;
  }

  .watermark.visible {
    width: 5rem;
    height: 5rem;
  }

  .media-option-title {
    font-size: 21px;
  }

  .media-option-p {
    font-size: .8rem;
  }

  .media-option-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: auto;
  }
}

@media screen and (max-width: 479px) {
  .header-logo {
    top: 10px;
  }

  .heading {
    font-size: 30px;
  }

  .heading.align-center {
    font-size: 35px;
  }

  .heading.align-center.homepage {
    max-width: 15ch;
    font-size: 37px;
  }

  .button {
    color: #666;
    border-color: #b8b8b8;
    margin-right: 5px;
    font-size: 13px;
  }

  .button.cta.publish {
    width: 100px;
    display: none;
  }

  .button.cta.is-menu {
    line-height: 20px;
  }

  .button.back {
    left: 10px;
  }

  .button.back.visible {
    left: 15px;
  }

  .button.setpos {
    min-width: 70vw;
    margin-left: auto;
    transform: scale(.9)translate(-50%, 60px);
  }

  .button.unpublish {
    display: none;
  }

  .button.white.login {
    margin-top: 20px;
    margin-right: 8px;
    transform: scale(.9);
  }

  .button.settings {
    display: none;
    right: 169px;
  }

  .button.settings.visible {
    right: 161px;
  }

  .button.preview {
    margin-right: 0;
    right: 105px;
  }

  .button.preview.visible {
    right: 101px;
  }

  .button.preview.tour-settings-preview {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .button.preview.tour-settings-preview svg {
    width: 14px;
    height: 14px;
  }

  .button.embed {
    margin-right: 0;
    display: none;
    right: 220px;
  }

  .button.open-preview-newtab {
    margin-left: 0;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .subtitle {
    max-width: 30ch;
  }

  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section.tour-wrapper {
    min-height: 400px;
    max-height: 90vh;
  }

  .p-big {
    font-size: 1rem;
  }

  .columns {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    display: flex;
  }

  .heading-3 {
    font-size: 20px;
  }

  .form-container {
    max-width: 95vw;
    padding: 20px;
  }

  .form-container.scaled {
    max-width: 94vw;
  }

  .form-container.min-width {
    min-width: 0;
  }

  .form-container.lightgrey.settings {
    min-width: 95vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-container.update-pano.visible {
    overflow: auto;
  }

  /* Share Modal Mobile Styles */
  .form-container.share-modal {
    margin: 12px;
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }

  .form-container.share-modal .share-modal-header {
    padding: 20px 20px 0;
  }

  .form-container.share-modal .heading-2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .form-container.share-modal .share-modal-content {
    padding: 0 20px;
  }

  .form-container.share-modal .share-modal-footer {
    padding: 14px 20px 20px;
  }

  .publish-section {
    margin-bottom: 18px;
  }

  .publish-section .publish-toggle-row {
    padding: 14px;
    gap: 10px;
  }

  .share-actions {
    gap: 8px;
    padding: 14px 0 18px;
    margin-bottom: 18px;
  }

  .share-action-btn {
    min-width: 0;
    padding: 12px 8px 10px;
    flex: 1;
    border-radius: 12px;
  }

  .share-action-btn svg {
    width: 20px;
    height: 20px;
  }

  .share-action-btn span {
    font-size: 9px;
    letter-spacing: 0.2px;
  }

  .publish-toggle-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .publish-section .publish-toggle-row {
    flex-wrap: nowrap;
  }

  .publish-toggle-left {
    flex: 1;
    min-width: 60%;
  }

  .publish-explainer {
    font-size: 11px;
  }

  .share-tab-content {
    min-height: 100px;
    margin-bottom: 16px;
  }

  .share-url-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .share-url-wrapper .share-url {
    padding: 14px 16px;
    font-size: 12px;
  }

  .copy-url-btn {
    width: 100%;
    padding: 14px;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
  }

  .copy-url-btn::after {
    content: 'Copy Link';
    font-size: 13px;
    font-weight: 600;
  }

  .qr-code-container {
    padding: 16px;
    margin-bottom: 16px;
  }

  .qr-code-container canvas {
    max-width: 140px;
    max-height: 140px;
  }

  .share-upgrade-nudge {
    padding: 14px 16px;
    margin-bottom: 16px;
    gap: 10px;
  }

  .share-upgrade-nudge span {
    font-size: 13px;
  }

  .body-dashboard {
    padding-left: 0;
    padding-right: 0;
  }

  .form-divider {
    width: 100%;
  }

  .input-field.share-url {
    padding-left: 10px;
    padding-right: 10px;
    font-size: .9rem;
  }

  .text-field-wrapper.half {
    width: 100%;
  }

  .padding {
    padding: 20px;
  }

  .form.negative-bottom-margin.infospot-form {
    min-width: 0;
  }

  .heading-2 {
    display: block;
  }

  .overlay.not-found {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .overlay.choose-media-screen, .overlay.choose-media-screen.visible {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .pano-thumbs-wrapper {
    display: block !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
  }
  .pano-thumbs {
    overflow: visible !important;
    display: inline-flex !important;
    width: auto !important;
    min-width: 100%;
    padding: 30px 30px 15px 30px !important;
    justify-content: center;
    box-sizing: border-box;
  }
  .pano-thumbs.many {
    justify-content: flex-start;
  }

  .pano-thumb {
    margin-left: 14px !important;
    margin-right: 14px !important;
    flex-shrink: 0;
  }

  .pano-thumb:hover {
    outline-offset: 6px;
    outline: 1px #ffffff80;
  }

  .embed-code-container {
    padding: 10px;
  }

  .please-wait {
    font-size: 1rem;
    line-height: 20px;
  }

  .link-list-item {
    min-width: 0;
  }

  ._4-1-grid {
    text-align: left;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .h2 {
    font-size: 30px;
  }

  .tabs-menu-3, .tab-link-3 {
    width: 100%;
  }

  .tab-link-3.w--current {
    padding-left: 10px;
    padding-right: 10px;
  }

  .example-tour-iframe {
    height: 50vh;
  }

  .heading-4 {
    font-size: 20px;
  }

  .heading-main {
    font-size: 1.9rem;
  }

  .heading-main.align-center {
    font-size: 35px;
  }

  .button-3 {
    color: #666;
    border-color: #b8b8b8;
    margin-right: 5px;
    padding: 10px 15px;
    font-size: 12px;
  }

  .heading-6, .heading-7, .heading-8, .heading-9 {
    font-size: 20px;
  }

  .grid-blog-android {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  ._360-embed {
    height: 310px;
  }

  .pill.hidden {
    margin-left: 0;
    display: none;
  }

  .dashboard-header {
    flex-wrap: wrap;
    height: auto;
    margin-top: -1rem;
    gap: 10px;
  }

  .dashboard-header .heading-3 {
    width: 100%;
  }

  .header-actions {
    gap: 6px;
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
  
  .header-actions .pill,
  .header-team-badge {
    padding: 6px 12px;
    height: 32px;
    font-size: 12px;
  }

  .header-settings-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .header-settings-btn svg {
    width: 18px;
    height: 18px;
  }

  .section_hero-grid-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero_tour-iframe {
    margin-left: 10px;
    margin-right: 10px;
  }

  .button-wrapper.is-hero {
    flex-direction: column;
  }

  .home-message_grid {
    grid-template-columns: 1fr;
  }

  .text-size-large-p {
    font-size: 1rem;
  }

  .grid_component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .how-people-using_stack {
    grid-template-columns: 1fr;
  }

  .text-size-small-2 {
    font-size: .8rem;
  }

  .slider_nav {
    bottom: 0;
  }

  .testimonial-stack {
    margin-top: -3.5rem;
  }

  .slider_testimonial {
    padding-bottom: 4rem;
  }

  .slider_heading {
    padding-bottom: 27px;
  }

  .review-container {
    flex-direction: column;
  }

  .icon-review-star {
    width: .9rem;
  }

  .footer-bg {
    width: 1500px;
  }

  .button-5 {
    justify-content: center;
    width: 100%;
    min-width: 0;
  }

  .button_sub-text-wrapper {
    width: 100%;
  }

  .icon-tiny {
    width: 1.1rem;
    height: 1.1rem;
  }

  .bullet-point_point-wrapper.is-trans {
    display: none;
  }

  .summary-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-icon-wrapper.blue {
    background-color: var(--brand-2);
  }

  .section_hero-affiliate-grid-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .tile_blog-image {
    height: 140px;
  }

  .image-upload-svg {
    width: 6rem;
  }

  .half-always {
    display: flex;
  }

  .max-width-settings-contain {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-4 {
    width: 95%;
  }

  .tour-admin-small-button-wrap {
    right: 10px;
  }

  .splash-screen-container {
    max-width: 90vw;
  }

  .step-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pano-thumbs-wrapper.many {
    justify-content: flex-start;
  }

  .large-text {
    font-size: 1rem;
  }

  .infospot-media-tab {
    justify-content: center;
    width: 47%;
    display: inline-flex;
  }

  .watermark.visible {
    width: 4.5rem;
    height: 4.5rem;
  }

  .media-option-box {
    padding: 1rem;
  }

  .media-option-image {
    max-height: 20svh;
  }

  .media-option-title {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 18px;
  }

  .media-option-p {
    font-size: .75rem;
  }

  .media-option-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    max-height: 100svh;
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: scroll;
  }
}

#w-node-_8868fe36-14f0-a6c9-b92b-8a59e15736ec-bda95929, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d2180d-bda9592b, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d21816-bda9592b, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d2181f-bda9592b, #w-node-_113316b0-338c-7d3a-0815-be503bb7d9c1-bda9592b, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d21828-bda9592b, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d21831-bda9592b, #w-node-edb54047-ff73-56fb-987f-58016e906dd1-bda9592b, #w-node-_3ce91ce6-e7bf-f7d1-4535-7a4d4abb4605-bda9592e, #w-node-_3ce91ce6-e7bf-f7d1-4535-7a4d4abb4612-bda9592e, #w-node-_3ce91ce6-e7bf-f7d1-4535-7a4d4abb461f-bda9592e, #w-node-_3ce91ce6-e7bf-f7d1-4535-7a4d4abb462c-bda9592e, #w-node-b3288e2a-aa01-44c9-fe17-bcf2f38d5327-bda9592e, #w-node-_436928b5-5c79-68a9-4a18-4138a1fcafb6-bda9592e, #w-node-_26ec8341-3e65-c8c8-f215-50b51a8e04a1-bda9592e, #w-node-_66359add-e2c9-b690-0947-b9078a76e404-bda9592f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#create-new-tour-form.w-node-f44aa97e-bf59-3a6d-4774-28497d7afa66-bda9592f {
  order: -9999;
}

#w-node-_9b3e6202-5896-ee58-c115-d299aaa2dcf0-aaa2dcf0, #w-node-_9f0fee36-94f6-5e74-1402-a63d7071c8a3-bda95931, #w-node-_8868fe36-14f0-a6c9-b92b-8a59e15736ec-bda95931 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b9cad3da-8426-5b1d-0fc5-e27a6079b745-bda95931 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0f0cf04e-1542-5fe2-3eec-8c3d89a35ecb-bda95931, #w-node-e47133d4-be53-ea96-a906-beecd817729c-bda95931, #w-node-cc0a100e-de32-1f2a-a056-773c76de460b-bda95931, #w-node-e6a55828-2d05-7af3-80c7-e111beb2ec1c-bda95931, #w-node-cef74287-8143-1985-5ba3-1291f49e36c6-f49e36c6, #w-node-_9f0fee36-94f6-5e74-1402-a63d7071c8a3-bda95935, #w-node-a880e8ce-b3d5-7356-cf27-9073907a19d9-bda95935, #w-node-a880e8ce-b3d5-7356-cf27-9073907a19fd-bda95935, #w-node-c9679571-7d30-4139-68f8-6f7a42ae9459-bda95935, #w-node-a880e8ce-b3d5-7356-cf27-9073907a19eb-bda95935, #w-node-d0dc7ec5-dfce-d05d-3d43-c0fc92ea8bbc-bda95935, #w-node-_2aadfe5b-2d2e-05e8-5ac2-bdb34c21e091-bda95939, #w-node-_2aadfe5b-2d2e-05e8-5ac2-bdb34c21e0aa-bda95939, #w-node-bdc2006a-49af-1161-63f0-b9cfef889ec3-bda95939, #w-node-ddbf7dad-4336-9477-ee9e-08bd35453b0f-bda95939, #w-node-a33862ee-b993-9d7c-f4da-3fadcf85fbdb-bda95939, #w-node-a33862ee-b993-9d7c-f4da-3fadcf85fbdf-bda95939, #w-node-a3f58694-640b-8b3a-c69f-9b591036bdf9-bda95939, #w-node-_318be0ff-aaa6-e33a-659e-4222588530c0-bda95939, #w-node-_318be0ff-aaa6-e33a-659e-4222588530c4-bda95939, #w-node-_93a26c3f-f3e3-a27c-a544-eca41b554f5a-bda95939, #w-node-_9f0fee36-94f6-5e74-1402-a63d7071c8a3-bda9593b, #w-node-_8868fe36-14f0-a6c9-b92b-8a59e15736ec-bda9593b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_691dda1c-9774-52a5-9000-aec71a943681-bda9593b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e147cd4c-24cb-b226-d176-ba9a238e8cda-bda9593b, #w-node-_1294e85b-9e0a-6e24-c11e-822f726c5236-bda9593b, #w-node-cc0a100e-de32-1f2a-a056-773c76de460b-bda9593b, #w-node-_0f0cf04e-1542-5fe2-3eec-8c3d89a35ecb-bda9593b, #w-node-ed400194-4c0e-82ec-7e83-a998869a3678-bda9593d, #w-node-_6063dcb2-1e76-b971-7879-95336f203260-bda9593d, #w-node-cc4a07f5-e1a8-3d6b-fbf4-fc1db3603236-bda9593d, #w-node-cc4a07f5-e1a8-3d6b-fbf4-fc1db3603240-bda9593d, #w-node-_0861d619-9eb8-6225-00a5-98838cd993a5-bda9593d, #w-node-_0861d619-9eb8-6225-00a5-98838cd993af-bda9593d, #w-node-_2b44ef16-0309-aac3-c0a0-c64cd2b9d694-bda9593d, #w-node-_2b44ef16-0309-aac3-c0a0-c64cd2b9d69e-bda9593d, #w-node-_8868fe36-14f0-a6c9-b92b-8a59e15736ec-bda9593e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_691dda1c-9774-52a5-9000-aec71a943681-bda9593e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e147cd4c-24cb-b226-d176-ba9a238e8cda-bda9593e, #w-node-_1294e85b-9e0a-6e24-c11e-822f726c5236-bda9593e, #w-node-cc0a100e-de32-1f2a-a056-773c76de460b-bda9593e, #w-node-_0f0cf04e-1542-5fe2-3eec-8c3d89a35ecb-bda9593e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba437e5-446b-8629-288f-f695d202fed2-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d202fed7-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d202fedc-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d202fee1-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d202fee7-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d202feed-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d202fef3-bda9593f {
  justify-self: start;
}

#w-node-_8ba437e5-446b-8629-288f-f695d2030000-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030019-bda9593f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba437e5-446b-8629-288f-f695d203001c-bda9593f {
  justify-self: start;
}

#w-node-_8ba437e5-446b-8629-288f-f695d203001e-bda9593f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba437e5-446b-8629-288f-f695d2030021-bda9593f {
  justify-self: start;
}

#w-node-_8ba437e5-446b-8629-288f-f695d203008a-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030094-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030095-bda9593f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba437e5-446b-8629-288f-f695d2030103-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030108-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203010d-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030112-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030117-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203011c-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030126-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203012b-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030130-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030135-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203013a-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203013f-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030144-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030149-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203014e-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030153-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030158-bda9593f {
  justify-self: start;
}

#w-node-_8ba437e5-446b-8629-288f-f695d203015c-bda9593f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba437e5-446b-8629-288f-f695d203015d-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030162-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030167-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203016c-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030181-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030186-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203018b-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030190-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030195-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203019a-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301a4-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301a9-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301ae-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301b3-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301b8-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301bd-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301c2-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301c7-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301cc-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301d1-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301d6-bda9593f {
  justify-self: start;
}

#w-node-_8ba437e5-446b-8629-288f-f695d20301da-bda9593f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba437e5-446b-8629-288f-f695d20301db-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301e0-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301e5-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301ea-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20301fc-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030201-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030206-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203020b-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030210-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030215-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203021a-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d203021f-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030224-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d2030229-bda9593f {
  justify-self: start;
}

#w-node-_8ba437e5-446b-8629-288f-f695d203022d-bda9593f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba437e5-446b-8629-288f-f695d203022e-bda9593f {
  justify-self: start;
}

#w-node-_8ba437e5-446b-8629-288f-f695d2030231-bda9593f, #w-node-_8ba437e5-446b-8629-288f-f695d20302b4-bda9593f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba437e5-446b-8629-288f-f695d2030310-bda9593f {
  justify-self: start;
}

#w-node-_532637d9-6174-5f5e-ac59-ee53a8318bd1-bda95941 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eedb33f9-3cce-a54b-babc-61796452e4b7-bda95941 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9f0fee36-94f6-5e74-1402-a63d7071c8a3-738fbd57, #w-node-_8868fe36-14f0-a6c9-b92b-8a59e15736ec-738fbd57 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b9cad3da-8426-5b1d-0fc5-e27a6079b745-738fbd57 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0f0cf04e-1542-5fe2-3eec-8c3d89a35ecb-738fbd57, #w-node-_1294e85b-9e0a-6e24-c11e-822f726c5236-738fbd57, #w-node-cc0a100e-de32-1f2a-a056-773c76de460b-738fbd57, #w-node-ac174187-c082-a9c6-fd41-88d4caf028c0-01265c0a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_119d0eb6-3e59-a88d-7de0-e918616b6128-01265c0a {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0e9f9540-226a-b8f6-17fb-cecc69988400-01265c0a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-cc0a100e-de32-1f2a-a056-773c76de45ed-bda95931 {
    order: -9999;
  }

  #w-node-_1294e85b-9e0a-6e24-c11e-822f726c5238-bda9593b {
    order: 9999;
  }

  #w-node-cc0a100e-de32-1f2a-a056-773c76de460b-bda9593b, #w-node-cc0a100e-de32-1f2a-a056-773c76de45ed-bda9593b {
    order: -9999;
  }

  #w-node-_1294e85b-9e0a-6e24-c11e-822f726c5238-bda9593e {
    order: 9999;
  }

  #w-node-cc0a100e-de32-1f2a-a056-773c76de460b-bda9593e, #w-node-cc0a100e-de32-1f2a-a056-773c76de45ed-bda9593e {
    order: -9999;
  }

  #w-node-eedb33f9-3cce-a54b-babc-61796452e4b7-bda95941 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6dc899c2-900f-b9c2-94a6-06be2f6f2b09-bda95941 {
    order: -9999;
  }

  #landing-video.w-node-b61c269d-ddfe-b647-d5e0-ba34a5a911e7-bda95941 {
    order: -9999;
    align-self: start;
  }

  #w-node-cc0a100e-de32-1f2a-a056-773c76de45ed-738fbd57 {
    order: -9999;
  }

  #w-node-_119d0eb6-3e59-a88d-7de0-e918616b6128-01265c0a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b9cad3da-8426-5b1d-0fc5-e27a6079b71d-bda95929, #w-node-be589770-c564-c478-fa30-d7022ad0427d-bda95929, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d2180f-bda9592b, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d21818-bda9592b, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d21821-bda9592b, #w-node-_113316b0-338c-7d3a-0815-be503bb7d9c3-bda9592b, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d2182a-bda9592b, #w-node-_290c1a66-ed99-84c7-82c0-03f1c8d21833-bda9592b, #w-node-edb54047-ff73-56fb-987f-58016e906dd3-bda9592b, #w-node-b9cad3da-8426-5b1d-0fc5-e27a6079b71d-bda95931, #w-node-b9cad3da-8426-5b1d-0fc5-e27a6079b745-bda95931, #w-node-e6a55828-2d05-7af3-80c7-e111beb2ec30-bda95931, #w-node-a880e8ce-b3d5-7356-cf27-9073907a19db-bda95935, #w-node-a880e8ce-b3d5-7356-cf27-9073907a19ff-bda95935, #w-node-c9679571-7d30-4139-68f8-6f7a42ae945b-bda95935, #w-node-a880e8ce-b3d5-7356-cf27-9073907a19ed-bda95935, #w-node-d0dc7ec5-dfce-d05d-3d43-c0fc92ea8bbe-bda95935, #w-node-c9f01215-4b23-d52c-ca46-212810ebce43-bda95939, #w-node-_42187779-dbb9-f2c6-7cd7-914eaefdcd87-aefdcd76, #w-node-_691dda1c-9774-52a5-9000-aec71a94364c-bda9593b, #w-node-_691dda1c-9774-52a5-9000-aec71a943681-bda9593b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0f0cf04e-1542-5fe2-3eec-8c3d89a35ecb-bda9593b {
    order: -9999;
  }

  #w-node-_691dda1c-9774-52a5-9000-aec71a94364c-bda9593e, #w-node-_691dda1c-9774-52a5-9000-aec71a943681-bda9593e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0f0cf04e-1542-5fe2-3eec-8c3d89a35ecb-bda9593e {
    order: -9999;
  }

  #w-node-b9cad3da-8426-5b1d-0fc5-e27a6079b71d-738fbd57, #w-node-b9cad3da-8426-5b1d-0fc5-e27a6079b745-738fbd57, #w-node-_9a5b7d9e-68c0-8d7b-a954-c0c0b73bdb14-738fbd57, #w-node-_5124cc05-daec-a507-d9ae-848782fbe547-01265c0a, #w-node-_03ed3ed1-4920-a830-a8ef-70cd853f6156-01265c0a, #w-node-ac174187-c082-a9c6-fd41-88d4caf028c0-01265c0a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_119d0eb6-3e59-a88d-7de0-e918616b6128-01265c0a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b9cad3da-8426-5b1d-0fc5-e27a6079b71d-01265c0a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_119d0eb6-3e59-a88d-7de0-e918616b6128-01265c0a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../images/') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.form-messages {
  position: relative;
}

.w-form-done,
.w-form-fail {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.w-form-done.show,
.w-form-fail.show {
  display: block;
}

.infospot-media-tab.w--current {
  background-color: #ededed;
  color: #333;
}

/* Styles for Infospot Icon Selector */
.infospot-icon-selector-container {
  display: flex;
  gap: 10px; /* Space between icons */
  margin-bottom: 15px; /* Space before the next form element */
  flex-wrap: wrap;
}

.infospot-icon-option {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 10rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0;
  font-size:0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.infospot-icon-option:hover {
  background-color: #f0f0f0;
  border-color: #adadad;
}

.infospot-icon-option.selected {
  background-color: #e0eafc; /* A light blue to indicate selection */
  border-color: #007bff;
  font-weight: bold;
}

.infospot-icon-preview {
  width: 20px; /* Adjust size as needed */
  height: 20px; /* Adjust size as needed */
}

/* Hotspot Icon Selection Styles */
.hotspot-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 10px;
  max-width: 400px;
}

.hotspot-icon-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.hotspot-icon-option:hover {
  border-color: #007bff;
  background-color: #f8f9fa;
}

.hotspot-icon-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.hotspot-icon-option input[type="radio"]:checked + .hotspot-icon-preview + .icon-label {
  color: #007bff;
  font-weight: bold;
}

.hotspot-icon-option input[type="radio"]:checked ~ * {
  border-color: #007bff;
}

.hotspot-icon-option:has(input[type="radio"]:checked) {
  border-color: #007bff;
  background-color: #e7f3ff;
}

.hotspot-icon-preview {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  filter: grayscale(0.5);
  transition: filter 0.2s ease;
}

.hotspot-icon-option:hover .hotspot-icon-preview,
.hotspot-icon-option input[type="radio"]:checked + .hotspot-icon-preview {
  filter: none;
}

.icon-label {
  font-size: 12px;
  text-align: center;
  color: #666;
  transition: color 0.2s ease;
  cursor: pointer;
}

/* ============================================================
   UNIFIED SETTINGS SIDEBAR
   ============================================================ */

.settings-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 420px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  overflow: hidden;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.settings-sidebar-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.settings-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  z-index: 100;
  background: #f5f5f7;
  box-shadow: -2px 0 40px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.settings-sidebar.open {
  transform: translateX(0);
}
.settings-sidebar ::-webkit-scrollbar {
  width: 6px;
}
.settings-sidebar ::-webkit-scrollbar-track {
  background: transparent;
}
.settings-sidebar ::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.10);
  border-radius: 3px;
}
.settings-sidebar ::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.18);
}

.settings-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* ---- Sidebar Header: segmented control tabs ---- */
.settings-sidebar-header {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f0f0f0;
  flex-shrink: 0;
  padding: 20px;
}

.settings-sidebar-tabs {
  display: flex;
  flex: 1;
  min-width: 0;
  background: rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 3px;
  gap: 3px;
}

.settings-sidebar-tab {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  position: relative;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.01em;
  border-radius: 8px;
  -webkit-user-select: none;
  user-select: none;
}
.settings-sidebar-tab:hover {
  color: rgba(0,0,0,0.65);
}
.settings-sidebar-tab.active {
  color: #1a1a1a;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08), 0 0.5px 1px rgba(0,0,0,0.06);
  font-weight: 600;
}
.settings-sidebar-tab.active::after {
  display: none;
}

.settings-sidebar-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.35);
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 10px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar-close:hover {
  background: rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.6);
}

/* ---- Tab panels ---- */
.settings-sidebar-panel {
  display: none;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 0 20px;
  position: relative;
  background: #f0f0f0;
  min-height: 0;
}
.settings-sidebar-panel.active {
  display: block;
}
.settings-sidebar .form-block.w-form,
.settings-sidebar .w-form {
  margin: 0;
}
.settings-sidebar .accordian-elements-wrapper {
  max-height: none;
  overflow: visible;
}

/* Conditional fields — hidden by default, revealed by JS */
.settings-sidebar .settings-conditional {
  overflow: hidden;
}

/* ---- Settings card — reusable white grouped container (iOS style) ---- */
.settings-sidebar .settings-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
}
.settings-sidebar .settings-card .form-label:first-child {
  margin-top: 0;
}
.settings-sidebar .settings-card .button {
  padding: 9px 16px;
  font-size: 13px;
  margin-bottom: 0;
}
.settings-sidebar .settings-card .button + .button {
  margin-left: 6px;
}
.settings-sidebar .settings-card .settings-toggle {
  border-bottom: none;
}

/* ---- Publish toggle — inside settings-card ---- */
.settings-sidebar .publish-toggle-row {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0;
  gap: 12px;
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}
.settings-sidebar .publish-toggle-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.settings-sidebar .publish-toggle-left .publish-status-text {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}
.settings-sidebar .publish-explainer {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 2px;
  color: rgba(0,0,0,0.4);
}
.settings-sidebar .publish-toggle {
  width: 46px;
  height: 28px;
}
.settings-sidebar .publish-toggle-slider {
  border-radius: 28px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar .publish-toggle-slider:before {
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar .publish-toggle input:checked + .publish-toggle-slider {
  background-color: #34c759;
}
.settings-sidebar .publish-toggle input:checked + .publish-toggle-slider:before {
  transform: translateX(18px);
}
.settings-sidebar .publish-toggle input:not(:checked) + .publish-toggle-slider {
  background-color: rgba(0,0,0,0.12);
}

/* ---- Remove watermark row — inside same card as publish ---- */
.settings-sidebar .remove-watermark-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 0;
  margin: 12px 0 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: transparent;
  border-radius: 0;
}
.settings-sidebar .remove-watermark-row .remove-watermark-text {
  flex: 1;
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  line-height: 1.4;
}
.settings-sidebar .remove-watermark-row .remove-watermark-btn {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, #379af0, #898bff);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(55,154,240,0.25);
}
.settings-sidebar .remove-watermark-row .remove-watermark-btn:hover {
  box-shadow: 0 4px 16px rgba(55,154,240,0.35);
  transform: translateY(-1px);
}
.settings-sidebar .remove-watermark-row.hidden {
  display: none;
}

/* ---- Pano picker ---- */
.pano-picker {
  position: relative;
  margin-bottom: 10px;
}
.pano-picker-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pano-picker-trigger:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.pano-picker.open .pano-picker-trigger {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.pano-picker-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8e8e8;
}
.pano-picker-label {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pano-picker-arrow {
  flex-shrink: 0;
  color: rgba(0,0,0,0.25);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pano-picker.open .pano-picker-arrow {
  transform: rotate(180deg);
}
.pano-picker-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 20;
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 5px;
}
.pano-picker.open .pano-picker-dropdown {
  display: block;
}
.pano-picker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pano-picker-item:hover {
  background: rgba(0,0,0,0.04);
}
.pano-picker-item.selected {
  background: rgba(55,154,240,0.08);
}
.pano-picker-item-thumb {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8e8e8;
}
.pano-picker-item-label {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pano-picker-item-index {
  flex-shrink: 0;
  font-size: 11px;
  color: rgba(0,0,0,0.25);
  font-weight: 500;
}

/* ---- Button row at bottom of image settings ---- */
.settings-sidebar-button-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Override old form-container styles */
.settings-sidebar .accordian-form {
  padding: 0;
}

/* ---- Save/cancel bar — sticky bottom ---- */
.settings-sidebar .accordian-form-button-wrapper,
.settings-sidebar .settings-sidebar-button-row {
  position: fixed;
  bottom: -1px;
  z-index: 10;
  background: #f5f5f7;
  padding: 12px 0 16px;
  margin: 0;
  width:100%;
  display: flex;
  align-items: center;
  gap: 8px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-image: none;
}
.settings-sidebar .accordian-form-button-wrapper .button,
.settings-sidebar .settings-sidebar-button-row .button {
  margin: 0;
}
.settings-sidebar .accordian-form-button-wrapper::before,
.settings-sidebar .settings-sidebar-button-row::before {
  content: '';
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: 100%;
  height: 32px;
  background: linear-gradient(to bottom, transparent, #f5f5f7);
  pointer-events: none;
}

/* ---- Sidebar buttons — refined ---- */
.settings-sidebar .button {
  border-radius: 12px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}
.settings-sidebar .button.cta {
  background: linear-gradient(135deg, #379af0, #898bff);
  color: #fff;
  box-shadow: 0 2px 10px rgba(55,154,240,0.3);
  border: none;
}
.settings-sidebar .button.cta:hover {
  box-shadow: 0 4px 20px rgba(55,154,240,0.4);
  transform: translateY(-1px);
  opacity: 1;
}
.settings-sidebar .button:not(.cta):not(.delete) {
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.55);
  border: none;
}
.settings-sidebar .button:not(.cta):not(.delete):hover {
  background: rgba(0,0,0,0.09);
  opacity: 1;
}
.settings-sidebar .button.delete {
  background: rgba(255,59,48,0.08);
  color: #ff3b30;
  border: none;
}
.settings-sidebar .button.delete:hover {
  background: rgba(255,59,48,0.14);
  opacity: 1;
}

/* ---- Form controls inside sidebar ---- */
.settings-sidebar .form-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-bottom: 6px;
}
.settings-sidebar .input-field {
  background: rgba(0,0,0,0.04);
  border: none;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar .input-field:focus {
  background: rgba(0,0,0,0.02);
  box-shadow: 0 0 0 3px rgba(55,154,240,0.15);
  outline: none;
}
.settings-sidebar .input-field.select,
.settings-sidebar select.input-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
  background-color: rgba(0,0,0,0.04);
  cursor: pointer;
}

/* Toggle switches — refined iOS style */
.settings-sidebar .settings-toggle {
  margin-bottom: 0;
  padding: 10px 0;
  gap: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.settings-sidebar .settings-toggle:last-child,
.settings-sidebar .settings-toggle:last-of-type {
  border-bottom: none;
}
.settings-sidebar .settings-toggle-slider {
  width: 46px;
  height: 28px;
  background-color: rgba(0,0,0,0.12);
  border-radius: 28px;
  order: 2;
  margin-left: auto;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar .settings-toggle-slider:before {
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar .settings-toggle input:checked + .settings-toggle-slider {
  background-color: #34c759;
}
.settings-sidebar .settings-toggle input:checked + .settings-toggle-slider:before {
  transform: translateX(18px);
}
.settings-sidebar .settings-toggle-label {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  order: 1;
}

/* ---- Radio card groups — unified style ---- */
.settings-sidebar .radio-card-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.settings-sidebar .radio-card {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 14px 16px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar .radio-card:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}
.settings-sidebar .radio-card:has(input:checked) {
  background: rgba(55,154,240,0.06);
  border-color: rgba(55,154,240,0.3);
  box-shadow: 0 0 0 1px rgba(55,154,240,0.08);
}
.settings-sidebar .radio-card .w-radio-input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(0,0,0,0.18);
  border-radius: 50%;
  margin: 0;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
}
.settings-sidebar .radio-card .w-radio-input:checked,
.settings-sidebar .radio-card .w-radio-input.w--redirected-checked {
  border-color: #379af0;
  background: #379af0;
  box-shadow: inset 0 0 0 3px #fff;
}
.settings-sidebar .radio-card .radio-label {
  margin-left: 14px;
  cursor: pointer;
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}
.settings-sidebar .radio-card:has(input:checked) .radio-label {
  color: #2a7de1;
  font-weight: 600;
}
.settings-sidebar .radio-card .radio-label span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0,0,0,0.4);
  margin-top: 2px;
  line-height: 1.4;
}
.settings-sidebar .radio-card:has(input:checked) .radio-label span {
  color: rgba(42,125,225,0.55);
}

/* Descriptive text inside sidebar */
.settings-sidebar .text-size-tiny,
.settings-sidebar .paragraph {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  line-height: 1.5;
}

/* Half-width columns */
.settings-sidebar .half-always .input-field {
  width: 100%;
}

/* Hotspot icon grid */
.settings-sidebar .hotspot-icon-grid {
  gap: 6px;
}
.settings-sidebar .hotspot-icon-option {
  border-radius: 10px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image preview zones */
.settings-sidebar .panoramic-image-preview-wrap {
  border-radius: 10px;
  overflow: hidden;
}

/* ---- Accordion sections — iOS grouped card style ---- */
.settings-sidebar .according-section-wrapper {
  margin-bottom: 10px;
}
.settings-sidebar .accordion-section-heading {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #fff;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 16px;
  border-top: none;
  border-bottom: none;
  border-radius: 12px;
  transition: border-radius 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar .according-section-wrapper:first-child > .accordion-section-heading,
.settings-sidebar .according-section-wrapper:first-child > section.accordion-section-heading {
  border-top: none;
}
.settings-sidebar .accordion-section-heading.is-open,
.settings-sidebar .according-section-wrapper.is-open .accordion-section-heading {
  border-radius: 12px 12px 0 0;
}
.settings-sidebar .accordion-section-heading .p-big {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  /* letter-spacing: 0.005em; */
}
.settings-sidebar .accordion-section-heading .faq1_icon {
  color: rgba(0,0,0,0.25);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar .accordian-section {
  background: #fff;
  border-radius: 0 0 12px 12px;
  border-bottom: none;
  padding-top: 0;
  padding-left: 16px;
  padding-right: 16px;
}
.settings-sidebar .accordian-options-wrapper {
  padding-bottom: 16px;
  margin-bottom: 0;
  padding-top: 4px;
}
.settings-sidebar .panoramic-image-preview-wrap,
.settings-sidebar .tooltip-wrappper {
  z-index: auto;
}
.settings-sidebar [data-tooltip]:before,
.settings-sidebar [data-tooltip]:after {
  z-index: 5;
}

/* Embedded preview — centered in overlay with equal spacing */
.settings-preview-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  gap: 0;
}
.settings-sidebar-preview {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #111;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.1);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-sidebar-preview .settings-embed-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Device preview modes */
.settings-sidebar-preview[data-device="phone"] {
  max-width: 375px;
}
.settings-sidebar-preview[data-device="tablet"] {
  max-width: 768px;
}
.settings-sidebar-preview[data-device="tablet-landscape"] {
  max-width: 1024px;
}
.settings-sidebar-preview[data-device="responsive"] {
  max-width: none;
}

/* Preview toolbar — centered below embed */
.settings-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 0;
  flex-shrink: 0;
  position: relative;
}
.settings-preview-devices {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 3px;
}
.preview-device-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.preview-device-btn:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}
.preview-device-btn.active {
  color: #fff;
  background: rgba(255,255,255,0.15);
}
.preview-fullscreen-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  border: none;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  margin-left: 8px;
}
.preview-fullscreen-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.18);
}

/* Stacked layout — preview fixed top, sidebar fixed below */
@media (max-width: 960px) {
  /* Preview: fixed to top, exactly 40vh tall */
  .settings-sidebar-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: 40vh !important;
    width: 100vw !important;
    display: none !important;
    background: #000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: auto !important;
    z-index: 101 !important;
    overflow: hidden !important;
  }
  .settings-sidebar-overlay.visible {
    display: flex !important;
    opacity: 1 !important;
  }
  .settings-sidebar-overlay .settings-preview-wrap {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    align-items: stretch !important;
  }
  .settings-sidebar-overlay .settings-sidebar-preview {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    flex: 1 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    aspect-ratio: auto !important;
  }
  .settings-sidebar-overlay .settings-embed-iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .settings-sidebar-overlay .settings-preview-toolbar {
    display: none !important;
  }

  /* Sidebar: fixed below the preview */
  .settings-sidebar {
    width: 100vw;
    top: 40vh !important;
    bottom: 0;
    padding-top: 0;
  }
  .settings-sidebar-inner {
    height: 100%;
    overflow: hidden;
  }
  .settings-sidebar-panel {
    padding: 10px 12px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .settings-sidebar-header {
    padding: 10px 12px 0;
  }
  .settings-sidebar .accordian-form-button-wrapper,
  .settings-sidebar .settings-sidebar-button-row {
    position: sticky;
    bottom: 0;
    z-index: 10;
  }
}
