@charset "UTF-8";
html, body {
  overscroll-behavior-x: contain;
  overscroll-behavior-y: contain;
}

:root {
  --border-radius: 0px;
  --font-color-floating:white;
  --font-color-matted:black;
  --accent:black;
  --secondary-color: #005DAA;
  --contact-color:black;
  --contact-icon-color: #1c1f24;
  --contact-icon-color-active: black;
  --contact-icon-color-active-mobile: white;
  --nav-bg:white;
  --hotspot-color:rgba(0, 0, 0, 0.5);
  --hotspot-color-accent:rgba(255, 255, 255, 0.5);
  --hotspot-hoverstate:rgba(255, 255, 255, 1);
  --hotspot-hoverstate-shadow:rgba(0, 0, 0, 0.16);
  --card-bg:white;
  --load-cover:rgb(91,101,115);
  --ai-pulse: rgba(38, 34, 97, 0.5); 
  --ai-solid: rgb(38, 34, 97); 

  --top-bar-h: 0.55em;
  --gutter-w: 0.3em;
  --gutter-h: 0.22em;
  --nav-button-line-height: 0.15em;

  --phone-fontsize:16px;
  --scene-top:0px;
  --scene-top-half:0px;
  --scene-image-hotspot-offset-h:0px;
  --scene-image-hotspot-offset-v:0px;
  --scene-left:0px;
  --scene-width:0px;
  --scene-height:0px;
  --scene-min:0px;
  --scene-max:0px;
}

b {
  font-family: AppFontBold;
  font-weight: normal;
}

#body {
  display: flex;
  flex-direction: column;
}

.i18n {
  display: none;
}

#editableStart {
  position: absolute;
}

body {
  overflow: hidden;
}
body[data-notes0=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="0"]::before,
body[data-notes0=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="0"] .label, body[data-notes1=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="1"]::before,
body[data-notes1=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="1"] .label, body[data-notes2=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="2"]::before,
body[data-notes2=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="2"] .label {
  opacity: 0.3;
}
body[data-notes0=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="0"]:before, body[data-notes1=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="1"]:before, body[data-notes2=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="2"]:before {
  border-color: rgba(0, 0, 0, 0.3019607843);
}
body[data-notes0=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="0"] .eye_icon.not_visible, body[data-notes1=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="1"] .eye_icon.not_visible, body[data-notes2=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="2"] .eye_icon.not_visible {
  display: none;
}
body[data-notes0=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="0"] .eye_icon.visible, body[data-notes1=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="1"] .eye_icon.visible, body[data-notes2=hide] .top_bar .right_bar_buttons .right_bar_button .hotspot_menu .hotspot_category[data-hskind="2"] .eye_icon.visible {
  display: inline-block;
}
body[data-notes=hide] .hotspots_container .hotspot {
  pointer-events: none;
  opacity: 0;
}
body[data-notes0=hide] .hotspots_continer .hotspot[data-hskind="0"] {
  pointer-events: none;
  opacity: 0;
}
body[data-notes1=hide] .hotspots_continer .hotspot[data-hskind="1"] {
  pointer-events: none;
  opacity: 0;
}
body[data-notes2=hide] .hotspots_continer .hotspot[data-hskind="2"] {
  pointer-events: none;
  opacity: 0;
}
body:not(:-webkit-full-screen) #fullscreen {
  border-right: none;
  display: flex;
}
body:not(:-webkit-full-screen) #nfullscreen {
  display: none;
}
body:not(:fullscreen) #fullscreen {
  border-right: none;
  display: flex;
}
body:not(:fullscreen) #nfullscreen {
  display: none;
}
body:-webkit-full-screen #fullscreen {
  display: none;
}
body:-webkit-full-screen #nfullscreen {
  display: inline-flex;
}
body:fullscreen #fullscreen {
  display: none;
}
body:fullscreen #nfullscreen {
  display: inline-flex;
}

.top_bar {
  width: 100%;
  height: var(--top-bar-h);
  background: var(--nav-bg);
  color: var(--font-color-matted);
  flex-shrink: 0;
  z-index: 100;
  position: relative;
  transition: 0.5s opacity ease, 0.5s transform ease;
  opacity: 0;
}
html:not(.bodyPhone) #body:not(.kaon) .top_bar:not(.loaded) {
  transform: translate(0, -100%) !important;
}
.top_bar.loaded {
  opacity: 1;
}
.top_bar .logo {
  width: auto;
  height: 0.35em;
  margin-right: 0.295em;
  align-self: flex-start;
  cursor: pointer;
  top:0.12em;
}
.top_bar .logo[data-mode=basic] {
  position: absolute;
  left: var(--gutter-w);
}
.top_bar .logo.hidden {
  display: none;
}
.top_bar .left_bar_buttons {
  position: absolute;
  left: 0.285em;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.top_bar .left_bar_buttons .left_bar_button {
  position: relative;
  height: 100%;
  margin: 0em 0.15em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
}
.top_bar .left_bar_buttons .left_bar_button .highlight_bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 130%;
  height: 0.04em;
  transform: translateX(-50%) scaleX(0);
  background-color: var(--accent);
  transform-origin: center center;
  transition: transform 0.33s ease;
}
.top_bar .left_bar_buttons .left_bar_button.view-show {
  font-family: AppFontBold;
}
.top_bar .left_bar_buttons .left_bar_button.view-show .highlight_bar {
  transform: translateX(-50%) scaleX(1);
  width:100%;
}
.top_bar .left_bar_buttons .left_bar_button .i18n {
  font-size: 0.13em;
}
.top_bar .right_bar_buttons {
  position: absolute;
  right: var(--gutter-w);
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.top_bar .right_bar_buttons .right_bar_button {
  position: relative;
  width: 0.235em;
  height: var(--nav-button-line-height);
  padding: 0 0.15em;
  border-left: 1px solid #D1D1D1;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#body:not(.tablet) .top_bar .right_bar_buttons .right_bar_button:not(.view-show):hover .tooltip, 
.top_bar .right_bar_buttons .right_bar_button:not(.view-show).hover .tooltip {
  display: block;
}
.top_bar .right_bar_buttons .right_bar_button .button_icon_svg {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.15em;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_bar .right_bar_buttons .right_bar_button .button_icon_svg img, .top_bar .right_bar_buttons .right_bar_button .button_icon_svg svg {
  position: relative;
  pointer-events: none;
  width: 100%;
  height: 0.23em;
}
.top_bar .right_bar_buttons .right_bar_button .tooltip {
  display: none;
  background: #555555;
  border-radius: var(--border-radius);
  cursor: default;
  padding: 0.1em;
  position: absolute;
  top: calc(100% + 0.075em);
  right: 50%;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  transform: translateX(50%);
  z-index:1;
}
.top_bar .right_bar_buttons .right_bar_button .tooltip:after {
  content: "";
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  transform: translateX(50%);
  top: -0.4em;
  height: 0;
  width: 0;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-bottom: 0.5em solid #555555;
  font-size: 0.155em;
}
.top_bar .right_bar_buttons .right_bar_button .tooltip .i18n {
  font-size: 0.1em;
  color: #FFFFFF;
  white-space: nowrap;
}
.top_bar .right_bar_buttons .right_bar_button .close_icon_cover {
  width: 1em;
  height: 1em;
}
.ai_card .close,
.top_bar .right_bar_buttons .right_bar_button .close {
  position: absolute;
  top: 0.3em;
  right: 0.3em;
  width: 0.15em;
  height: 0.15em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/close_icon.svg);
}
.ai_card .close::after,
.top_bar .right_bar_buttons .right_bar_button .close::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: -0.15em;
  top: -0.15em;
  cursor: pointer;
}
.top_bar .right_bar_buttons .right_bar_button .close {
  /* parent font-size was set to 0.75em */
  font-size: 1.25em;
}
html:not(.bodyPhone) .top_bar .right_bar_buttons .right_bar_button.share .button_icon_svg svg path {
  fill: var(--contact-icon-color);
}
html:not(.bodyPhone) .top_bar .right_bar_buttons .right_bar_button.share.view-show .button_icon_svg svg path {
  fill: var(--contact-icon-color-active);
}
.top_bar .right_bar_buttons .right_bar_button.capture_image {
  background-position: top;
  background-size: 60%;
}
.top_bar .right_bar_buttons .right_bar_button.capture_image .capture_image.menu_button .button_icon {
  border-left: none;
  border-right: 1px solid #92929E;
  margin-left: -0.075em;
  margin-right: 0.075em;
  padding-left: 0;
  padding-right: 0.15em;
}


html:not(.bodyPhone) .top_bar .right_bar_buttons .right_bar_button.ar_button .button_icon_svg svg path{
  stroke: var(--contact-icon-color);
  fill: var(--contact-icon-color);
}
html:not(.bodyPhone) #body[data-ar-active="true"] .top_bar .right_bar_buttons .right_bar_button.ar_button .button_icon_svg svg path,
html:not(.bodyPhone) .top_bar .right_bar_buttons .right_bar_button.ar_button.view-show .button_icon_svg svg path{
  stroke: var(--contact-icon-color-active);
  fill: var(--contact-icon-color-active);
}
.top_bar .right_bar_buttons .right_bar_button.reset_icon {
  background-size: 40% auto;
}
.top_bar .right_bar_buttons .right_bar_button.reset_icon .button_icon_svg svg path{
  fill: var(--contact-icon-color);
}
.top_bar .right_bar_buttons .right_bar_button.expand .button_icon_svg svg path{
  fill: var(--contact-icon-color);
}
.top_bar .right_bar_buttons .right_bar_button.settings {
  background-position: center;
}
html:not(.bodyPhone) .top_bar .right_bar_buttons .right_bar_button.settings .button_icon_svg svg path {
  fill: var(--contact-icon-color);
  stroke: var(--contact-icon-color);
}
html:not(.bodyPhone) .top_bar .right_bar_buttons .right_bar_button.settings.view-show .button_icon_svg svg path {
  fill: var(--contact-icon-color-active);
  stroke: var(--contact-icon-color-active);
}

.right_bar_button_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}
html.bodyPhone .right_bar_button.view-show .right_bar_button_close {
  display: block;
}



.top_bar .right_bar_buttons .right_bar_button:last-child {
  border-right: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu.show {
  -webkit-transform: scaleY(100%);
  -moz-transform: scaleY(100%);
  transform: scaleY(100%);
}
.top_bar .right_bar_buttons .right_bar_button .menu.show > * {
  opacity: 1;
}
.top_bar .right_bar_buttons .right_bar_button .menu {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  cursor: default;
  padding: 0.25em;
  position: fixed;
  top: calc(var(--top-bar-h) + 0.35em);
  right: 0.15em;
  left: unset;
  width: 2.25em;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0%);
  -moz-transform: scaleY(0%);
  transform: scaleY(0%);
  -webkit-transition: 0.25s ease transform;
  -moz-transition: 0.25s ease transform;
  transition: 0.25s ease transform;
  font-size: 0.75em;
  max-height: calc(100vh - 2em);
  max-height: calc(100dvh - 2em);
  overflow-y: auto;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu {
  /* right: -1.1em; */
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu:after {
  right: 8.65em;
}
.top_bar .right_bar_buttons .right_bar_button .menu > * {
  opacity: 0;
  -webkit-transition: 0.25s ease opacity 0.25s, 0.5s ease max-height 0s;
  -moz-transition: 0.25s ease opacity 0.25s, 0.5s ease max-height 0s;
  transition: 0.25s ease opacity 0.25s, 0.5s ease max-height 0s;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_name {
  border-bottom: 1px solid rgba(186, 193, 198, 0.5019607843);
  font-family: "AppFontMedium";
  padding-top: 0.1em;
  padding-bottom: 0.15em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_name .i18n {
  font-size: 0.2em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .body {
  font-size: 0.175em;
  margin: 1.5em 0em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .capture_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top_bar .right_bar_buttons .right_bar_button .menu .copy_instructions {
  display: block;
  padding: 0.085em 0em;
  font-size: 0.9em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .copy_instructions.capture_instructions {
  width: 75%;
}
.top_bar .right_bar_buttons .right_bar_button .menu .copy_instructions.download_instructions {
  width: 75%;
  padding: 0.15em 0em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .copy_instructions a,
.top_bar .right_bar_buttons .right_bar_button .menu .copy_instructions .i18n {
  font-size: 0.18em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .copy_instructions a {
  text-decoration: none;
  font-style: italic;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button {
  cursor: pointer;
  height: 0.5em;
  display: flex;
  align-items: center;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button .link_field {
  color: #92929E;
  font-size: 0.13em;
  padding: 1.3em;
  width: 21em;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #92929E;
  border-radius: var(--border-radius);
  text-wrap: nowrap;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button [data-text],
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button .i18n {
  color: var(--secondary-color);
  font-family: "AppFontMedium";
  font-size: 0.175em;
  order: 1;
  text-align: center;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button [data-text] {
  font-size: 1em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button .button_icon {
  height: 0.38em;
  order: 0;
  width: 0.38em;
  background-color: white;
  border-radius: 50% 50%;
  background-position: center;
  background-size: 45% auto;
  background-repeat: no-repeat;
  margin-left: 0.1em;
  flex-shrink: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button .button_icon.mail {
  background-image: url(../icons/tour/envelope.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button .button_icon.copy {
  background-image: url(../icons/tour/copy_link.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button.rendering {
  opacity: 0.4;
  pointer-events: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button.scan_qr [data-text=scan_qr] {
  display: inline-block;
}
.top_bar .right_bar_buttons .right_bar_button .menu .menu_button.scan_qr [data-text=hide_qr] {
  display: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu:after {
  content: "";
  position: absolute;
  right: 13.25em;
  top: -0.6em;
  height: 0;
  width: 0;
  border-left: 0.65em solid transparent;
  border-right: 0.65em solid transparent;
  border-bottom: 1em solid var(--nav-bg);
  font-size: 0.155em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .carat polyline {
  stroke: #000;
  stroke-dashoffset: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box {
  background: rgba(186, 193, 198, 0.2);
  padding: 0.25em;
  max-height: 0.22em;
  overflow: hidden;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box.open {
  max-height: 5.5em;
  overflow: auto;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box.open .setting_name svg {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box.open .loop_row {
  border-color: rgba(186, 193, 198, 0.5019607843);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box:last-child:not(.open) .setting_name {
  border-bottom: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box.feedback_box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box.feedback_box .setting_name {
  width: 100%;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .social_buttons {
  display: flex;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .social_buttons .social_button {
  height: 0.5em;
  order: 0;
  width: 0.5em;
  background-color: white;
  border-radius: 50% 50%;
  background-position: center;
  background-size: auto 45%;
  background-repeat: no-repeat;
  margin-right: 0.1em;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .social_buttons .social_button.facebook {
  background-image: url(../icons/tour/share_facebook.png);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .social_buttons .social_button.linkedin {
  background-image: url(../icons/tour/share_in.png);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .social_buttons .social_button.twitter_x {
  background-image: url(../icons/tour/share_x.png);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .capture_button {
  height: 0.5em;
  order: 0;
  width: 0.5em;
  background-color: white;
  border-radius: 50% 50%;
  background-position: center;
  background-size: 45% auto;
  background-repeat: no-repeat;
  margin-left: 0.1em;
  flex-shrink: 0;
  background-image: url(../icons/tour/download.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .share_box_icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.2em;
  height: 0.2em;
  position: absolute;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .share_box_icon.copy {
  background-image: url(../icons/tour/share_email.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .share_box_icon.qr {
  background-image: url(../icons/tour/share_qr.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .share_box_icon.embed {
  background-image: url(../icons/tour/share_embed.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .share_box_icon.social {
  background-image: url(../icons/tour/share_social.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .share_box_icon.capture {
  background-image: url(../icons/tour/share_capture.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .share_box_icon.download {
  background-image: url(../icons/tour/download.svg);
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .setting_name {
  cursor: pointer;
  font-family: "AppFontMedium";
  font-size: 0.2em;
  margin-bottom: 0.5em;
  padding-bottom: 1em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .setting_name svg {
  height: 0.85em;
  width: 0.85em;
  order: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .setting_name svg path{
  fill: var(--contact-icon-color);
}

.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .loop_row {
  border-top: 1px solid transparent;
  padding: 0.2em 0em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .loop_row.hidden {
  display: none;
  pointer-events: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .loop_row.hidden .loop_selection {
  pointer-events: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .loop_row .loop_option {
  font-size: 0.175em;
  width: 40%;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .loop_row .loop_selection {
  flex: 1;
  height: 0.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu .settings_box .loop_row .loop_selection .name {
  font-size: 0.175em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.hotspot_menu {
  height: 1.25em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.collateral_menu {
  height: auto;
  width: 3em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.collateral_menu .collateral_piece {
  border-bottom: 1px solid rgba(186, 193, 198, 0.5019607843);
  cursor: pointer;
  font-size: 0.85em;
  height: 0.35em;
  padding: 0.085em 0em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.top_bar .right_bar_buttons .right_bar_button .menu.collateral_menu .collateral_piece .label {
  font-size: 0.185em;
  flex: 1;
}
.top_bar .right_bar_buttons .right_bar_button .menu.collateral_menu .collateral_piece .type_icon {
  box-sizing: border-box;
  height: auto;
  width: 0.3em;
  margin-right: 0.15em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.collateral_menu .collateral_piece .carat {
  height: 70%;
  width: auto;
}
.top_bar .right_bar_buttons .right_bar_button .menu.collateral_menu .collateral_piece .carat polyline {
  stroke: #000;
  stroke-dashoffset: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .web_ar_launch,
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .ar_launch {
  cursor: pointer;
  font-family: "AppFontBold";
  font-size: 0.175em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .web_ar_launch .i18n,
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .ar_launch .i18n {
  order: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .web_ar_launch svg,
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .ar_launch svg {
  height: 0.85em;
  margin-left: 1em;
  width: auto;
  order: 1;
}
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .web_ar_launch .ar_launch_label,
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .ar_launch .ar_launch_label {
  order: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .web_ar_launch.view-show .ar_launch_label[data-text=ar_launch], .top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .web_ar_launch:not(.view-show) .ar_launch_label[data-text=ar_close],
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .ar_launch.view-show .ar_launch_label[data-text=ar_launch],
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .ar_launch:not(.view-show) .ar_launch_label[data-text=ar_close] {
  display: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .ar_qr_code {
  width: 100%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.ar_menu .ar_qr_code img {
  width: 100%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu {
  width: 4.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .menu_button {
  margin: 0.1em 0em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .menu_button.embed_link svg g path,
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .menu_button.embed_link svg g circle {
  fill: black;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .settings_box .setting_name {
  border-bottom: 1px solid rgba(186, 193, 198, 0.5019607843);
  padding-left: 2em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .settings_box.open .qr_screen {
  max-height: 5em;
  margin-top: 0em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .qr_screen {
  position: static;
  max-height: 0em;
  margin-top: -0.1em;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.35s ease all;
  -moz-transition: 0.35s ease all;
  transition: 0.35s ease all;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .qr_screen .qr_directions {
  font-size: 0.2em;
  line-height: 1;
  margin: 0.5em 0em;
  width: 75%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .qr_screen .qr_code {
  height: auto;
  margin: 0.25em auto;
  width: 60%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .qr_screen .qr_code img {
  width: 100%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings {
  position: relative;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .copy_instructions {
  width: 100%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .copy_icon {
  cursor: pointer;
  position: absolute;
  right: 0.2em;
  top: 0.86em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .copy_icon svg {
  margin-right: 0.15em;
  height: 0.2em;
  width: 0.2em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .copy_icon .i18n {
  font-size: 0.1765em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings #iframe_code {
  border: 1px solid #BAC1C6;
  box-sizing: border-box;
  height: 5em;
  margin: 1.5em auto;
  resize: none;
  width: 100%;
  background: transparent;
  border-radius: var(--border-radius);
  padding: 1.1em 1.3em;
  font-family: AppFont;
  font-size: 0.12em;
  word-break: break-all;
  display: block;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings #iframe_code:active, .top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings #iframe_code:focus {
  border-color: black;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options {
  display: flex;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .copy_instructions {
  padding-bottom: 0.2em;
  padding-top: 0em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing {
  border-right: 1px solid rgba(186, 193, 198, 0.5019607843);
  width: 57%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing .input_fields {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing .input_fields input {
  height: auto;
  width: 2.5em;
  background: transparent;
  border: none;
  -moz-appearance: textfield;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing .input_fields input::-webkit-outer-spin-button, .top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing .input_fields input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing .input_fields input:focus {
  outline: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing .input_fields input::placeholder {
  color: black;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing .input_fields .size_input_x {
  font-size: 0.15em;
  margin: 0em 0.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .sizing .input_fields .size_input_frame {
  border: 1px solid #b9b9b9;
  border-radius: var(--border-radius);
  font-size: 0.15em;
  padding: 0.4em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .logo_options {
  box-sizing: border-box;
  padding-left: 0.25em;
  width: 43%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .logo_options .checkbox {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 0.1em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .logo_options .checkbox input {
  margin: 0 0.65em 0 0;
  accent-color: var(--secondary-color);
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .logo_options .checkbox .i18n {
  font-size: 0.18em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_options .logo_options .checkbox:last-child {
  margin-bottom: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_disclaimer {
  padding-top: 0.25em;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.top_bar .right_bar_buttons .right_bar_button .menu.share_menu .embed_settings .embed_disclaimer a {
  display: inline;
  float: left;
  order: 2;
  word-break: break-all;
  color: var(--secondary-color);
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu {
  width: 5.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .menu_name {
  border-bottom: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box {
  margin: 0.1em 0em 0.25em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box.language_box.open {
  overflow: visible;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box.language_box .loop_row {
  padding-bottom: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .setting_name_checkbox {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  order: 2;
  font-family: AppFont;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .setting_name_checkbox input {
  margin-right: 0.5em;
  width: 2em;
  height: 1.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .setting_name_checkbox .label .i18n {
  font-size: 0.7em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .loop_row.hotspot_menu {
  display: block;
  padding: 0em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .loop_row.timing_row {
  padding: 0em 0em 0.25em;
  height: 1em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .loop_row.timing_row .loop_selection {
  cursor: pointer;
  height: 1em;
  margin-top: 0.2em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .loop_row.start_row {
  padding: 0.2em 0em 0em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .loop_row .loop_option {
  font-size: 0.175em;
  width: 40%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .loop_row .loop_selection {
  flex: 1;
  height: 0.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .loop_row .loop_selection .name {
  font-size: 0.175em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category {
  cursor: pointer;
  height: 0.35em;
  margin: 0.125em 0em;
  position: relative;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category .i18n {
  font-size: 0.2em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category:before {
  background: transparent;
  border-radius: 50%;
  border: 0.1em solid #9BD3DD;
  content: "";
  height: 0.1em;
  width: 0.1em;
  margin-right: 0.15em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category .eye_icon {
  height: 85%;
  width: auto;
  position: absolute;
  right: 0;
  top: 20%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category .eye_icon svg {
  display: block;
  height: 70%;
  margin: 15% auto;
  width: auto;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category .eye_icon svg path {
  fill: black;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category .eye_icon.visible {
  display: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category .eye_icon.not_visible {
  display: inline-block;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category .eye_icon.not_visible svg {
  height: 65%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .settings_box .hotspot_category .eye_icon.not_visible svg path {
  stroke: black;
  stroke-width: 4;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown {
  box-sizing: border-box;
  font-family: "AppFontLight";
  margin: 0;
  padding: 0;
  position: relative;
  width: 2.5em;
  z-index: 10;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .select {
  border: 1px solid #BAC1C6;
  position: relative;
  height: 0.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .select:after {
  position: absolute;
  content: "";
  width: 0.1em;
  height: 0.1em;
  top: 45%;
  right: 0.2em;
  transform: translateY(-60%) rotate(45deg);
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  cursor: pointer;
  transition: border-color 0.4s;
  z-index: 1;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .select:before {
  border-left: 1px solid #BAC1C6;
  box-sizing: border-box;
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 0.55em;
  z-index: 1;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .select input {
  font-family: "AppFontLight";
  width: 100%;
  height: 100%;
  padding: 0 0.5em;
  background: none;
  outline: none;
  border: none;
  font-size: 0.2em;
  cursor: pointer;
  top: 0;
  position: absolute;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .option-container {
  position: absolute;
  height: auto;
  max-height: 0em;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.4s;
  width: 100%;
  z-index: 1;
  top: unset;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .option-container .option {
  background: #f1f3f4;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  height: 0.5em;
  align-items: center;
  padding-left: 0.1em;
  position: relative;
  transition: 0.2s;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .option-container .option .i18n,
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .option-container .option span {
  font-size: 0.2em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .option-container .option.selected {
  background: #BAC1C6;
  pointer-events: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .option-container .option:hover {
  background: #BAC1C6;
  padding-left: 0.2em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown .option-container .option label {
  font-size: 0.3rem;
  cursor: pointer;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown.active:after {
  border: none;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown.active .option-container {
  border: 1px solid rgba(0, 0, 0, 0.3);
  max-height: 15.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .language_dropdown.active .select:after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle {
  cursor: pointer;
  float: right;
  position: relative;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle input {
  display: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle label {
  background-color: #bac1c6;
  border-radius: 1em;
  cursor: pointer;
  display: block;
  font-size: 0.4em;
  height: 1em;
  width: 2em;
  position: relative;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.1em;
  right: unset;
  transform: translateY(-50%);
  display: block;
  width: 0.75em;
  height: 0.75em;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 1;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle input:checked + label {
  background-color: var(--secondary-color);
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle input:checked + label:before {
  left: 1.12em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle .status {
  top: calc(50% - 0.1em);
  position: absolute;
  pointer-events: none;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle .status .i18n {
  font-size: 0.15em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle .status[data-text=off] {
  left: unset;
  right: 0.15em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .toggle .status[data-text=on] {
  color: white;
  left: 0.15em;
  right: unset;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .attract-slider {
  flex: 1;
  border: 1px solid rgba(186, 193, 198, 0.5019607843);
  position: relative;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -0.5em);
  height: 0em;
  background-color: rgba(0, 0, 0, 0.2);
  display: inline-block;
  font-size: 0.2em;
  width: 11.5em;
  top: 0em;
  right: -2.2em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .attract-slider .attract-progress {
  background-color: white;
  border: 2px solid var(--secondary-color);
  left: 50%;
  padding: 0.25em 0.5em;
  position: absolute;
  text-align: center;
  top: -100%;
  width: 4em;
  font-size: 0.85em;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .attract-slider .attract-progress:after, .top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .attract-slider .attract-progress:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.9em;
  height: 0;
  width: 0;
  border-left: 0.65em solid transparent;
  border-right: 0.65em solid transparent;
  border-top: 1em solid white;
  font-size: 0.5em;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .attract-slider .attract-progress:before {
  border-top: 1em solid var(--secondary-color);
  bottom: -1em;
  z-index: -1;
  font-size: 0.5em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .attract-slider .attract-knob {
  background-color: white;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .play_now {
  cursor: pointer;
  float: right;
  height: 0.4em;
  width: 0.4em;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .play_now svg {
  float: right;
  height: 100%;
  width: 100%;
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .play_now svg path {
  fill: var(--secondary-color);
}
.top_bar .right_bar_buttons .right_bar_button .menu.settings_menu .play_now svg g g {
  stroke: var(--secondary-color);
}
.top_bar .contact_specialist,
.top_bar .reset {
  border: 1px solid #b9b9b9;
  border-radius: var(--border-radius);
  width: auto !important;
  display: flex;
  align-items: center;
  text-align: center;
  margin-right: 0.1em;
}
.top_bar .contact_specialist .i18n,
.top_bar .reset .i18n {
  font-size: 0.1em;
}
.top_bar .contact_specialist.active,
.top_bar .reset.active {
  display: flex;
}
.top_bar .contact_specialist.right_bar_button,
.top_bar .reset.right_bar_button {
  padding: 0.02em 0.15em !important;
}
.top_bar .contact_specialist.reset,
.top_bar .reset.reset {
  padding: 0.02em 0.1em;
}
.top_bar .contact_specialist.reset .icon,
.top_bar .reset.reset .icon {
  margin: 0.1em;
  height: var(--nav-button-line-height);
  width: 0.2em;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: left;
  background-image: url(../icons/tour/refresh.svg);
  border-right: 1px solid #b9b9b9;
  margin-left: 0;
  position: relative;
}
.top_bar .contact_specialist.contact_specialist,
.top_bar .reset.contact_specialist {
  width: auto;
  height: 0.323em;
  border-radius: 0.04em;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border: 1px solid #92929E;
}
.top_bar .contact_specialist.contact_specialist .i18n,
.top_bar .reset.contact_specialist .i18n {
  font-size: 0.13em;
  color: var(--contact-color);
  font-family: AppFontMedium;
}
.top_bar .feedback.show .feedback_card {
  transform: scale(1) !important;
  font-size: 0.3em;
}
.top_bar .feedback.show .feedback_card .submit {
  margin-right: 1.9em;
  font-size: 0.4em;
}
.top_bar .overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s opacity ease;
  background: rgba(0, 0, 0, 0.5);
}
.top_bar:has(.menu.show) .overlay {
  opacity: 1;
  pointer-events: auto;
}

.main_content,
.scene_views,
.viewbox,
.card_container,
.card_container_inner,
.content_overlay {
  pointer-events: none !important;
}

.viewbox {
  position: absolute;
  top: 0em;
  bottom: 0;
}
.viewbox[data-view=basic_menu], .viewbox[data-view=value_categories], .viewbox[data-view=features], .viewbox[data-view=consumables], .viewbox[data-view=resources] {
  left: 22%;
  right: 0;
}
#body[mode=value] .viewbox[data-view=resources] {
  top: -400vh;
  top: -400dvh;
  bottom: 400vh;
  bottom: 400dvh;
}
.viewbox[data-view=freezer_sizes_feature-c] {
  left: 0%;
  right: min(3.8em, 33% + 0.3em);
}
.viewbox[data-view=product], .viewbox.capture {
  left: 0%;
  right: 0;
}
.viewbox[data-view=sidecars], 
.viewbox[data-view=highlight_cards] {
  left: 0;
  right: 22%;
}
#body[mode=value] .viewbox[data-view=highlight_cards], 
#body[mode=value] .viewbox[data-view=sidecars][data-track-view$="-view"] {
  left: 22%;
  right: 0;
}

.scene_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.tour_title {
  color: var(--font-color-floating);
  width: 4em;
  transition: 0.5s transform ease, 0.5s opacity ease;
  z-index: 1;
  position: relative;
}
.bodyPhone .tour_title {
  width:3.3em;
}
.tour_title .i18n {
  font-size: 0.13em;
}
#body.no-back .tour_title,
.tour_title:not(.view-show) {
  transform: translate(0, -0.6em);
}

html.bodyPhone #body.no-back .tour_title {
  transform: translate(0, 0.25em);
}
html.bodyPhone .tour_title:not(.view-show) {
  transform: translate(0, -0.31em);
}

html.bodyPhone #body[mode=basic]:not(.no-back) .tour_title { 
  transform: translate(0, 0em);
}
html.bodyPhone #body[mode=basic].no-back .tour_title:not(.view-show) {
  transform: translate(0, 0.2em);
}
html.bodyPhone #body[mode=basic].no-back .tour_title.view-show { 
  transform: translate(0, 0.55em);
}

html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .menu.show {
  transform:translate(0,0%);
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .menu {
 transform:translate(0,100%); 
 transition: 0.25s ease transform, 0.25s linear opacity;
}

.tour_title:not(.loaded) {
  opacity: 0;
  transform: translate(-50%);
}
.tour_title.title_placeholder {
  opacity: 0;
}
.tour_title::before {
  content: "";
  position: absolute;
  bottom: -1em;
  height: calc(100% + 5em);
  background: linear-gradient(160deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%);
  left: -0.3em;
  width: calc(100% + 3em);
  z-index: -1;
  pointer-events: none;
}

.main_content {
  position: relative;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--gutter-h) var(--gutter-w);
  box-sizing: border-box;
}

.card_container {
  position: absolute;
  top: 0;
  left: var(--gutter-w);
  bottom: 0.3em;
  right: var(--gutter-w);
}
.card_container .card_container_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card_container .animation_card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(3.55em, 33%);
  max-height: calc(100% - 0.8em);
  border-radius: var(--border-radius);
  padding: 0.3em;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background: var(--card-bg);
  color: var(--font-color-matted);
  transition: 0.5s opacity ease, 0.5s transform ease;
  pointer-events: auto;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  scrollbar-color: #CCC transparent;
  scrollbar-width: thin;
  z-index: 5;
}
html:not(.bodyPhone) [mode="value"] .card_container .animation_card {
  max-height: calc(100% - 1.6em);
  bottom: 0.8em;
/*  left: 0;*/
}
html:not(.bodyPhone) [mode="value"] .card_container .animation_card[data-view$="-view"] {
  left:0;
}
.card_container .animation_card::-webkit-scrollbar {
  width: 4px;
}
.card_container .animation_card::-webkit-scrollbar-track {
  background-color: transparent;
}
.card_container .animation_card::-webkit-scrollbar-thumb {
  background-color: #CCC;
}
.card_container .animation_card .sidecar_body {
  overflow: auto;
}
.card_container .animation_card .sidecar_body .hidden {
  display: none;
}
.card_container .animation_card > * {
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
  -webkit-transition: 0.25s ease all;
  -moz-transition: 0.25s ease all;
  transition: 0.25s ease all;
}
.card_container .animation_card > *.animation_card_label {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.card_container .animation_card > *.sidecar_title, .card_container .animation_card > *.sidecar_image, .card_container .animation_card > *.sidecar_body {
  -webkit-transition-delay: 0.75s;
  -moz-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
.card_container .animation_card > *.hotspot_script_button {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.card_container .animation_card .i18n {
  font-size: 0.13em;
/*  line-height: 1.28;*/
  font-family: 'AppFont';
}
.card_container .animation_card .i18n ul {
  padding-left: 1.3em;
}
.card_container .animation_card:not(.show) {
  transform: translate(100%);
}
html:not(.bodyPhone) .card_container .animation_card:not(.show) > * {
  opacity: 0;
  -webkit-transform: translateX(-0.5em);
  -moz-transform: translateX(-0.5em);
  transform: translateX(-0.5em);
}
.card_container .animation_card.force_card.show {
  transition-delay: 0.5s;
}
.card_container .animation_card .animation_card_label {
  color: var(--differentiator-color, var(--accent));
  margin-bottom: 0.32em;
  padding-right: 0.2em;
}
.card_container .animation_card .animation_card_label .i18n {
  font-size: 0.13em;
  font-family: 'AppFontMedium';
}
.card_container .animation_card .close {
  position: absolute;
  top: 0.33em;
  right: 0.3em;
  width: 0.12em;
  height: 0.12em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/close_icon.svg);
}
.card_container .animation_card .close::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: -0.15em;
  top: -0.15em;
}
.card_container .animation_card .sidecar_title {
  width: calc(100% - 0.22rem);
}
.card_container .animation_card .sidecar_title ~ .sidecar_body {
  margin-top: 0.16em;
  width: 100%;
}

.card_container .animation_card .sidecar_title.hidden ~ .sidecar_body {
  margin-top: -0.1em;
}


/*.card_container .animation_card .sidecar_title ~ .sidecar_image {*/
.card_container .animation_card .sidecar_title ~ .sidecar_body .sidecar_image {
  margin-top: 0;
}
.card_container .animation_card .sidecar_title.hidden {
  display: none;
}
.card_container .animation_card .sidecar_title .i18n {
  font-size: 0.18em;
  line-height: 1.2;
  font-family: 'AppFontMedium';
}
.card_container .animation_card .sidecar_image {
  display: flex;
  margin-bottom: 0.15em;
  position: relative;
  width: 100%;
}
.card_container .animation_card .sidecar_image .i18n {
  width: 100%;
}
.card_container .animation_card .sidecar_image img, .card_container .animation_card .sidecar_image video {
  width: 100%;
  height: 12em;
  object-fit: cover;
  object-position: top;
}
.card_container .animation_card .sidecar_image .vcms-preview {
  font-size: 0.15em;
  width: 100%;
}
/*.card_container .animation_card .sidecar_image::before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0em;
  width: 100%;
  height: 0.5em;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}*/
.card_container .animation_card .sidecar_image::after {
  content: "";
  position: absolute;
  top: 0.1em;
  right: 0.1em;
  width: 0.2em;
  height: 0.2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/expand_white.svg);
  z-index: 2;
  pointer-events: none;
}
.card_container .animation_card .hotspot_script_button {
  height: 0.44em;
  margin: 0.24em 0.2em 0 0;
  padding: 0 0.38em;
  border: 1px solid #92929E;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  pointer-events: auto;
  cursor: pointer;
}
.card_container .animation_card .hotspot_script_button .i18n {
  font-size: 0.13em;
  color: #1C1F24;
  font-family: AppFontMedium;
}
.card_container .animation_card .hotspot_script_button::after {
  content: "";
  display: inline-block;
  margin-left: 0.26em;
  height: 0.2em;
  width: 0.2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/action.svg);
}
.card_container .animation_card .hotspot_script_button[data-text=button_learn_cta]::after {
  background-image: url(../icons/tour/learn_more.svg);
}
.card_container .animation_card .hotspot_button_row {
  display: flex;
}
.card_container .card_vcms_links {
  display: flex;
  gap: 0 0.18em;
  flex-wrap: wrap;
  pointer-events: none;
}
.card_container .card_vcms_links .vcms-link,
.card_container .card_vcms_links .vcms-menu-link {
  margin-top: 0.15em;
  pointer-events: auto;
}
.card_container .card_vcms_links .vcms-link .i18n,
.card_container .card_vcms_links .vcms-menu-link .i18n {
  font-family: AppFontMedium;
}

.highlight_card_arrows {
  position: absolute;
  transform: translate(-50%, 100%);
  transition: 0.5s transform ease, 0.5s opacity ease;
  opacity: 0;
  pointer-events: none;
  bottom: 0;
  left: 50%;
  display: flex;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.7019607843);
  border-radius: var(--border-radius);
  padding: 0.07em;
  z-index: 1;
}
.highlight_card_arrows.view-show {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0%);
}
.highlight_card_arrows .arrow {
  width: 0.3em;
  height: 0.3em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30% 30%;
/*  background-image: url(../icons/tour/carat_right_icon.svg);*/
  background-color: white;
  border-radius: var(--border-radius);
  cursor: pointer;
  position:relative;
  display:flex;
  align-items: center;
  justify-content:center;
}
.highlight_card_arrows .arrow.left-arrow {
/*  background-image: url(../icons/tour/carat_left_icon.svg);*/
}
.highlight_card_arrows .arrow img,
.highlight_card_arrows .arrow svg {
  width:33%;
  height:33%;
}
.highlight_card_arrows .numbers {
  color: var(--font-color-matted);
  font-size: 0.13em;
  width: 4.5em;
  text-align: center;
  line-height: 2.3em;
  height: 100%;
}

html:not(.bodyPhone) #body[mode=value]:not(.kaon) .highlight_card {
  right: auto;
  left: 0;
  bottom: auto;
  top: 50%;
}
html:not(.bodyPhone) #body[mode=value]:not(.kaon) .highlight_card:not(.show) {
  transform: translate(-100%, -50%);
}
html:not(.bodyPhone) #body[mode=value]:not(.kaon) .highlight_card.show {
  transform: translate(0%, -50%) !important;
}
html:not(.bodyPhone) #body[mode=value] .hotspots_container.view-show {
  display: none;
}

.viewed_check {
  position: absolute;
  left: -0.18em;
  width: 0.1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/check.png);
  height: 0.2em;
}
.viewed_check:not(.active) {
  display: none;
}

.hotspots_container {
  transition: 0.5s opacity ease;
}
.hotspots_container:not(.loaded) {
  opacity: 0;
}

.side_menu {
  position: relative;
  width: min(3.5em, 33%);
  min-width: 3.25em;
  margin-top: 0.2em;
  padding: 0.3em;
  border-radius: var(--border-radius);
  z-index: 1;
  box-sizing: border-box;
  background: var(--card-bg);
  color: var(--font-color-matted);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
  pointer-events: auto;
  transition: 0.5s transform ease, 0.5s opacity ease;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.side_menu[data-load-phase].show:not(.loaded), .side_menu[data-load-phase]:not(.loaded), .side_menu:not(.show) {
  opacity: 0 !important;
  transform: translate(-100%) !important;
}
.side_menu .menu_title {
  font-family: AppFontBold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side_menu .menu_title .close {
  order: 2;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
}
.side_menu .menu_title .i18n {
  order: 1;
  font-size: 0.15em;
}
.side_menu .menu_nav {
  display: flex;
  flex-direction: row;
  margin: 0.3em 0;
  border-bottom: 1px solid #EDF0F0;

  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-color: #CCC transparent;
  scrollbar-width: thin;
}
.side_menu .menu_nav .i18n {
  font-size: 0.15em;
}
.side_menu .menu_nav .menu_nav_tab {
  font-size: 0.92em;
  margin-right: 0.2em;
  padding-bottom: 0.1em;
  position: relative;
  cursor: pointer;
}
.side_menu .menu_nav .menu_nav_tab::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  bottom: 0;
  display: none;
}
.side_menu .menu_nav .menu_nav_tab.view-show {
  font-family: AppFontBold;
}
.side_menu .menu_nav .menu_nav_tab.view-show::after {
  display: block;
}
.side_menu .menu_panel_container {
  position: relative;
  height: 100%;
  margin-left: -0.2em;
}
.menu_panel_container[data-view]:not(.show) {
    display: none;
}
.side_menu .menu_panel {
  position: absolute;
  transition: 0.5s opacity ease, 0.5s transform ease;
  width: calc(100% - 0.2em);
  padding: 0em 0.1em 0 0.2em;
  padding-left: 0.2em;
  overflow: auto;
  height: 100%;
  scroll-behavior: smooth; /* Enables smooth scrolling */
  scrollbar-color: #CCC transparent;
  scrollbar-width: thin;
}
.side_menu .menu_panel::-webkit-scrollbar {
  width: 4px;
}
.side_menu .menu_panel::-webkit-scrollbar-track {
  background-color: transparent;
}
.side_menu .menu_panel::-webkit-scrollbar-thumb {
  background-color: #CCC;
}
.side_menu .menu_panel.seq-before {
  transform: translate(-100%);
}
.side_menu .menu_panel.seq-after {
  transform: translate(100%);
}
.side_menu .menu_panel .i18n {
  font-size: 0.15em;
}
.side_menu .menu_panel .overview_title {
  margin-bottom: 1em;
}
.side_menu .menu_panel .side_menu_item {
  border-top: 1px solid #EDF0F0;
  padding: 0.08em 0;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
}
.side_menu .menu_panel .side_menu_item:first-child {
/*  border-top: none;*/
/*  margin-top: 0;*/
/*  padding-top: 0;*/
}
.side_menu .menu_panel .side_menu_item .i18n {
  font-size: 0.13em;
  flex-grow: 1;
  line-height: 1.3;
}
.side_menu .menu_panel .side_menu_item::after {
  content: "";
  right: 0;
  width: 0.2em;
  height: 0.2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin: 0 0.02em 0 0.1em;
  flex-shrink: 0;
}
.side_menu .menu_panel .side_menu_item.animation_item:hover,
.side_menu .menu_panel .side_menu_item.animation_item.mouse_over,
#body:not(.views-menu-on) .side_menu .menu_panel .side_menu_item.animation_item.activated {
  color: var(--secondary-color);
}
.side_menu .menu_panel .side_menu_item.animation_item:hover .thumb[style*=background-image],
.side_menu .menu_panel .side_menu_item.animation_item.mouse_over .thumb[style*=background-image],
#body:not(.views-menu-on) .side_menu .menu_panel .side_menu_item.animation_item.activated .thumb[style*=background-image] {
  box-sizing: border-box;
  border: 2px solid var(--secondary-color);
}
.side_menu .menu_panel .side_menu_item.animation_item::after {
  width: 0.2em;
  background-image: url(../icons/tour/play.svg);
}
.side_menu .menu_panel .side_menu_item.highlight_item::after {
  width: 0.07em;
  background-image: url(../icons/tour/carat_right_icon.svg);
}
[mode=basic] .side_menu .menu_panel .side_menu_item.highlight_item:not(.visible) {
  display: none;
}
.side_menu .menu_panel .side_menu_item[data-js-reset]::after {
  background-color: black;
  background-image: url(../icons/tour/refresh.svg);
  background-size: 55%;
  border-radius: 50%;
  margin: 0 0.1em 0 0em;
  width: 0.2em;
  order: 0;
}
.side_menu .menu_panel .side_menu_item[data-js-reset] .i18n {
  order: 1;
}
.side_menu .menu_panel .side_menu_item.heading {
  font-family: AppFontMedium;
  padding-top: 0.2em;
  cursor: auto;
  pointer-events: none;
  color: var(--differentiator-color, var(--font-color-matted));
}
.side_menu .menu_panel .side_menu_item.heading::after {
  display: none;
}
.side_menu .menu_panel .side_menu_item.hidden {
  display: none;
}
.side_menu.value_version {
  flex-grow: unset;
  position: absolute;
  top: 0.6em;
  left: 0.3em;
  height: 70vh;
  height: 70dvh;
  max-height: calc(100vh - 2.45em);
  max-height: calc(100dvh - 2.45em);
}
.side_menu.value_version .menu_title {
  color: var(--accent);
  font-family: "AppFontMedium";
}
.side_menu.value_version .menu_title .i18n {
  font-size: 0.24em;
}
.side_menu.value_version .menu_instructions {
  margin: 0.22em 0em;
}
.side_menu.value_version .menu_instructions .i18n {
  font-size: 0.13em;
}
.side_menu.value_version .menu_panel_container {
  height: auto;
  overflow: hidden;
}

.side_menu.value_version .menu_panel_container .menu_panel {
  height: 100%;
  position: static;
}
.side_menu.value_version .menu_panel_container .menu_panel .side_menu_item .thumb {
  height: 0.3rem;
  width: 0.3rem;
  margin-right: 1em;
  background-position: center;
  background-size: cover;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: var(--border-radius);
}
.side_menu.value_version .menu_panel_container .menu_panel .side_menu_item:after {
  width: 0.07em;
  background-image: url(../icons/tour/feature_arrow.svg);
}
.side_menu.value_version .menu_panel_container .menu_panel .side_menu_item.heading {
  padding: 0.2em 0;
}
.side_menu_item.animation_item.heading ~ .side_menu_item:not(.heading) {
    margin-left: 0.1em;
}
.side_menu.value_version .menu_panel_container .menu_panel .side_menu_item.heading:nth-of-type(1) {
  border-top: none;
  padding-top: 0 !important;
}
.side_menu.value_version .menu_panel_container .menu_panel .side_menu_item.heading .thumb {
  display: none;
}
.side_menu .consumables_panel .collateral_piece,
.side_menu .resources_panel .collateral_piece {
  border-bottom: 1px solid #BAC1C6;
  cursor: pointer;
  font-size: 0.85em;
  height: fit-content;
  padding: 0.085em 0em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
.side_menu .consumables_panel .collateral_piece:first-of-type,
.side_menu .resources_panel .collateral_piece:first-of-type {
  border-top: 1px solid #BAC1C6;
}
.side_menu .consumables_panel .collateral_piece .label,
.side_menu .resources_panel .collateral_piece .label {
/*  font-size: 0.13em;*/
  flex: 1;
}
.side_menu .consumables_panel .collateral_piece .type_icon,
.side_menu .resources_panel .collateral_piece .type_icon {
  box-sizing: border-box;
  height: auto;
  width: 0.3em;
  margin-right: 0.15em;
}
.side_menu .consumables_panel .collateral_piece .carat,
.side_menu .resources_panel .collateral_piece .carat {
  height: auto;
  width: 0.07em;
  margin-right: 0.08em;
}
.side_menu .consumables_panel .collateral_piece .carat polyline,
.side_menu .resources_panel .collateral_piece .carat polyline {
  stroke: #000;
  stroke-dashoffset: 0;
}
.side_menu .close {
  position: absolute;
  top: 0.365em;
  right: 0.3em;
  width: 0.15em;
  height: 0.15em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/close_icon.svg);
  cursor: pointer;
}
.side_menu .close::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: -0.15em;
  top: -0.15em;
}
.hotspot:not(.visible),
.hotspot.invisible,
.hotspot.deforced,
.hotspot.hidden
 {
  opacity: 0;
  pointer-events: none;
}

.hotspot_dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background-color: var(--hotspot-color);
  border-radius: 50% 50%;
  transition: 0.2s opacity ease, 0.2s background-color ease;
  z-index: 1;
}
.hotspot_dot label {
  transition: transform ease 0.5s;
  transform-origin: left;
}
.hotspot_dot::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 32px;
  height: 32px;
  border-radius: 50% 50%;
  background-color: var(--hotspot-color);
  /*-webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  animation-timing-function: ease;*/
  opacity:0;
  transform:scale(100%);
  transition:transform 0.5s ease, opacity 0.5s ease;
}
.hotspot_dot.animate_hs::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 32px;
  height: 32px;
  border-radius: 50% 50%;
  background-color: var(--hotspot-color);
  /*opacity:0;
  transform:scale(0);*/
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
 -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  animation-timing-function: ease;
  transition:transform 0.5s ease, opacity 0.5s ease;
}
.hotspot_dot::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50% 50%;
  background: white;
}
.hotspot_dot .clickable {
  position: absolute;
  top: -0.1em;
  left: -0.1em;
  right: -0.1em;
  bottom: -0.1em;
}

.hotspot_dot .hover_box {
  transition: 0.2s opacity ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: calc(100% + 0.1em);
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.hotspot_dot:not(.view-show):hover,
.hotspot_dot:not(.view-show).mouse_over {
  z-index: 3;
}
.hotspot_dot:not(.view-show):hover .hover_box,
.hotspot_dot:not(.view-show).mouse_over .hover_box {
  opacity: 1;
}
.hotspot_dot .hover_box .hover_box_border .hover_box_content {
  padding: 0.010em 0.015em 0.010em 0;
}
.hotspot_dot .hover_box .hover_box_border .hover_box_content .i18n {
  padding: 0.1em;
  color: var(--font-color-matted);
}
.hotspot_dot .hover_box .hover_box_border .hover_box_content .i18n .text {
  font-size: 0.14em;
}

.hotspot_dot .hover_box .hover_box_border {
  border-radius: var(--border-radius);
  background-color: var(--hotspot-hoverstate);
  padding-left: 0.015em;
  margin-left: 0.010em;
  position: relative;
  filter: drop-shadow(0px 0px 2px var(--hotspot-hoverstate-shadow));
}

.arrow-wrap {
  position: absolute;
  left: -0.09em;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 0;
}
.arrow-notch {
  border-top: 0.1em solid transparent;
  border-bottom: 0.1em solid transparent;
  border-right: 0.1em solid var(--hotspot-hoverstate);
  transform: translateY(-50%);
  top: 50%;
}

.hotspot_dot:hover label, .hotspot_dot.mouse_over label, .hotspot_dot.view-show label {
/*    background-color: rgb(255, 255, 255);*/
  transform: scale(1.3);
}
.hotspot_dot:hover, .hotspot_dot.mouse_over, .hotspot_dot.view-show {
  background-color: rgb(255, 255, 255);
/*  transform: translate(-50%, -50%) scale(1.3);*/
}
.hotspot_dot:hover::before, .hotspot_dot.mouse_over::before, .hotspot_dot.view-show::before {
  background-color: rgba(255, 255, 255, 0.2);
}
.hotspot_dot:hover::after, .hotspot_dot.mouse_over::after, .hotspot_dot.view-show::after {
  background-color: var(--hotspot-color);
}

.content_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.3em;
  box-sizing: border-box;
}
.content_overlay.transparent {
  background: transparent;
}

.resources_overlay.show .selected_resource .view_collateral,
.resources_overlay.show .resource_tiles .tile {
  cursor: pointer;
  pointer-events: auto;
}
.resources_overlay.show .resource_selection .resource_tiles .tile {
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
}
.resources_overlay .selected_resource {
  top: 0.3em;
  left: 0.3em;
  height: auto;
  position: absolute;
}
.resources_overlay .selected_resource.show .resource_name,
.resources_overlay .selected_resource.show .resource_desc,
.resources_overlay .selected_resource.show .view_collateral {
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
  opacity: 1;
}
.resources_overlay .selected_resource.transition-out .resource_name,
.resources_overlay .selected_resource.transition-out .resource_desc,
.resources_overlay .selected_resource.transition-out .view_collateral {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.resources_overlay .selected_resource .resource_name {
  color: var(--font-color-floating);
  height: auto;
  margin: 0.25em 0em 0.1475em;
  width: 4em;
  opacity: 0;
  -webkit-transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  transition: 0.5s ease all;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translateX(-3em);
  -moz-transform: translateX(-3em);
  transform: translateX(-3em);
}
.resources_overlay .selected_resource .resource_name .i18n {
/*  display: block;*/
  font-size: 0.2em;
}
.resources_overlay .selected_resource .resource_desc {
  width: 4em;
  margin-bottom: 0.3em;
  opacity: 0;
  -webkit-transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  transition: 0.5s ease all;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translateX(-3em);
  -moz-transform: translateX(-3em);
  transform: translateX(-3em);
}
.resources_overlay .selected_resource .resource_desc .i18n {
  font-size: 0.1475em;
  color: var(--font-color-floating);
  line-height: 1.25;
}
.resources_overlay .view_collateral {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  color: var(--font-color-matted);
  cursor: pointer;
  width: 1.77em;
  height: 0.45em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  transition: 0.5s ease all;
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  transition-delay: 0.7s;
  -webkit-transform: translateX(-3em);
  -moz-transform: translateX(-3em);
  transform: translateX(-3em);
  opacity: 0;
}
.resources_overlay .view_collateral .i18n {
  font-size: 0.1475em;
}
.resources_overlay .view_collateral svg {
  height: 0.2em;
  width: 0.2em;
  margin-left: 0.15em;
}
.resources_overlay .view_collateral svg .carat {
  stroke: #fff;
  stroke-dashoffset: 0;
}
.resources_overlay .resource_content {
  z-index: 1;
}
.resources_overlay .resource_selection {
  position: absolute;
  bottom: 0.5em;
  right: 0.3em;
  width: 8.2em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: 0.35s ease all;
  -moz-transition: 0.35s ease all;
  transition: 0.35s ease all;
}
.resources_overlay .resource_selection.view-show {
  pointer-events: none;
}
.resources_overlay .resource_selection.view-show .resource_tiles .tile {
  -webkit-transform: translateY(200%);
  -moz-transform: translateY(200%);
  transform: translateY(200%);
}
.resources_overlay .resource_selection.view-show .grid_nav,
.resources_overlay .resource_selection.view-show .resource_nav_arrows,
.resources_overlay .resource_selection.view-show .resource_tiles {
  opacity: 0;
}
.resources_overlay .resource_selection.view-show .header {
  opacity: 0;
  transform: translate(0, 4.91em) translate(0, -100vh) translate(0, -2px);
  transform: translate(0, 4.91em) translate(0, -100dvh) translate(0, -2px);
  transition-delay: 0.3s, 0s;
}
.resources_overlay .resource_selection.view-show .header .i18n {
  opacity: 0;
}
.resources_overlay .resource_selection .header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2509803922);
  color: var(--font-color-floating);
  font-family: "AppFontBold";
  width: 100%;
  -webkit-transition: 0.35s ease opacity, 0.3s ease transform;
  -moz-transition: 0.35s ease opacity, 0.3s ease transform;
  transition: 0.35s ease opacity, 0.3s ease transform;
}
.resources_overlay .resource_selection .header .i18n {
  font-size: 0.165em;
  padding: 0.1475rem 0em;
  -webkit-transition: 0.35s ease opacity;
  -moz-transition: 0.35s ease opacity;
  transition: 0.35s ease opacity;
}
.resources_overlay .resource_selection .resource_nav_arrows {
  position: absolute;
  height: 0.45em;
  bottom: -0.35em;
  top: unset;
  left: 50%;
  pointer-events: auto;
  -webkit-transition: 0.35s ease opacity;
  -moz-transition: 0.35s ease opacity;
  transition: 0.35s ease opacity;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.resources_overlay .resource_selection .resource_nav_arrows .arrow {
  background: white;
  border-radius: var(--border-radius);
  cursor: pointer;
  height: 0.33em;
  width: 0.33em;
  margin: 0em 0.11em;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.resources_overlay .resource_selection .resource_nav_arrows .arrow .carat {
  display: block;
  height: 0.1em;
  margin: 0 auto;
  width: auto;
  stroke: var(--font-color-floating);
  stroke-dashoffset: 0;
}
.resources_overlay .resource_selection .resource_nav_arrows .arrow.prev_arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.resources_overlay .resource_selection .resource_nav_arrows .arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.resources_overlay .resource_selection .resource_nav_arrows #cms_pagination {
  color: var(--font-color-floating);
  font-size: 0.11em;
  font-family: AppFontMedium;
}
.resources_overlay .resource_selection .grid_nav {
  cursor: pointer;
  position: absolute;
  top: 0.1em;
  right: 0;
/*  width: 0.3em;*/
  height: 0.3em;
  z-index: 1;
  pointer-events: all;
  -webkit-transition: 0.35s ease opacity;
  -moz-transition: 0.35s ease opacity;
  transition: 0.35s ease opacity;
  display:flex;
  align-items: center;
  justify-content:center;
}
.resources_overlay .resource_selection .grid_nav svg {
/*  float: left;*/
  width: 0.3em;
  height: 0.3em;
}
.resources_overlay .resource_selection .resource_tiles {
  border-radius: var(--border-radius);
  width: calc(100% + 0.3em);
  height: 2.1em;
  padding: 0.22em 0em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth; /* Enables smooth scrolling */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  overscroll-behavior-x: contain;
}
.resources_overlay .resource_selection .resource_tiles .viewed_check {
  left: auto;
  right: 0.1em;
  background-image: url(../icons/tour/check_white_border.png);
  top: 0.05em;
}
.resources_overlay .resource_selection .resource_tiles .tile {
  min-width: 1.9em;
  width: 1.9em;
  flex-grow:1;
  height: 100%;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-sizing: border-box;
  margin-right: 0.2em;
  -webkit-transform: translateY(200%);
  -moz-transform: translateY(200%);
  transform: translateY(200%);
  -webkit-transition: 0.5s ease transform;
  -moz-transition: 0.5s ease transform;
  transition: 0.5s ease transform;
  overflow: hidden;
  position: relative;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(1) {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(2) {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(3) {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(4) {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(5) {
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(6) {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(7) {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(8) {
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(9) {
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.resources_overlay .resource_selection .resource_tiles .tile:nth-of-type(10) {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.resources_overlay .resource_selection .resource_tiles .tile.view-show {
  border: 4px solid var(--accent);
}
.resources_overlay .resource_selection .resource_tiles .tile .thumbnail {
  width: 100%;
  height: 50%;
}
.resources_overlay .resource_selection .resource_tiles .tile .thumbnail.contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.resources_overlay .resource_selection .resource_tiles .tile .thumbnail.cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.resources_overlay .resource_selection .resource_tiles .tile .resource_kind {
  color: var(--accent);
  font-size: 0.13em;
  margin: 0.16rem 0.16rem 0rem;
  font-family: AppFontMedium;
}
.resources_overlay .resource_selection .resource_tiles .tile .resource_title {
  font-size: 0.125em;
  line-height: 1.28;
  margin: 0.075rem 0.16rem 0rem;
  font-family: AppFontMedium;
}
.resources_overlay .grid_view {
  padding: 0.3em 0.3em 0;
  display: grid;
  grid-template-rows: 1em 1fr;
  grid-template-columns: 1.475em 1fr;
  grid-template-areas: "header header" "menu resource_grid";
  gap: 0.375em 0;
}
.resources_overlay .grid_view.show .list_header .line {
  max-width: 100%;
}
.resources_overlay .grid_view.show .list_header .close {
  opacity: 1;
}
.resources_overlay .grid_view.show .resource_grid {
  pointer-events: auto;
  opacity: 1;
  transition-delay: 0.5s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active {
  -webkit-transition: 0.15s ease opacity;
  -moz-transition: 0.15s ease opacity;
  transition: 0.15s ease opacity;
  opacity: 1;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(1 of .active) {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(2 of .active) {
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(3 of .active) {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(4 of .active) {
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(5 of .active) {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(6 of .active) {
  -webkit-transition-delay: 0.35s;
  -moz-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(7 of .active) {
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(8 of .active) {
  -webkit-transition-delay: 0.45s;
  -moz-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(9 of .active) {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(10 of .active) {
  -webkit-transition-delay: 0.65s;
  -moz-transition-delay: 0.65s;
  transition-delay: 0.65s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(11 of .active) {
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(12 of .active) {
  -webkit-transition-delay: 0.75s;
  -moz-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(13 of .active) {
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(14 of .active) {
  -webkit-transition-delay: 0.85s;
  -moz-transition-delay: 0.85s;
  transition-delay: 0.85s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(15 of .active) {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(16 of .active) {
  -webkit-transition-delay: 0.95s;
  -moz-transition-delay: 0.95s;
  transition-delay: 0.95s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(17 of .active) {
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  transition-delay: 1s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(18 of .active) {
  -webkit-transition-delay: 1.05s;
  -moz-transition-delay: 1.05s;
  transition-delay: 1.05s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(19 of .active) {
  -webkit-transition-delay: 1.1s;
  -moz-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(20 of .active) {
  -webkit-transition-delay: 1.15s;
  -moz-transition-delay: 1.15s;
  transition-delay: 1.15s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(21 of .active) {
  -webkit-transition-delay: 1.2s;
  -moz-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(22 of .active) {
  -webkit-transition-delay: 1.25s;
  -moz-transition-delay: 1.25s;
  transition-delay: 1.25s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(23 of .active) {
  -webkit-transition-delay: 1.3s;
  -moz-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
.resources_overlay .grid_view.show .resource_grid .grid_entry.active:nth-child(24 of .active) {
  -webkit-transition-delay: 1.35s;
  -moz-transition-delay: 1.35s;
  transition-delay: 1.35s;
}
.resources_overlay .grid_view.show .category {
  transform: translate(0, 0%) !important;
  opacity: 1 !important;
}
.resources_overlay .grid_view .viewed_check {
  background-image: url(../icons/tour/check_white.png);
  left: -0.2em;
  width: 0.11em;
  top: 0.05em;
}
.resources_overlay .grid_view .i18n {
  color: var(--font-color-floating);
}
.resources_overlay .grid_view .list_header {
  grid-area: header;
  position: relative;
  width: 100%;
  height: fit-content;
  padding-bottom: 0.25em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  align-self: flex-end;
  -webkit-transition: 0.75s ease all 0.15s;
  -moz-transition: 0.75s ease all 0.15s;
  transition: 0.75s ease all 0.15s;
}
.resources_overlay .grid_view .list_header .line {
  max-width: 0em;
  position: absolute;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2509803922);
  bottom: 0;
  right: 0;
  width: 100%;
  -webkit-transition: 0.5s ease all 0.15s;
  -moz-transition: 0.5s ease all 0.15s;
  transition: 0.5s ease all 0.15s;
}
.resources_overlay .grid_view .list_header .i18n {
  font-family: "AppFontMedium";
  font-size: 0.2em;
}
.resources_overlay .grid_view .list_header .close {
  cursor: pointer;
  width: 0.15em;
  height: 0.15em;
  opacity: 0;
  pointer-events: all;
  -webkit-transition: 0.35s ease all 1s;
  -moz-transition: 0.35s ease all 1s;
  transition: 0.35s ease all 1s;
  position: relative;
}
.resources_overlay .grid_view .list_header .close svg {
  float: left;
  width: 100%;
  height: 100%;
}
.resources_overlay .grid_view .list_header .close::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: -0.15em;
  top: -0.15em;
}
.resources_overlay .grid_view .categories {
  grid-area: menu;
  position: relative;
  pointer-events: all;
  z-index: 1;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  justify-self: flex-start;
  align-self: flex-start;
}
.resources_overlay .grid_view .categories .category {
  cursor: pointer;
  font-size: 0.15em;
  padding: 0.3em 1em;
  position: relative;
  transform: translate(0, -50%);
  opacity: 0;
  transition: 0.5s transform ease, 0.5s opacity ease;
}
.resources_overlay .grid_view .categories .category:nth-child(1) {
  transition-delay: 0.5s;
}
.resources_overlay .grid_view .categories .category:nth-child(2) {
  transition-delay: 0.7s;
}
.resources_overlay .grid_view .categories .category:nth-child(3),
.resources_overlay .grid_view .categories .category:nth-child(6) {
  transition-delay: 0.9s;
}
.resources_overlay .grid_view .categories .category:nth-child(4),
.resources_overlay .grid_view .categories .category:nth-child(7) {
  transition-delay: 1.1s;
}
.resources_overlay .grid_view .categories .category:nth-child(8),
.resources_overlay .grid_view .categories .category:nth-child(5) {
  transition-delay: 1.3s;
}
.resources_overlay .grid_view .categories .category:nth-child(9) {
  transition-delay: 1.5s;
}
.resources_overlay .grid_view .categories .category:nth-child(10) {
  transition-delay: 1.3s;
}
.resources_overlay .grid_view .categories .category:nth-child(11) {
  transition-delay: 1.7s;
}
.resources_overlay .grid_view .categories .category:nth-child(12) {
  transition-delay: 1.9s;
}
.resources_overlay .grid_view .categories .category.active .i18n {
  font-family: "AppFontMedium";
}
.resources_overlay .grid_view .categories .category.active:before {
  border-left: 3px solid var(--accent);
}
.resources_overlay .grid_view .categories .category:before {
  border-left: 3px solid white;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.resources_overlay .grid_view .resource_grid {
  grid-area: resource_grid;
  position: relative;
  width: 100%;
  height: fit-content;
  padding-left: 0.285em;
  box-sizing: border-box;
  max-height: calc(100vh - 2.2em);
  max-height: calc(100dvh - 2.2em);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 1;
  overflow-y: auto;
  transition: 0.5s opacity ease;
  opacity: 0;
  scrollbar-color: #CCC transparent;
  scrollbar-width: thin;
}
.resources_overlay .grid_view .resource_grid::-webkit-scrollbar {
  width: 4px;
}
.resources_overlay .grid_view .resource_grid::-webkit-scrollbar-track {
  background-color: transparent;
}
.resources_overlay .grid_view .resource_grid::-webkit-scrollbar-thumb {
  background-color: #CCC;
}
/*.resources_overlay .grid_view .resource_grid[data-selected=web] .grid_entry:not([data-type=web]) {
  display: none;
}
.resources_overlay .grid_view .resource_grid[data-selected=video] .grid_entry:not([data-type=video]) {
  display: none;
}
.resources_overlay .grid_view .resource_grid[data-selected=pdf] .grid_entry:not([data-type=pdf]) {
  display: none;
}*/

.resources_overlay .grid_view .resource_grid .grid_entry {
  color: var(--font-color-floating);
  margin-bottom: 0.5em;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  height: 0.85em;
  width: 27%;
  position: relative;
  cursor: pointer;
  opacity: 0;
  pointer-events: all;
  margin-left: 1%;
  margin-right: 5%;
  font-size: 0.75em;
  flex-grow: 0;
  flex-shrink: 0;
}
.resources_overlay .grid_view .resource_grid .grid_entry:not(.active) {
  display:none;
}
.resources_overlay .grid_view .resource_grid .grid_entry .thumbnail {
  background-image: url("../vcms/en/5671560180400128/1730407164246.preview.jpg");
  border-radius: var(--border-radius);
  height: 100%;
  min-width: 0.85em;
  margin-right: 0.15em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.resources_overlay .grid_view .resource_grid .grid_entry .text {
  flex: 1;
}
.resources_overlay .grid_view .resource_grid .grid_entry .text .prompt,
.resources_overlay .grid_view .resource_grid .grid_entry .text .title {
  font-size: 0.2em;
}
.resources_overlay .grid_view .resource_grid .grid_entry .text .title {
  display: -webkit-box;
  margin-bottom: 0.5em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.resources_overlay .grid_view .resource_grid .grid_entry .text .prompt {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-family: "AppFontMedium";
}
.resources_overlay .grid_view .resource_grid .grid_entry .text .prompt svg {
  height: 0.85em;
  width: 0.85em;
  margin-left: 1em;
}
.resources_overlay .grid_view .resource_grid .grid_entry.selected:before {
  content: "✓"; /* Unicode for ✔ */
  position: absolute;
  left: -0.35rem;
  top: 0;
  font-size: 0.3em;
}
.resources_overlay .bg_videos {
  pointer-events: none;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.resources_overlay .bg_videos.view-show {
  opacity: 1;
}
.resources_overlay .bg_videos .resource-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0 !important;
  background-size: cover;
}
.resources_overlay .bg_videos .resource-bg.show {
  opacity: 0.1 !important;
}
.resources_overlay .bg_videos div {
  filter: blur(5px);
}
.resources_overlay .bg_videos video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.resources_overlay .bg_videos video::-internal-media-controls {
  display: none;
}
.resources_overlay .bg_videos video::-webkit-media-controls {
  display: none;
}

@keyframes dropIn {
  0% {
    -webkit-transform: scaleY(0%);
    -moz-transform: scaleY(0%);
    transform: scaleY(0%);
  }
  100% {
    -webkit-transform: scaleY(100%);
    -moz-transform: scaleY(100%);
    transform: scaleY(100%);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale(100%);
    -moz-transform: scale(100%);
    transform: scale(100%);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(140%);
    -moz-transform: scale(140%);
    transform: scale(140%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(100%);
    -moz-transform: scale(100%);
    transform: scale(100%);
  }
}
#body[mode=basic] [data-mode]:not([data-mode=basic]),
#body[mode=value] [data-mode]:not([data-mode=value]) {
  display: none;
}

.value_categories {
  margin-top: 0.2em;
  color: var(--font-color-floating);
  width: 3.5em;
  pointer-events: none !important;
  transition: 0.5s opacity ease, 0.5s transform ease;
  z-index: 1;
}
#body.no-back:not(.bodyPhone) .value_categories {
  margin-top: -0.3em;
}
/*.value_categories [data-view].show {
  pointer-events: none !important;
}*/
html:not(.bodyPhone) .value_categories.show:not(.loaded),
html:not(.bodyPhone) .value_categories:not(.loaded) {
  opacity: 0 !important;
  transform: translate(-50%) !important;
}
html.bodyPhone .value_categories.show:not(.loaded),
html.bodyPhone .value_categories:not(.loaded) {
  opacity: 0 !important;
  transform: translate(0, 100%) !important;
}

.value_categories.show:not(.loaded) .value_category_item, .value_categories:not(.loaded) .value_category_item {
  transform: translate(0, -50%);
  opacity: 0;
}
.value_categories .text {
  position: relative;
}
.value_categories .text .value_category_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.5s opacity ease, 0.5s transform ease;
}
body:not(.shift) #body:not(.phone) .value_categories .text .value_category_text:not(.show) {
  display: block !important;
}
.value_categories .text .value_category_text.transition-in {
  transform: translate(-50%);
  transition: none;
}
.value_categories .text .value_category_text.transition-out {
  transform: translate(50%);
}
.value_categories .text .value_category_text .value_category_title {
  margin-bottom: 0.1em;
}
.value_categories .text .value_category_text .value_category_title .i18n {
  font-size: 0.2em;
}
.value_categories .text .value_category_text .value_category_body .i18n {
  font-size: 0.15em;
}
.value_categories .menu {
  margin-top: 0.2em;
  transition: 0.5s transform ease;
}
.value_categories .menu .value_category_item {
  position: relative;
  padding: 0.06em 0;
  padding-left: 0.12em;
  display: flex;
  transition: 0.5s opacity ease, 0.5s transform ease;
  border-left: 3px solid rgba(255, 255, 255, 0.5);
}
.value_categories .menu .value_category_item.view-show {
  font-family: AppFontBold;
}
.value_categories .menu .value_category_item.view-show .highlight_bar {
  transform: translateY(-50%) scaleY(1);
}
.value_categories .menu .value_category_item .highlight_bar {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 3px;
  height: 110%;
  background-color: var(--accent);
  transform: translateY(-50%) scaleY(0);
  transform-origin: center center;
}
.value_categories .menu .value_category_item .i18n {
  font-size: 0.15em;
  pointer-events: auto;
  cursor: pointer;
}

.hotspot_kind_container {
  display: none;
}
.hotspot_kind_tracker.view-show ~ .hotspot_kind_container:not(.image_placement), .hotspot_kind_container.view-show {
  display: block;
}

.ai-circle__ctr {
  position: absolute;
  bottom: 0.4em;
  left: 0.3em;
  z-index: 10;
  width: 0.55em;
  height: 0.55em;
  border-radius: radius;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.ai-circle__ctr.internal {
  position: absolute;
  top: 0;
  left: 0;
  bottom: unset;
  transform: translate(-50%, calc(100vh - 1.7em));
  transform: translate(-50%, calc(100dvh - 1.7em));
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
}
.ai-circle__ctr.internal.view-show {
  transform: translate(-50%, 0);
  opacity: 1;
  transition-delay: 0.33s;
}

.ai-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.33s ease;
  pointer-events: none;
  z-index: 0;
}
.ai-cover.view-show {
  opacity: 1;
  pointer-events: auto;
}

.ai-circle {
  width: 0.6em;
  height: 0.6em;
  pointer-events: auto;
  background-size: 40% auto;
  z-index: 10;
  position: relative;
}
.ai-circle .lottie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s opacity ease, 0.3s transform ease;
  pointer-events: none !important;
}
.ai-circle .lottie lottie-player {
  width: 100%;
  height: 100%;
}
.ai-circle .lottie[data-track-view-show]:not(.view-show) {
  opacity: 0;
}
.ai-circle .lottie[data-track-view-show]:not(.view-show).blue-lottie-container {
  transition-delay: 1s, 0s;
}
.ai-circle [data-track-view-show=auto-bubble].view-show ~ .lottie,
.ai-circle [data-track-view-show=answer-bubble].view-show ~ .lottie {
  transform: translate(0, -1.7em);
}
.ai-circle [data-track-view-show=shoutout].view-show ~ .lottie {
  transform: translate(0, -1.2em);
}
.ai-circle .ai-circle-label {
  position: absolute;
  bottom: -0.2em;
  color: var(--font-color-floating);
  width: 1em;
  left: calc(50% - 0.5em);
  text-align: center;
  transition: 0.3s opacity ease;
  opacity: 1;
}
.ai-circle .ai-circle-label .i18n {
  font-size: 0.1em;
}
.ai-circle .ai-circle-label:not(.view-show) {
  opacity: 0;
}
.ai-circle:not(.ready) .ai-circle-label {
  opacity: 0;
}
.ai-circle .ai-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ai-circle .ai-bubble {
  position: absolute;
  bottom: -0.2em;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  width: 4em;
  left: 0.3em;
  padding: 0.2em;
  padding-top: 0;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.5);
}
.ai-circle .ai-bubble.show {
  opacity: 1;
}
.ai-circle .ai-bubble.show .close {
  opacity: 1;
}
.ai-circle .ai-bubble.show.answer-bubble .super-label {
  opacity: 1;
  transform: translateX(0);
}
.ai-circle .ai-bubble .carat {
  position: absolute;
  bottom: 0.4em;
  left: -0.14em;
  width: 0px;
  height: 0px;
  border-top: 0.1em solid transparent;
  border-bottom: 0.1em solid transparent;
  border-right: 0.15em solid white;
}
.ai-circle .ai-bubble.auto-bubble {
  background: rgba(255, 255, 255, 0.8);
  height: 2.2em;
  transition: 0s width linear, 0s height linear;
}
.ai-circle .ai-bubble.auto-bubble.view-show {
  height: 1.7em;
}
.ai-circle .ai-bubble.auto-bubble:not(.view-show) {
  transition-delay: 0.5s, 0.5s;
}
.ai-circle .ai-bubble.answer-bubble {
  height: 2.2em;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.33s ease;
}
.ai-circle .ai-bubble.answer-bubble .super-label {
  opacity: 0;
}
.ai-circle .ai-bubble .spacer {
  flex-grow: 1;
}
.ai-circle .ai-bubble .super-label {
  color: white;
  margin-bottom: 0.2em;
  opacity: 1;
  transition: transform 0.33s ease, opacity 0.33s ease;
  background: #26225E;
  margin-left: -0.2em;
  padding: 0.1em 0 0.1em 0.4em;
  margin-right: -0.2em;
}
.ai-circle .ai-bubble .super-label .i18n {
  font-size: 0.15em;
}
.ai-circle .ai-bubble .close {
  position: absolute;
  top: 0.1em;
  right: 0.1em;
  width: 0.15em;
  height: 0.15em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/close_icon_white.svg);
  transition: opacity 0.33s ease;
  opacity: 0;
  z-index: 1;
}
.ai-circle .ai-bubble .close::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: -0.15em;
  top: -0.15em;
}
.ai-circle .ai-bubble .content {
  margin-top: 0.1em;
  margin-bottom: 0.2em;
}
.ai-circle .ai-bubble .content .i18n {
  font-size: 0.15em;
}
.ai-circle .ai-bubble .content .i18n p {
  margin-bottom: 1em;
}
.ai-circle .ai-bubble .reason {
  font-family: AppFontBold;
}
.ai-circle .ai-bubble .reason .i18n {
  font-size: 0.12em;
}
.ai-circle .ai-bubble .buttons {
  margin: 0.2em 0;
  border-bottom: 1px solid black;
}
.ai-circle .ai-bubble .button {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid black;
}
.ai-circle .ai-bubble .button .label {
  font-size: 1em;
  width: calc(100% - 0.2em);
}
.ai-circle .ai-bubble .button .arrow {
  width: 0.2em;
  height: 0.4em;
  background-size: auto 40%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/carat_right_icon.svg);
}
.ai-circle .ai-bubble .button .i18n {
  font-size: 0.15em;
}
.ai-circle .ai-bubble .input {
  display: flex;
  flex-direction: row;
  border: 1px solid black;
  position: relative;
}
.ai-circle .ai-bubble .input input {
  font-size: 0.15em;
  width: 100%;
  padding: 0.5em 1.2em;
  border: none;
  padding-right: 2.5em;
}
.ai-circle .ai-bubble .input .submit {
  width: 0.5em;
  height: 100%;
  background-size: auto 40%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/carat_right_icon.svg);
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
}
.ai-circle .ai-bubble .cta {
  margin-top: 0.2em;
  display: flex;
  flex-direction: row;
  color: #2A7AB7;
  align-items: center;
}
.ai-circle .ai-bubble .cta .i18n {
  font-size: 0.15em;
}
.ai-circle .ai-bubble .cta .arrow {
  width: 0.5em;
  height: 0.25em;
  background-size: auto 40%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/arrow.png);
}
.ai-circle .ai-bubble .loader {
  width: 100%;
  height: 2em;
  position: relative;
}
.ai-circle .ai-bubble .loader::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1em;
  background-image: linear-gradient(to right, #ddd 0%, #ccc 100px, #ddd 200px, #ddd 1000px);
  border-radius: var(--border-radius);
  animation: 1.5s shimmer2 infinite linear;
}
@keyframes shimmer2 {
  from {
    background-position: 0px;
  }
  to {
    background-position: 400px;
  }
}

.load_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
  background: var(--load-cover);
  transition: 0.3s opacity ease;
}

#body.loaded .load_cover {
  opacity: 0;
  pointer-events: none;
}

.cursor_indicator {
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50% 50%;
  box-shadow: 0 0 0.1em 0 rgba(255, 255, 255, 0.5) inset, 0 0 0.1em 0 rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 61%;
  opacity: 0;
  transition: 0.2s opacity ease, 0.6s transform ease;
  pointer-events: none;
}

.no_highlights_message .i18n {
  font-style: italic;
  font-size: 0.1em;
}
.no_highlights_message.hidden {
  display: none;
}

.side_menu_opener {
  position: absolute;
  bottom: 1.1em;
  width: 0.2em;
  height: 0.8em;
  left: 0em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40% auto;
  background-image: url(../icons/tour/carat_right_icon.svg);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: var(--card-bg);
}
.side_menu_opener:not(.show),
/*.side_menu_opener.view-show,*/
#body[mode=value] .side_menu_opener:not(.from_features) {
  transform: translate(-100%) !important;
}

[mode="value"] .side_menu_opener {
    display: none;
}

.return_button {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.3em;
  width: 2em;
  transition: 0.5s opacity ease, 0.5s transform ease;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.return_button .button {
  width: 0.3em;
  height: 0.3em;
  margin-right: 0.11em;
  /*background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% auto;*/
/*  background-image: url(../icons/tour/return.svg);*/
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  display:flex;
  align-items:center;
  justify-content:center;
}
.return_button .button img,
.return_button .button svg {
  width:50%;
}
.return_button .text {
  color: var(--font-color-floating);
  display: flex;
  align-items: center;
}
.return_button .text .i18n {
  font-size: 0.128em;
  line-height: 1.21;
}
#body.no-back .return_button,
#body .return_button:not(.loaded),
#body .return_button:not(.view-show) {
  pointer-events: none;
  opacity: 0;
  transform: translate(0, -50%);
}
#body.phone:not(.no-back) .return_button {
  /*margin: 0;
  justify-content: center;
  width: 0.4em;
  z-index: unset;*/
  margin: 0.15em;
}
#body.phone:not(.no-back) .return_button .button {
/*  margin: 0;*/
}
#body.phone:not(.no-back) .return_button + .left_bar_button {
/*  margin-left: 0.03em;*/
}
#body.phone.no-back .return_button {
  display: none;
}

@keyframes innerdot {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes outerdot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.version {
  position: absolute;
  right: 1.5em;
  font-size: 0.15em;
  top: 1.9em;
}

html:not(.bodyPhone) .phone_only {
  display: none !important;
}

html.bodyPhone {
  font-size: 100px !important;
}
html.bodyPhone .hide_phone {
  display: none !important;
}
html.bodyPhone .top_bar {
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: 10;
}
html.bodyPhone .top_bar .left_bar_buttons {
  top: 0;
    height: 0.9em;
    background: var(--nav-bg);
    color: var(--font-color-matted);
    pointer-events: auto;
    left: 0;
    width: 100%;
    justify-content: space-between;
    transition: 0.5s opacity ease, 0.5s transform ease;
    border-bottom: 1px solid #EDF0F0;
    padding: 0 0.15em;
    box-sizing: border-box;
    padding-top: 0.5em;
}
html.bodyPhone .top_bar .left_bar_button:not(.contact_specialist):not(.reset) {
  margin:0;
}
html.bodyPhone .top_bar .left_bar_buttons[data-mode=basic] {
  height: 0.6em;
}
html.bodyPhone .top_bar .right_bar_buttons {
  bottom: 0;
  height: 0.6em;
  background: var(--nav-bg);
  color: var(--font-color-matted);
  pointer-events: auto;
  left: 0;
  width: 100%;
  justify-content: space-around;
  transition: 0.5s opacity ease, 0.5s transform ease;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button {
  border-right: none;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  box-sizing: border-box;
  flex-basis: 0.7em;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: center;
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .button_icon_svg {
  position: relative;
  width: 0.235em;
  height: 0.25em;
  display: flex;
  flex-shrink: 0;
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .button_icon_svg img,
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .button_icon_svg svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.top_bar .right_bar_buttons .right_bar_button .button_icon_svg svg {
  position: relative;
  width: 100%;
  height: 0.23em;
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .menu {
  bottom: 0.77em;
  top: auto;
  left: 0;
  height: calc(100vh - 1.8em);
  height: calc(100dvh - 1.8em);
  border-top: 1px solid #ddd;
  border-radius: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  box-sizing: border-box;
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .menu::after {
  content: "";
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 1px;
  border: none;
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .menu.ar_menu, html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .menu.settings_menu, html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .menu.capture_image_menu {
  width: 100%;
  box-sizing: border-box;
}
html.bodyPhone .top_bar .logo {
  position: absolute;
  left: 0.15em;
  max-width: 1.1em;
  object-fit: contain;
}
html.bodyPhone .top_bar .left_bar_button.contact_specialist,
html.bodyPhone .top_bar .reset {
  position: absolute;
  top: 0.12em;
  right: 0;
  padding: 0.07em 0.17em;
  height: auto;
  border-bottom: 1px solid black;
}
html.bodyPhone .top_bar .left_bar_button.contact_specialist .icon,
html.bodyPhone .top_bar .reset .icon {
  margin: 0.0em 0.1em;
  margin-left: 0;
}
html.bodyPhone .top_bar:not(.loaded) .left_bar_buttons {
  transform: translate(0, -100%);
}
html.bodyPhone .top_bar:not(.loaded) .right_bar_buttons {
  transform: translate(0, 100%);
}
html.bodyPhone .toolbar_label {
  position: relative;
  width: fit-content;
  margin-left: 0;
  margin-top: 0.06em;
  white-space: nowrap;
}
/*html.bodyPhone .toolbar_label[data-text=ai_guide] {
  margin-top: 0.3em;
}*/
html.bodyPhone .main_content {
  position: absolute;
  top: 0.9em;
  bottom: 0.6em;
  padding: 0;
}
html.bodyPhone #body[mode=basic] .main_content {
  top: 0.6em;
  bottom: 0.6em;
}
html.bodyPhone .ai-circle__ctr::before,
html.bodyPhone .ai-circle__ctr::after {
  display: none !important;
}
html.bodyPhone .ai-circle {
  background: none;
}
/*html.bodyPhone .ai_phone_button.right_bar_button .ai_input_stars {
  border-radius: 50% 50%;
  width: 0.23em;
  height: 0.23em;
  outline: 0.03em solid rgba(38, 34, 98, 0.2);
  padding: 0;
  position: absolute;
  background:;
}
*/
/*html.bodyPhone .ai_phone_button.right_bar_button .ai_input_stars img,
html.bodyPhone .ai_phone_button.right_bar_button .ai_input_stars svg {    
    top: 25%;
    left: 25;
    width: 50%;
    height: 50%;
}
*/
html.bodyPhone .ai_phone_button.right_bar_button svg path {
  stroke:var(--font-color-matted);
  fill:var(--font-color-matted);
}

html.bodyPhone .ai_phone_button.right_bar_button.view-show svg path {
  stroke:white;
  fill:white;
}


html.bodyPhone .viewbox {
  left: 0 !important;
  right: 0 !important;
}
html.bodyPhone .card_container {
  bottom: 0;
  right: 0;
  left: 0;
}
html.bodyPhone .card_container .animation_card {
  width: 100%;
  border-radius: 0;
  padding-top: 0.8em;
  transition-delay: 0s !important;
  background: transparent;
  box-shadow: none;
}
html.bodyPhone .card_container .animation_card.no_expand .sidecar_image img {
  height: unset;
}
html.bodyPhone .card_container .animation_card::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 0.8em);
  top: 0.8em;
  background: var(--card-bg);
  border-top-right-radius: 0.1em;
  border-top-left-radius: 0.1em;
}
html.bodyPhone .card_container .animation_card.drag_close {
  transform: translate(0, 100%) translate(0, -1.15em) !important;
}
html.bodyPhone .card_container .animation_card .close {
  transform: rotate(90deg);
  background-image: url(../icons/tour/carat_right_icon.svg);
}
html.bodyPhone .card_container .animation_card:not(.show).view-show {
  transform: translate(100%, 100%) translate(0, -0.4em) !important;
}
html.bodyPhone .card_container .animation_card.show.view-show {
  transform: translate(0, 100%) translate(0, -0.4em) !important;
}
html.bodyPhone .card_container .animation_card.show.view-show .close {
  transform: rotate(-90deg);
}
html.bodyPhone .card_container .animation_card .hotspot_button_row {
  justify-content: flex-end;
  width: calc(100% - 0.2em);
  top: 0.05em;
  left: auto;
  right: 0;
}
html.bodyPhone .card_container .animation_card .hotspot_button_row .hotspot_script_button {
  background: var(--card-bg);
  border: none;
  margin-left: 0.1em;
  height: 0.44em;
  margin: 0.22em 0.2em 0 0;
  margin-left: 0px;
  margin-left: 0px;
  padding: 0 0.26em;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  pointer-events: auto;
  cursor: pointer;
}
html.bodyPhone .card_container .animation_card .card_vcms_links {
  position: relative;
  z-index: 1;
}
html.bodyPhone .card_container .animation_card .card_vcms_links .vcms-link .i18n,
html.bodyPhone .card_container .animation_card .card_vcms_links .vcms-menu-link .i18n {
  font-size: var(--phone-fontsize);
}
html.bodyPhone .card_container .animation_card .sidecar_title,
html.bodyPhone .card_container .animation_card .sidecar_image,
html.bodyPhone .card_container .animation_card .sidecar_body {
  position: relative;
}
html.bodyPhone .card_container .animation_card .sidecar_image::before {
  left: 0.3em;
  width: calc(100% - 0.6em);
}
html.bodyPhone .card_container .animation_card .sidecar_image::after {
  right: 0.35em;
}
html.bodyPhone .card_container .animation_card .sidecar_image .play_circle {
  right: calc(0.35rem + 0.8em);
}
html.bodyPhone .phone_drag_overflow {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--card-bg);
}
html.bodyPhone .value_categories {
  width: 100%;
  padding: 0.1em;
  width: 100%;
  border-radius: 0;
  border-top-right-radius: 0.1em;
  border-top-left-radius: 0.1em;
  position: absolute;
  background: var(--card-bg);
  color: var(--font-color-matted);
  padding: 0.3em;
  box-sizing: border-box;
  max-height: calc(100% - 0.6em);
  overflow: auto;
  scrollbar-color: #CCC transparent;
  scrollbar-width: thin;
  bottom: 0;
  padding-top: 0;
  pointer-events: auto !important;
}
html.bodyPhone #body:not(.has-segment-buttons) .value_categories.drag_close {
  transform: translate(0, 100%) translate(0, -0.35em) !important;
}
html.bodyPhone #body.has-segment-buttons .value_categories.drag_close {
  transform: translate(0, 100%) translate(0, -0.75em) !important;
}
html.bodyPhone .value_categories .text .value_category_text {
  position: static;
}
html.bodyPhone .value_categories .text .value_category_text:not(.show) {
  display: none !important;
}
html.bodyPhone .value_categories .menu {
  transform: none !important;
}
html.bodyPhone .value_categories .value_category_item {
  border-left: 2px solid #E3E6E8;
  margin: 0;
  padding: 0.1em;
}
html.bodyPhone .value_categories .value_category_more {
  font-family: AppFontBold;
  display: flex;
  pointer-events: auto;
  margin-top: 0.2em;
}
html.bodyPhone .value_categories .value_category_more::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/carat_right_icon.svg);
  margin: 0em;
  margin-right: 0.06em;
  height: 0.08em;
  width: 0.3em;
  display: block;
  margin-top: 0.04em;
}
html.bodyPhone .value_categories .value_category_more .i18n {
  font-size: 0.15em;
}
html.bodyPhone .right_bar_button.ar_button {
  order: 0;
}
html.bodyPhone .highlight_card_arrows {
  order: 1;
  position: relative;
  left: auto;
  transform: none !important;
  flex-grow: 1;
  justify-content: center;
}
html.bodyPhone .highlight_card_arrows .arrow {
  background-color: #D2D2D3;
}
html.bodyPhone .highlight_card_arrows:not(.view-show) {
  display: none !important;
}
html.bodyPhone .highlight_card_arrows:not(.hide_phone).view-show {
  display: flex !important;
}
html.bodyPhone .hotspot_button_row {
  position: absolute;
}
html.bodyPhone .right_bar_button.share {
  order: 2;
}
html.bodyPhone .right_bar_button.settings {
  order: 3;
}
html.bodyPhone .right_bar_button.reset_icon {
  order: 4;
  background-size: 36% auto;
}
html.bodyPhone .highlight_card_arrows.view-show ~ .settings,
html.bodyPhone .highlight_card_arrows.view-show ~ .reset_icon {
  display: none;
}
html.bodyPhone #body[mode=value] .highlight_card_arrows.view-show ~ .ar_button {
  display: none;
}
html.bodyPhone .value_categories_phone {
  position: absolute;
  top: 0.59em;
  left: 0;
  width: 100%;
  transition: 0.5s opacity ease, 0.5s transform ease;
  border-bottom: 1px solid var(--nav-bg);
}
html.bodyPhone .value_categories_phone:not(.show) {
  transform: translate(0, -100%);
}

html.bodyPhone .value_categories_phone .value_category_item_back {
  height: 0.4em;
  width:100%;
  box-sizing: border-box;
}
html.bodyPhone .value_categories_phone .value_category_item_back .crumb_wrapper {
  transition: 0.5s opacity ease, 0.5s transform ease;
  position:absolute;
  width: calc(100% - 0.5em);
  left: 0;
  display: flex;
  padding-left: 0.1em;
}
html.bodyPhone .value_categories_phone .value_category_item_back:not(.show) .crumb_wrapper {
  transform: translate(-100%);
}

html.bodyPhone .value_categories_phone .card_label_row {
  width: 100%;
  background: var(--nav-bg);
  color: var(--font-color-matted);
  border-top: 1px solid #EAEDEE;
}
html.bodyPhone .value_categories_phone .card_label_row:not(.show) {
  display: none !important;
}
html.bodyPhone .value_categories_phone .card_label_row .card_label {
  padding: 0.1em;
  color: var(--accent);
}
html.bodyPhone .value_categories_phone .card_label_row .card_label .i18n {
  font-size: 0.15em;
}
html.bodyPhone .value_categories_phone .card_label_row .close {
  position: absolute;
  height: 0.15em;
  width: 0.15em;
  right: 0.1em;
  top: 0.12em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/close_icon.svg);
}
html.bodyPhone .value_categories_phone .buttons,
html.bodyPhone .value_categories_phone .back_buttons {
  border-top: 1px solid #ddd;
  width: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--nav-bg);
  color: var(--font-color-matted);
  white-space: nowrap;
  overflow: auto;
  justify-content: flex-start;
}
html.bodyPhone .value_categories_phone .buttons:not(.show),
html.bodyPhone .value_categories_phone .back_buttons:not(.show) {
  display: none;
}
html.bodyPhone .value_categories_phone .buttons .value_category_item,
html.bodyPhone .value_categories_phone .back_buttons .value_category_item {
  padding: 0.1em 0.2em;
}
html.bodyPhone .value_categories_phone .buttons .value_category_item.view-show,
html.bodyPhone .value_categories_phone .back_buttons .value_category_item.view-show {
  font-family: AppFontBold;
}
html.bodyPhone .value_categories_phone .buttons .value_category_item .i18n,
html.bodyPhone .value_categories_phone .back_buttons .value_category_item .i18n {
  font-size: 0.15em;
}
html.bodyPhone .value_categories_phone .buttons .value_category_item_back,
html.bodyPhone .value_categories_phone .back_buttons .value_category_item_back {
  display: flex;
  padding-left: 0.1em;
}
html.bodyPhone .value_categories_phone .buttons .value_category_item_back .phone_crumb,
html.bodyPhone .value_categories_phone .back_buttons .value_category_item_back .phone_crumb {
  margin-right: 0.06em;
  display: flex;
}
html.bodyPhone .value_categories_phone .buttons .value_category_item_back .phone_crumb::after,
html.bodyPhone .value_categories_phone .back_buttons .value_category_item_back .phone_crumb::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/carat_right_icon.svg);
  margin: 0em;
  height: 0.1em;
  width: 0.3em;
  display: block;
  margin-top: 0.03em;
  opacity: 0.3;
}
html.bodyPhone .value_categories_phone .buttons .value_category_item_back .close,
html.bodyPhone .value_categories_phone .back_buttons .value_category_item_back .close {
  position: absolute;
  height: 0.2em;
  width: 0.2em;
  right: 0.1em;
  top: 0.12em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/close_icon.svg);
}
html.bodyPhone .tour_title {
/*  transform: translate(0, 0);*/
/*  margin-top: 0.2em;*/
  margin-left: 0.15em;
  z-index: 0;
}
html.bodyPhone .tour_title::before {
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 91%);
  width: calc(100vw + 0.3em);
}



html.bodyPhone .side_menu.value_version {
  top: -0.3em;
  border-top: 1px solid #DDD;
  border-radius: 0px;
  left: 0;
  width: 100%;
  height: calc(100vh - 0.5em - 0.4em - 0.4em);
  height: calc(100dvh - 0.5em - 0.4em - 0.4em);
  max-height: calc(100vh - 0.5em - 0.4em - 0.4em);
  max-height: calc(100dvh - 0.5em - 0.4em - 0.4em);
}
html.bodyPhone .side_menu[data-view=basic_menu] {
  width: 100vw;
  left: 0;
  border-radius: 0;
  border-top-right-radius: 0.1em;
  border-top-left-radius: 0.1em;
  margin-top: 0;
  top: calc(100vh - 1.5em);
  top: calc(100dvh - 1.5em);
  position: absolute;
  height: calc(100% - 0.85em);
  border-top: 1px solid #ddd;
  padding: 0.1em;
  padding-top: 0;
}
html.bodyPhone .side_menu[data-view=basic_menu] .menu_nav .menu_nav_tab::after {
  display: none !important;
}
html.bodyPhone .side_menu.drag_close {
  transform: translate(0, -1em) !important;
}
html.bodyPhone .ai-circle .ai-bubble.answer-bubble {
  top: calc(-100vh + 2.35em);
  top: calc(-100dvh + 2.35em);
  left: -0.3em;
  width: 100vw;
  box-sizing: border-box;
  bottom: auto;
  height: calc(100vh - 1.35em);
  height: calc(100dvh - 1.35em);
  border-top: 1px solid #DDD;
  border-radius: 0px;
}
html.bodyPhone .ai-circle .ai-bubble.answer-bubble::after {
  content: "";
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
}
html.bodyPhone .ai-circle .ai-bubble .spacer {
  display: none;
}
html.bodyPhone .ai-circle .ai-bubble .super-label {
  margin-left: 0;
  transform: translateX(0);
}
html.bodyPhone .ai-circle .ai-bubble .input {
  margin-bottom: 0.3em;
}
html.bodyPhone .ai-circle .ai-bubble .super-label {
  margin-left: -0.4em;
}
html.bodyPhone .ai-circle .ai-bubble .super-label,
html.bodyPhone .ai-circle .ai-bubble .input {
  order: 1;
}
html.bodyPhone .ai-circle .ai-bubble .buttons,
html.bodyPhone .ai-circle .ai-bubble .reason,
html.bodyPhone .ai-circle .ai-bubble .loader,
html.bodyPhone .ai-circle .ai-bubble .content {
  order: 2;
}
html.bodyPhone .ai-cover {
  display: none;
}
html.bodyPhone .resources_overlay {
  background: var(--card-bg);
  border-top: 1px solid #ddd;
  pointer-events: auto !important;
  padding: 0.15em;
}
html.bodyPhone .resources_overlay .resource_content,
html.bodyPhone .resources_overlay .bg_videos {
  display: none;
}
html.bodyPhone .resources_overlay .resource_selection {
  width: 100%;
  right: 0.1em;
  position: static;
  bottom: 0;
  height: 100%;
}

html.bodyPhone .resources_overlay .resource_selection .resource_tiles .tile .resource_kind,
html.bodyPhone .resources_overlay .resource_selection .resource_tiles .tile .resource_title {
  font-size:var(--phone-fontsize);
}


html.bodyPhone .resources_overlay .resource_selection .header {
  font-family: "AppFont";
  color: var(--font-color-matted);
  border-bottom: none;
}
html.bodyPhone .resources_overlay .resource_selection .resource_nav_arrows {
  display: none;
}
html.bodyPhone .resources_overlay .resource_selection .resource_tiles {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
  height: calc(100vh - 2.2em);
  height: calc(100dvh - 2.2em);
}
html.bodyPhone .resources_overlay .resource_selection .resource_tiles .tile {
  width: calc(100% - 6px);
  margin: 0;
  margin-bottom: 0.3em;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
  margin-left: 3px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 3.1em;
  flex-shrink: 0;
}
html.bodyPhone .resources_overlay .resource_selection .resource_tiles .tile .thumbnail.cover {
  height: 40%;
}
html.bodyPhone .resources_overlay .resource_selection .resource_tiles .tile.view-show {
  border: none;
  border-radius: var(--border-radius);
}
html.bodyPhone .resources_overlay .resource_selection .view_collateral {
  transform: translate(0px);
  border: 1px solid black;
  margin: 0.1em 0.15em;
  padding: 0.1em 0.2em;
  height: auto;
  width: auto;
  opacity: 1;
}
html.bodyPhone .version {
  right: 6.1em;
  top: 3em;
}
html.bodyPhone .animation_card > *:not(.sidecar_body) {
  flex-shrink: 0;
}
html.bodyPhone .animation_card {
  padding-left: 0;
  padding-right: 0;
}
html.bodyPhone .animation_card .sidecar_title,
html.bodyPhone .animation_card .sidecar_body {
  width: 100%;
  padding-left: 0.3em;
  padding-right: 0.3em;
  box-sizing: border-box;
  background: var(--card-bg);
}
html.bodyPhone .animation_card .sidecar_body {
  padding-bottom: 0.3em;
  margin-bottom: -0.3em;
}
html.bodyPhone .animation_card .sidecar_image {
  padding-left: 0.3em;
  padding-right: 0.3em;
  box-sizing: border-box;
}

html.bodyPhone .ai_input_stage[data-ai-stage="prompt"] {
  display:none !important;
}


html.bodyPhone .value_category_item_back.from_hotspot .phone_crumb + .i18n  {
   color:var(--accent);
   font-family: AppFontBold;
   text-overflow: ellipsis;
   overflow: hidden;
}

html.bodyPhone .card_container .animation_card:not(.show) {
  transform:translate(0,150%);
}

html.bodyPhone .value_categories:not(.show) {
  transform:translate(0,100%) translate(0,1em);
}

html.bodyPhone .side_menu.basic_version:not(.show) {
  transform: translate(0, 1em) !important;
}

html.bodyPhone .side_menu.value_version:not(.show) {
  transform: translate(0, -100%) !important;
}

html.bodyPhone .top_bar .left_bar_buttons .left_bar_button .i18n {
  font-size: var(--phone-fontsize);
}

html.bodyPhone .tour_title .i18n {
 font-size: var(--phone-fontsize); 
}

html.bodyPhone .card_container .animation_card .sidecar_body .i18n {
  font-size: var(--phone-fontsize); 
}
html.bodyPhone .card_container .animation_card .hotspot_script_button .i18n {
 font-size: var(--phone-fontsize);  
}
html.bodyPhone .side_menu .menu_panel .side_menu_item .i18n {
 font-size: var(--phone-fontsize);  
}

html.bodyPhone .side_menu.value_version .menu_instructions .i18n {
 font-size: var(--phone-fontsize);   
}

html.bodyPhone .side_menu.value_version .menu_title {
  display:none;
}

html.bodyPhone .side_menu.value_version .menu_instructions {
  margin-top:0;
}

html.bodyPhone .side_menu.value_version .menu_panel_container .menu_panel .side_menu_item .thumb {
  height: 0.35rem;
  width: 0.35rem;
}

html.bodyPhone .side_menu.value_version .menu_panel_container .menu_panel .side_menu_item::after {
    width: 0.09em;
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button .close_icon_cover {
  width: 100%;
  height: 100%;
  position: absolute;
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button::before {
  content:"";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
/*  z-index: -1;*/
  background: transparent;
  pointer-events: none;
}
html.bodyPhone #body[data-ar-active="true"] .top_bar .right_bar_buttons .right_bar_button.ar_button::before,
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button.view-show::before {
  background-color: var(--accent);  
}

html.bodyPhone #body[data-ar-active="true"] .right_bar_button.ar_button .toolbar_label,
html.bodyPhone .right_bar_button.view-show .toolbar_label {
  color:var(--contact-icon-color-active-mobile);
}

html.bodyPhone .top_bar .right_bar_buttons .right_bar_button.share.view-show .button_icon_svg svg path {
  fill: var(--contact-icon-color-active-mobile);
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button.settings.view-show .button_icon_svg svg path {
  fill: var(--contact-icon-color-active-mobile);
  stroke: var(--contact-icon-color-active-mobile);
}
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button.ar_button.view-show .button_icon_svg svg path {
  stroke: var(--contact-icon-color-active-mobile);
  fill: var(--contact-icon-color-active-mobile);
}
html.bodyPhone #body[data-ar-active="true"] .top_bar .right_bar_buttons .right_bar_button.ar_button .button_icon_svg svg path,
html.bodyPhone .top_bar .right_bar_buttons .right_bar_button.ar_button.view-show .button_icon_svg svg path {
  stroke: var(--contact-icon-color-active-mobile);
  fill: var(--contact-icon-color-active-mobile);
}

.left_bar_button.return_button {
  display:none !important;
}

.view-container[data-view=closed] {
  display: none !important;
}

.vcms-link, 
.vcms-menu-link {
  color: var(--secondary-color);
  margin-top: 0.3em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
}
.vcms-link::after,
.vcms-menu-link::after {
  content: "";
  width: 0.1475em;
  height: 0.075em;
  margin-left: 0.1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/arrow.png);
}

.feedback_frame {
  position: relative;
  width: 100%;
}
.feedback_frame .feedback {
  position: relative;
}
.feedback_frame .feedback .question {
  margin: 0 1em 1em 0;
}
.feedback_frame .feedback .feedback_bg {
  display: none;
}
.feedback_frame .feedback .feedback_card {
  border-top: none;
  box-shadow: none;
  background: none;
  padding: 0;
}
.feedback_frame .feedback .feedback_card .close {
  display: none;
}
.feedback_frame .feedback .feedback_card .title {
  display: none;
}
.feedback_frame .feedback .feedback_card .bold {
  font-weight: normal;
  font-family: AppFont;
}
.feedback_frame .feedback .feedback_card input {
  text-align: left;
}
.feedback_frame .feedback .feedback_card .submit {
  background: gray;
  margin-right: 1em;
}
.feedback_frame .feedback .feedback_card .desc_box {
  font-family: AppFont;
  padding: 1em;
  height: 5em;
}
.feedback_frame .feedback .feedback_card .checkmark {
  background-color: gray;
}

.phone_handle {
  width: 100%;
  height: 0.35em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone_handle::before {
  content: "";
  position: absolute;
  top: -1em;
  height: 2em;
  left: 0;
  width: 100%;
}
.phone_handle::after {
  content: "";
  width: 0.3em;
  border-radius: 0.2em;
  background: #B2B2B2;
  height: 0.04em;
}

.toolbar_label {
  color: var(--font-color-matted);
  width: 0.5em;
  pointer-events: none;
  text-align: center;
  margin-left: -0.13em;
  margin-top: 0.25em;
}
.toolbar_label .i18n {
  font-size: 0.1em;
}

.ar_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ar_container .help_message {
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  padding: 0.2em;
  color: black;
  width: 80%;
}
.ar_container .help_message .i18n {
  font-size: 0.15em;
}
.bodyTablet.bodyIOS .ar_container .help_message {
  width: 3em;
  position: absolute;
  top: 1.3em;
  right: 1em;
}
.ar_container .move_button {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% auto;
  background-image: url(../icons/tour/move_ar.png);
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  width: 0.3em;
  height: 0.3em;
  outline: 0.05em solid rgba(255, 255, 255, 0.2);
  border-radius: 50% 50%;
  background-color: white;
}

#_ffpdfplayer_close_ {
  background: black !important;
}

.partner_logo {
  position: absolute;
  bottom: 0;
  right: 0.1em;
  display: flex;
  pointer-events: none;
  transition: 0.5s opacity ease;
  transition-delay: 1s;
}
.partner_logo.show:not(.loaded), .partner_logo:not(.loaded) {
  opacity: 0 !important;
}
.partner_logo img {
  height: 0.6em;
  width: auto;
  margin-right: 0.1em;
}

#body.vr .top_bar .right_bar_buttons .right_bar_button.ar_button {
  background-image: url(../icons/tour/vr.png);
  background-size: 50% auto;
}

#body.vr .top_bar .right_bar_buttons .right_bar_button.ar_button  .button_icon_svg {
  display:none;
}

#body.vr .top_bar .right_bar_buttons .right_bar_button.ar_button .tooltip.ar_tip {
  display: none;
}

#body:not(.vr) .tooltip.vr_tip {
  display: none;
}

#body.attract_on .left_bar_button,
#body.attract_on .right_bar_button,
#body.attract_on .ai-circle__ctr,
#body.attract_on .highlight_card_arrows,
#body.attract_on .side_menu_opener,
#body.attract_on .animation_card .close,
#body.attract_on .partner_logo {
  display: none !important;
}
#body.attract_on.show_attract_banner .card_container.show {
  opacity: 0 !important;
  pointer-events: none !important;
}

.attract_banner {
  position: absolute;
  z-index: 20;
  background: rgba(38, 34, 98, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: 0.5s opacity ease, 0.5s transform 0.5s ease;
  left: 0;
  width: 100%;
  bottom: 1em;
  text-align: center;
  transform: translate(0, -25%);
}
.attract_banner .attract_label {
  color: var(--font-color-floating);
  padding: 0.3em;
  margin: auto;
  transition: 0.5s transform 0.5s ease;
  transform: translate(0, -12%);
}
.attract_banner .attract_label .i18n {
  font-size: 0.5em;
}
#body.attract_on.show_attract_banner .attract_banner {
  opacity: 1;
  transform: translate(0, 0%);
  transition-delay: 0s;
}
#body.attract_on.show_attract_banner .attract_banner .attract_label {
  transform: translate(0, 0%);
  transition-delay: 0s;
}

.kiosk_qr {
  position: absolute;
  z-index: 20;
  top: 0.3em;
  right: 0.3em;
  height: 1.6em;
  width: 1.6em;
  border: 0.1em solid white;
  pointer-events: none;
  transition: 0.5s opacity ease;
  background:white;
}
.kiosk_qr:not(.loaded) {
  opacity: 0;
}
.kiosk_qr canvas,
.kiosk_qr img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#body:not(.attract_on):not(.kaon) .kiosk_qr {
  display: none;
}

#body.hide_qr .qr_only {
  display: none !important;
}

#body:not(.hide_qr) .hide_qr {
  display: none !important;
}

#body:not(.kaon) .kiosk_only {
  display: none !important;
}

#body.kaon {
  display: flex;
}
#body.kaon .top_bar {
  order: 2;
}
#body.kaon .top_bar:not(.loaded) {
  transform: translate(0, 100%) !important;
}
#body.kaon .top_bar .left_bar_buttons .left_bar_button .highlight_bar {
  top: 0;
  bottom: auto;
}
#body.kaon .top_bar #fullscreen,
#body.kaon .top_bar .contact_specialist,
#body.kaon .top_bar .right_bar_button.share,
#body.kaon .top_bar .right_bar_buttons .right_bar_button .tooltip {
  display: none !important;
}
#body.kaon .top_bar .right_bar_buttons .right_bar_button .menu {
  bottom: 0.7em;
  top: auto;
  transform-origin: 0 100%;
}
#body.kaon .top_bar .right_bar_buttons .right_bar_button .menu::after {
  bottom: -0.9em;
  top: auto;
  border-bottom: none;
  border-top: 1em solid var(--nav-bg);
}
#body.kaon .top_bar .right_bar_buttons .right_bar_button.reset_icon {
  border-right: none;
}
#body.kaon[mode=basic] .right_bar_buttons .right_bar_button.settings {
  border-right: none;
}
#body.kaon[mode=value] .highlight_card {
  right: auto;
  /*left: 1em;
  bottom: 0;*/
  top: auto;
}
#body.kaon[mode=value] .highlight_card:not(.show) {
  transform: translate(-100%, 0%);
}
#body.kaon[mode=value] .highlight_card.show {
  transform: translate(0%, 0%) !important;
}
#body.kaon .card_container .animation_card {
  right: auto;
/*  left: 1em;*/
  max-height: calc(100% - 1.6em);
}
#body.kaon .card_container .animation_card:not(.show) {
  transform: translate(-100%);
}
#body.kaon .card_container .animation_card > .sidecar_body:not(:has(~ .hotspot_button_row)) {
  margin-bottom: 0.3em;
}
#body.kaon .card_container .animation_card .close {
  top: auto;
  bottom: 0.33em;
  z-index:1;
}
#body.kaon .viewbox[data-view=sidecars][data-track-view$="-view"],
#body.kaon .viewbox[data-view=highlight_cards] {
  left: 22%;
  right: 0;
}
#body.kaon .side_menu,
#body.kaon .side_menu.value_version {
  position: absolute;
  top: auto;
/*  left: 1.5em;*/
  height: 70vh;
  height: 70dvh;
  max-height: calc(100vh - 3.5em);
  max-height: calc(100dvh - 3.5em);
  bottom: 1.2em;
}
#body.kaon .side_menu.value_version .menu_panel_container {
  margin-bottom: 0.3em;
}
#body.kaon .side_menu .close {
  top: auto;
  bottom: 0.2em;
  right: 0.2em;
}
#body.kaon .resources_overlay .selected_resource {
  top: 3.1em;
}
#body.kaon .resources_overlay .resource_selection .grid_nav {
  top: 100%;
}
#body.kaon .resources_overlay .grid_view {
  grid-template-rows: 3.2em 1fr;
  padding: 0.3em 1.3em 0 2em;
  grid-template-areas: "empty header       " "menu  resource_grid";
}
#body.kaon .resources_overlay .grid_view .categories {
  bottom: 0.2em;
}
#body.kaon .value_categories {
  flex-grow: 1;
  position:relative;
}
#body.kaon .value_categories .menu {
  position: absolute;
  transform: none !important;
  bottom: 0.3em;
/*  left: 1.5em;*/
}
#body.kaon.no-back .value_categories .menu {
  bottom:1em;
}

#body.kaon .__video_reveal .close {
  top: auto;
  bottom: 0;
}

#body.kaon:not(.no-back) .return_button {
  order:99;
  margin-bottom:0.8em;
}

#body.kaon:not(.no-back) .tour_title {
  transform: translate(0, 0em);
}

#body.kaon .feature_series_nums {
    width: calc(100% - 3.5em);
}

body.kaon.body1920x1080 .resources_overlay .grid_view .resource_grid {
  height: 3.3em;
}

.feedback .line.subline {
  margin: 0.5em 1em !important;
}

.feedback .line {
  margin: 0.7em 0 !important;
}

.feedback_type_options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feedback_type_options .line.subline {
  margin-left: 0em !important;
}

.feedback_frame {
  font-size: 0.9em;
}

.feedback_contact_options {
  display: flex;
  flex-wrap: wrap;
}
.feedback_contact_options .contact_option_no {
  margin-left: 1em !important;
}

.firstname_line,
.lastname_line {
  display: inline-flex !important;
  width: calc(50% - 0.5em);
}

.feedback .line.firstname_line {
  margin-right: 1em !important;
}

.email_line {
  margin-bottom: 1em !important;
  margin-top: 0.2em !important;
}

.feedback__contact_info_prompt {
  margin: 1.6em 0 0.4em 0;
}

.feedback_frame .feedback .feedback_card .submit {
  background: transparent !important;
  color: var(--secondary-color);
  border: 1px solid #CFD5D8;
}

.animation_card.no_expand .sidecar_image::after, .animation_card.no_expand .sidecar_image::before {
  display: none;
}

.card_container .animation_card.highlight_card .sidecar_image {
  margin-top: 0.2em;
}

#body.ios.tablet #fullscreen,
#body.android.tablet #fullscreen {
  display: none !important;
}
#body.ios.tablet .right_bar_button:has(+ #fullscreen),
#body.android.tablet .right_bar_button:has(+ #fullscreen) {
  border-right: none;
}


.loader_label {
  position: absolute;
  z-index: 1;
  font-size: 0.15em;
  padding: 1em;
}

.ai_guide {
  position: absolute;
  bottom: 0.3em;
  left: 0.3em;
  z-index: 5;
  pointer-events: auto;
  transition:0.5s opacity ease;
}
.ai_guide.view-show {
  opacity:0;
  pointer-events:none;
}
.ai_guide .ai_circle {
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 0.6em;
  height: 0.6em;
}
.ai_guide .ai_circle.prompt {
  z-index: 1;
}
.ai_guide .ai_circle .ai_circle_label {
  position: absolute;
  top: 100%;
  width: 100%;
  text-align: center;
  color: white;
  opacity: 0;
  transition: 0.5s opacity 0.5s ease;
}
.ai_guide .ai_circle .ai_circle_label .i18n {
  font-size: 0.1em;
}
.ai_guide .ai_result_source,
.ai_guide [data-js-nav],
.ai_guide [data-js-vcms],
.ai_guide [data-js-ai-stage],
.ai_guide [data-js-ai-phase] {
  cursor: pointer;
}
.ai_card {
  padding: 0.3em;
  padding-bottom: 0.15em;
  width: 3em;
  position: relative;
  transform-origin: bottom left;
  transition: 0.25s transform ease, opacity 0.25s ease;
}
.ai_card:not(.show) {
  transform: scale(0.5);
}
.ai_card .ai_card_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 2.8em;
  top: auto;
  bottom: 0;
  background: #F8F8F8;
  box-shadow: 0em 0em 0.1em 0em rgba(0, 0, 0, 0.5);
  transition: 0.25s height ease, 0.25s opacity ease;
}
.ai_card .ai_card_bg.view-show {
  opacity: 0;
}

.ai_phase {
  font-family: AppFontLight;
  transition: 0.25s opacity ease, 0.25s transform ease;
  opacity: 0;
  position: absolute;
  left: 0.2em;
  bottom: 0.7em;
  width: calc(100% - 0.4em);
}
.ai_phase:not(.display) {
  display: none;
}
.ai_phase.active {
  opacity: 1;
}
.ai_phase .ai_text_header {
  margin-bottom: 0.15em;
}
.ai_phase .ai_text_header .i18n {
  font-size: 0.15em;
  line-height: 1.4;
}
.ai_phase .ai_text_body .i18n {
  font-size: 0.15em;
  line-height: 1.4;
}

.ai_input_spacer {
  height: 0.3em;
  margin-top: 0.3em;
}

.ai_input_container {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 2em;
/*  border: 1px solid var(--ai-solid);*/
  height: 0.3em;
  transition: 0.5s width ease, 0.5s opacity ease, 0.5s transform ease;
  overflow: hidden;
  width: 3em;
  position: absolute;
  left: 0em;
  bottom: 0.2em;
}
.ai_input_container[data-current-stage=prompt] {
  width: 1.5em;
}
.ai_input_container[data-current-stage=loader] {
  width: 1.2em;
}
.ai_input_container[data-current-stage=question_mark] {
  width: 0.3em;
}
.ai_input_container.view-show {
  transform: translate(0.15em) translate(0.15em);
}
.ai_input_container.view-show[data-current-stage=loader], .ai_input_container.view-show[data-current-stage=question_mark] {
  transform: translate(3.2em) translate(0.15em) translate(-100%);
}
.ai_input_container:not(.active) {
  width: 0.1em;
  opacity: 0;
  pointer-events:none;
}
.ai_input_container:not(.active) .ai_input_stage[data-ai-stage=prompt] .label {
  transition: none;
  opacity: 0;
}
.ai_input_container input {
  background: white;
  border: none;
  width: 23.4em;
  color: #1C1F24;
  outline: none;
  font-size: 0.11em;
/*  margin-left: 0.5em;*/
}
.ai_input_container input::placeholder {
  color: #1C1F24;
}
.ai_input_container .ai_input_stage {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.ai_input_container .ai_input_stage:not(.display) {
  display: none;
}
.ai_input_container .ai_input_stage[data-ai-stage=prompt] {
  width: 100%;
  background: var(--ai-solid);
  color: white;
  height: 100%;
  justify-content: flex-start;
}
.ai_input_container .ai_input_stage[data-ai-stage=prompt] .label {
  transition: 0.25s opacity ease 0.25s;
  white-space: nowrap;
  padding-left: 0.45em;
}
.ai_input_container .ai_input_stage[data-ai-stage=prompt] .label .i18n {
  font-size: 0.11em;
}
.ai_input_container .ai_input_stage[data-ai-stage=input] {
  background: white;
  width: 100%;
  height: 100%;
}
.ai_input_container .ai_input_stage[data-ai-stage=loader] {
  width: 100%;
  background: var(--ai-solid);
  color: white;
  height: 100%;
  padding: 0 0.05em;
}
.ai_input_container .ai_input_stage[data-ai-stage=loader] .label {
  text-align: center;
}
.ai_input_container .ai_input_stage[data-ai-stage=loader] .label .i18n {
  font-size: 0.11em;
}
.ai_input_container .ai_input_stage[data-ai-stage=question_mark] {
  width: 100%;
  background: var(--ai-solid);
  color: white;
  height: 100%;
}
.ai_input_container .ai_input_stage[data-ai-stage=question_mark] .label .i18n {
  font-size: 0.17em;
}
.ai_input_container .ai_input_stage .ai_stop_button {
  margin-left: 0.1em;
  border-radius: 50% 50%;
  background-color: rgba(255,255,255,0.2);
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 0.2em;
  height: 0.2em;
  position:absolute;
  right: 0.04em;
}
.ai_input_container .ai_input_stage .ai_stop_button::after {
  content: "";
  width: 0.08em;
  height: 0.08em;
  background: white;
}
.ai_input_container .ai_input_stage .loader-dots {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 0.04em;
}
.ai_input_container .ai_input_stage .loader-dots .loader-dot {
  border-radius: 50% 50%;
  height: 0.05em;
  width: 0.05em;
  margin-left: 0.04em;
  background: white;
  animation: 1s ai-loader-dot infinite linear;
}
.ai_input_container .ai_input_stage .loader-dots .loader-dot.loader-dot-1 {
  animation-delay: -1s;
}
.ai_input_container .ai_input_stage .loader-dots .loader-dot.loader-dot-2 {
  animation-delay: -0.8s;
}
.ai_input_container .ai_input_stage .loader-dots .loader-dot.loader-dot-3 {
  animation-delay: -0.6s;
}
@keyframes ai-loader-dot {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.ai_input_container .ai_input_arrow {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30% auto;
  background-image: url(../icons/tour/carat_right_icon_white.svg);
  background-color: var(--ai-solid);
  border-radius: 50% 50%;
  width: 0.25em;
  height: 0.25em;
}

.ai_stat_section {
  width: 100%;
  height: 1.7em;
  position: relative;
  overflow: hidden;
  background: #EEE;
  padding: 0.2em;
  box-sizing: border-box;
  border-radius: 0.1em;
  margin-bottom: 0.2em;
}

.ai_stat_dots {
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.ai_stat_dots .ai_stat_dot {
  height: 0.05em;
  width: 0.05em;
  margin-left: 0.03em;
  border-radius: 50% 50%;
  background: #CBCBCB;
}
.ai_stat_dots .ai_stat_dot.active {
  background: var(--ai-solid);
}

.ai_stat {
  opacity: 0;
  position: absolute;
  width: calc(100% - 0.4em);
  transform: translate(50%);
  transition: 0.25s transform ease, 0.25s opacity ease;
}
.ai_stat .i18n {
  font-size: 0.15em;
  line-height: 1.4;
}
.ai_stat.past {
  transform: translate(-50%);
}
.ai_stat.active {
  transform: translate(0%);
  opacity: 1;
}

.ai_did_you_know {
  font-size: 0.1em;
  font-family: AppFontBold;
  margin-bottom: 0.4em;
  display: flex;
}
.ai_did_you_know .i18n {
  padding-bottom: 0.5em;
  position: relative;
}
.ai_did_you_know .i18n::before, .ai_did_you_know .i18n::after {
  content: "";
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #D6DADC;
  display: block;
  transform-origin: left;
  position: absolute;
  width: 100%;
}
.ai_did_you_know .i18n::after {
  border-color: black;
  transform-origin: left;
  transform: scale(0.01);
}
.ai_did_you_know.animate .i18n::after {
  transition: 7.9s transform linear;
  transform: scale(1);
}

.ai_while_waiting {
  margin-bottom: 0.2em;
}
.ai_while_waiting .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}

.ai_please_wait {
  border-top: 1px solid #D6DADC;
  padding-top: 0.15em;
}
.ai_please_wait .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}

.ai_search_input_label .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}

.ai_search_label .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}

.ai_search_results .view_button {
  margin-bottom: 0.1em;
  margin-top: 0.05em;
}
.ai_search_results .view_button .button {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
.ai_search_results .view_button .label .i18n {
  font-size: 0.1em;
  color: var(--secondary-color);
}
.ai_search_results .view_button .arrow {
  width: 0.15em;
  height: 0.15em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/arrow.png);
  margin-left: 0.1em;
}

.ai_back {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
.ai_back .arrow {
  width: 0.15em;
  height: 0.15em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/arrow.png);
  margin-right: 0.1em;
  transform: scaleX(-1);
}
.ai_back .label .i18n {
  font-size: 0.1em;
  color: var(--secondary-color);
}

.ai_found_label {
  padding-top: 0.15em;
  margin-bottom: 0.05em;
  border-top: 1px solid #D6DADC;
  font-family: AppFontBold;
}
.ai_found_label .i18n {
  font-size: 0.11em;
  line-height: 1.4;
}

.ai_result_quote .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}
.ai_result_quote .ai_result_source {
  font-size: 0.7em;
  margin-top: 1.5em;
}
.ai_result_quote .ai_result_source u {
  color: var(--secondary-color);
  font-family: APpFontBold;
}

.ai_no_results .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}

.ai_recommend_label {
  padding-bottom: 0.15em;
  padding-top: 0.15em;
  margin-bottom: 0.15em;
  border-bottom: 1px solid #D6DADC;
}
.ai_recommend_label .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}

.ai_recommend_options .button {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.05em;
}
.ai_recommend_options .button .arrow {
  width: 0.15em;
  height: 0.15em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/arrow.png);
  margin-right: 0.1em;
}
.ai_recommend_options .button .label .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}

.ai_engine_super {
  font-size: 0.1em;
  font-family: AppFontBold;
  margin-bottom: 0.4em;
}

.ai_engine_label {
  padding-bottom: 0.05em;
}
.ai_engine_label .i18n {
  font-size: 0.13em;
  line-height: 1.4;
}

.ai_engine_button {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.05em;
}
.ai_engine_button .arrow {
  width: 0.15em;
  height: 0.15em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/arrow.png);
  margin-left: 0.1em;
}
.ai_engine_button .label .i18n {
  font-size: 0.1em;
  color: var(--secondary-color);
}

.ai_circle_blue:not(.ai_input_stage) {
  opacity: 0;
  transform: scale(0.1);
  transition: 0.3s opacity ease, 0.3s transform ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ai_circle_blue:not(.ai_input_stage).active {
  opacity: 1;
  transform: scale(1);
}
.ai_circle_blue:not(.ai_input_stage).active ~ .ai_circle_label {
  opacity: 1;
}
.ai_circle_blue .ai_pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ai-pulse); 
  animation: 3s ai-pulse infinite ease;
  border-radius: 50% 50%;
}
.ai_circle_blue .ai_pulse.ai_pulse_1 {
  animation-delay: -1.5s;
}
.ai_circle_blue .ai_pulse.ai_pulse_2 {
  animation-delay: -3s;
}
@keyframes ai-pulse {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
.ai_circle_blue:not(.ai_input_stage) .ai_circle_solid {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  border-radius: 50% 50%;
}
.ai_circle_blue .ai_circle_solid {
  background: var(--ai-solid);
}
.ai_circle_blue .ai_circle_stars {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../icons/tour/ai_stars.svg);
}

.ai_question_label {
  position: absolute;
  right: 0.75em;
  white-space: nowrap;
  color: var(--ai-solid);
  font-family: AppFontBold;
  opacity: 0;
  transition: 0.25s opacity ease;
  bottom: 0.3em;
  pointer-events:none;
}
.ai_question_label.active {
  opacity: 1;
  transition-delay: 0.25s;
  pointer-events:auto;
}
.ai_question_label .i18n {
  font-size: 0.1em;
}

.ai_input_container:not(.active) ~ .ai_question_label {
  opacity: 0 !important;
  transition: none !important;
}

.bodyPhone .ai_guide {
  left: 0;
  width: 100%;
  bottom: 0;
}
.bodyPhone .ai_card {
  width: 100%;
  box-sizing: border-box;
  height: calc(100vh - 0.9em - 0.6em);
  height: calc(100dvh - 0.9em - 0.6em);
}
.bodyPhone .ai_card:not(.show) {
  transform: translate(0, 100%);
}
.bodyPhone .ai_card .ai_card_bg {
  height: 100% !important;
}
.bodyPhone .ai_input_container {
  left: -0.1em;
}
.bodyPhone .ai_input_container[data-current-stage=input] {
  width: 3.4em;
}
.bodyPhone .ai_input_container input {
  width: 27.9em;
}
.bodyPhone .ai_input_container[data-current-stage=loader],
.bodyPhone .ai_input_container[data-current-stage=question_mark] {
  transform: translate(95vw) translate(-100%);
}

.ai_phase[data-ai-phase=wait],
.ai_phase[data-ai-phase=results] {
  padding-top: 0.1em;
}

.ai_periods {
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 0.1em;
}
.ai_periods .ai_period {
  color: white;
  font-size: 0.15em;
  animation: 1s ai_period infinite linear;
}
.ai_periods .ai_period.ai_period_1 {
  animation-delay: -1s;
}
.ai_periods .ai_period.ai_period_2 {
  animation-delay: -0.8s;
}
.ai_periods .ai_period.ai_period_3 {
  animation-delay: -0.6s;
}
@keyframes ai_period {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

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



#body:not(.views-menu-on) .views_menu_show,
#body.views-menu-on .views_menu_hide {
  display:none !important;
}

.menu_features_panel_buttons {
/*  position: absolute;*/
/*  left: 0.285em;*/
/*  height: 100%;*/
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 0.35em;
  flex-shrink: 0;
/*  margin-top: 0.1em;*/
  margin-top: 0.3em;
/*  margin-bottom: 0.2em;*/
  border-bottom: 1px solid #EDF0F0;
/*  margin-left: -0.22em;*/
/*  margin-right: -0.22em;*/
/*  padding-left: 0.22em;*/
  margin-left: -0.3em;
  margin-right: -0.3em;
  padding-left: 0.3em;
}
.menu_features_panel_button {
  position: relative;
  height: 100%;
  margin-right: 0.25em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
}
.menu_features_panel_button .highlight_bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 0.04em;
  transform: translateX(-50%) scaleX(0);
  background-color: var(--accent);
  transform-origin: center center;
  transition: transform 0.33s ease;
}
.menu_features_panel_button.view-show {
  font-family: AppFontBold;
}
.menu_features_panel_button.view-show .highlight_bar {
  transform: translateX(-50%) scaleX(1);
}
.menu_features_panel_button .i18n {
  font-size: 0.1425em;
}
.views-menu-on .side_menu.value_version .menu_panel_container {
/*  bottom: 0;*/
  overflow: hidden;
/*  position: absolute;*/
  flex-shrink: 0;
/*  width: calc(100% - 0.2em);*/
  width: calc(100% + 0.35em);

/*  top: 0.81em;*/
/*  height: auto;*/
/*  height: calc(100% - 0.5em);*/
height: calc(100% - 0.65em)
}

.views_container .thumb {
  display:none;
}

.views-menu-on .side_menu.value_version .menu_panel_container .menu_panel .side_menu_item.heading:nth-of-type(1) {
  padding-top:0.2em;
}

.highlight_card .sidecar_body i {
  display: block;
  font-style: normal;
/*  margin-bottom: 1em;*/
  margin-bottom: 1.2307692307692308em;
  font-size: 1.1em;
}
.card_container .animation_card .sidecar_title ~ .sidecar_body:has(i) {
  margin-top: 0.12em;
}

.views-menu-on .side_menu.value_version .menu_panel_container .menu_panel {
  padding: 0.25em 0.1em 0 0.2em;
  padding-bottom: 0.1em;
  box-sizing: border-box;
  width: 100%;
}

.contact_menu_button {
  display: flex;
  height: 100%;
  align-items: center;
  margin: 0 0.05em;
}

.contact_menu_button .label {
  padding-right: 0.15em;
  border-right: 1px solid var(--font-color-matted);
}

.contact_menu_button .arrow {
  height: 0.15em;
  position: relative;
  width: 0.08em;
  margin-left: 0.15em;


}

.contact_menu_button .arrow svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: rotate(90deg);
}

.contact_menu_item {
  display: flex;
    border-bottom: 1px solid #D7DBDE;
    align-items: center;
    justify-content: flex-start;
    padding: 0.12em 0;
}

.contact_menu_item .i18n {
  flex-grow: 1;
    margin-right: 1.1em;
    text-align:left;
    font-size: 0.15em !important;
    font-family: AppFont !important;
}

.contact_menu_item img,
.contact_menu_item svg {  
  height: 0.2em;
  position: relative;
  width: 0.09em;
  margin-left: 0.15em;
  flex-grow: 0;
  flex-shrink: 0;
}

.top_bar .right_bar_buttons .right_bar_button .menu.contact_menu {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  position: absolute;
  right: unset;
  left: 0;
  top: calc(var(--top-bar-h) + 0.17em);
  height: auto;
}

.contact_specialist .close_icon_cover {
  position:absolute;
  left:0;
  width:100%;
  height:100%;
  top:0;
}

.contact_menu_item:last-child {
  border-bottom:none
}

.contact_specialist.phone_only .menu {
  position: absolute;
  top: 1em;
  width: 2.5em;
  right: 0.0em;
  background: white;
  padding: 0.2em 0.3em;
  border-radius: var(--border-radius);
}

.contact_specialist.phone_only .menu:after {
  content: "";
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 1px;
  border: none;
}

.contact_specialist.phone_only .menu:not(.show) {
  transform:translate(0,-1em);
}

html.bodyPhone .top_bar .overlay {
  top:0;
}

#body.phone .top_bar .right_bar_buttons .right_bar_button .tooltip {
  display:none !important;
}

.toggle_ar_phone {
    top: -0.1em;
    left: -0.2em;
    width: 0.7em;
    height: 1em;
    position:absolute;
}

html.bodyPhone .return_button .text .i18n {
  font-size: 0.15em;
}

html.bodyPhone .toolbar_label .i18n {
  font-size: 0.12em;
}

html.bodyPhone .menu_features_panel_button .i18n {
 font-size: 0.16em; 
}

.touchmove .hotspot {
  pointer-events:none;
}



@media screen and (min-height: 3800px) { 
    #body.kaon {
        border-bottom: 1920px solid black;
    }
    .bodyVOSK #_ffpdfplayer_close_ {
        bottom: 1920px !important;
    }

   .top_bar .right_bar_buttons .right_bar_button .menu {
      max-height: calc(1920px - 2em); 
      position: absolute;  
    }
    .top_bar .overlay {
      height:1920px;
    }
    #body[mode=value] .viewbox[data-view=resources] {
      top: -2304px;
      bottom: 2304px;
    }
    .side_menu.value_version {
      height: 1344px;
      max-height: calc(1920px - 2.45em);
    }
    .resources_overlay .resource_selection.view-show .header {
      transform: translate(0, 4.91em) translate(0, -1920px) translate(0, -2px);     
    }
    .resources_overlay .grid_view .resource_grid {
      max-height: calc(1920px - 2.2em);
    }
    #body.kaon .side_menu,
    #body.kaon .side_menu.value_version {
      height: 1344px;
      max-height: calc(1920px - 3.5em);
    }

    #body {
      max-height:1920px;
    }
}


#body.attract_on .ai_guide {
    display:none !important;
}

.play_circle {
  position: absolute;
  font-size:0.15em;
  height: 2em;
  width: 2em;
  background: rgba(0,0,0,0.8);
  border-radius: 50% 50%;
  bottom: 0.8em;
  right: 0.8em;

  background-size:35% auto;
  background-repeat:no-repeat;
  background-position:center;
  background-image:url(../icons/tour/pause.png);

  outline:0.15em solid rgba(0,0,0,0.5);
}
.play_circle.paused {
  background-image:url(../icons/tour/play.png); 
}
.play_circle svg {
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  stroke: white;
  stroke-dasharray: 377;
  stroke-dashoffset: -377;
  fill: transparent;
  stroke-width: 0.5em;
  transform:rotate(-90deg);
  transition: 0.5s stroke-dashoffset ease;
}



.rotateCover {
  display: none;
}

.rotateCover svg#turn_device {
    position:static;
    width:60%;
    height:auto;
}

.rotateCover svg#turn_device .fill,
.rotateCover {
    fill:#404040 !important;
    color:#404040;
}

.landscapeCover svg#turn_device #arrow {
    transform: translate(-5px, -10px) scale(1, -1) rotate(90deg);
    transform-origin: center center;
}

.bodyIOS.bodyPortrait .portraitCover,
.bodyIOS.bodyLandscape .landscapeCover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 999;
    box-sizing: border-box;
    text-align: center;
    font-size: 7vmin;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#body.offline .kiosk_qr {
  display:none;
}

#body.showAllHotspots .hotspot:not(.visible) {
  opacity:1;
  pointer-events: auto;
}
#body.showAllHotspots .hotspot:not(.tracked),
#body.showAllHotspots .hotspot.invisible {
  opacity:1;
  pointer-events: auto;
}
#body.showAllHotspots .hotspots_container {
/*  padding-top: 0.7em;*/
  padding-left: 0.3em;
}
#body.showAllHotspots .hotspot:not(.tracked) {
  position: static;
  margin-left:0.1em;
  display:inline-flex;
}



.ai_input_stars {  
 width: 0.2em;
   height: 100%;
   background-color: var(--ai-solid);
   padding-right: 0.3em;
   position: relative;
}

.ai_input_stars img,
.ai_input_stars svg {  
    position: absolute;
    top: 14%;
    left: 0;
    width: 0.35em;
    height: 64%;
}

.ai_input_stars path {  
  fill: white;
    stroke: white;
}


.ai_input_curve {  
  width: 0.2em;
    height: 100%;
    background-color: white;
    border-top-left-radius: 3em;
    margin-left: -0.15em;
    padding-left: 0em;
    position: relative;
    border-bottom-left-radius: 3em;
}

.segment_button_row {
  display: flex;
    right: 0.3em;
    bottom: 0.5em;
    color: white;
    background: var(--ai-solid);
    border-radius: 0.3em;
    position: absolute;
    pointer-events: auto;
    transition:0.5s transform ease, 0.5s opacity ease;
}

.segment_button_row:not(.loaded) {
  transform:translate(1em) !important;
  opacity:0 !important;
}
.segment_button {
  padding: 0.4em 1.7em;
    font-size: 0.15em;
  border-radius: 2em;
}
.segment_button.active {
  color: var(--ai-solid);
  background:white;
}


html.bodyPhone .segment_button_row {
  z-index:1;
  width: 100%;
  right: auto;
  left: 0;
  overflow: auto;
  padding: 0.05em 0.05em;
  border-radius: 0;
  bottom: 0;
  background: var(--nav-bg);
  color: var(--font-color-matted);
}

html.bodyPhone .segment_button {
  border: 1px solid var(--font-color-matted);
  margin: 0 0.25em;
  white-space: nowrap;
}
html.bodyPhone .segment_button.active {
  color: var(--nav-bg);
  background: var(--font-color-matted);
}

html.bodyPhone #body.has-segment-buttons .top_bar .right_bar_buttons {
  box-shadow:none;
}

.iframe_prompt {
  transition:0.5s opacity ease;
  position:absolute;
  z-index:200;
  background:rgba(0,0,0,0.4);
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  align-items: center;
  justify-content:center;
  flex-direction: column;
  text-align: center;
}

#body:not(.loaded) .iframe_prompt,
.iframe_prompt.inactive {
  opacity:0;
  pointer-events: none;
}

.iframe_prompt_label {
  color:white;
  line-height: 0.1;
  display: inline;
  padding: 0 2em;
}

.iframe_prompt_button { 
  color: var(--accent);
  background: var(--nav-bg);
  border-radius:2em;
  padding: 0.07em 0.3em;
  margin-top: 0.2em;
}


.iframe_prompt_label .i18n {
  font-size: 0.35em;
/*    display: inline;*/
    font-family: AppFontMedium;
    line-height: 1;
}

.iframe_prompt_button .i18n {
  font-size:0.15em;
/*  display:inline;*/
}

/*.iframe_prompt_label [data-text="iframe_prompt_label2"] {
  display:block;
  margin-top: -0.1em;
}
.iframe_prompt_label [data-text="iframe_prompt_label2"] .i18n {
 display:block; 
}
*/


.grid_nav_label {
  margin-right:0.1em;
  color: var(--font-color-floating);
}
.grid_nav_label .i18n {
  font-size:0.165em;
}

.segment_button.hidden {
  display:none !important;
}


.resources_tabs {
  display:flex;
  flex-direction:row;
  border-radius:1em;
  border:1px solid var(--font-color-matted);
}

.resources_tab {
  border-radius:1em;
  color:var(--font-color-matted);
  width:50%;
  text-align: center;
  padding: 0.05em 0;
}

.resources_tab .i18n {
  font-size:0.15em;
}

.resources_tabs.view-show .resources_tab[data-js-nav~="all_resources"],
.resources_tabs:not(.view-show) .resources_tab[data-js-nav="resources"]{
  background:var(--accent);
  color:white;
}

.bodyPhone .resources_overlay .resource_selection .resource_tiles {
  scroll-behavior: unset;
}


.animation_card_label .i18n:has(~.feature_series_header) {
  display:none;
}

.feature_series_nav {
    border-top: 1px solid #D9D9D9;
    display:flex;
    width: 100%;
    margin-top: 0.2em;
    padding-top: 0.1em;
    position:relative;
}
.feature_series_arrow {
  width:0.25em;
  height:0.15em;
  background-size:50% 50%;
  background-position:center;
  background-repeat:no-repeat;
  flex-shrink: 0;
}
.feature_series_arrow_right {
  background-image:url(../icons/tour/carat_right_icon.svg);
}
.feature_series_arrow_left {
  background-image:url(../icons/tour/carat_left_icon.svg);
  margin-left: -0.4em;
}
.feature_series_nums {
  font-size:0.1em;
  flex-shrink:0;
  text-align: center;
  /*! position: absolute; */
  width: 100%;  
  pointer-events:none;
}
html.bodyPhone .feature_series_nav {
    width: calc(100% - 0.6em);
    margin-left: 0.3em;
}

.card_container .animation_card .hotspot_script_button[data-text="button_solution_cta"]::after {
  background-image: url(../icons/tour/arrow_black.png);
  margin-left: 0.1em;
}


.scene_images,
.scene_image_container,
.scene_image,
.scene_image .i18n,
.scene_image .i18n img, 
.scene_image .i18n video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height:100%;
  pointer-events:none !important;
  transition-duration:0.3s;
/*  transition-delay:0.3s;*/
}

.scene_image {
  background: black;
}

.scene_image .i18n img, 
.scene_image .i18n video {
  top: 50%;
  width: 100%;
  height: var(--scene-min);
  transform: translate(0,-50%);
}



.scene_image_blur {

  pointer-events:none !important;
  transition-duration:0.3s;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(20px);
  display: block;
  width: 100%;
  height: 100%;
  /*background-position: center;
  background-repeat: no-repeat;*/
}

.scene_image .i18n .scene_image_blur img,
.scene_image .i18n .scene_image_blur video {
  height:100%;
  top:0;
  transform: scale(1.1);
}

/*.scene_image_container.transition-in {
  transform:translate(0,50%);
}
.scene_image_container.transition-out {
  transform:translate(0,-50%);
}*/


.scene_image_container[data-view="value_categories"] .scene_image.seq-before,
.scene_image_container[data-view="value_categories"] .scene_image.delay-image-intro.show:not(.seq-after) {
  transform: translate(0,-50%) !important;
  opacity: 0 !important;
}
.scene_image_container[data-view="value_categories"] .scene_image.seq-after {
  transform: translate(0,50%);
/*  opacity: 0 !important;*/
}


.hotspot_open_tracker.view-show ~ .scene_image_container[data-view="value_categories"],
.scene_image_container[data-view="cards"] .scene_image.seq-before,
.scene_image_container[data-view="cards"] .scene_image.delay-image-intro.show:not(.seq-after) {
  transform: translate(-50%,0) !important;
  opacity: 0 !important;
}

.scene_image_container[data-view="value_categories"] ~ .scene_image_container[data-view="cards"],
.scene_image_container[data-view="cards"] .scene_image.seq-after {
  transform: translate(50%,0);
/*  opacity: 0 !important;*/
}


/*.scene_image.transition-in,
.scene_image.delay-image-intro.show {
  transition:none !important;
  transform: translate(0,50%) !important;
  opacity: 0 !important;
}*/
/*.scene_image.transition-out {
  transform:translate(0,-50%);
}*/

/*.hotspot_open_tracker.view-show ~ .scene_image_container .scene_image.transition-in,
.hotspot_open_tracker.view-show ~ .scene_image_container .scene_image.delay-image-intro.show {  
  transform: translate(50%,0%) !important;
}

.hotspot_open_tracker.view-show ~ .scene_image_container .scene_image.transition-out {
  transform:translate(-50%, 0);
}*/

.hotspot_kind_container.image_placement {
  /*position:absolute;
  right:0;
  bottom:1em;*/


    position: absolute;
/*    right: 0;*/
/*    bottom: 1em;*/
    top: calc(var(--scene-top-half) + var(--scene-top));
    width: var(--scene-min);
    height: var(--scene-min);
    transform: translate(-50%, -50%);
/*    background: rgba(255,0,0,0.5);*/
    left: 50%;
    z-index: 1;

/*    display:flex;*/
    flex-direction:column;
    align-items:flex-end;
    justify-content:flex-end; 

    pointer-events: none;
    transition:0.3s opacity ease;

    opacity:0;
    display:flex;  
}
.hotspot_kind_container.image_placement.view-show {
  opacity:1;
}
.hotspot_kind_container.image_placement.delay-image-intro {
  opacity:0;
}

.image_placement .hotspot.hotspot_dot {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  margin-bottom: 0.35em;
  margin-right: 2.5em;
  transform:translate(1em) translate(0,-0.5em) translate(var(--scene-image-hotspot-offset-h), var(--scene-image-hotspot-offset-v));
  opacity:0;
  pointer-events: auto;
  transition:0.3s opacity ease-out, 0.3s transform ease-out;
/*  transition-behavior: allow-discrete;*/
/*  display:none;*/
}


.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:not(.image_placement) {
/*  display:block;*/
  transform:translate(0,-0.5em) translate(var(--scene-image-hotspot-offset-h), var(--scene-image-hotspot-offset-v));
  opacity:1;
}

.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(1) { transition-delay:0.5s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(2) { transition-delay:0.55s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(3) { transition-delay:0.6s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(4) { transition-delay:0.65s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(5) { transition-delay:0.7s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(6) { transition-delay:0.75s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(7) { transition-delay:0.8s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(8) { transition-delay:0.85s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(9) { transition-delay:0.9s; }
.hotspot_kind_container.image_placement.view-show .hotspot.hotspot_dot:nth-child(10) { transition-delay:0.95s; }

.image_placement .hotspot.hotspot_dot:not(.image_placement) .hover_box {
  opacity:1;
  pointer-events: auto;
}

.image_placement .hotspot.hotspot_dot.image_placement {
  position:absolute;
  transform:translate(-50%, -50%);
  transition:none;
  opacity:1;
}

#body:has(~ .show_edit_view_frame) .scene_images {
  opacity:0.1;
}

.hyperlink {
  text-decoration:underline;
  cursor:pointer;  
}


.hotspot_open_tracker.view-show ~ .hotspot_kind_container .hover_box {
  display:none;
}

.ai_result_quote {
  max-height: calc(100vh - 4.3em);
  overflow: auto;
}

