body.exhibit {
  background: #1a181d;
}

object.exhibit {
  display: block;
  height: 100vh;
  margin: 0 auto 0 auto;
  font-family: Helvetica, sans-serif;	
  font-size: 18px;
  background: #1a181d;
}

object.exhibit * {
  box-sizing: content-box;
}

.bg-transparent {
  background: transparent !important;
}

#container-menu {
  position: absolute;
  top: .5rem;
  left: .5rem;
  display: flex;
  z-index: 4;

  -o-transition: opacity .3s ease-in-out;
  -ms-transition: opacity .3s ease-in-out;
  -moz-transition: opacity .3s ease-in-out;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

#container-menu.offset {
  left: 5rem;
}

@media (max-width: 575.98px) {
  #container-menu {
    flex-direction: column;
  }

  #container-menu.offset {
    left: .5rem;
    top: 5rem;
  }
}

#container-menu .btn-exhibit {
  display: flex;
  background-color: var(--custom, #f29400);
  margin-right: .5rem;
  margin-bottom: .5rem;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  -o-transition: background-color .15s ease-in-out;
  -ms-transition: background-color .15s ease-in-out;
  -moz-transition: background-color .15s ease-in-out;
  -webkit-transition: background-color .15s ease-in-out;
  transition: background-color .15s ease-in-out;
}

#container-menu .btn-exhibit:hover {
  background-color: var(--custom-hover, #cc7d00);
}

#container-menu .btn-exhibit img {
  height: 30px;
  margin: auto;
}

.btn-exhibit.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.contrast-dark .btn-exhibit img {
  filter: brightness(0);
}

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

#container-overlay {
  overflow: hidden;
  pointer-events: none;
}

#container-files {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  opacity: 0;
  transition: opacity .3s ease-in-out, transform .5s ease-in-out;
}

#container-files.collapse {
  transform: translate(0, 100%);
  opacity: 1;
}

#container-files:hover,
#container-files.show {
  opacity: 1;
}

#container-files-scroll {
  width: 90%;
  overflow: hidden;
}

#container-files-content {
  display: inline-flex;
  width: auto;
  min-width: 100%;
  position: relative;
  left: 0;
  flex-shrink: 0;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#container-hotspots {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity .35s ease-in-out;
  pointer-events: none;
}

#container-hotspots.hide .btn-hotspot:not([data-active="true"]) {
  opacity: 0;
}

#container-controls-bottom {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
  left: 50%;
  transform: translate(-50%);
}

#container-controls-bottom>* {
  pointer-events: all;
}

#container-controls-bottom>.btn-sr-flat {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.fade-in {
  animation-duration: .35s;
  animation-name: fadein;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.img-exhibit {
  position: absolute;
  object-fit: scale-down;
  object-position: center center;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.img-exhibit.previous {
  z-index: 0;
}

.img-exhibit.inflate-0 {
  object-fit: scale-down !important;
}

.img-exhibit.inflate-1 {
  object-fit: contain !important;
}

.img-exhibit.inflate-2 {
  object-fit: cover !important;
}

#info-display {
  position: absolute;
  top: 68px;
  left: 64px;
  margin-right: 64px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.275);
  z-index: 3;
  color: white;
}

@media (max-width: 399.98px) {
  #info-display {
    left: 0;
    margin: .25rem;
    z-index: 5;
  }
}

#info-display-header {
  padding: 8px;
  position: relative;
}

#info-display-header > div:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--custom, #f29400);
  opacity: .9;
}

#info-display-title {
  position: inherit;
  font-weight: bold;
  color: var(--custom-text, #fff);
}

#info-display-text {
  min-width: 220px;
  min-height: 120px;
  max-height: 400px;
  padding: 10px;
  white-space: pre-line;
  overflow: auto;
  text-align: left;
  background-color: rgba(26,24,29,.9);/*#1a181d with .9 alpha*/
}

button * {
  pointer-events: none;
}

.btn-exhibit {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.275);
  cursor: pointer;
}

#btn-launch {
  position: absolute;
  display: flex;
  top: 10px;
  left: calc(50% - 24px);
  z-index: 5;
  background-color: var(--custom, #f29400);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -o-transition: background-color .15s ease-in-out;
  -ms-transition: background-color .15s ease-in-out;
  -moz-transition: background-color .15s ease-in-out;
  -webkit-transition: background-color .15s ease-in-out;
  transition: background-color .15s ease-in-out;
}

#btn-launch:hover {
  background-color: var(--custom-hover, #cc7d00);
}

#btn-launch svg {
  margin: auto;
  height: 30px;
  width: 30px;
  color: var(--custom-text, #fff);
}

#btn-hotspot-template {
  display: none;
}

.btn-hotspot {
  display: flex;
  position: absolute;
  background-color: var(--custom, #f29400);
  height: 32px;
  width: 32px;
  border-radius: 50%;
  transition: background-color .15s ease-in-out, transform .15s ease-in-out, opacity .35s ease-in-out;
  transform: translate(-50%, -50%);
  pointer-events: all;
}

.btn-hotspot:hover {
  background-color: var(--custom-hover, #cc7d00);
  transform: scale(1.25) translate(calc(-50% + 3px), calc(-50% + 3px));
}

.btn-hotspot svg,
.btn-hotspot img {
  margin: auto;
  height: 22px;
  color: var(--custom-text, #fff);
}

#btn-pdf {
  display: none;
}

.btn-file-select {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 4;
  background-color: var(--custom, #f29400);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;

  -o-transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
  -ms-transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
  -moz-transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
  -webkit-transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
  transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
}

.btn-file-select:hover {
  background: var(--custom-hover, #cc7d00);
}

#btn-select-prev {
  left: 1.625%;
}

#btn-select-next {    
  right: 1.625%;
}

#btn-select-next img {    
  transform: rotate(180deg);
}

.btn-file-select img {
  margin: auto;
  height: 30px;
}

.div-btn-scroll {
  display: flex;
  align-items: center;
  width: 5%;
  min-width: 50px;
  padding-bottom: 2rem;
}

@media (max-width: 575.98px) {
  .div-btn-scroll {
    display: none !important;
  }

  #container-files-scroll {
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
  }
}

.btn-container-scroll {
  width: 35%;
  min-width: 32px;
  background-color: var(--custom, #f29400);
  border-radius: .35rem;
  border: none;
  margin: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.btn-container-scroll img {
  width: 100%;
}

.btn-container-scroll:hover {
  background-color: var(--custom-hover, #cc7d00);
}

#btn-scroll-right {
  transform: rotate(180deg);
  box-shadow: 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.275);
}

.btn-exhibit-file {
  display: inline-grid;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  height: 170px;
  width: 170px;
  margin: .75rem;
  margin-bottom: 2rem !important;
  border: 2px solid white;
  line-height: 1.25rem;
  background-size: cover;
  background-position: center center;
  text-align: center;
  color: black;
  transition: transform .2s ease-in-out, border-color .3s ease;;
}
/* 
.btn-exhibit-file:not(:focus-visible) {
  outline: none !important;
} */

.btn-exhibit-file.selected {
  margin: calc(.75rem - 4px);
  border: 6px solid var(--custom, var(--primary));
}

.btn-exhibit-file:hover {
  transform: scale(1.1);
}

.btn-exhibit-file svg {
  height: 32px;
  width: 32px;
  margin-top: 8px;
  color: #fff;
  transition: color .3s ease;
  filter: drop-shadow(0 0 2px #000);
}

.btn-exhibit-file.selected svg {
  color: var(--custom, var(--primary))
}

.btn-exhibit-file > .btn-wishlist-add {
  display: none;
}

.btn-exhibit-file > .btn-wishlist-add > img {
  width: 32px;
  height: 32px;
}

.btn-exhibit-file.selected > .btn-wishlist-add {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--custom, var(--primary));
  border-radius: 50%;
  padding: .5rem;
  transition: background-color .15s ease-in-out;
  opacity: 0;
  animation: fade-in .5s forwards;
}

.btn-exhibit-file > .btn-wishlist-add:hover {
  background-color: var(--custom-hover, #cc7d00);
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.file-title {
  width: 100%;
  position: absolute;
  bottom: -1.75rem;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 1px 1px 4px #000;
}

@media (max-width: 575.98px) {
  .btn-exhibit-file {
    height: 100px;
    width: 100px;
    margin: .5rem;
  }

  .btn-exhibit-file.selected {
    margin: calc(.5rem - 1px);
    border: 4px solid var(--custom, #f29400);
  }
}

@media (max-width: 849.98px) and (max-height: 399.98px) {
  .btn-exhibit-file {
    height: 100px;
    width: 100px;
    margin: .5rem;
  }

  .btn-exhibit-file.selected {
    margin: calc(.5rem - 1px);
    border: 4px solid var(--custom, #f29400);
  }
  
  #container-files-content {
    padding-bottom: 0;
  }
}

@media (min-width: 850px) and (min-height: 400px) and (max-width: 1100px) and (max-height: 750px) {
  .btn-exhibit-file {
    height: 130px;
    width: 130px;
  }
  
  #container-files-content {
    padding-bottom: .5rem;
  }
}

#btn-copyright {
  position: absolute;
  top: .45rem;
  right: .45rem;
  z-index: 4;
  background-color: var(--custom, #f29400);
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;

  -o-transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
  -ms-transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
  -moz-transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
  -webkit-transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
  transition: background-color .15s ease-in-out, opacity .3s ease-in-out;
}

#btn-copyright:hover {
  background-color: var(--custom-hover, #cc7d00);
}

#btn-copyright img {
  height: 20px;
  margin: auto;
}

#app-header {
  z-index: 1;
  background-color: #1a181d;
  transition: background-color .2s ease-in-out;
}

body[data-mode="fair"] #app-header {
  position: relative;
  height: 60px;
}

#app-header.light #showroom-title {
  color: #6c757d;
}

#app-header.light {
  background-color: #f8f9fa !important;
}

.cloud-link {
  position: relative;
}

#app-header.light .cloud-link img:first-child {
  text-decoration: none;
}

#app-header.light .cloud-link:hover img {
  opacity: 1 !important;
}

#app-header.light .cloud-link img:last-child {
  opacity: 0;
}

#app-header:not(.light) .cloud-link img:last-child,
#app-header.light .cloud-link img:nth-child(2) {
  opacity: 0;
  pointer-events: none;
}

.cloud-link img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 48px;
  transition: opacity .2s ease-in-out;
}

#app-header.light #navbar-top-email {
  display: none !important;
}

@media (max-width: 576px) {
  #navbar-top-email {
    display: none !important;
  }
}

#app-header.light button[name="logout"] {
  background-color: transparent;
  border: 0;
}

#app-header:not(.light) button[name="logout"] > img:last-child {
  display: none;
}

#app-header.light button[name="logout"] > img:first-child {
  display: none;
}

#btn-fair-back {
  display: flex;
  background-color: #f29400;
  margin-left: -.5rem;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  -o-transition: background-color .15s ease-in-out;
  -ms-transition: background-color .15s ease-in-out;
  -moz-transition: background-color .15s ease-in-out;
  -webkit-transition: background-color .15s ease-in-out;
  transition: background-color .15s ease-in-out;
  cursor: pointer;
}

#btn-fair-back:hover {
  background-color: #cc7d00;
}

#btn-fair-back img {
  height: 30px;
  margin: auto;
}

#img-logo-fair {
  margin-right: 1rem;
  position: absolute;
  right: 0;
  display:none;
}

@media (min-width: 600px) {
  #img-logo-fair {
    display: block;
  }  
}

@media (min-width: 800px) {
  #img-logo-fair {
    margin-right: 4rem;
  }  
}

@media (min-width: 1500px) {
  #img-logo-fair {
    margin-right: 12rem;
  }  
}

#content {
  transition: margin .35s ease-in-out, padding .35s ease-in-out;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 2rem;
}

#content.no-fill {
  margin-left: 315px;
}

#content.fill {
  margin-left: 0;
}

.clouditem {
  padding: 0rem;
  transition: transform .15s ease-in-out, width .35s ease-in-out, height .35s ease-in-out, padding .35s ease-in-out;
  order: 999;
}

#cloudfile-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 2100px;
}

@media (min-width: 576px) {
  .clouditem {
    padding: .5rem;
  }
}

@media (min-width: 768px) {
  .clouditem {
    padding: 1rem;
  }

  #content.fill .clouditem {
    width: 312px;
    height: 312px;
  }

  #content:not(.fill) .clouditem {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 992px) {
  .clouditem {
  }

  #content:not(.fill) .clouditem {
    width: 312px;
    height: 312px;
  }
}

@media (min-width: 1281px) {
  .clouditem {
    padding: 2rem;
  }

  #content.fill .clouditem {
    width: 452px;
    height: 452px;
  }

  #content:not(.fill) .clouditem {
    width: 452px;
    height: 452px;
  }
}

@media (min-width: 2200px) {
  #content.fill .clouditem {
    width: 512px;
    height: 512px;
  }

  #content:not(.fill) .clouditem {
    width: 512px;
    height: 512px;
  }
}

@media (min-width: 2640px) {
}

body.showroom {
  height: 100vh;
  overflow-y: hidden;
}

body:not([data-mode="fair"]) .app[data-iframe="true"] main, body.fullscreen .app main {
  height: 100vh;
}

.app:not([data-iframe="true"]) main {
  height: calc(100vh - 38px - 1rem);
}

.app {
  user-select: none;
  transition: opacity .25s ease-out;
}

.app.hide {
  opacity: 0;
}

body[data-mode="fair"] main {
  height: calc(100vh - 60px);
}

body.fullscreen #app-header {
  display: none !important;
}

.modal-open .sidebar-nav {
  margin-right: 0px !important;
  padding-right: 0px !important;
}

.sidebar-nav {
  position: absolute;
  z-index: 1;
  width: 315px;
  height: 100vh;
  background-color: #e9ecef;
  transition: right .35s ease-in-out;
  /*right: calc(100% - 315px);*/
  /* right: calc(100% - 30px); */
}

.sidebar-nav:not(.show) {
  right: calc(100% - 30px);
}

.sidebar-toggle {
  position: absolute;
  height: 100%; 
  width: 30px; 
  right: 0;
  border-right: 2px solid transparent;
  transition: border-color .35s ease;
}

.sidebar-toggle:hover {
  border-right: 2px solid var(--custom, var(--primary));
}

/*.sidebar-toggle .bar {
  height: calc(100% - 30px);
  background: var(--custom, #f29400);
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

.sidebar-toggle:hover .bar {
  opacity: 1;
}*/

.sidebar-toggle .filter-icon {
  position: absolute;
  top: 4.5rem;
  left: 0;
  height: 65px;
  width: 65px;
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
  /*opacity: 0;*/
  transition: opacity .25s ease-in-out, background-color .35s ease;
  background: var(--info);
  padding: 2px;
}

.filter-icon > .icon {
  border-bottom-right-radius: .8rem;
  border-top-right-radius: .8rem;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.filter-icon > .blocker {
  width: 28px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--info);
}

.sidebar-toggle:hover .filter-icon {
 background: var(--custom, var(--primary));
}

body:not(.fullscreen):not([data-mode="fair"]) .sidebar-nav.standalone {
  height: calc(100vh - 38px - 1rem);
}

body:not(.fullscreen)[data-mode="fair"] .sidebar-nav {
  height: calc(100vh - 60px);
}

body.fullscreen .sidebar-nav.standalone {
  height: 100vh;
}

@media (max-width: 576px) {
  .sidebar-nav {
    width: 100%;
  }
}

.sidebar-nav .sidebar-content {
  height: calc(100% - 35px);
  margin-right: 2rem;
}

.sidebar-nav .sidebar-content.offset {
  margin-top: calc(1rem + 45px) !important;
  height: calc(100% - 35px - 45px);
}

.sidebar-nav .tag-element {
  display: inline-block;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.4rem;
  margin: 0 0 0.4rem 0.4rem;
  border-radius: 0.25rem;
  transition: background-color .3s, color .3s;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.sidebar-nav .tag-element.active {
  background: var(--custom, #f29400);
  color: white;
}

.sidebar-nav .tag-element:not(.active):hover {
  background: #e9ecef;
}

.sidebar-nav .tag-element.disabled {
  cursor: default;
  background: #e9ecef;
  color: #6c757d;
}

.sidebar-nav .tag-element:focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 148, 0, 0.25);
  outline: 0;
}

.checkbox-lg input:checked ~ .checkbox-lg-label::before {
  color: #fff;
  border-color: var(--custom, #f29400);
  background-color: var(--custom, #f29400);
}

#showroom-tag-list>ul {
  padding: 0;
}

.app-title {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

.app-title.header {
  font-size: 1.5rem;
}

#btn-showroom-back {
  position: absolute;
  z-index: 2;
  top: .5rem;
  left: .5rem;
  display: flex;
  background-color: var(--custom, var(--primary));
  border-radius: 50%;
  height: 45px;
  width: 45px;
  transition: background-color .15s ease-in-out;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.275);
}

#btn-showroom-back:hover {
  background-color: var(--custom-hover, #cc7d00);
}

#btn-showroom-back img {
  height: 30px;
  margin: auto;
}

.contrast-dark #btn-showroom-back img {
  filter: brightness(0);
}

#btn-showroom-back.offset {
  left: 5rem;
}

.btn-sr {
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color .35s ease-in-out;
  background: rgba(26,24,29,0.2);
}

.btn-sr:hover {
  background: var(--custom, #f29400) !important;
}

.contrast-dark .btn-sr img {
  filter: brightness(0);
}

.btn-sr-flat {
  padding: .15rem 2rem;
  height: unset;
  border-radius: .25rem;
  transition: background-color .15s ease-in-out;
}

.btn-sr-flat svg {
  margin: auto;
  height: 30px;
  color: var(--custom-text, #fff);
}

.btn-arrow-up>div {
  height: 28px;
  width: 28px;
  background: no-repeat 50% / 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z' /%3E%3C/svg%3E");
}

.contrast-dark .btn-arrow-up>div {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z' /%3E%3C/svg%3E");
}

.btn-arrow-down>div {
  height: 28px;
  width: 28px;
  background: no-repeat 50% / 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z' /%3E%3C/svg%3E");
}

.contrast-dark .btn-arrow-down>div {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z' /%3E%3C/svg%3E");
}

#btn-contact {
  width: 45px;
  height: 45px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.275);
  background: var(--custom, #f29400);
}

#btn-contact:hover {
  background: var(--custom-hover, #cc7d00) !important;
}

#btn-contact.gc {
  line-height: 1;
  padding: 0.7rem 1.5rem;
  color: var(--custom, #f29400);
  border-radius: 2rem;
  border-color: var(--custom, #f29400);
  border-style: solid;
  border-width: 2px;
  background: transparent;
  display: inline-block;
  white-space: nowrap;
  width: auto;
  transition: background .2s ease-in-out, color .2s ease-in-out !important;
}

@media (max-width: 767.98px) {
  #btn-contact.gc {
    background: var(--light);
  }
}

#btn-contact.gc:hover {
  background: var(--custom, #f29400) !important;
  color: white !important;
}

#btn-contact.gc svg {
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
    width: .875em;
}

#btn-contact.fair {
  width: 150px;
  height: 150px;
  background: #3386ee;
  position: absolute;
  top: 0;
  right: 0;
  transition: top .35s ease;
}

body:not(.fullscreen) #btn-contact.fair.offset {
  top: 60px;
}

#btn-contact.fair:hover {
  background: #f29400;
}

.contact-text {
  font-size: 18px;
  line-height: 22px;
  color:#fff;
  font-family:Verdana,Arial,Helvetica,sans-serif;
  -moz-transform:rotate(-10deg);
  -ms-transform:rotate(-10deg);
  -o-transform:rotate(-10deg);
  -webkit-transform:rotate(-10deg);
  transform:rotate(-10deg);
  margin-left:-5px;
  display:inline-block;
  text-align:center;
}

.overlay-text {
  position: absolute;
  z-index: 1;
  line-height: 28px;
}

.overlay-text div {
  white-space: pre;
}

.overlay-text-title {
  padding: .25rem .35rem;
}

.overlay-text-content {
  padding: .25rem .35rem;
  background-clip: padding-box !important;
}

#content-external {
  height: 100%;
  width: 100%;
  left: 0px;
  position: absolute;
  z-index: 100;
  display: none;
}

#content-external.show {
  display: block;
}

#btn-external-back.offset {
  left: 5rem;
}

#btn-external-back {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 35px;
  height: 35px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--custom, #f29400);
  border-radius: 25px 25px 25px 25px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.275);
  transition: background-color .15s ease-in-out;
  cursor: pointer;
}

#btn-external-back:hover {
  background-color: var(--custom-hover, #cc7d00);
}

#btn-external-back.show {
  display: flex;
}

#btn-external-back img {
  width: 28px;
  height: 28px;
}

.contrast-dark #btn-external-back img {
  filter: brightness(0);
}

#content-external iframe {
  border: 0px none;
  height: 100%;
  width: 100%;
  background: black;
}

.clouditem:hover .pexpo-title-container {
  /*background-position: 100px;*/
  /*background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.4));*/
}

.pexpo-title-container {
  transition: background .3s ease;
  /*background-size: 1px 200px;*/
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .4));
  bottom: 0;
  pointer-events: none;
}

.clouditem:hover .pexpo-title-container div {
  text-shadow: black 0 0 10px !important;
}

.pexpo-title-container div {
  transition: text-shadow .3s ease;
  color: white;
  text-shadow: black 0 0 5px;
}

.pexpo-title-container div:first-child {
  pointer-events: all;
  max-width: calc(100% - 1rem);
  font-size: 1.25rem;
}

.pexpo-subtitle {
  pointer-events: all;
  font-size: 1.15rem;
}

.skeleton {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, transparent 0%, var(--custom, var(--primary)) 100%), radial-gradient(circle 24px, white 99%, transparent 0), linear-gradient(transparent calc(100% - 40px), white 0), linear-gradient(var(--info) 100%, transparent 0);
  background-size: calc(100% - 50px) .5rem, 64px 64px, 100% 100%, 100% 100%;
  background-position: -1000% 0, calc(100% - .25rem) .25rem, 0 0, 0 0;
  animation: pexpo-loading 1s infinite;
  /*linear-gradient(90deg, transparent 0%, var(--info) 50%, transparent 100%)*/
}

.skeleton > * {
  display: none !important;
}

@keyframes pexpo-loading {
  to {
    background-position: 1000% 0, calc(100% - .25rem) .25rem, 0 0, 0 0;
  }
}

.wishlist-sidebar {
  height: 85%;
  width: 450px;
  max-width: 100vw;
  position: relative;
  right: max(-450px, -100vw);
  top: 4.5rem;
  transition: right .35s ease-in-out;
  pointer-events: all;
  user-select: none;
}

.wishlist-sidebar.hidden {
  display: none;
}

.wishlist-sidebar.open {
  right: 0;
}

.wishlist-sidebar .btn > * {
  pointer-events: none;
}

#wishlist-icon {
  cursor: pointer;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
  position: absolute;
  top: 0;
  left: -64px;
  height: 64px;
  width: 64px;
}

#wishlist-content {
  overflow-y: auto;
  display: grid;
  grid-auto-rows: min-content;
  grid-gap: 1rem
}

.wishlist-product {
  display: grid;
  grid-template-columns: 128px 1fr;
  height: calc(128px + 1rem);
  position: relative;
}

.wishlist-product.no-thumbnail {
  grid-template-columns: 1fr;
  height: auto;
}

.wishlist-product:not(.no-thumbnail) .wishlist-product-info {
  margin-left: .5rem;
}

.wishlist-product.no-thumbnail .wishlist-product-thumbnail {
  display: none;
}

.wishlist-product-thumbnail .thumbnail {
  object-fit: cover;
}

.wishlist-product-info {
  display:grid;
  grid-template-rows: auto 1fr auto;
  max-height: 128px;
  user-select: text;
}

.wishlist-product-footer {
  display:grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
}

.wishlist-product.no-thumbnail .wishlist-product-footer {
  margin-top: .25rem;
}

.wishlist-product-div-count {
  display: grid;
  grid-template-columns: auto 1.5rem auto;
  align-items: center;
}

.wishlist-product.no-count .wishlist-product-footer {
  grid-template-columns: 1fr auto auto;
}

.wishlist-product.no-count .wishlist-product-div-count {
  display: none !important;
}

.wishlist-product.no-price .wishlist-product-price > * {
  display: none;
}

.wishlist-product-price {
  display: grid;
  grid-template-columns: 1fr auto;
  user-select: text;
}

.wishlist-product-detail-hover {
  position: absolute;
  top: .75rem;
  left: .75rem;
  border-radius: .25rem;
  display: grid;
  padding: .1rem;
  cursor: help;
}

.wishlist-product-detail-hover img {
  filter: brightness(0);
}

.wishlist-product.no-thumbnail .wishlist-product-detail-hover {
  right: .75rem;
  left: auto;
}

.wishlist-add-indicator {
  position: absolute;
  top: 8px;
  right: calc(min(450px, 100vw) + 50px);
  transition: opacity .3s ease-in-out;
  pointer-events: none;
  opacity: 0;
  font-size: 1rem;
}

.wishlist-add-indicator.show {
  opacity: 1 !important;
}

.wishlist-add-indicator::before {
  content: '+';
}

#wishlistlist-price-total>div {
  grid-template-columns: 1fr auto;
  display: grid;
  gap: .5rem;
  user-select: text;
}

#wishlistlist-price-total.hide {
  display: none;
}

#context-menu {
  display: none;
  z-index: 1001;
}

#context-menu.show {
  display: flex;
}

#loading-overlay {
  height: 100vh;
  width: 100vw;
  z-index: 99;
  display: grid;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

#loading-overlay.hiding {
  animation: fadeHide .5s linear;
  animation-fill-mode: forwards;
}

#loading-overlay.hide {
  display: none !important;
}

@keyframes fadeHide { 
  100% {
    opacity: 0;
  }
}

.loading-container {
  display: grid;
  grid-template-columns:6rem 6rem 6rem;
  grid-template-rows: 6rem 6rem;
  gap: 1rem;
  align-content: stretch;
  justify-content: stretch;
  z-index: 1;
}

@keyframes pulseSize { 
  0% {
    transform: scale(1);
  }
  7.5% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}

.loading-container div {
  animation: pulseSize 3s ease-in-out;
  animation-iteration-count: infinite;
}

.loading-container div:nth-child(1) { animation-delay: 0s }
.loading-container div:nth-child(2) { animation-delay: .5s }
.loading-container div:nth-child(3) { animation-delay: 1s }
.loading-container div:nth-child(4) { animation-delay: 1.5s }
.loading-container div:nth-child(5) { animation-delay: 2s }
.loading-container div:nth-child(6) { animation-delay: 2.5s }

#product-tooltip,
#hotspot-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: none;
  margin: 16px;
  max-height: calc(100vh - 32px);
  border-radius: .15rem;
}

#product-tooltip.fill,
#hotspot-overlay.fill {
  /*height: calc(100vh - 32px);*/
  max-width: calc(100vw - 32px);
  left: 0 !important;
}

#product-tooltip.show,
#hotspot-overlay.show {
  display: flex;
  flex-direction: column;
}

.tooltip-product-container {
  display: grid;
  gap: .5rem;
  overflow-y: auto;
}

.tooltip-product {
  display: grid;
  grid-template-columns: 128px 1fr;
  max-width: min(550px, calc(100vw - 32px - 1rem));
  min-width: min(400px, calc(100vw - 32px - 1rem));
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.tooltip-product:not(.list) {
  overflow-y: auto;
}

.tooltip-product.list {
  grid-template-columns: 64px 1fr;
}

.tooltip-product.no-thumbnail {
  grid-template-columns: 1fr;
}

.tooltip-product:not(.no-thumbnail) .tooltip-product-details,
.tooltip-product:not(.no-thumbnail) .tooltip-exhibit-details {
  margin-left: .5rem;
}

.tooltip-product.no-thumbnail .tooltip-product-thumbnail,
.tooltip-product.no-thumbnail .tooltip-exhibit-thumbnail {
  display: none;
}

#product-tooltip .thumbnail {
  object-fit: cover;
}

.product-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem;
  user-select: text;
}

.product-field div:last-child {
  grid-column: 2;
}

.product-field .label, .product-name {
  font-weight: bold;
  color: #212529;
}

.product-field .value {
  display: grid;
}

.product-field img {
  justify-self: center;
  max-height: 256px;
}

.tooltip-exhibit-details {
  display: grid;
  align-items: center;
}

.tooltip-wishlist-add {
  display: flex;
  gap: .5rem;
  align-items: end;
}

.tooltip-wishlist-add button,
.tooltip-list-next button {
  padding: .1rem !important;
  display: flex;
}

.tooltip-list-next {
  display: grid;
  justify-content: flex-end;
  margin-top: .5rem;
}

.tooltip-product button > img {
  pointer-events: none;
}

#hotspot-overlay .tooltip-product.list {
  cursor: pointer;
}

#hotspot-overlay .btn {
  display: flex;
  align-items: center;
}

#hotspot-overlay .content {
  overflow-y: auto;
}

#hotspot-overlay .overlay-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}

#hotspot-overlay .overlay-header>button:last-of-type {
  grid-column: 3;
}

#hotspot-overlay .overlay-footer {
  display: flex;
  justify-content: flex-end;
}

.company-logo {
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.company-logo > img {
  position: absolute;
}

.company-logo:not(.show) {
  display: none;
}