@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,200;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");

*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: #afafaf;
  border-radius: 20px;
}

/* disable blue highlight on press on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 16px;
  overflow: hidden;
  font-family: "Inter", sans-serif, Verdana;
  background: #121c42;
  color: white;
}

video::-webkit-media-controls-overlay-play-button {
  display: none;
}

#vhflow-video::cue {
  line-height: 1.2;
}

#vhsceneparent {
  transform-origin: left top;
  overflow: hidden;
}

.vhscene {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
}

.vhstatic {
  position: absolute;
  z-index: 101;
}

.scene-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.scene-loading {
  position: absolute;
  top: 0px;
  left: 0px;

  width: 100%;
  height: 100%;
}

.stands-layer {
  position: absolute;
  top: 49.4%;
  left: 41.7%;
  width: 81.2%;
  height: 81.1%;
  z-index: 1100;
  background-color: #121c42;
  color: #fff;
  border-radius: 6px;
  transform: translate(-50%, -50%);
  display: block;
}

.stands-content {
  display: flex;
  flex-wrap: wrap;
  margin: 1%;
  color: #fff;
  width: auto;
  max-height: 770px;
  overflow-y: auto;
}

.stand-item {
  display: flex;
  border-radius: 5px;
  width: 340px;
  min-height: 350px;

  flex-direction: column;
  margin: 1%;

  border: 2px solid #fff;
  cursor: pointer;

  transition: 0.3s all ease-in-out;

  color: black;
  background: rgb(255, 255, 255);
}

.stand-item:hover {
  color: black;
  transform: translateY(-5px);
  transition: 0.3s all ease-in-out;
}

.stands-filter {
  width: 260px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid black;
  background: rgb(255, 255, 255);
}


.stand-item-img {
  margin: 5%;
  max-height: 150px;
  object-fit: contain;
  border-radius: 5px;
}

.stand-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin: 6%;
  padding-left: 2%;
}

.stand-info p{
  margin: 0;
  padding: 0;
}

.stand-item-title {
  font-size: 17px;
  max-width: 250px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.stand-item-description {
  height: 115px;
  overflow: hidden;
  text-overflow: ellipsis;
}


.stand-scene-name {
  font-size: 12px;
  max-width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s ease-in-out;
}

.stand-item-button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}


.toggle-header-btn {
  background-color: #121c42;
  color: #fff;
}

.scene-loading-icon {
  position: absolute;
  color: white;
  top: 10%;
  left: 38%;
  font-size: 2rem;
  text-align: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 200px;
}

.programLayer .upperContentWrapper {
  background: #fff;
  display: flex;
  width: auto;
  align-items: center;
  padding: 0.5rem;
}

.panelBtns {
  display: none;
}

.greeting {
  margin-left: 20px;
}

.toggle-header-btn {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
  margin-bottom: 15px;
  background-color: #121c42;
  color: #fff;
  z-index: 100;
  border: none;
  border-radius: 5px;
  justify-content: space-between;
  flex-direction: row;
  height: 35px;
  cursor: pointer;
  font-weight: 60000;

  transition: 0.3s all ease-in-out;
}

.toggle-header-btn:hover {
  background-color: #fff;
  color: #121c42;

  transition: 0.3s all ease-in-out;
}

.toggle-header-btn::after {
  content: "↓";
  display: flex;
}

.exhibition-header {
  max-width: 15.65%;
  overflow-y: auto;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  max-height: 905px;
  margin-top: 5px;
  position: absolute;
  top: 76px;
  left: 20px;
  z-index: 1000;
  box-sizing: border-box;
  text-align: left;

  /* Styles for Chrome, Safari, and newer versions of Edge */
  &::-webkit-scrollbar {
    width: 6px; /* Adjust the width of the scrollbar */
  }

  &::-webkit-scrollbar-track {
    background: rgb(255, 255, 255); /* Color of the scrollbar track */
  }

  &::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 4px; /* Rounded corners for the thumb */
  }

  &::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
  }
}

/* For Internet Explorer and Edge */
.exhibition-header {
  -ms-overflow-style: auto; /* Standard scrollbar in IE and Edge */
}

.exhibition-header .header-item-first-show {
  background-color: #121c42;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 300px;
  height: 40px;
  padding: 5px 10px;
  margin-bottom: 5px;
  border: 1px solid #121c42;
  border-radius: 4px;
  font-weight: 600;
  justify-content: space-between;
  cursor: pointer;

  transition: 0.3s ease-in-out;
}

.exhibition-header .header-item-first-show:hover {
  background-color: #fff;
  color: #121c42;

  transition: 0.3s ease-in-out;
}

.exhibition-header .header-item-first-show::after {
  display: flex;
  content: "↓";
}

.exhibition-header .header-item-first-hide {
  background-color: #121c42;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 300px;
  height: 40px;
  padding: 5px 10px;
  margin-bottom: 5px;
  border: 1px solid #121c42;
  border-radius: 4px;
  font-weight: 600;
  justify-content: space-between;
  cursor: pointer;

  transition: 0.3s ease-in-out;
}

.exhibition-header .header-item-first-hide:hover {
  background-color: #fff;
  color: #121c42;

  transition: 0.3s ease-in-out;
}

.exhibition-header .header-item-first-hide::after {
  display: flex;
  content: "↑";
}

.exhibition-header .header-item {
  display: flex;
  flex-direction: row;
  background-color: rgba(18, 28, 66, 0.5);
  padding: 5px 10px;
  margin-bottom: 5px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  justify-content: space-between;
  cursor: pointer;

  transition: 0.3s ease-in-out;
}

.exhibition-header .header-item:last-child {
  margin-bottom: 0;
}

.header-item p {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exhibition-header .header-item:hover {
  background-color: #fff;
  color: #121c42;

  transition: 0.3s ease-in-out;
}

.exhibition-header .header-item::after {
  display: flex;
  content: "→";
}

.show-more-btn {
  width: 300px;
  height: 33px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 500px) {
  .scene-loading-icon {
    left: 9%;
    background-size: contain;
    width: 300px;
    height: 50px;
  }
}

.scene-hidden {
  display: none;
}

.scene-loading-text {
  position: absolute;
  color: white;
  top: 30%;
  left: 0px;
  width: 100%;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .scene-loading-text {
    font-size: 1rem;
  }
}

.scene-loading-spinner {
  position: absolute;
  top: 60%;
  height: 10%;
  left: 20%;
  right: 20%;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.errorcanvas {
  z-index: 998;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.errorcontainer {
  z-index: 999;
  display: none;
  position: absolute;
  top: 25%;
  height: 300px;
  background: #aa3939;
  left: 30%;
  right: 30%;
  border-radius: 10px;
}

.errormessage {
  padding: 15px;
  text-align: center;
}

.vhbutton {
  font-size: 0.9em;
  color: #fff;
}

.vhelement {
  position: absolute;
  object-fit: fill;
}
.vheventlive {
  position: absolute;
}


#vh-stand-btn-stub {
  position: absolute;      
  inset: 0;
  z-index: 5;
  pointer-events: none;    
}

.vh-stand-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  cursor: pointer;
}

.vh-stand-btn--left {
  left: 50px;
}

.vh-stand-btn--right {
  right: 50px;
}

.vh-stand-btn img {
  height: 150px;
  display: block;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.vh-stand-btn:hover img {
  transform: scale(1.15);
  opacity: 0.9;
}

.vhbuttondefault {
  opacity: 0.9;
  border-radius: 20px 20px 20px 20px;
  padding: 10px;
  font-size: 0.9em;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
  text-align: center;
}

.vhbuttonnext {
  opacity: 1;
  border: 3px solid white;
  border-radius: 20px;
  height: 26px;
  padding: 6px;
  font-size: 1.2em;
  text-align: center;
  cursor: pointer;
}

.vhbuttonnext:after {
  content: "";
  position: absolute;
  top: 11px;
  right: 0px;
  width: 30px;
  height: 30px;
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
}

.vhbuttonplay {
  opacity: 1;
  border-radius: 0px 20px 20px 0px;
  padding: 10px;
  padding-right: 20px;
  cursor: pointer;
}

.vhbuttonplay:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -21px;
  width: 30px;
  bottom: 0px;
  background-image: url("../img/btntail.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.vhbuttonplay:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -50px;
  width: 34px;
  bottom: 0px;
  background-image: url("../img/play.png");
  background-color: white;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 67% center;
  border-radius: 50%;
}

.vhbuttonscene {
  border-radius: 0px 20px 20px 0px;
  padding: 10px;
  padding-right: 20px;
  cursor: pointer;
}

.vhbuttonweb {
  opacity: 1;
  background: #efa850;
  border-radius: 0px 20px 20px 0px;
  padding: 10px;
  padding-right: 20px;
  cursor: pointer;
}

.vhbuttonweb:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -21px;
  width: 30px;
  bottom: 0px;
  background-image: url("../img/btntail.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.vhbuttonweb:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -50px;
  width: 34px;
  bottom: 0px;
  background-image: url("../img/web.png");
  background-repeat: no-repeat;
  background-size: 66%;
  background-position: 56% center;
  border-radius: 50%;
  background-color: white;
}

.vhbuttonscene {
  background-color: rgba(0, 0, 0, 0);
}

.vhbutton {
  transition: transform, 400ms ease, background 400ms ease, color 400ms ease;
  background-image: none !important;
  background: #121c42;
  border-radius: 0px 10px 10px 0px !important;
  font-size: 16px !important;
  padding: 6px 10px 6px 6px;
}
.vhbutton:hover {
  transform: perspective(200px) translateZ(20px);
  background: #fff;
  color: #121c42;
}
.vhbutton:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -29px;
  width: 30px;
  bottom: 0px;
  background: #121c42;
  border-radius: 10px 0px 0px 10px;
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center center;
}

.vhbuttonscene:after {
  background-image: url("../img/btnscenetail.png");
}

.vhbuttonchat:after {
  background-image: url("../img/btnscenetail.png");
}

.vhhtml-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.container-inner-nooverflow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.newnavboxbot {
  position: absolute;
  bottom: 3%;
  height: 5%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
  width: 100%;
  display: none;
}

.newnavboxtop {
  position: absolute;
  top: 2%;
  height: 5%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
  width: 100%;
  display: none;
}

.greetingMobile {
  display: none;
}

@media screen and (orientation: portrait) and (max-width: 700px) {
  .newnavboxbot,
  .newnavboxtop {
    display: none !important;
  }

  .programLayer .upperContentWrapper {
    display: flex;
    justify-content: center;
    padding: 0.5rem;
  }

  .upperContentWrapper .filters .multiselectButtonComponent {
    margin-right: 10px !important;
  }

  .programLayer .upperContentWrapper .greeting {
    display: none;
  }

  .greetingMobile {
    display: inline-block;
    color: #fff;
    padding-top: 3.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3.5rem;
    margin: auto;
    font-size: 24px;
  }
}

@media screen and (max-width: 400px) {
  .upperContentWrapper .filters .multiselectButtonComponent {
    margin-bottom: 10px !important;
  }
}

@media screen and (orientation: landscape) and (max-width: 900px) {
  .newnavboxbot,
  .newnavboxtop {
    display: none !important;
  }
}

.newnavboxtop .newstick {
  color: #000;
  right: 33%;
  left: 18%;
}

.newnavboxbot-inner,
.newnavboxtop-inner-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  background: #fff;
  width: 70%;
  height: 100%;
  border-radius: 6px;
}

.newnavboxtop-toolbar {
  right: 20px;
  color: #121c42;
  display: flex;
  font-size: 1.2rem;
  cursor: pointer;
}

.newnavboxbot-inner-content,
.newnavboxtop-inner-content {
  color: #121c42;
  display: flex;
  justify-content: center;
  width: 100%;
}

.newnavboxbot-inner-content div,
.newnavboxtop-inner-content div {
  font-size: 1.2rem;
  cursor: pointer;
}

.langselectnewmenu {
  background: #fff url("../img/language.png") no-repeat center center;
  width: 50px;
  height: 33px;
  background-size: 30px;
  display: none;
  position: relative;
  margin-right: 15px;
}

.newnavboxtop-inner-content div {
  margin-right: 26px;
}

.newnavboxbot-inner-content div::after {
  content: "|";
  margin: 0 8px;
}

.newnavboxbot-inner-content div:last-child::after,
.newnavboxtop-inner-content div:last-child::after {
  content: "";
  margin: 0;
}

.newnavboxbot-experience,
.newnavboxbot-chat,
.newnavboxtop-prev,
.newnavboxtop-logo {
  font-size: 1.2rem;
  margin: 0 20px;
  border-radius: 6px;
  background: #121c42;
  justify-content: center;
  align-items: center;
  color: #fff;
  display: flex;
  padding: 10px;
  width: 15.8%;
  cursor: pointer;
  transition: background 400ms ease, color 400ms ease;
}

.transparent-text {
  color: transparent !important;
  user-select: none;
  cursor: default;
}

.no-hover-effect.no-hover-effect:hover {
  background: #121c42 !important;
  color: #121c42 !important;
}

.newnavboxtop-prev {
  padding: 0 10px;
}

.newnavboxbot-chat.chaticon-updates::after {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: -11px;
  right: 12px;
  border-radius: 50%;
  background-color: #008af2;
}

.newnavboxbot-experience:hover {
  background: #121c42;
}

.newnavboxtop-logo {
  cursor: initial;
}

.newnavboxbot-experience.active:hover,
.newnavboxbot-chat:hover,
.newnavboxtop-prev:hover {
  background: #fff;
  color: #121c42;
}

.newnavboxtop-prev div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.newnavboxbot .vh-watermark {
  font-size: 0.9rem;
  background: #fff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  color: #121c42;
  display: flex;
  padding: 0px 10px;
  width: 14.6%;
  position: absolute;
  right: 20.6px;
  bottom: -27px;
}

.newnavboxbot .vh-watermark::before {
  content: "";
  background: #fff url("../img/VH logo fuzzy.png") no-repeat center center;
  padding: 10px;
  margin-right: 10px;
  background-size: contain;
}

.newnavboxtop-logo {
  background: #fff;
}

.newnavboxtop-logo-inner {
  background: #fff url("../img/Icon@3x.png") no-repeat center center;
  width: 100%;
  height: 100%;
  background-size: contain;
}

.newnavboxtop-profile {
  background: #fff url("../img/profile-white-frame.png") no-repeat center center;
  width: 30px;
  height: 30px;
  background-size: 30px;
  border-radius: 50%;
  background-size: cover;
  position: relative;
}

.newnavboxtop-program {
  background: #fff url("../img/program.png") no-repeat center center;
  width: 30px;
  height: 30px;
  background-size: 30px;
  position: relative;
}

.newnavboxtop-gallery {
  background: #fff url("../img/gallery.png") no-repeat center center;
  width: 30px;
  height: 30px;
  background-size: 30px;
  display: none;
  position: relative;
}

.newnavboxtop-program .live-indicator {
  position: absolute;
  top: -10px;
  right: -40px;
  padding: 4px 6px;
  color: #fff;
  font-size: 0.6rem;
  background: #ea2429;
  animation: pulse 2s infinite;
  border-radius: 6px;
}

.newnavboxtop-library {
  background: #fff url("../img/books.png") no-repeat center center;
  width: 30px;
  height: 30px;
  background-size: 30px;
  position: relative;
}

.newnavboxtop-stands {
  background: url("../img/person_behind_desk.png") no-repeat center center;
  width: 30px;
  height: 30px;
  background-size: 30px;
  position: relative;
}

.tool-tip[contentLibrary]:hover::before {
  content: attr(contentLibrary);
  position: absolute;
  padding: 12px;
  border-radius: 6px;
  display: block;
  z-index: 100;
  background-color: #121c42;
  color: #fff;
  top: 50px;
  font-size: 1rem;
  width: auto;
  white-space: nowrap;
}

.tool-tip[program]:hover::before {
  content: attr(program);
  position: absolute;
  border-radius: 6px;
  padding: 12px;
  display: block;
  z-index: 100;
  background-color: #121c42;
  color: #fff;
  top: 50px;
  font-size: 1rem;
  width: auto;
  white-space: nowrap;
}

.tool-tip[profile]:hover::before {
  content: attr(profile);
  position: absolute;
  border-radius: 6px;
  padding: 12px;
  display: block;
  z-index: 100;
  background-color: #121c42;
  color: #fff;
  top: 50px;
  font-size: 1rem;
  width: auto;
  white-space: nowrap;
}

.tool-tip[gallery]:hover::before {
  content: attr(gallery);
  position: absolute;
  border-radius: 6px;
  padding: 12px;
  display: block;
  z-index: 100;
  background-color: #121c42;
  color: #fff;
  top: 50px;
  font-size: 1rem;
  width: auto;
  white-space: nowrap;
}

.tool-tip[stand]:hover::before {
  content: attr(stands);
  position: absolute;
  border-radius: 6px;
  padding: 12px;
  display: block;
  z-index: 100;
  background-color: #121c42; /* You can change the color as needed */
  color: #fff;
  top: 50px; /* Adjust as needed for proper positioning */
  font-size: 1rem;
  width: auto;
  white-space: nowrap;
}

.langToolTip div {
  display: none;
}

.langToolTip {
  position: absolute;
  border-radius: 6px;
  padding: 12px;
  display: block;
  z-index: 100;
  background-color: #121c42;
  color: #fff;
  top: 50px;
  font-size: 1rem;
  width: auto;
  white-space: nowrap;
}

.stand-overview {
  position: absolute;
  border-radius: 6px;
  padding: 12px;
  display: block;
  z-index: 100;
  background-color: #121c42;
  color: #fff;
  top: 60px;
  right: 100px;
  font-size: 1rem;
  width: auto;
  white-space: nowrap;
}

.navbox {
  position: absolute;
  bottom: 2%;
  height: 5%;
  background: rgba(18, 28, 66, 1);
  left: 2.5%;
  right: 2.5%;
  z-index: 999;
  border-radius: 6px;
}

.navbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.navbox .prev {
  position: absolute;
  left: 25px;
  top: 10px;
  width: 20px;
  bottom: 10px;
  background-image: url("../img/arrow-left.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.navbox .langselect {
  display: none;
  width: 100px;
  text-align: right;
  padding-top: 2px;
  font-size: 0.9em;
  font-weight: lighter;
  cursor: pointer;
  margin-right: 25px;
}

.navbox .langselectlist {
  position: absolute;
  bottom: calc(100% + 6px);
  display: none;
  width: 189px;
  padding: 8px;
  background: #121c42;
  font-size: 0.9em;
  font-weight: lighter;
  cursor: pointer;
}

.newnavboxtop .langselectlistnewmenu {
  right: 0;
  border-radius: 6px;
  position: absolute;
  top: calc(100% + 6px);
  display: none;
  width: 189px;
  padding: 8px;
  background: #fff;
  color: #121c42;
  font-size: 1rem;
  cursor: pointer;
}

.langselectlist div {
  padding: 8px;
  border-bottom: 1px solid white;
  cursor: pointer;
}
.langselectlistnewmenu div {
  padding: 8px;
  border-bottom: 1px solid#121C42;
  cursor: pointer;
}
.langselectlist div:last-child,
.langselectlistnewmenu div:last-child {
  border-bottom: none;
}

.navbox .navbreadcrumb {
  position: absolute;
  left: 70px;
  right: 70px;
  border-left: 0.5px solid white;
  border-right: 0.5px solid white;
  top: 8px;
  bottom: 8px;
  padding-top: 10px;
  padding-left: 15px;
  font-size: 0.9em;
  font-weight: lighter;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.navbox .navbreadcrumb .link {
  font-weight: normal;
  color: white;
  white-space: nowrap;
}

.navbox .navbreadcrumb .active {
  font-weight: bold;
  white-space: nowrap;
}

.navbox .fullscreen {
  position: absolute;
  right: 25px;
  top: 10px;
  width: 20px;
  bottom: 10px;
  background-image: url("../img/fullscreen.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.navbox .toolbar {
  position: absolute;
  display: flex;
  align-items: center;
  right: 80px;
  top: 6px;
  height: 40px;
  user-select: none;
  z-index: 1;
}

.navbreadcrumb span {
  cursor: pointer;
  color: white;
}
.navbreadcrumb span.active {
  cursor: default;
  font-weight: bold;
}

.inlinevideoplay {
  position: absolute;
  top: 40%;
  left: 45%;
  width: 50px;
  height: 50px;
  background-image: url(../img/play.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: 64% center;
  border: 4px solid #e77924;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  display: none;
}

.inlinevideofull {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  background-image: url(../img/fullscreen.png);
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: center center;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

.vhdialogwindowcontent ol {
  list-style: decimal;
}
.vhdialogwindowcontent ul {
  list-style: disc;
}

#mocontainer {
  position: absolute;
  max-width: 300px;
  max-height: 80%;
  height: auto;
  z-index: 2500 !important;
  pointer-events: none;
  display: none;
  text-align: center;
}
#mobox {
  min-width: 10px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  background: white;
  padding: 10px;
  color: black;
}

#programicon {
  display: none;
  cursor: pointer;
  z-index: 1001;
  top: 2.2%;
  height: 6.6%;
  left: 1.8%;
  width: 4.7%;
  background-image: url("../img/programicon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.newstick {
  position: absolute;
  top: 0px;
  right: 34%;
  left: 22%;
  height: 100%;
  font-size: 16px;
  padding-top: 0px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 880px;
}
.newstick p {
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
}
.waitingnews {
  position: absolute;
  top: -100px;
}

.searchkeygroupmenuselections {
  background-color: #696969 !important;
}
.searchkeygroupmenu .filtericon {
  background-image: none;
  display: inline-block;
  width: 12px;
  height: 18px;
}
.searchkeygroupmenuselections .filtericon {
  background-image: url("../img/programfilter.png");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center top;
}

.fullprogram .descriptionhost {
  padding-bottom: 10px !important;
}
.fullprogram .hostbiobtn {
  border: 2px solid white;
  margin-top: -6px;
}

.keygroupfilterdropdown {
  display: none;
  cursor: default;
  color: black;
  position: absolute;
  border-radius: 5px;
  left: 0px;
  top: 100%;
  overflow: hidden;
  width: 250px;
  background: #ffffff;
  z-index: 165;
  padding: 15px;
  box-shadow: 7px 2px 49px -18px rgba(0, 0, 0, 0.63);
  -webkit-box-shadow: 7px 2px 49px -18px rgba(0, 0, 0, 0.63);
  -moz-box-shadow: 7px 2px 49px -18px rgba(0, 0, 0, 0.63);
  overflow-y: auto;
  max-height: 50vh;
}

.dropdownfilter {
  font-size: 0.9em;
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-image: url(../img/programfilter-off.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 0px 3px;
  cursor: pointer;
}
.dropdownfilteractive {
  background-image: url(../img/programfilter-on.png);
  font-weight: bold;
}

#logindiv {
  display: none;
  position: fixed;
  left: 0%;
  width: 100%;
  height: 100%;
  top: 0%;
  z-index: 1100;
}
#logindiv .logindialog {
  position: relative;
  margin-top: 20vh;
  margin-left: auto;
  margin-right: auto;
  display: table;
  width: 30%;
  min-width: 500px;
  max-width: 98%;
  height: auto;
  z-index: 103;
  color: #121c42;
  background: white;
  border-radius: 6px;
}
@media only screen and (max-width: 800px) {
  #logindiv .logindialog {
    min-width: 100%;
    display: flex;
    margin-top: 0px;
    flex-flow: column;
    justify-content: center;
    height: 100vh;
    align-items: center;
  }
  #logindiv .logindialogregistration {
    max-height: 100vh;
    transform: none;
  }
}
@media screen and (max-height: 670px) {
  #logindiv .logindialog {
    margin-top: 0px;
  }
}
#logindiv div.logindialoginner {
  overflow-y: auto;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: center;
  z-index: 10000000000000;
}

#logindiv .loginform {
  flex-flow: column;
  width: 80%;
  margin: 0 auto;
  display: flex;
  position: relative;
}
#logindiv .forgotform {
  flex-flow: column;
  width: 80%;
  margin: 0 auto;
  display: flex;
  display: none;
}
#logindiv .logintitle {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #121c42;
}

#logindiv .logininputcontainer {
  position: relative;
  width: 100%;
  color: #121c42;
}

#logindiv .logininput {
  border-radius: 6px;
  font-size: 20px;
  background: rgb(232, 240, 254);
  display: block;
  width: 100%;
  border: none;
  outline: none;
  padding: 15px 0;
  margin-bottom: 5px;
  margin-top: 5px;
  text-indent: 20px;
}
#logindiv .logininputicon {
  position: absolute;
  left: 15px;
  top: 15px;
  height: 30px;
  width: 30px;
  z-index: 1000;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: text;
}
#logindiv .logininputcontainerusername .logininputicon {
  background-image: url("../img/envelope.png");
}
#logindiv .logininputcontaineremailforgot .logininputicon {
  background-image: url("../img/envelope.png");
}
#logindiv .logininputcontainerpassword .logininputicon {
  background-image: url("../img/padlock.png");
}

.forgotlinkdiv,
.loginlinkdiv {
  color: #a4a4a4;
  text-align: right;
  width: 100%;
  padding-bottom: 10px;
  margin-top: 26px;
  font-size: 0.9em;
}
.forgotlinkdiv a,
.loginlinkdiv a,
.privatePolicy a {
  color: #a4a4a4 !important;
  cursor: pointer;
  text-decoration: none;
}
.loginsendforgot {
  margin-top: 20px;
}
.loginbtn {
  transition: background 400ms ease;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  text-align: center;
  width: 100%;
  background: #124238;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  font-weight: bold;
  border: none;
  font-size: 1.2rem;
}
.loginbtn:hover {
  background: #195d4f;
}
.privatePolicy {
  color: #a4a4a4;
  text-align: right;
  width: 100%;
  padding-top: 10px;
  font-size: 0.9em;
}
.loginregister {
  background: #121c42;
  font-size: 1.2rem;
  transition: background 400ms ease;
}
.loginregister:hover {
  background: #19275d;
}
.elm-loadprogress {
  font-size: 10rem;
  color: #121c42;
  -webkit-text-stroke: 2px #fff;
}
@media screen and (max-width: 767px) {
  .elm-loadprogress {
    font-size: 4rem;
  }
}

/* registration */
.logindialogregistration {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 40vw;
  display: none;
  background: #fff;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 12px;
  justify-content: center;
}
.logindialogregistration.activeVideoSection {
  width: 60vw;
}
@media screen and (max-width: 1000px) {
  .logindialogregistration {
    left: auto;
    width: 100%;
  }
}
.logindialogregistration a {
  color: #405df6;
  text-decoration: none;
}
.registration-table {
  display: grid;
  gap: 20px;
  grid-auto-flow: row;
}
.logindialogregistration input {
  box-sizing: border-box;
  font-size: 20px;
  background: #fff;
  width: 100%;
  border: 1px solid #121c42;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  outline: none;
  padding: 15px;
}
.logindialogregistration input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  box-shadow: none;
}
.logindialogregistration input[type="radio"] {
  width: auto;
  margin-right: 10px;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  box-shadow: none;
}
.logindialogregistration label {
  font-size: 20px;
  color: #121c42;
  cursor: pointer;
}
.logindialogregistration textarea {
  box-sizing: border-box;
  font-size: 20px;
  background: #fff;
  width: 100%;
  border: 1px solid #121c42;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  outline: none;
  padding: 15px;
  height: 180px;
  resize: none;
}
.logindialogregistration select[multiple] {
  background-image: none;
}
.logindialogregistration select {
  font-size: 20px;
  color: #121c42;
  width: 100%;
  padding: 15px;
  border: 1px solid #121c42;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  outline: none;
  background: #fff url("../img/arrowdowndark.png") no-repeat 97% center;
  background-size: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-bottom: 5px;
}
.registration-headline {
  font-size: 1rem;
  margin: 10px 0 30px 0;
  display: block;
}
.register-header {
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 25px;
  text-align: center;
}
.registration-submit-div {
  text-align: center;
  margin: 20px;
  position: relative;
}
.registration-submit {
  transition: background 400ms ease;
  display: inline-block;
  max-width: 30%;
  padding: 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
  border-radius: 6px;
  background: #124238;
  color: white;
  font-weight: bold;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .registration-submit {
    max-width: 100%;
  }
}
.registration-submit:hover {
  background: #195d4f;
}
.registration-back-div {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 25px;
  font-weight: bold;
}
.registration-back {
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-align: center;
  color: #405df6;
  font-weight: bold;
  border: none;
}
.registration-error {
  margin: 20px;
  background: #ffe0de;
  padding: 20px;
  text-align: center;
  display: none;
}
.registration-requirment {
  opacity: 0.5;
  padding: 5px;
  font-size: 14px;
}
.registration-policy {
  padding: 5px;
}
.registration-policy label {
  font-size: 15px;
}
.registration-policy input[type="checkbox"] {
  margin-right: 6px;
  vertical-align: top;
}
.reg-row-error {
  background: #ffe0de;
}
.signupdiv {
  flex-flow: column;
  width: 80%;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.signupdiv span {
  color: #a4a4a4;
  text-align: right;
  width: 100%;
  padding-bottom: 10px;
  margin-top: 26px;
  font-size: 0.9em;
  cursor: pointer;
}
.loginsignup {
  background: #a7cfdc;
  margin-top: 8px;
}
.registration-headliner {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.registration-wrapper {
  width: 100%;
  padding: 40px 40px 80px 40px;
  height: 100%;
}
.registration-video-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  margin: 130px 20px 0;
  flex-basis: 50%;
  height: 100%;
}
.registration-video-frame {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  height: 180px;
  max-width: 304px;
  border-radius: 12px;
}
.registration-video-subtitle {
  margin-bottom: 20px;
  border-bottom: 1px solid #121c42;
}
#top-video,
#top-image {
  order: 1;
}
#top-subtitle {
  order: 2;
}
#middle-video,
#middle-image {
  order: 3;
}
#middle-subtitle {
  order: 4;
}
#bottom-video,
#bottom-image {
  order: 5;
}
#bottom-subtitle {
  order: 6;
}

/* login message */
.loginMessage {
  width: 100%;
  position: absolute;
  transform: translateY(-10%);
  background: #fff;
  display: none;
  max-height: 80vh;
  overflow: auto;
  padding-bottom: 30px;
  border-radius: 6px;
}
.loginMessageInner {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.loginMessage .signupdiv {
  padding-top: 0px;
}

.loginmouseover {
  position: absolute;
  width: 15px;
  height: 15px;
  cursor: help;
  right: 8%;
  top: 38%;
  background-image: url("../img/mouseoverhelp.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#logindiv .loginerror {
  display: none;
  font-size: 15px;
  color: red;
  padding-bottom: 15px;
}

#diaglogout {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 5px;
  text-align: center;
  padding-top: 30px;
  height: auto !important;
  padding-bottom: 30px;
  background-image: none !important;
}
.user-name {
  color: black;
  font-size: 1.5em;
  font-weight: bold;
  padding-bottom: 10px;
}
.logout-button {
  cursor: pointer;
  color: white;
  background: #343434;
  display: inline-block;
  width: 60%;
  border-radius: 5px;
  padding: 5px;
  font-size: 0.9em;
  font-weight: bold;
}
.eventdate {
  font-size: 0.75em;
}
.keywordcount {
  padding-left: 10px;
}

#diagdeltager {
  display: none;
  z-index: 1001;
  top: 10%;
  height: 70%;
  left: 25%;
  width: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.deltager-inner {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 1);
  border-radius: 5px;
  color: black;
  position: relative;
}
.deltager-close {
}
.deltager-close {
  position: absolute;
  top: 0px;
  left: -60px;
  width: 40px;
  height: 40px;
  background-color: white;
  cursor: pointer;
  background-image: url("../img/programclose.png");
  background-size: 30px 30px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 5px;
}
.deltager-title {
  text-align: center;
  top: 5%;
  left: 5%;
  right: 5%;
  padding-top: 40px;
  font-size: 40px;
  font-weight: bold;
}
.deltager-list {
  position: absolute;
  top: 15%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  overflow-y: auto;
}
.deltager-item {
  background: #9b9b9b;
  border-radius: 5px;
  margin: 5px;
  padding: 5px;
  padding-left: 10px;
  color: white;
  font-size: 18px;
}
.deltager-load {
  text-align: center;
  padding: 50px;
  font-size: 20px;
}

#vhdialog {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(245, 249, 255, 0.3);
  transform: translateZ(1065px) translate3d(0, 0, 1065px);
  z-index: 1065;
  display: none;
}
#vhdialog .vhdialogwindow {
  position: relative;
  top: 30%;
  left: 35%;
  width: 30%;
  height: 35%;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 10px 8px 1px rgba(0, 0, 0, 0.4);
  display: flex;
}
#vhdialog .vhdialogwindowcontent {
  position: relative;
  color: #121c42;
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  align-items: flex-start;
}
#vhdialog .vhdialogImageWrapper {
  width: 50%;
  height: 100%;
  border-radius: 6px 0 0 6px;
}
#vhdialog h1 {
  font-weight: bold;
  font-size: 2.2em;
}
#vhdialog p {
  padding-left: 60px;
  padding-right: 60px;
}
#vhdialog div.lightbtn {
  background: #858585;
  display: inline-block;
  border-radius: 5px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.2em;
  color: white;
  cursor: pointer;
}
#vhdialog div.bluebtn {
  background: #121c42;
  display: inline-block;
  border-radius: 5px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.2em;
  color: white;
  cursor: pointer;
}
#vhdialog.video {
  width: 81.3%;
  top: 90px;
  left: 20px;
  background: none;
  position: absolute;
  height: 82%;
}
#vhdialog.video .videoclose {
  height: 26px;
  width: 16px;
  position: absolute;
  top: -11px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
  z-index: 100;
}
#vhdialog.video .videoclose::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}
#vhdialog.videoFullScreen {
  width: 100%;
  top: 0;
  left: 0;
  background: none;
  position: absolute;
  height: 100%;
}
#vhdialog.videoFullScreen .videocloseFullScreen {
  height: 26px;
  width: 16px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
  z-index: 100;
}
#vhdialog.videoFullScreen .videocloseFullScreen::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}

.dialogcloseicon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 5px;
  left: -50px;
  top: 0px;
  background-image: url("../img/programclose.png") !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20 20;
  cursor: pointer;
}

.vhelement {
  z-index: 10;
}
.videostretch {
  object-fit: fill;
}
.scene-loading {
  background: #121c42 !important;
  z-index: 10000;
}

#logindiv {
}

#diaglogout {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 5px;
  text-align: center;
  padding-top: 30px;
  height: auto !important;
  padding-bottom: 30px;
  background-image: none !important;
}
.user-name {
  color: black;
  font-size: 1.5em;
  font-weight: bold;
  padding-bottom: 10px;
}
.logout-button {
  cursor: pointer;
  color: white;
  background: #343434;
  display: inline-block;
  width: 60%;
  border-radius: 5px;
  padding: 5px;
  font-size: 0.9em;
  font-weight: bold;
}

#meetingdialog {
  display: none;
  position: absolute;
  top: 10%;
  width: 81.2%;
  left: 1%;
  height: 75%;
  z-index: 800;
}
#meetingdialog .meetingpanel {
  background: white;
  border-radius: 15px;
  position: absolute;
  bottom: 0.1%;
  right: 1.9%;
  width: 20%;
  height: 93%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
  color: black;
  display: none;
}
#meetingdialog .meetingframe {
  position: absolute;
  top: 4%;
  left: 0%;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 6px;
  z-index: 1200;
  height: 100%;
  overflow-y: hidden;
}

.vhmobilescene #meetingdialog {
  top: 0%;
  left: 0px;
  border-radius: 0px;
  z-index: 1020;
  height: 100%;
  margin-bottom: 40px;
  width: 100%;
}
.vhmobilescene #meetingdialog .meetingframe {
  top: 0%;
  left: 0%;
  width: 100%;
  border: none;
  border-radius: 0;
}

.meetingmessageWrapper {
  color: #121c42;
  font-size: 3vh;
  display: flex;
  height: 100%;
  width: 100%;
  background: #fff;
}
.meetingMessage {
  display: flex;
  flex-flow: column nowrap;
  height: 80%;
  align-items: center;
  overflow-y: auto;
  width: 100%;
  margin-top: 40px;
}
.meetingselect {
  width: 100%;
  height: 100%;
  color: #121c42;
  text-align: center;
  padding: 20px 0 0 0;
  overflow-y: hidden;
  background: #121c42;
}

.meetingselect h3 {
  color: #fff;
  font-size: 1.6rem;
  display: inline-block;
  padding: 0 10px 20px;
  border-bottom: 2px solid #fff;
}

.vhmobilescene .meetingselect h3 {
  font-size: 1.2rem;
}

.meeting-no-panel .meetingpanel {
  display: none;
}

.meeting-wrapper {
  overflow-y: auto;
  height: 610px;
  margin-top: 40px;
}

.vhmobilescene .meeting-wrapper {
  height: 400px;
  overflow-x: hidden;
}

.meeting {
  background: #fff;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 850px;
  min-width: 10vw;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #121c42;
  color: #121c42;
  border-radius: 6px;
  margin-bottom: 10px;
  margin-top: 10px;
  transition: background 400ms ease, color 400ms ease;
}

.vhmobilescene .meeting {
  flex-direction: column;
  padding: 16px 0;
}

.vhmobilescene .meeting-info {
  flex-direction: column;
  width: 100%;
}
.meeting-info {
  display: flex;
}

.meeting-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 10px 20px;
}

.meeting-description {
  margin-top: 10px;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  @supports (-webkit-line-clamp: 2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.vhmobilescene .meeting-description {
  font-size: 1rem;
}

.meeting-title {
  font-size: 1.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vhmobilescene .meeting-title {
  font-size: 1.6rem;
  text-align: center;
}

.meeting-time {
  padding: 20px 30px;
  margin: 10px;
  border-radius: 6px;
  background-color: #121c42;
  color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  flex-direction: column;
}

.vhmobilescene .meeting-time {
  padding: 10px;
}

.meeting-time-date {
  font-size: 1.2rem;
}

.meeting-time-clock {
  font-size: 1.6rem;
  margin-top: 6px;
}

.meeting-select-button {
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: block;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 10px;
  border: 1px solid #121c42;
  background: #121c42;
  transition: background 400ms ease, color 400ms ease;
}
.meeting-select-button:hover {
  background: #fff;
  color: #121c42;
  transition: background 400ms ease, color 400ms ease;
}
.future-meeting {
  text-align: center;
  color: #121c42;
  display: block;
  padding: 10px;
  width: 75%;
  max-width: 50vw;
  min-width: 10vw;
  border: 1px solid #121c42;
  color: #fff;
  background: #121c42;
  border-radius: 6px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.vhdialogwindowcontent {
  background: white;
}
.dialogpopup .vhdialogwindowcontent {
  background: rgba(0, 0, 0, 0) !important;
}
.dialogpopup .vhdialogwindow {
  border-radius: 6px !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
  color: white !important;
  background-position: bottom right !important;
}
.dialogpopup .vhdialogwindowcontent {
  color: white !important;
  font-size: 22px !important;
  text-align: left !important;
}
.dialogpopup .popuphead {
  color: #121c42;
  font-size: 30px;
  line-height: 100%;
}
.dialogpopup .popupbody {
  color: #121c42;
  padding-top: 20px;
  font-size: 18px;
}
.popupbuttons {
  padding-top: 30px;
}
.popupbuttons .popupbutton {
  margin-top: 10px;
  margin-right: 10px;
}
.popupbutton {
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  background: #124238;
  padding: 8px;
  border: 1px solid #121c42;
  border-radius: 6px;
  transition: background 400ms ease;
}
.popupbutton:hover {
  background: #195d4f;
}

.extopletters {
  user-select: none;
}
.extopletters span {
  border-radius: 5px;
  padding: 5px 5px;
  cursor: pointer;
  margin-right: -8px;
}
.extopletters .selected {
  background: #000;
}
.extopletters .all {
  background: transparent;
}
.categoryitem {
  cursor: pointer;
}
.extopletters span {
  cursor: pointer;
}
.corporate {
  display: none;
}
.corporate.activecorporate {
  display: block;
}

.expage .vhstatic {
  top: 0px;
  width: 100%;
  height: 100%;
}

.pageactive .vhstatic {
  left: 0%;
}
.pagerightin .vhstatic {
  left: 85%;
}
.pagerightout .vhstatic {
  left: 100%;
}
.pageleftin .vhstatic {
  left: -85%;
}
.pageleftout .vhstatic {
  left: -100%;
}

.meeting-popup-error-wrapper {
  position: absolute;
  z-index: 1000;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 15%;
  max-width: 700px;
  width: 100%;
}

.meeting-popup-error {
  color: #121c42;
  background: #fae6e6;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-flow: column nowrap;
  border-radius: 12px;
  align-items: center;
  text-align: left;
  animation: fadeIn 1s;
}

.meeting-popup-error p {
  font-size: 1.6rem;
}

.meeting-popup-error button {
  border: none;
  border-radius: 12px;
  background-color: #121c42;
  color: #fff;
  padding: 16px 14px;
  font-size: 1.4rem;
  transition: background 300ms, color 300ms;
  border: 1px solid #121c42;
  cursor: pointer;
  margin-top: 50px;
}

.bullet {
  background-image: url("../img/exbullet.png");
  display: inline-block;
  width: 20px;
  margin-left: 5px;
  margin-right: 5px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.bulletactive {
  background-image: url("../img/exbulletactive.png");
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  margin-right: 5px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.exFilters {
  position: absolute;
  left: 7%;
  top: 27px;
  z-index: 1001;
  display: flex;
}
.exFilters.exFiltersnewmenu {
  top: 26px;
  left: 18%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .exFilters {
    display: none;
  }
}
.exFilters .filterBtn {
  padding: 11px 15px;
  background: #78948f;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  border: 6px;
  transition: background 400ms ease;
}
.exFilters .filterBtn:hover {
  background: #195d4f;
}
.filterBtnContainer {
  display: inline;
}
.filterBtnHidden {
  display: none;
}
.exFilters .filterBtn:active {
  position: relative;
  top: 1px;
  left: 1px;
}
.exFilters .filterBtn--active {
  background: #124238;
}
.exFilters input {
  border-radius: 6px;
  outline: 0;
  padding-left: 10px;
  margin-left: 10px;
  height: 38px;
}
.exFilters input:focus {
  outline: none;
}

.exstand1light {
  background-image: url("../img/Booths/Light/Overview/Booths/Front Row/Booth3.png");
}
.exstand2light {
  background-image: url("../img/Booths/Light/Overview/Booths/Front Row/Booth2.png");
}
.exstand3light {
  background-image: url("../img/Booths/Light/Overview/Booths/Back Row/Booth2.png");
}
.exstand4light {
  background-image: url("../img/Booths/Light/Overview/Booths/Back Row/Booth1.png");
}
.exstand5light {
  background-image: url("../img/Booths/Light/Overview/Booths/Back Row/Booth3.png");
}

.exstand1dark {
  background-image: url("../img/Booths/Dark/Overview/Booths/Front Row/Booth1.png");
}
.exstand2dark {
  background-image: url("../img/Booths/Dark/Overview/Booths/Front Row/Booth2.png");
}
.exstand3dark {
  background-image: url("../img/Booths/Dark/Overview/Booths/Back Row/Booth1.png");
}
.exstand4dark {
  background-image: url("../img/Booths/Dark/Overview/Booths/Back Row/Booth2.png");
}
.exstand5dark {
  background-image: url("../img/Booths/Dark/Overview/Booths/Back Row/Booth3.png");
}

.exstand1corporateLight {
  background-image: url("../img/Booths/Corporate/overview/corporate-stand.png");
}
.exstand2corporateLight {
  background-image: url("../img/Booths/Corporate/overview/corporate-stand2.png");
}

.exstand1corporateWoodLight {
  background-image: url("../img/Booths/Corporate/overview/corporate-stand.png");
}
.exstand2corporateWoodLight {
  background-image: url("../img/Booths/Corporate/overview/corporate-stand2.png");
}

.standlogo1light {
  position: absolute;
  left: 25.8%;
  width: 10.1%;
  height: 9%;
  top: 45.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo2light {
  position: absolute;
  left: 62.14%;
  width: 10%;
  height: 8.8%;
  top: 45.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo3light {
  position: absolute;
  left: 43.55%;
  width: 7.2%;
  height: 6.5%;
  top: 31.35%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo4light {
  position: absolute;
  left: 17.4%;
  width: 7.3%;
  height: 6.4%;
  top: 31.35%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo5light {
  position: absolute;
  left: 69.7%;
  width: 7.2%;
  height: 6.5%;
  top: 31.3%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.standlogo1corporateLight {
  position: absolute;
  left: 23.3%;
  width: 11.4%;
  height: 11%;
  top: 40.6%;
  transform-origin: top;
  transform: skewX(3deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo2corporateLight {
  position: absolute;
  left: 74.4%;
  width: 11.5%;
  height: 11.3%;
  top: 40.6%;
  transform-origin: top;
  transform: skewX(-5deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.standleft1corporateLight,
.standleft1corporateWoodLight {
  position: absolute;
  left: 3.6%;
  width: 3.6%;
  height: 10.6%;
  top: 55.8%;
  transform-origin: top;
  transform: skewX(7deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standright1corporateLight,
.standright1corporateWoodLight {
  position: absolute;
  left: 36.6%;
  width: 3.6%;
  height: 10.6%;
  top: 55.7%;
  transform-origin: top;
  transform: skewX(2deg) rotateY(-4deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.standlogo1corporateWoodLight {
  position: absolute;
  left: 23.3%;
  width: 11.4%;
  height: 11%;
  top: 40.6%;
  transform-origin: top;
  transform: skewX(3deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo2corporateWoodLight {
  position: absolute;
  left: 74.4%;
  width: 11.5%;
  height: 11.3%;
  top: 40.6%;
  transform-origin: top;
  transform: skewX(-5deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.standleft2corporateWoodLight,
.standleft2corporateLight {
  position: absolute;
  left: 59.8%;
  width: 3.5%;
  height: 10.6%;
  top: 55.5%;
  transform-origin: top;
  transform: skewX(-2deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standright2corporateWoodLight,
.standright2corporateLight {
  position: absolute;
  left: 92.5%;
  width: 3.5%;
  height: 10.6%;
  top: 55.4%;
  transform-origin: top;
  transform: skewX(-7deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.standtable1corporateLight,
.standtable1corporateWoodLight {
  position: absolute;
  left: 30.4%;
  width: 6.1%;
  height: 5.7%;
  top: 59.3%;
  transform-origin: top;
  transform: skewX(3deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standtable2corporateLight,
.standtable2corporateWoodLight {
  position: absolute;
  left: 84.3%;
  width: 6%;
  height: 5.6%;
  top: 59.1%;
  transform-origin: top;
  transform: skewX(-6deg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.standlogo1dark {
  position: absolute;
  left: 27.1%;
  width: 6.3%;
  height: 5.6%;
  top: 48%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo2dark {
  position: absolute;
  left: 63.7%;
  width: 6.4%;
  height: 5.7%;
  top: 47.95%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo3dark {
  position: absolute;
  left: 44.6%;
  width: 4.49%;
  height: 4.2%;
  top: 32.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo4dark {
  position: absolute;
  left: 18.3%;
  width: 4.6%;
  height: 4.1%;
  top: 32.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standlogo5dark {
  position: absolute;
  left: 70.9%;
  width: 4.6%;
  height: 4.2%;
  top: 32.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.standleft4light {
  position: absolute;
  left: 7.4%;
  width: 2.9%;
  height: 8.9%;
  top: 37.31%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(4.5deg);
}
.standright4light {
  position: absolute;
  left: 26.6%;
  width: 2.9%;
  height: 8.9%;
  top: 37.31%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(1.8deg);
}
.standleft3light {
  position: absolute;
  left: 35.75%;
  width: 3%;
  height: 8.9%;
  top: 37.32%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(1deg);
}
.standright3light {
  position: absolute;
  left: 55%;
  width: 2.95%;
  height: 9.1%;
  top: 37.24%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-0.5deg);
}
.standleft5light {
  position: absolute;
  left: 64.2%;
  width: 3%;
  height: 8.9%;
  top: 37.4%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-1.2deg);
}
.standright5light {
  position: absolute;
  left: 83.4%;
  width: 3%;
  height: 8.9%;
  top: 37.4%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-3.2deg);
}
.standleft1light {
  position: absolute;
  left: 12.6%;
  width: 4.3%;
  height: 12.7%;
  top: 56.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(3.8deg);
}
.standright1light {
  position: absolute;
  left: 40.1%;
  width: 4.3%;
  height: 12.7%;
  top: 56.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(0.7deg);
}
.standleft2light {
  position: absolute;
  left: 53.34%;
  width: 4.1%;
  height: 12.8%;
  top: 56.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-0.9deg) perspective(10px) rotateX(-0.2deg);
}
.standright2light {
  position: absolute;
  left: 80.84%;
  width: 4.2%;
  height: 12.7%;
  top: 56.3%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-4deg);
}

.standleft4dark {
  position: absolute;
  left: 10.1%;
  width: 2.5%;
  height: 9.4%;
  top: 33.91%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(5deg) skewY(-6deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}
.standright4dark {
  position: absolute;
  left: 28.45%;
  width: 2%;
  height: 9.3%;
  top: 34.01%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(2deg) skewY(8deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}
.standleft3dark {
  position: absolute;
  left: 36.85%;
  width: 2.4%;
  height: 9.3%;
  top: 33.92%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(2deg) skewY(-5deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}
.standright3dark {
  position: absolute;
  left: 55%;
  width: 2.35%;
  height: 9.3%;
  top: 33.94%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(0deg) skewY(6deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}
.standleft5dark {
  position: absolute;
  left: 63.9%;
  width: 2%;
  height: 9.3%;
  top: 33.9%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(-1deg) skewY(-7deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}
.standright5dark {
  position: absolute;
  left: 81.8%;
  width: 2.5%;
  height: 9.2%;
  top: 34%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(-3.6deg) skewY(5.7deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}
.standleft1dark {
  position: absolute;
  left: 15.8%;
  width: 3.5%;
  height: 13.1%;
  top: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(3.6deg) skewY(-8deg) rotateX(-0.3deg)
    rotateY(0.2deg) rotateZ(0deg);
}
.standright1dark {
  position: absolute;
  left: 41.3%;
  width: 3.1%;
  height: 12.8%;
  top: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(0.2deg) skewY(8deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}
.standleft2dark {
  position: absolute;
  left: 53.64%;
  width: 2.9%;
  height: 11.7%;
  top: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(-0.6deg) skewY(-8deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}
.standright2dark {
  position: absolute;
  left: 78.74%;
  width: 3.5%;
  height: 12.8%;
  top: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: perspective(10px) skewX(-3deg) skewY(8deg) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg);
}

.standtablet1light {
  position: absolute;
  left: 33.5%;
  width: 1.4%;
  height: 1.9%;
  top: 62.5%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-5.7deg);
}
.standcomputer1light {
  position: absolute;
  left: 28.78%;
  width: 1.84%;
  height: 1.7%;
  top: 58.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standcomputer2light {
  position: absolute;
  left: 67.18%;
  width: 1.84%;
  height: 1.7%;
  top: 58.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standtablet2light {
  position: absolute;
  left: 73.1%;
  width: 1.5%;
  height: 1.9%;
  top: 62.5%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(6.3deg);
}
.standtablet3light {
  position: absolute;
  left: 50.1%;
  width: 0.9%;
  height: 1.1%;
  top: 42.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(0deg);
}
.standcomputer3light {
  position: absolute;
  left: 46.4%;
  width: 1.25%;
  height: 1.5%;
  top: 39.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standcomputer4light {
  position: absolute;
  left: 19.1%;
  width: 1.25%;
  height: 1.5%;
  top: 39.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standtablet4light {
  position: absolute;
  left: 22.2%;
  width: 0.9%;
  height: 1.1%;
  top: 42.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-5.9deg);
}
.standcomputer5light {
  position: absolute;
  left: 73.6%;
  width: 1.3%;
  height: 1.5%;
  top: 39.8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standtablet5light {
  position: absolute;
  left: 78%;
  width: 0.9%;
  height: 1.1%;
  top: 42.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(9deg);
}

.standcomputer1dark {
  position: absolute;
  left: 28.68%;
  width: 1.94%;
  height: 1.7%;
  top: 56.9%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standcomputer2dark {
  position: absolute;
  left: 66.58%;
  width: 1.94%;
  height: 1.7%;
  top: 56.9%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standcomputer3dark {
  position: absolute;
  left: 46.1%;
  width: 1.4%;
  height: 1.5%;
  top: 38.7%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standcomputer4dark {
  position: absolute;
  left: 19.3%;
  width: 1.4%;
  height: 1.5%;
  top: 38.7%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.standcomputer5dark {
  position: absolute;
  left: 73.1%;
  width: 1.4%;
  height: 1.5%;
  top: 38.7%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.standtablet1dark {
  position: absolute;
  left: 20.9%;
  width: 1.45%;
  height: 2.1%;
  top: 62.7%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-10.7deg);
}
.standtablet2dark {
  position: absolute;
  left: 61.2%;
  width: 1.45%;
  height: 1.9%;
  top: 62.7%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(3.3deg);
}
.standtablet3dark {
  position: absolute;
  left: 69.6%;
  width: 1.1%;
  height: 1.2%;
  top: 42.3%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(7deg);
}
.standtablet4dark {
  position: absolute;
  left: 13.3%;
  width: 1.1%;
  height: 1.2%;
  top: 42.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(-7deg);
}
.standtablet5dark {
  position: absolute;
  left: 41.4%;
  width: 1%;
  height: 1.3%;
  top: 42.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: skewX(0deg);
}

.standarea1light {
  position: absolute;
  left: 10%;
  width: 38%;
  top: 44%;
  height: 30%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}
.standarea2light {
  position: absolute;
  left: 50%;
  width: 38%;
  top: 44%;
  height: 30%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}
.standarea3light {
  position: absolute;
  left: 34%;
  width: 25%;
  top: 24%;
  height: 25%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}
.standarea4light {
  position: absolute;
  left: 7%;
  width: 25%;
  top: 24%;
  height: 25%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}
.standarea5light {
  position: absolute;
  left: 60%;
  width: 25%;
  top: 24%;
  height: 25%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}

.standarea1dark {
  position: absolute;
  left: 10%;
  width: 38%;
  top: 44%;
  height: 30%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}
.standarea2dark {
  position: absolute;
  left: 50%;
  width: 38%;
  top: 44%;
  height: 30%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}
.standarea3dark {
  position: absolute;
  left: 34%;
  width: 25%;
  top: 24%;
  height: 25%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}
.standarea4dark {
  position: absolute;
  left: 7%;
  width: 25%;
  top: 24%;
  height: 25%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}
.standarea5dark {
  position: absolute;
  left: 60%;
  width: 25%;
  top: 24%;
  height: 25%;
  cursor: pointer;
  background: rgba(100, 100, 100, 0);
}

.standbutton1 {
  top: 62%;
  left: 19%;
  position: absolute;
  z-index: 100;
}
.standbutton2 {
  top: 63%;
  left: 69%;
  position: absolute;
  z-index: 100;
}
.standbutton3 {
  top: 39%;
  left: 48%;
  position: absolute;
  z-index: 100;
}
.standbutton4 {
  top: 39%;
  left: 22%;
  position: absolute;
  z-index: 100;
}
.standbutton5 {
  top: 39%;
  left: 74.5%;
  position: absolute;
  z-index: 100;
}

.stand-owners-wrapper {
  position: absolute;
  z-index: 1001;
  border-radius: 6px;
  left: 17.7%;
  top: 9%;
  height: auto;
  width: 300px;
  background-color: #fff;
  display: block;
}

.stand-owners-title {
  color: #121c42;
  text-align: left;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}

.stand-owners {
  display: flex;
  flex-flow: column nowrap;
  font-size: 1.2rem;
}

.stand-owner {
  color: #121c42;
  padding: 0px 20px 20px;
  position: relative;
  font-size: 1.2rem;
  cursor: pointer;
}

.stand-owner::after {
  content: " ";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 6px;
  border-radius: 50%;
  margin-left: 10px;
  background-color: #4caf50;
}

.disclaimerText {
  min-width: 400px;
  max-width: 1241px;
  padding: 0;
  font-size: 0.85em;
  width: 100%;
  color: #121c42;
  display: block;
  background-color: #fff;
  position: absolute;
  bottom: 6px;
  text-align: center;
  border-radius: 6px;
  left: 339px;
}
.disclaimerText a {
  color: #121c42;
}

.speakerbiodialog {
  z-index: 1182 !important;
}
.speakerbiodialog .vhdialogwindowcontent {
  text-align: left !important;
  max-height: 800px !important;
  width: 100% !important;
  border-radius: 6px;
}
.speakerbiodialog .vhdialogImageWrapper {
  display: none;
}
.speakerbiodialog .vhdialogwindow {
  top: 9% !important;
  left: 1.2% !important;
  width: 81% !important;
  height: 81.1% !important;
}
.vhmobilescene .speakerbiodialog .vhdialogwindowcontent {
  text-align: left !important;
  max-height: 100% !important;
  padding: 0 !important;
}
.vhmobilescene .speakerbiodialog .vhdialogwindow {
  top: 0% !important;
  left: 0% !important;
  width: 100% !important;
  height: 100% !important;
}
.vhmobilescene .speakerbiodialog .vhdialogwindowcontent img {
  max-width: 100%;
  height: auto;
}

.mobileMenuWrapper {
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  border-radius: 6px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    140deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 80%,
    rgba(0, 9, 240, 1) 100%
  );
  background: -webkit-linear-gradient(
    140deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 80%,
    rgba(0, 9, 240, 1) 100%
  );
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 80%,
    rgba(0, 9, 240, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#0009f0",GradientType=1);
  z-index: 999999;
  color: #121c42;
}

@media screen and (max-width: 700px) {
  .mobileMenuWrapper .menuContent {
    display: flex;
    flex-flow: column nowrap;
    padding: 20px;
    margin: 80px 20px 20px 20px;
    border-top: 1px solid #121c42;
  }

  .vhhtml-inner iframe {
    display: none !important;
  }

  .upperContentWrapper {
    display: flex;
    flex-direction: column;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }

  .panelBtns {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin: 1rem;
  }

  .mobileMenuWrapper .closeMobileMenuBtn {
    display: block;
    position: absolute;
    right: 22px;
    top: 16px;
    padding: 4px 10px;
    border-radius: 50%;
    border: 1px solid #121c42;
    animation: fadeIn 3s;
    z-index: 10000000;
  }

  .mobileMenuWrapper .notification {
    display: none;
  }

  .mobileMenuWrapper .contentLibrary,
  .mobileMenuWrapper .program,
  .mobileMenuWrapper .gallery,
  .mobileMenuWrapper .notification,
  .mobileMenuWrapper .profile {
    padding: 6px 6px 6px 30px;
    position: relative;
    white-space: nowrap;
    font-weight: 500;
    margin-bottom: 20px;
    border-radius: 6px;
  }

  .mobileMenuWrapper .contentLibrary::before {
    position: absolute;
    left: 4px;
    top: 6px;
    content: "";
    background: url("../img/books.png") no-repeat center center;
    height: 20px;
    width: 20px;
    background-size: contain;
  }

  .mobileMenuWrapper .program::before {
    position: absolute;
    left: 4px;
    top: 6px;
    content: "";
    background: url("../img/program.png") no-repeat center center;
    height: 20px;
    width: 20px;
    background-size: contain;
  }

  .mobileMenuWrapper .gallery::before {
    position: absolute;
    left: 4px;
    top: 6px;
    content: "";
    background: url("../img/gallery.png") no-repeat center center;
    height: 20px;
    width: 20px;
    background-size: contain;
  }

  .mobileMenuWrapper .notification::before {
    position: absolute;
    left: 4px;
    top: 6px;
    content: "";
    background: url("../img/notification.png") no-repeat center center;
    height: 20px;
    width: 20px;
    background-size: contain;
  }

  .mobileMenuWrapper .profile::before {
    position: absolute;
    left: 4px;
    top: 6px;
    content: "";
    background: url("../img/mob-profile.png") no-repeat center center;
    height: 20px;
    width: 20px;
    background-size: contain;
  }
}

.speakerbiodialog .dialogcloseicon {
  height: 26px;
  width: 16px;
  top: -15px;
  left: unset;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
}
.speakerbiodialog .dialogcloseicon::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}

.CookieDeclaration {
  display: none;
}

.overlayVideo {
  transform: translateZ(200px);
}
.overlayVideo {
  z-index: 250;
}
.overlayVideooverlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  z-index: 251;
}
.vhbackground {
  transform: translateZ(-100px);
}

.gallery-header {
  padding: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #fff;
}

.gallery-wrapper {
  display: none;
  position: absolute;
  top: 49.4%;
  left: 41.7%;
  width: 81.2%;
  height: 81.1%;
  transform: translate(-50%, -50%);
  z-index: 1100;
  background: #121c42;
  color: #fff;
  border-radius: 6px;
  overflow: visible; /* allow the close button to overflow */
}

.gallery-wrapper .library-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gallery-scrollable {
  flex: 1;
  overflow-x: hidden; /* hide horizontal scrollbar if any */
  overflow-y: auto;
  padding-top: 10px; /* small space under the close button */
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.gallery-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 16px;
  height: 26px;
  padding: 10px 16px;
  background-color: #121c42;
  color: white;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.gallery-card-wrapper {
  display: flex;
  max-width: 100%;
  height: 100%;
}

.gallery-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 335px);
  grid-template-rows: repeat(4, auto);
  padding: 20px;
  column-gap: 60px;
  row-gap: 25px;
}

.gallery-card-wrapper .gallery-card {
  display: flex;
  flex-flow: column nowrap;
  background: #fff;
  color: #121c42;
  border-radius: 6px;
  padding: 10px 0;
  height: 385px;
  width: 330px;
}

.vhmobilescene .vhimage {
  display: none;
}

.vhmobilescene .gallery-card-wrapper .gallery-card {
  margin-bottom: 40px;
}

.gallery-card .gallery-card-text-wrapper {
  display: flex;
  flex-flow: column nowrap;
  height: 100%;
  padding: 0 40px;
}

.gallery-card .gallery-card-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  border-top: 1px solid #121c42;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-card .gallery-card-subtitle {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-card .gallery-card-description {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 0 0 0;
  @supports (-webkit-line-clamp: 3) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

.gallery-card .gallery-card-image {
  height: 210px;
  width: 350px;
  object-fit: contain;
  display: flex;
  align-self: center;
  justify-content: center;
}

.gallery-card .gallery-card-image img {
  display: block;
  width: 250px;
  height: 210px;
  border-radius: 6px;
  object-fit: cover;
}

.gallery-card .gallery-card-cta {
  text-decoration: none;
  margin: 5px 40px 0 40px;
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121c42;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  width: fit-content;
  max-width: 220px;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 6px;
  transition: background-color 400ms ease, color 400ms ease,
    border-color 400ms ease;
}

.gallery-card .gallery-card-cta:hover {
  background-color: #fff;
  color: #121c42;
  border-color: #121c42;
}

/* content library */
.library-container .library-close,
.library-embed-close,
.inlinevideoclosefull {
  height: 26px;
  width: 16px;
  position: absolute;
  top: -15px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
  z-index: 100;
}
.library-container .library-close::after,
.library-embed-close::after,
.inlinevideoclosefull::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}

@media screen and (min-width: 701px) {
  .upperContentWrapper {
    display: flex !important;
    flex-direction: row;
  }
}
@media screen and (max-width: 700px) {
  .library-embed-close {
    top: 5px;
    right: 5px;
  }

  .openPanelBtn {
    color: #fff;
    font-size: 24px;
    width: 100%;
    text-align: center;
    border: 1px solid #fff;
    padding: 10px 5px;
    position: fixed;
  }

  .closePanelBtn {
    font-size: 24px;
  }
}
.library-container .library-close:hover {
  background: #19275d;
}
.library-container .library-header {
  padding: 20px 0 20px 60px;
  background-color: #fff;
  border-radius: 6px;
}
.library-container .library-header-title {
  color: #121c42;
  font-size: 30px;
  font-weight: bold;
  padding-right: 15px;
  vertical-align: middle;
  display: inline-block;
}
.library-container .library-header-filters {
  display: inline-block;
}
.library-container .library-header-filters .filterBtn, .stands-layer .filterBtn {
  padding: 11px 15px;
  transition: background 400ms ease;
  background: #78948f;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  margin-top: -1px;
}
@media screen and (min-width: 767px) {
  .library-container .library-header-filters .filterBtn:hover {
    background: #195d4f;
  }
}
.library-container .library-header-filters .filterBtn:active {
  position: relative;
  top: 1px;
  left: 1px;
}
.library-container .library-header-filters .filterBtn--active {
  background: #124238;
}
.library-container .library-header-filters input, 
.stands-layer .filterSearch,
.gallery-wrapper .filterSearch {
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #afafaf;
  outline: none;
  width: 280px;
}
.library-container .library-header-filters .multiselectButtonComponent .btn {
  padding: 11px 15px;
}
.library-container .library-contents {
  overflow-x: auto;
  max-height: 670px;
}
.library-container .library-content-item {
  margin-bottom: 20px;
}
.library-container .library-content-item-title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  padding: 60px 0px 0px 60px;
}
.library-container .library-content-item-items {
  display: grid;
  grid-template-columns: repeat(4, 335px);
  grid-auto-rows: minmax(30px, 350px);
  padding: 60px;
  grid-gap: 20px;
}
.library-container .stands-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 60px;
  grid-gap: 20px;
}
.library-item {
  display: flex;
  background-color: #fff;
  flex-flow: column nowrap;
  cursor: pointer;
  transition: transform, 400ms ease;
  border: #121c42 solid 1px;
  padding: 20px;
  border-radius: 6px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
}
.library-item:hover {
  transform: translateY(-8px);
}
.library-item-image {
  position: relative;
  display: flex;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
}
.library-item-image a {
  display: inline-block;
  width: auto;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.library-item-image a * {
  pointer-events: none;
}
.library-item-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.library-item-content {
  color: #121c42;
  font-size: 18px;
}
.library-item-content-title {
  display: block;
  text-decoration: none;
  color: #121c42;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 16px 0 10px 0;
  border-top: 1px solid #121c42;
  padding-top: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.library-item-content-description {
  opacity: 0.5;
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  text-transform: capitalize;
  @supports (-webkit-line-clamp: 3) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.library-icon {
  width: 90%;
}
.library-embed-container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1100;
  transform: translate3d(0, 0, 1081px);
}
.library-container-layer,
.library-embed-layer {
  display: none;
  position: absolute;
  top: 49.4%;
  left: 50%;
  width: 64.6%;
  height: 81.4%;
  z-index: 1080;
  background: white;
  color: #000000;
  border-radius: 5px;
  transform: translate3d(-50%, -50%, 1080px);
}
.library-embed-layer {
  display: block;
  left: 41.7%;
  width: 81.2%;
}
.library-container-layer.active {
  display: block;
}
.library-container-layer.newMenu {
  left: 41.7%;
  width: 81.2%;
  height: 81.1%;
  background-color: #121c42;
}
.library-embed-layer iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.library-embed-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
}
@media screen and (min-width: 700px) {
  .library-container-layer.library-newmenu .library-header-filters {
    position: absolute;
    top: -7.6%;
    left: 0.6%;
  }
}
@media screen and (max-width: 700px) {
  .library-embed-container .library-embed-layer {
    width: 100%;
    height: 100%;
    left: 50%;
  }
}

/* content library mobile optimisation */
.vhmobilescene .library-content-item-title {
  font-size: 1.2em;
}
.vhmobilescene .library-container-layer {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1100;
  transform: none;
  border-radius: 0px;
}

.vhmobilescene .library-contents {
  max-height: calc(100vh - 150px);
}
.vhmobilescene .library-item {
  width: 70%;
  margin-right: 0;
}
.vhmobilescene .library-close {
  display: block;
  position: absolute;
  right: 22px;
  width: auto;
  height: auto;
  top: 16px;
  padding: 4px 10px;
  border-radius: 50%;
  border: 1px solid #121c42;
  background: transparent;
}
.vhmobilescene .library-close::after {
  display: none;
}
.vhmobilescene .library-header-title {
  display: block;
  margin-bottom: 5px;
}
.vhmobilescene .library-header-filters {
  display: flex;
  flex-wrap: wrap;
}
.vhmobilescene .library-header-filters .multiselectButtonComponent {
  display: block;
}
.vhmobilescene .library-header-filters > * {
  display: flex;
  margin-top: 5px;
}
.vhmobilescene .library-container .library-content-item-items {
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 40px;
}


.vhmobilescene .gallery-card-grid {
  display: flex;
  flex-flow: column nowrap;
  padding: 0;
}

.vhmobilescene .gallery-card-wrapper {
  display: flex;
  flex-flow: column nowrap;
  overflow-y: auto;
  padding: 20px;
  margin: 10% 0;
}
.vhmobilescene .gallery-close {
  position: absolute;
  right: 22px;
  top: 16px;
  padding: 4px 10px;
  border-radius: 50%;
  border: 1px solid #121c42;
}

.vhmobilescene .gallery-close::after {
  font-size: 1rem;
  top: 6px;
  left: 13px;
}

#chatfeatbox {
  position: absolute;
  top: 8.6%;
  left: 83.4%;
  width: 15.5%;
  height: 81.4%;
  z-index: 1000;
  display: none;
}
#chatfeatbox .vhchatwindow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 6px;
  box-shadow: 0px 10px 8px 1px rgba(0, 0, 0, 0.4);
  background: white;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
}
#chatfeatbox .vhchatwindowcontent {
  position: relative;
  color: black;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
}
#chatfeatbox .vhchatleftarea {
  position: absolute;
  padding: 0px;
  margin: 0px;
  left: 0px;
  top: 0px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #f8f8f8;
  transition: max-width 600ms ease;
}
#chatfeatbox .vhchatleftarea.vhChatNetworkFullContainer {
  max-width: 0%;
  transition: max-width 600ms ease;
}
#chatfeatbox .vhchatcenterarea {
  position: absolute;
  padding: 0px;
  margin: 0px;
  left: 0%;
  top: 0px;
  width: 100%;
  max-width: 0;
  height: 100%;
  background: #f8f8f8;
  transition: max-width 600ms ease;
}
#chatfeatbox .vhchatcenterarea.vhChatNetworkFullContainer {
  max-width: 100%;
  transition: max-width 600ms ease;
}
#chatfeatbox .vhchatcenterarea.vhChatNetworkFullContainer .vhChatMessageHeader {
  display: flex;
  flex-flow: row nowrap;
  padding: 10px 20px 20px 20px;
  background: #f8f8f8;
  opacity: 1;
  transition: opacity 600ms ease;
}
#chatfeatbox .vhchatcenterarea .vhChatMessageHeader {
  opacity: 0;
  transition: opacity 600ms ease;
}

#chatfeatbox .vhchatleftTop {
  position: absolute;
  top: 0px;
  left: 30px;
  right: 30px;
  height: 18%;
}

#chatfeatbox .vhchatleftMessagelist {
  position: absolute;
  bottom: 0px;
  left: -45px;
  right: 00px;
  height: 85.2%;
  overflow-y: auto;
  overflow-x: hidden;
}

#chatfeatbox .vhchatleftFilter {
  position: absolute;
  top: 17%;
  left: 0px;
  font-size: 1.6rem;
  font-weight: bold;
}
#chatfeatbox .vhchatleftFilter.vhChatNetworkFullContainer {
  display: none;
}
#chatfeatbox .vhchatleftFilterArrow {
  display: inline-block;
  width: 25px;
  background-image: url(../img/arrowdowndark.png);
  cursor: pointer;
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
}

#chatfeatbox .vhChatMessageArea {
  position: absolute;
  top: 14.6%;
  bottom: 65px;
  left: 0px;
  right: 0px;
  padding-top: 20px;
  background: #e6e6f1;
  border-radius: 12px 0 0 0;
}
#chatfeatbox .vhChatComposeArea {
  position: absolute;
  bottom: 0px;
  background: #e6e6f1;
  height: 65px;
  left: 0px;
  right: 0px;
}
#chatfeatbox .vhVideoCall {
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../img/video.png);
  cursor: pointer;
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  position: absolute;
  right: 80px;
  top: 21px;
}

#chatfeatbox .vhChatHeadline {
  font-weight: bold;
  font-size: 1rem;
}
#chatfeatbox .vhChatSubHeadline {
  font-weight: bold;
  font-size: 1rem;
}
#chatfeatbox .vhChatClose {
  height: 26px;
  width: 16px;
  position: fixed;
  top: 7%;
  right: 0%;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
  z-index: 10;
}
#chatfeatbox .vhChatClose::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}
#chatfeatbox #goBackToList {
  cursor: pointer;
}

.vhChatNetwork {
  user-select: none;
  position: relative;
  height: 85px;
  cursor: pointer;
  width: 92%;
}
.vhChatNetwork .vhChatParticipantName {
  position: absolute;
  left: 70px;
  right: 100px;
  top: 8px;
  font-size: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vhChatNetwork .vhChatLastMessage {
  position: absolute;
  left: 70px;
  top: 39px;
  right: 0px;
  text-overflow: ellipsis;
  opacity: 0.9;
  font-size: 0.9em;
  white-space: nowrap;
}

.vhChatNetwork .vhChatType {
  position: absolute;
  right: 10px;
  bottom: 15px;
  border-radius: 10px;
  font-size: 0.9em;
  padding: 5px;
}
.vhChatNetwork .vhChatTypePersonal {
  background: #121c42;
  color: white;
}
.vhChatNetwork .vhChatTypeStand {
  background: #121c42;
  color: white;
}
.vhChatNetwork .vhChatTime {
  position: absolute;
  top: 10px;
  right: 15px;
}
.vhChatNetwork .vhChatArchived {
  position: absolute;
  right: -20px;
  width: 25px;
  height: 25px;
  top: 10px;
  display: none;
  background-image: url(../img/chatarchived.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.vhChatMessage {
  position: relative;
  clear: both;
  min-width: 20%;
  max-width: 80%;
  margin-top: 5px;
  margin-bottom: 5px;
}
.vhChatMessageText {
  border-radius: 10px;
  background: blue;
  padding: 10px;
}

.vhChatMessageMe {
  float: right;
  margin-right: 30px;
}
.vhChatMessageMe .vhChatMessageText {
  background: #121c42;
  color: #fff;
}
.vhChatMessageMe .vhChatMessageTime {
  text-align: right;
  margin-top: 6px;
}

.vhChatMessageOther {
  float: left;
  margin-left: 90px;
}
.vhChatMessageOther .vhChatMessageText {
  background: #124238;
  color: #fff;
}
.vhChatMessageOther .vhChatMessageProfile {
  position: absolute;
  left: -70px;
  top: 0px;
  width: 60px;
  height: 60px;
  background-image: url(../img/chatprofiledefault.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.vhChatMessageOther .vhChatMessageTime {
  margin-top: 6px;
}

.vhChatComposeArea {
  position: relative;
}
.vhChatComposeInput {
  position: absolute;
  top: 10px;
  left: 15px;
  right: 15px;
  bottom: 10px;
  border: 1px solid #121c42;
  border-radius: 12px;
  background: #f8f8f8;
  overflow: hidden;
  width: 80%;
}

.vhChatComposeSend {
  background: #f0f1f7;
  position: absolute;
  width: 17%;
  top: 0px;
  left: 83%;
  height: 100%;
  border-left: 1px solid #121c42;
  background-image: url(../img/chatsend.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px 24px;
  cursor: pointer;
}

.vhChatComposeTextInput {
  width: 89%;
}
.vhChatComposeTextarea {
  border: none;
  resize: none;
  width: 83%;
  outline: none;
  padding: 12px 0 0 20px;
}

.vhChatProfilePanel {
  position: absolute;
  height: 85%;
  left: 30px;
  right: 30px;
  bottom: 0px;
}

.vhChatProfileCard {
  width: 100%;
  height: 90px;
  color: black;
  position: relative;
}
.vhChatCardIcon {
  width: 60px;
  height: 60px;
  background-image: url(../img/profile-placeholder-blue.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.vhChatCardName {
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vhChatCardTitle {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vhChatComposeTextInput {
  background: white;
}

.standchatpopup {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 10%;
  min-width: 150px;
  background: white;
  z-index: 900;
  color: black;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.standchatpopupheadline {
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 1.1em;
}
.standchatonline {
  position: relative;
}
.standchatclose {
  position: absolute;
  right: 5px;
  top: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-image: url("../img/programclose.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.standchatopenchat {
  color: white;
  background: gold;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  padding: 5px;
  font-size: 1.1em;
  cursor: pointer;
  margin-bottom: 10px;
}
.standchatstaffselect {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border-top: 2px solid black;
  padding-top: 10px;
}
.standchatstaff {
  display: block;
  text-align: left;
  padding-left: 10px;
  cursor: pointer;
}
.standchatstaff:before {
  content: " \25CF";
  font-size: 20px;
  color: green;
  padding-right: 5px;
}
.standchatoffline {
  display: none;
}

.vhchatMessageFilterPopup {
  display: none;
  position: absolute;
  top: 50px;
  left: 50px;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.3);
  padding: 5px;
}
.vhchatFilterRow {
  font-size: 1.1em;
  padding: 5px;
  cursor: pointer;
}
.vhchatFilterRow:hover {
  background: #fafafa;
}
#chatfeatbox .vhchatleftFilterArrow {
  position: relative;
}
.vhchatMessageFilterPopup {
  position: absolute;
  top: 100%;
  left: 0%;
  width: 130px;
  font-weight: normal;
  font-size: 1rem;
  z-index: 205;
}

#chaticon {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  background-image: url("../img/chaticon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  cursor: pointer;
  position: relative;
}
.vhChatNetworkActive {
  z-index: 20;
}
.vhChatNetworkActive:after {
  z-index: 19;
  content: "";
  position: absolute;
  top: 0px;
  left: -30px;
  height: 100%;
  width: 30px;
  background: #e6e6f1;
}
.vhChatNetworkActive:before {
  z-index: 19;
  content: "";
  position: absolute;
  top: 0px;
  right: -30px;
  height: 100%;
  width: 30px;
  background: #e6e6f1;
}
.vhChatArchived {
  z-index: 21;
}
.vhChatNetworkActive {
  background: #e6e6f1;
}
.vhChatMessageArea {
  overflow-y: scroll;
  padding-bottom: 15px;
}
.vhChatProfileCardPersonal {
  display: flex;
}

.vhChatCardInfo {
  display: flex;
  flex-flow: column;
  padding-left: 10px;
}
.vhChatCardOI-online::before {
  content: "";
  background-image: url(../img/oi-online.png);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 21px;
  right: -40px;
  padding: 12px;
}
.vhChatCardOI-offline::before {
  content: "";
  background-image: url(../img/oi-offline.png);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 21px;
  right: -40px;
  padding: 12px;
}
.chatnetworMessage {
  text-align: center;
  padding-top: 20px;
}

.vhChatNetworkUpdates {
  font-weight: bold;
}
.vhChatNetworkUpdates:after {
  z-index: 19;
  content: "";
  position: absolute;
  left: 95%;
  top: 40%;
  height: 14px;
  background: #008af2;
  width: 14px;
  border-radius: 50%;
}
.chaticon-updates:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 4px;
  right: 4px;
  border-radius: 50%;
  background-color: #008af2;
}
.vhmobilescene .chaticon-updates {
  background-image: url(../img/mob-chat-updates.png) !important;
}
.vhChatArchiveHeadline {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-image: url(../img/chatarchived.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: none;
}
.vhChatSystemMessage .vhChatMessageProfile {
  display: none;
}
.vhChatSystemMessage .vhChatMessageTime {
  padding: 10px;
  padding-top: 0px;
  display: none;
}
.vhChatSystemMessage .vhChatMessageText {
  background: none;
  padding-left: 0px;
}
.vhChatSystemMessage {
  margin-bottom: 10px;
}
.vhChatComposeTextarea {
  min-height: 18px !important;
}
.chatglobalMessage {
  text-align: center;
  padding-top: 30%;
  font-size: 1.2em;
}
.vhChatCardIcon,
.vhChatIcon,
.vhChatMessageProfile {
  border-radius: 50%;
}

.vhchaterrorbox {
  position: absolute;
  bottom: 11%;
  left: 10%;
  right: 10%;
  height: 5%;
  background: #fef3ce;
  border-radius: 25px;
  box-shadow: 0px 10px 8px 1px rgb(0 0 0 / 40%);
  padding: 1vh;
  box-sizing: border-box;
  text-align: center;
  color: black;
  font-size: 1.5vh;
  display: none;
}

/* chat mobile optimering */
.vhmobilescene #chatfeatbox {
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: auto;
  width: auto;
  z-index: 1111;
}
.vhmobilescene #chatfeatbox .vhchatwindow {
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: auto;
  width: auto;
  border-radius: 0px;
}
.vhmobilescene #chatfeatbox .vhchatleftFilter {
  left: 5px;
}
.vhmobilescene #chatfeatbox .vhchatleftarea {
  width: 100%;
  z-index: 1;
  background: #fff;
}
.vhmobilescene #chatfeatbox .vhchatleftTop {
  position: relative;
  height: auto;
  top: 10px;
  left: 10px;
}
.vhmobilescene #chatfeatbox .vhchatMessageFilterPopup .vhchatFilterRowrecent,
.vhmobilescene #chatfeatbox .vhchatMessageFilterPopup .vhchatFilterRowarchived {
  display: none;
}
.vhmobilescene #chatfeatbox .vhchatleftMessagelist {
  height: 93%;
}
.vhmobilescene #chatfeatbox .vhchatleftMessagelist {
  padding-left: 15px;
  padding-right: 30px;
}
.vhmobilescene #chatfeatbox .vhChatNetworkActive,
.vhmobilescene #chatfeatbox .vhChatNetworkActive:after,
.vhmobilescene #chatfeatbox .vhChatNetworkActive::before {
  background: transparent;
}
.vhmobilescene #chatfeatbox .vhchatcenterarea {
  left: 0px;
  width: 100%;
  background: #fff;
}
.vhmobilescene #chatfeatbox .vhChatComposeArea {
  background: #fff;
}
.vhmobilescene #chatfeatbox .vhChatClose {
  top: 0;
  right: 0;
}
.vhmobilescene #chatfeatbox .vhChatHeadline,
.vhmobilescene #chatfeatbox .vhChatSubHeadline {
  display: block;
}
.vhmobilescene #chatfeatbox .vhChatMessageArea {
  top: 150px;
}

/* mobile view */
.mobileBackground {
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 8;
}
.vhmobilescene .vhbutton {
  text-align: left !important;
}
.vhmobilescene .idlevideo-loop {
  -webkit-box-shadow: 0px 0px 30px 30px rgba(236, 236, 236, 0.7);
  box-shadow: 0px 0px 30px 30px rgba(236, 236, 236, 0.7);
}
.vhmobilescene .idlevideo-play {
  -webkit-box-shadow: 0px 0px 30px 30px rgba(252, 255, 165, 0.7);
  box-shadow: 0px 0px 30px 30px rgba(252, 255, 165, 0.7);
}
.vhmobilescene .noratio {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.vhmobilescene .standchatpopup {
  z-index: 150;
}
.vhmobilescene .smallbuttons .vhbutton {
  padding-top: 5px;
  padding-bottom: 5px;
}
.vhmobilescene .inlinevideoclosefull {
  right: 15px;
  top: 15px;
}

.mlvisible .vhhtml-inner {
  overflow: visible;
}

.ex-view-icon-active {
  background: #121c42;
  border-radius: 1vh;
}
.ex-view-icon {
  cursor: pointer;
  height: 100%;
  display: inline-block;
  width: 10%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70%;
  background-size: contain;
}
.ex-view-icon-grid {
  background-image: url("../img/ex-mobile-grid.png");
}
.ex-view-icon-list {
  background-image: url("../img/ex-mobile-list.png");
}

#exhibitionlistmobile {
  display: none;
  z-index: 999;
  position: fixed;
  left: 0%;
  width: 100%;
  top: 8%;
  height: 80%;
  overflow-y: auto;
  overflow-x: hidden;
}

.vh-mobile-exhibition-light {
  position: relative;
  background: url(../img/Booths/mobile-light.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.vh-mobile-exhibition-dark {
  position: relative;
  background: url(../img/Booths/mobile-dark.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.vh-mobile-exhibition-corporateLight {
  position: relative;
  background: url(../img/Booths/Corporate/individual/corporate-stand-mobile.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.vh-mobile-exhibition-corporateWoodLight {
  position: relative;
  background: url(../img/Booths/Corporate/individual/corporate-stand-mobile.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.vh-mob-listrow {
  margin-left: 5%;
  margin-right: 5%;
  background: #121c42;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 0;
  letter-spacing: 0;
  word-spacing: 0;
  border-radius: 6px;
}
.vh-mobile-exhibition-list {
  display: inline-block;
}
.vh-mob-listrowlabel {
  font-size: 3vw;
  letter-spacing: 1px;
  word-spacing: 0.1em;
  vertical-align: top;
  display: inline-block;
  padding-left: 20px;
}

.vh-mob-listrowlogo {
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  width: 20%;
  background-size: contain;
  background-position: center center;
  border-radius: 12px;
}
.vh-mob-listrowtitle {
  padding-top: 10px;
}
.vh-mob-listrowcompany {
  font-size: 0.8em;
}

.exmobLeftBannerLight {
  position: absolute;
  top: 44.8%;
  width: 11.1%;
  left: 8.3%;
  height: 34.2%;
  transform: skewX(1.5deg) skewY(0deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exmobRightBannerLight {
  position: absolute;
  top: 44.8%;
  width: 11.1%;
  left: 81.5%;
  height: 34.4%;
  transform: skewX(-0.6deg) skewY(0deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exmobComputerLight {
  position: absolute;
  top: 54.7%;
  width: 5.1%;
  left: 48.4%;
  height: 4.9%;
  transform: skewX(0deg) skewY(0deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exmobTabletLight {
  position: absolute;
  top: 63.5%;
  width: 4.1%;
  left: 62.3%;
  height: 4.2%;
  transform: skewX(0deg) skewY(0deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exmobTVLight {
  position: absolute;
  top: 22.2%;
  width: 27%;
  left: 38%;
  height: 24.6%;
  transform: skewX(1deg) skewY(0deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exMobButtonLight {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 60%;
  border-radius: 6px;
  height: 15%;
  background: #121c42;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.exMobClickLayer {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.exmobLeftBannerDark {
  position: absolute;
  top: 32.4%;
  width: 8.6%;
  left: 12.6%;
  height: 35%;
  transform: skewX(2deg) skewY(-6deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exmobRightBannerDark {
  position: absolute;
  top: 32.5%;
  width: 8.4%;
  left: 81.8%;
  height: 36.1%;
  transform: skewX(-0.6deg) skewY(6deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exmobComputerDark {
  position: absolute;
  top: 50.7%;
  width: 5.2%;
  left: 47.6%;
  height: 4.9%;
  transform: skewX(0deg) skewY(0deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exmobTabletDark {
  display: none;
}
.exmobTVDark {
  position: absolute;
  top: 28.2%;
  width: 16.8%;
  left: 42.1%;
  height: 14.9%;
  transform: skewX(1deg) skewY(0deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.exMobButtonDark {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 60%;
  height: 15%;
  border-radius: 6px;
  background: #121c42;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.exMobClickLayer {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.lazy-load-block .exmobLeftBannerLight {
  background-image: none !important;
}
.lazy-load-block .exmobRightBannerLight {
  background-image: none !important;
}
.lazy-load-block .exmobComputerLight {
  background-image: none !important;
}
.lazy-load-block .exmobTabletLight {
  background-image: none !important;
}
.lazy-load-block .exmobTVLight {
  background-image: none !important;
}
.lazy-load-block .exmobLeftBannerDark {
  background-image: none !important;
}
.lazy-load-block .exmobRightBannerDark {
  background-image: none !important;
}
.lazy-load-block .exmobComputerDark {
  background-image: none !important;
}
.lazy-load-block .exmobTabletDark {
  background-image: none !important;
}
.lazy-load-block .exmobTVDark {
  background-image: none !important;
}

.vhmobilescene .navbox {
  display: none !important;
}
.vhmobilescene .programBtn {
  display: none !important;
}

@media screen and (max-width: 1024px) and (orientation: landscape),
  screen and (max-width: 700px) and (orientation: portrait) {
  .mobileNavBottom {
    display: none;
    position: fixed;
    left: 0%;
    bottom: 0px;
    height: 60px;
    border-top: 1px solid #fff;
    width: 100%;
    background: rgb(255, 255, 255);
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 1) 0%,
      rgba(0, 42, 255, 1) 40%
    );
    z-index: 10000000;
  }
}

.mobNavButton-hidden {
  display: none;
}
.mobNavButton {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: 20px;
  cursor: pointer;
  background-repeat: no-repeat;
}

.mobileNavBottomContainer {
  display: flex;
  align-items: center;
}

.mobNavButton.navBarOption {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: 80%;
  align-items: center;
  color: #121c42;
}

.mobNavText {
  font-size: 0.8rem;
}

.mobNavNavigation {
  background-image: url("../img/mob-navigation.png");
}

.mobNavNotification-disabled {
  opacity: 0.2;
}
.mobNavProgram {
  background-image: url("../img/program.png");
}
.mobNavContentLibrary {
  background-image: url("../img/books.png");
}
.mobNavProfile {
  background-image: url("../img/mob-profile.png");
}
.mobNavGallery {
  background-image: url("../img/gallery.png");
}

.mobNotification {
  box-sizing: border-box;
  display: none;
  background: white;
  color: black;
  position: absolute;
  top: 0%;
  height: 100%;
  left: 0%;
  width: 100%;
  z-index: 1100;
  text-align: center;
  font-size: 1.5em;
  padding: 20px;
}
.mobNotification .title {
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  padding: 15px;
  vertical-align: middle;
}
.vhmobilescene .mobNotification .mobileCloseBtn {
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border: 1px solid #efefef;
  border-radius: 55px;
}
.vhmobilescene .mobNotification .mobileCloseBtnIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  color: #a4a4a4;
  font-weight: lighter;
  height: 56px;
}
.mobileNotificationList {
  padding-top: 0px;
  padding-bottom: 0px;
  box-sizing: border-box;
  width: 100%;
  height: 90%;
  overflow: auto;
  padding: 20px;
  text-align: left;
}
.mob-alert-notification {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.8em;
}

.mobTopContent {
  position: absolute;
  top: 0%;
  color: black;
  left: 12%;
  width: 75%;
  height: 5vh;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  text-align: center;
  font-size: 2.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vhmobilescene .vhdialogwindow {
  left: 0% !important;
  width: 100% !important;
}
.vhmobilescene #vhdialog .vhdialogwindowcontent {
  overflow-y: auto;
  display: block;
}
.vhmobilescene .dialogcloseicon {
  left: auto;
  right: 2% !important;
  top: 2% !important;
}
.vhmobilescene #vhdialog p {
  padding-left: 20px;
  padding-right: 20px;
}
.vhmobilescene .popupbuttons {
  padding: 0;
}
.vhmobilescene .dialogpopup .popuphead {
  font-size: 1.4rem;
}
.vhmobilescene .dialogpopup .popupbody {
  font-size: 1rem;
}
.vhmobilescene .popupbuttons .popupbutton {
  margin-right: 0;
}
.vhmobilescene .popupbutton {
  font-size: 0.8rem;
  padding: 6px;
}

/* vhProgram */
.programBtn {
  position: absolute;
  cursor: pointer;
  z-index: 1001;
  top: 1.2%;
  height: 6.6%;
  left: 1.8%;
  width: 4.7%;
  background-image: url("../img/programicon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-radius: 5px;
}
.programBtn.newMenu {
  opacity: 0;
  visibility: hidden;
}
.programLayer {
  display: none;
  position: absolute;
  top: 2.2%;
  left: 7%;
  background: #fff;
  color: #121c42;
  width: 728px;
  z-index: 1001;
  transform: translateZ(1065px) translate3d(0, 0, 1065px);
  border-radius: 6px;
  padding: 0px;
}
.programLayer.newMenuProgramLayer {
  top: 9%;
  left: 1.1%;
  width: 81.1%;
  height: 81.1%;
  background-color: #121c42;
}
.programLayer .mobileCloseBtn {
  display: none;
}
.programLayer--full {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70%;
}
.programLayer .upperContentWrapper {
  background: #fff;
  display: flex;
  width: auto;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.programLayer .upperContentWrapper .greeting {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .programLayer .upperContentWrapper .greeting {
    font-size: 1.2rem;
  }
}

.programLayer.newMenuProgramLayer.programLayer--full {
  top: 9%;
  left: 1.1%;
  width: 81.1%;
  height: 81.1%;
  transform: none;
}
.programLayer .closeBtn {
  height: 26px;
  width: 16px;
  position: absolute;
  top: -15px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
}
.programLayer .closeBtn::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}
.programLayer .title {
  font-size: 30px;
  font-weight: bold;
  padding: 15px;
  vertical-align: middle;
  display: inline-block;
}

.programLayer .filters {
  display: inline-block;
}
.programLayer .filters > div {
  margin-right: 5px;
}
.programLayer .filters:last-child {
  margin-right: 0px;
}
.programLayer .filters .filterSearch {
  width: 300px;
  border-radius: 7px;
  padding: 12px 15px;
  outline: none;
  border: 1px solid #121c42;
  box-sizing: border-box;
}
.programLayer .program .live-indicator-block {
  position: absolute;
  right: 28px;
  top: 40px;
}
.programLayer .program .live-indicator-block .live-indicator {
  flex-flow: row nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #ea2429;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
.programLayer .program .live-indicator-block .live-indicator .blink {
  border-radius: 50%;
  padding: 4px;
  background-color: #ea2429;
  animation: blinker 1s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
  font-size: 4px;
  margin-right: 5px;
  margin-bottom: 2px;
}
.programLayer .contents {
  overflow: hidden;
  overflow-y: scroll;
  padding: 0px 15px;
  padding-right: 5px;
  max-height: 683px;
  position: relative;
}
.programLayer .program {
  display: grid;
  background-color: #fff;
  position: relative;
  grid-template-rows: repeat(6, 54px);
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #121c42;
  border-radius: 6px;
  padding: 60px 24px 10px;
  grid-gap: 6px 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.programLayer .program.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.programLayer .program .singleDate {
  display: block;
  position: relative;
  font-size: 44px;
  font-weight: 600;
  grid-area: 1;
}

.programLayer .program .twoDates {
  display: flex;
  position: relative;
  font-size: 30px;
  font-weight: 600;
  grid-area: 1;
  justify-content: space-between;
  align-items: flex-end;
}

.programLayer .program .endDate::before {
  position: absolute;
  content: "-";
  padding: 10px;
  font-size: 10px;
  font-weight: 600;
  left: 10px;
  color: #121c42;
}
.programLayer .program .singleDate::before,
.programLayer .program .twoDates::before {
  content: "";
  background: url("../img/program.png") no-repeat center center;
  padding: 12px;
  background-size: 24px;
  position: absolute;
  top: -26px;
  left: 0;
}

.programLayer .program .year {
  position: absolute;
  top: -19px;
  left: 28px;
  font-weight: 400;
  font-size: 0.8rem;
}
.programLayer .program .month {
  vertical-align: super;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.programLayer .program .singleDate .month {
  font-size: 18px;
}
.programLayer .program .time {
  display: flex;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  grid-area: 1 / 2 / 1 / 2;
  text-align: right;
  flex-flow: column nowrap;
  justify-content: end;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.programLayer .program .time .scene {
  font-size: 16px;
  font-weight: 300;
  padding-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.programLayer .program .title {
  grid-area: 2 / 1 / 2 / 3;
  display: block;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 0 0 0;
}
.programLayer .program .speaker {
  grid-area: 3 / 1 / 3 / 3;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}

.programLayer .program .description {
  grid-area: 4 / 1 / 5 / 3;
  display: block;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  @supports (-webkit-line-clamp: 4) {
    overflow: hidden;
    text-overflow: ellipsis;
    height: 44px;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.programLayer .program .divider {
  grid-area: 6 / 1 / 6 / 3;
  display: flex;
  border-top: 0.5px solid #121c42;
  width: 100%;
  padding-top: 20px;
  flex-flow: row nowrap;
}
.programLayer .program .button.attendBtn {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10px;
  padding: 10px 20px;
  margin-right: auto;
  border: 1px solid #121c42;
  background: #121c42;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: background 400ms ease, color 400ms ease;
}
.programLayer .program .button.attendBtn:hover {
  background: #fff;
  color: #121c42;
}
.programLayer .program .button.registerBtn {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10px;
  padding: 10px 20px;
  margin-left: auto;
  border: 1px solid #121c42;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: background 400ms ease, color 400ms ease;
}
.programLayer .program .button.registerBtn:hover {
  background: #121c42;
  color: #fff;
}
.programLayer .program .button.speakerInfo {
  grid-area: 5 / 1 / 5 / 2;
  text-decoration: underline;
  position: relative;
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}
.programLayer .program .button.speakerInfo::after {
  content: "";
  position: relative;
  right: -8px;
  top: 2px;
  padding: 10px;
  background: url("../img/right-arrow.png") no-repeat center center;
  background-size: 16px;
  transition: right 0.4s;
}
.programLayer .program .button.speakerInfo:hover::after {
  right: -12px;
  transition: right 0.4s;
}
.programLayer .program .button.speakerInfo--inactive {
  display: none;
}
.programLayer.newMenuProgramLayer .contents {
  overflow: hidden;
  overflow-y: auto;
  padding: 0px 15px;
  position: relative;
}

.programLayer .filterBtn {
  padding: 10px 15px;
  background: #78948f;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  transition: background 400ms ease;
}
@media screen and (min-width: 767px) {
  .programLayer .filterBtn:hover {
    background: #195d4f;
  }
}
.programLayer .filterBtn:active {
  position: relative;
  top: 1px;
  left: 1px;
}
.programLayer .filterBtn--active {
  background: #124238;
}
.programLayer .share {
  opacity: 0.7;
  padding: 10px 15px;
  background: #fff;
  color: #121c42;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  border: 1px solid #000;
}

.programLayer .contentsWrapper {
  display: grid;
  grid-template-columns: repeat(4, 335px);
  grid-auto-rows: minmax(30px, 450px);
  padding: 100px 60px 60px 60px;
  grid-gap: 20px;
}

.programLayer .noContentWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px auto 20px;
  padding: 20px 26px;
  width: 84%;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #121c42;
}

.programLayer .noContentWrapper .noContentImage {
  background: url("../img/calendar-empty.png") no-repeat center center;
  background-size: contain;
  height: 100px;
  margin-bottom: 20px;
  width: 100%;
}

.programLayer .noContentWrapper h3 {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .programLayer .noContentWrapper {
    width: 40%;
    margin: 100px auto 0px;
    flex-direction: row;
  }

  .programLayer .noContentWrapper .noContentImage {
    margin-bottom: 0px;
    height: 80px;
    width: 50%;
  }

  .programLayer .noContentWrapper h3 {
    padding: 20px;
    font-size: 1.3rem;
  }
}

/* program mobile optmisation */
.vhmobilescene .programLayer--full {
  top: 0px;
  left: 0px;
  transform: none;
}
.vhmobilescene .programLayer .closeBtn {
  display: none;
}
.vhmobilescene .programBtn {
  width: 85px;
}
.vhmobilescene .programLayer {
  top: 0%;
  left: 0px;
  border-radius: 0px;
  z-index: 1091;
  height: 100%;
  margin-bottom: 40px;
  width: 100%;
  overflow: hidden;
}
.vhmobilescene .programLayer .mobileCloseBtn {
  display: block;
  position: absolute;
  right: 22px;
  top: 16px;
  padding: 4px 10px;
  border-radius: 50%;
  border: 1px solid #121c42;
}
.vhmobilescene .filters {
  display: block;
  flex-wrap: wrap;
  padding-top: 0px;
}
.vhmobilescene .filters > * {
  flex: 1 1 100%;
  margin-right: 0px !important;
}
.vhmobilescene .filters .multiselectButtonComponent .btn {
  width: 100%;
  box-sizing: border-box;
}
.vhmobilescene .filters .multiselectButtonComponent .btnLabel {
  right: 2%;
}
.vhmobilescene .contents {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 70%;
}
@media (max-width: 900px) and (orientation: landscape) {
  .vhmobilescene .contents {
    max-height: 50%;
  }
}
.vhmobilescene {
  width: 100%;
  height: 100%;
}
.vhmobilescene .program:last-child {
  margin-bottom: 50px;
}
.vhmobilescene .programLayer .contentsWrapper {
  display: flex;
  flex-flow: column;
  padding: 60px 20px 60px 20px;
}

.vhmobilescene .programLayer .upperContentWrapper {
  border-bottom: 2px solid #121c42;
}

.vhmobilescene .library-container .library-header {
  padding: 20px;
}
/* My Plan */
.myPlanLayer {
  display: none;
  position: absolute;
  top: 49.4%;
  left: 41.7%;
  width: 81.2%;
  height: 81.1%;
  z-index: 1100;
  background-color: #121c42;
  color: #fff;
  border-radius: 6px;
  transform: translate(-50%, -50%);
}

.myPlanLayer .myplan-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.myPlanLayer .myplan-close {
  height: 26px;
  width: 16px;
  position: absolute;
  top: -15px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
  z-index: 100;
}

.myPlanLayer .myplan-close::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}

.myPlanLayer .myplan-close:hover {
  background: #19275d;
}

.myPlanLayer .myplan-header {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  gap: 10px;
  flex-wrap: nowrap;
}

.myPlanLayer .myplan-header-filters {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.myPlanLayer .myplan-header-filters .myplan-filterBtn {
  display: inline-block;
  padding: 12px 15px;
  border-radius: 7px;
  cursor: pointer;
  border: 1px solid #121c42;
  background: #fff;
  color: #121c42;
  font-weight: 500;
  transition: all 0.3s ease;
}

.myPlanLayer .myplan-header-filters .myplan-filterBtn:hover {
  background: #f0f0f0;
}

.myPlanLayer .myplan-header-filters .myplan-filterBtn--active {
  background: #121c42;
  color: #fff;
}

.myPlanLayer .myplan-filterSearch {
  flex: 1;
  min-width: 150px;
  max-width: 300px;
  border-radius: 7px;
  padding: 12px 15px;
  outline: none;
  border: 1px solid #121c42;
  box-sizing: border-box;
}

.myPlanLayer .myplan-header .myplan-greeting {
  flex-shrink: 0;
  font-size: 1rem;
  color: #121c42;
  white-space: nowrap;
}

.myPlanLayer .myplan-greetingMobile {
  display: none;
  padding: 20px;
  font-size: 18px;
  color: #fff;
}

.myPlanLayer .myplan-contents {
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
  padding: 20px;
}

.vh-myplan .vh-loading,
.vh-myplan .vh-error,
.vh-myplan .vh-empty {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

/* Empty state component styles */
.vh-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  padding: 30px 26px;
  width: 80%;
  max-width: 400px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #121c42;
}

.vh-empty-state-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vh-empty-state-icon svg {
  width: 60px;
  height: 60px;
  opacity: 0.6;
}

.vh-empty-state-icon--tasks {
  background-image: url("../img/calendar-empty.png");
}

.vh-empty-state-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #121c42;
  margin: 0 0 10px 0;
  text-align: center;
}

.vh-empty-state-text {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  text-align: center;
}

.vh-task-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vh-task-item {
  position: relative;
  background: #fff;
  color: #121c42;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #121c42;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: transform 400ms ease;
}

/* Delete button for tasks - styled like myplan-close */
.vh-task-delete {
  position: absolute;
  top: -12px;
  right: -12px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  border: none;
  background: #121c42;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 400ms ease;
  z-index: 10;
}

.vh-task-delete:hover {
  background: #19275d;
}

.vh-task-item:hover {
  transform: translateY(-2px);
}

.vh-task-item.completed {
  opacity: 0.8;
  background: #e8f5e9;
  border-color: #4caf50;
}

.vh-task-item.completed .vh-task-title::before {
  content: "✓ ";
  color: #4caf50;
}

.vh-task-item.completed .vh-task-meta {
  color: #4caf50;
}

.vh-task-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: #121c42;
}

.vh-task-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.4;
}

.vh-task-meta {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 12px;
  font-weight: 500;
}

.vh-task-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}

.vh-task-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vh-task-item.completed .vh-task-dates {
  color: #6c757d;
}

.vh-flow-answers {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 10px 0;
  font-size: 13px;
}

.vh-flow-answers .vh-answers-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 600;
  color: #121c42;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.vh-flow-answers .vh-answers-toggle:hover {
  color: #2a3a6a;
}

.vh-flow-answers .vh-toggle-icon {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.vh-flow-answers .vh-answers-content {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e9ecef;
}

.vh-flow-answers .vh-answers-label {
  font-weight: 600;
  color: #121c42;
  margin-bottom: 8px;
}

.vh-flow-answers .vh-answer-item {
  padding: 4px 0;
  border-bottom: 1px solid #e9ecef;
}

.vh-flow-answers .vh-answer-item:last-child {
  border-bottom: none;
}

.vh-flow-answers .vh-answer-key {
  font-weight: 500;
  color: #495057;
}

.vh-flow-answers .vh-answer-value {
  color: #212529;
}

.vh-task-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vh-task-actions button,
.vh-task-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #121c42;
  background: #121c42;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 400ms ease, color 400ms ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.vh-task-actions button:hover,
.vh-task-actions .btn:hover {
  background: #fff;
  color: #121c42;
}

/* View toggle buttons - modern segmented control */
.myplan-view-toggle {
  position: absolute;
  top: 15px;
  right: 60px;
  display: flex;
  background: #f1f3f4;
  border-radius: 20px;
  padding: 4px;
  z-index: 10;
}

.myplan-view-btn {
  width: 38px;
  height: 32px;
  border: none;
  background: transparent;
  color: #5f6368;
  border-radius: 16px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.myplan-view-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.06);
  color: #202124;
}

.myplan-view-btn.active {
  background: #fff;
  color: #121c42;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.myplan-view-btn:focus {
  outline: none;
}

.myplan-view-btn:focus-visible {
  box-shadow: 0 0 0 2px #121c42;
}

/* Grid view - styled like stand overview */
.vh-task-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
  grid-gap: 20px;
}

.vh-task-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  color: black;
}

.vh-task-card:hover {
  transform: translateY(-5px);
  transition: 0.3s all ease-in-out;
}

.vh-task-card.completed {
  border-color: #4caf50;
  background: #f8fff8;
}

.vh-task-card.completed .vh-task-card-title::before {
  content: "✓ ";
  color: #4caf50;
}

.vh-task-card-title {
  font-size: 17px;
  max-width: 300px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 15px 15px 10px 15px;
  color: #121c42;
}

.vh-task-card-description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  height: 115px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 15px;
  flex: 1;
}

.vh-task-card-meta {
  font-size: 12px;
  color: #6c757d;
  padding: 10px 15px;
  font-weight: 500;
}

.vh-task-card.completed .vh-task-card-meta {
  color: #4caf50;
}

.vh-task-card-dates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: #888;
  padding: 0 15px 10px;
}

.vh-task-card-date {
  display: block;
}

.vh-task-card.completed .vh-task-card-dates {
  color: #6c757d;
}

.vh-task-card-actions {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.vh-task-card-actions button {
  padding: 10px 25px;
  border: 1px solid #121c42;
  background: #121c42;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.vh-task-card-actions button:hover {
  background: #fff;
  color: #121c42;
}

.vh-task-card-done {
  font-size: 14px;
  font-weight: 600;
  color: #4caf50;
}

/* View Results button in grid */
.vh-view-results-btn {
  background: #4caf50 !important;
  border-color: #4caf50 !important;
}

.vh-view-results-btn:hover {
  background: #fff !important;
  color: #4caf50 !important;
}

/* Results Modal */
.vh-results-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.vh-results-modal-content {
  background: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.vh-results-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.vh-results-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #121c42;
}

.vh-results-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.vh-results-modal-close:hover {
  color: #121c42;
}

.vh-results-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.vh-result-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.vh-result-item:last-child {
  border-bottom: none;
}

.vh-result-key {
  font-weight: 600;
  color: #121c42;
  display: block;
  margin-bottom: 4px;
}

.vh-result-value {
  color: #333;
  line-height: 1.5;
}

/* Top nav icon (matches Plan icon structure) */
.newnavboxtop-myplan {
  background: #fff url("../img/calendar-empty.png") no-repeat center center;
  width: 30px;
  height: 30px;
  background-size: 30px;
  position: relative;
  cursor: pointer;
}

.newnavboxtop-myplan .icon {
  display: none;
}

.tool-tip[myplan]:hover::before {
  content: attr(myplan);
  position: absolute;
  border-radius: 6px;
  padding: 12px;
  display: block;
  z-index: 100;
  background-color: #121c42;
  color: #fff;
  top: 50px;
  font-size: 1rem;
  width: auto;
  white-space: nowrap;
}

/* My Plan button in scenestatic (fallback) */
.myPlanBtn {
  background: url("../img/program.png") no-repeat center center;
  background-size: 100%;
  width: 68px;
  height: 68px;
  position: absolute;
  bottom: 140px;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.myPlanBtn:hover {
  transform: scale(1.1);
}

/* Mobile optimizations */
@media screen and (max-width: 700px) {
  .myPlanLayer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: none;
  }
  
  .myPlanLayer .myplan-close {
    display: none;
  }
  
  .myPlanLayer .myplan-header {
    display: none;
  }
  
  .myPlanLayer .myplan-greetingMobile {
    display: block;
  }
  
  .myPlanLayer .myplan-contents {
    padding: 20px;
  }
  
  .vh-task-list {
    padding: 0 20px;
  }
  
  .vh-task-item {
    padding: 15px;
  }
  
  .vh-task-actions {
    flex-direction: column;
  }
  
  .vh-task-actions button,
  .vh-task-actions .btn {
    width: 100%;
  }
  
  .vh-empty-state {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
  }
  
  .vh-empty-state-icon {
    height: 60px;
  }
  
  .vh-empty-state-title {
    font-size: 1.1rem;
  }
}

/* networking */
.networking-layer {
  position: absolute;
  top: 2.4%;
  bottom: 10%;
  left: 1.8%;
  right: 1.8%;
  z-index: 100;
  display: none;
  z-index: 1000;
}
.networking-layer.networknewmenu .networking-filter {
  top: -64px;
  left: 22%;
  padding-left: 0px;
  width: 32%;
  background: #fff;
}
.networking-layer.networknewmenu .networking-filter .networking-filter-inner {
  padding-left: 0;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .networking-layer.networknewmenu {
    top: 8%;
    left: -4.4%;
  }
}

.networking-layer .networking-filter {
  position: relative;
  border-radius: 3px;
  top: -3px;
  height: 53px;
}
.networking-layer .networking-filter-inner {
  position: relative;
  user-select: none;
  padding-left: 105px;
  top: 50%;
  transform: translateY(-50%);
}
.networking-layer .networking-filter-inner .filterBtn {
  transition: background 400ms ease;
  padding: 10px 15px;
  background: #78948f;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  border: 1px solid;
}
.networking-layer .networking-filter-inner .filterBtn:hover {
  background: #195d4f;
}
.networking-layer .networking-filter-inner .filterBtn--active {
  background: #124238;
  transition: background 400ms ease;
}
.networking-layer .networking-filter-inner .filterBtn--active:hover {
  background: #195d4f;
}
.networking-layer .networking-filter-inner .filterBtn:active {
  position: relative;
  top: 1px;
  left: 1px;
}
.networking-layer .networking-filter-inner .filterSearch {
  display: inline-block;
  width: 350px;
}
.networking-layer .networking-filter-inner .filterSearch input {
  width: 100%;
  border-radius: 7px;
  padding: 12px 15px;
  outline: none;
  border: 1px solid #afafaf;
  box-sizing: border-box;
}
.networking-layer .networking-content {
  position: absolute;
  overflow-y: scroll;
  width: 86%;
  color: #fff;
  top: 90px;
  bottom: 40px;
  left: 47.8%;
  transform: translateX(-50%);
}
.networking-layer .networking-visitors {
  display: flex;
  flex-wrap: wrap;
}
.networking-layer .networking-visitor {
  flex: 0 0 335px;
  min-height: 166px;
  display: flex;
  background: #195d4f;
  padding: 20px;
  margin: 10px;
  color: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: transform 400ms ease;
}
.networking-layer .networking-visitor::before {
  content: "";
  background: #124238;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 30%, 40% 70%);
  clip-path: polygon(20% 0, 100% 0, 100% 30%, 40% 70%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.networking-layer .networking-visitor::after {
  content: "";
  background: #248571;
  -webkit-clip-path: polygon(40% 70%, 100% 30%, 100% 100%, 48.5% 100%);
  clip-path: polygon(40% 70%, 100% 30%, 100% 100%, 48.5% 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.networking-layer .networking-visitor:hover {
  transform: scale(1.03);
}
.networking-layer .networking-visitor:nth-of-type(4n + 2) {
  flex: 0 0 335px;
  min-height: 166px;
  display: flex;
  background: #d19f75;
  padding: 20px;
  margin: 10px;
  color: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.networking-layer .networking-visitor:nth-of-type(4n + 2)::before {
  content: "";
  background: #c98d5b;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 30%, 40% 70%);
  clip-path: polygon(20% 0, 100% 0, 100% 30%, 40% 70%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.networking-layer .networking-visitor:nth-of-type(4n + 2)::after {
  content: "";
  background: #deba9b;
  -webkit-clip-path: polygon(40% 70%, 100% 30%, 100% 100%, 48.5% 100%);
  clip-path: polygon(40% 70%, 100% 30%, 100% 100%, 48.5% 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.networking-layer .networking-visitor:nth-of-type(3n + 1) {
  flex: 0 0 335px;
  min-height: 166px;
  display: flex;
  background: #d19f75;
  padding: 20px;
  margin: 10px;
  color: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.networking-layer .networking-visitor:nth-of-type(3n + 1)::before {
  content: "";
  background: #c98d5b;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 30%, 40% 70%);
  clip-path: polygon(20% 0, 100% 0, 100% 30%, 40% 70%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.networking-layer .networking-visitor:nth-of-type(3n + 1)::after {
  content: "";
  background: #deba9b;
  -webkit-clip-path: polygon(40% 70%, 100% 30%, 100% 100%, 48.5% 100%);
  clip-path: polygon(40% 70%, 100% 30%, 100% 100%, 48.5% 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.networking-layer .networking-visitor:nth-of-type(4n + 2) {
  flex: 0 0 335px;
  min-height: 166px;
  display: flex;
  background: #19275d;
  padding: 20px;
  margin: 10px;
  color: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.networking-layer .networking-visitor:nth-of-type(4n + 2)::before {
  content: "";
  background: #121c42;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 30%, 40% 70%);
  clip-path: polygon(20% 0, 100% 0, 100% 30%, 40% 70%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.networking-layer .networking-visitor:nth-of-type(4n + 2)::after {
  content: "";
  background: #243885;
  -webkit-clip-path: polygon(40% 70%, 100% 30%, 100% 100%, 48.5% 100%);
  clip-path: polygon(40% 70%, 100% 30%, 100% 100%, 48.5% 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
}

.networking-layer .networking-visitor.empty-interest {
  display: none;
}
.networking-layer .networking-visitor-image {
  user-select: none;
  vertical-align: top;
  display: inline-block;
  flex: 0 0 70px;
  height: 70px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
}
.networking-layer .networking-visitor-content {
  flex: 1 1 auto;
  margin-left: 40px;
  margin: 20px 0 0 40px;
}
.networking-layer .networking-visitor-title {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}
.networking-layer .networking-visitor-interest {
  position: relative;
  display: block;
  font-size: 1rem;
  border-radius: 6px;
  z-index: 100;
  margin-bottom: 4px;
  font-weight: 600;
}
.networking-layer .networking-visitor-interest:nth-of-type(1n + 5) {
  display: none;
}
.networking-layer .networking-visitor-favorite {
  position: relative;
  top: 144px;
  left: 10px;
  display: inline-block;
  background-image: url("../img/like-off.png");
  width: 23px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  cursor: pointer;
}
.networking-layer .networking-visitor-favorite--active {
  background-image: url("../img/like-on.png");
}
.networking-layer .networking-visitor-chat {
  position: relative;
  top: 144px;
  left: 5px;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  cursor: pointer;
  background: url("../img/chat-start.svg") no-repeat;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
}
.networking-layer .networking-visitor-video {
  display: none;
  position: relative;
  top: 54px;
  left: 64px;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  cursor: pointer;
  background: url("../img/facetime-button.png") no-repeat;
  background-size: cover;
  vertical-align: middle;
}

/* networking mobile */
.vhmobilescene .networking-layer .networking-filter {
  height: 95px;
  top: 29px;
}
.vhmobilescene .networking-layer .networking-filter-inner {
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
}
.vhmobilescene .networking-layer .networking-filter-inner .filterBtn {
  flex: 1 1 100%;
  margin-bottom: 5px;
}
.vhmobilescene .networking-layer .networking-filter-inner .filterSearch {
  display: block;
  width: 100%;
}
.vhmobilescene .networking-layer .networking-content {
  overflow-x: hidden;
  width: 100%;
  top: 155px;
  bottom: 0px;
}
.vhmobilescene .networking-layer .networking-visitor {
  flex: 1 1 100%;
  padding: 10px;
  margin: 5px;
}

/* audio */
.audioicon {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  background-image: url("../img/music_on.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  cursor: pointer;
}
.audioicon--off {
  background-image: url("../img/music_off.png");
}
.audioicon.newmenu {
  width: 30px;
  height: 30px;
  background-image: url("../img/volume-on.png");
  background-repeat: no-repeat;
  background-size: 26px;
  background-position: center center;
  cursor: pointer;
}
.audioicon.newmenu.audioicon--off {
  background-image: url("../img/volume-off.png");
}

/* multiselectComponent */
.multiselectComponent select {
  font-size: 20px;
  color: #121c42;
  width: 100%;
  padding: 15px;
  border: 1px solid #121c42;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 6px;
  outline: none;
  background: #fff url("../img/arrowdowndark.png") no-repeat 97% center;
  background-size: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-bottom: 5px;
}
.multiselectComponent .selected {
  display: flex;
}
.multiselectComponent .selected div {
  flex: 0 0 auto;
  padding: 8px;
  padding-right: 5px;
  background: #121c42;
  color: #fff;
  font-size: 15px;
  margin-right: 5px;
  border-radius: 6px;
}
.multiselectComponent .selected div .deselect {
  font-size: 15px;
  top: 4px;
  opacity: 0.5;
  vertical-align: middle;
  display: inline-block;
  padding: 5px;
  margin-left: 5px;
  cursor: pointer;
}

/* vhMultiselectButton */
.multiselectButtonComponent {
  position: relative;
  display: inline-block;
  user-select: none;
}
.multiselectButtonComponent .btn {
  transition: background 400ms ease;
  padding: 10px 15px;
  background: #121c42;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.multiselectButtonComponent .btn:hover {
  background: #19275d;
}
.multiselectButtonComponent .btn:active {
  position: relative;
  top: 1px;
  left: 1px;
}
.multiselectButtonComponent .dropdown {
  display: none;
  position: absolute;
  top: 50px;
  left: 1px;
  width: 250px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  color: #121c42;
  padding: 15px;
  border-radius: 3px;
  z-index: 50;
  max-height: 300px;
  overflow-y: scroll;
}
.multiselectButtonComponent .active {
  display: inline-block;
  opacity: 1;
}
.multiselectButtonComponent .group {
  margin-bottom: 10px;
}
.multiselectButtonComponent .group:last-child {
  margin-bottom: 0px;
}
.multiselectButtonComponent .group .group__label {
  font-weight: bold;
  cursor: pointer;
  padding: 2px;
}
.multiselectButtonComponent .group .group__label::before {
  width: 10px;
  height: 10px;
  background: url("../img/arrow-down-black.png") no-repeat center center;
  margin-right: 5px;
  transform: rotate(-90deg);
  background-size: contain;
  content: "";
  display: inline-block;
}
.multiselectButtonComponent .group .group__items {
  display: none;
}
.multiselectButtonComponent .group .group__item {
  display: block;
  cursor: pointer;
  padding: 2px;
  padding-left: 25px;
}
.multiselectButtonComponent .group .group__item input {
  width: 20px;
}
.multiselectButtonComponent .group--active .group__label::before {
  transform: rotate(0deg);
}
.multiselectButtonComponent .group--active .group__items {
  display: block;
}
.multiselectButtonComponent .resetBtn {
  transition: background 400ms ease;
  position: relative;
  left: 150px;
  display: inline-block;
  background: #121c42;
  color: #fff;
  padding: 3px 25px;
  font-size: small;
  cursor: pointer;
  border-radius: 55px;
}
.multiselectButtonComponent .resetBtn:hover {
  background: #19275d;
}
.multiselectButtonComponent .resetBtn:active {
  top: 1px;
  left: 151px;
}
.multiselectButtonComponent .btnLabel {
  position: absolute;
  right: -5%;
  top: -10px;
  background: #000;
  color: #fff;
  padding: 5px;
  font-size: x-small;
  border-radius: 5px;
  pointer-events: none;
}

/* profile */
.profileIcon {
  position: absolute;
  right: 35px;
  top: 34px !important;
  width: 80px;
  height: 80px;
  border: none !important;
  border-radius: 50%;
  z-index: 1080;
  background: #121c42 url("../img/profile-placeholder-blue.png") no-repeat
    center center;
  background-size: cover;
  cursor: pointer;
}
.profileOverlay {
  display: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #000;
  opacity: 0;
  z-index: 1081;
}
.profileOverlay--active {
  display: block;
}

.vhmobilescene .profileOverlay {
  position: fixed;
}
.profileModal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  min-height: 300px;
  transform: translate(-50%, -50%) translateZ(1082px);
  -webkit-transform: translate(-50%, -50%) translateZ(1082px);
  background: #fff;
  z-index: 1082;
  padding-top: 60px;
  border-radius: 6px;
}
.profileModal--active {
  display: block;
}
.profileModal .image {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: #121c42 url("../img/profile-placeholder-blue.png") no-repeat
    center center;
  background-size: cover;
  border-radius: 50%;
}
.profileModal .username {
  text-align: center;
  font-weight: bold;
  color: #000;
  font-size: 25px;
  padding: 5px;
  margin-bottom: 25px;
}
.profileModal .inner {
  padding: 15px;
  overflow-y: scroll;
  max-height: 50vh;
  box-sizing: border-box;
}
.profileModal .field {
  padding: 0 16px;
  color: #121c42;
  margin: 40px 0;
}
.profileModal .field--error {
  background: #ffe0de;
}
.profileModal .field .header {
  font-size: 1.5em;
  padding-bottom: 5px;
  padding-top: 5px;
}
.profileModal .field input {
  border-radius: 6px;
  color: #121c42;
  box-sizing: border-box;
  font-size: 20px;
  background: #efefef;
  width: 100%;
  border: none;
  outline: none;
  padding: 15px;
}
.profileModal .field input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  height: 20px;
  width: 20px;
  vertical-align: middle;
}
.profileModal .field input[type="radio"] {
  width: auto;
  margin-right: 10px;
  height: 20px;
  width: 20px;
  vertical-align: middle;
}
.profileModal .field label {
  font-size: 20px;
  color: #121c42;
  margin: 0 10px 10px 0;
  font-weight: 600;
  display: block;
}
.profileModal .field textarea {
  box-sizing: border-box;
  font-size: 20px;
  background: #fff;
  width: 100%;
  border: 1px solid #121c42;
  border-radius: 6px;
  outline: none;
  padding: 15px;
  height: 180px;
  resize: none;
}
.profileModal .field select[multiple] {
  background-image: none;
}
.profileModal .field select {
  font-size: 20px;
  color: #121c42;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 6px;
  outline: none;
  background: #efefef url("../img/arrowdowndark.png") no-repeat 97% center;
  background-size: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-bottom: 5px;
}
.profileModal .message {
  display: none;
  padding: 20px;
  text-align: center;
  color: #000;
  margin-top: 10px;
  background: #ffe0de;
}
.profileModal .btnControls {
  margin: 0px 16px;
  margin-top: 10px;
  display: flex;
}
.profileModal .btnControls .btn {
  flex: 1 1 50%;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-weight: bold;
  user-select: none;
}
.profileModal .btnControls .btn:active {
  position: relative;
  top: 1px;
  left: 1px;
}
.profileModal .btnControls .btn--save {
  background: #121c42;
  border-radius: 6px;
  transition: background 400ms ease, color 400ms ease;
  border: 1px solid #121c42;
}
.profileModal .btnControls .btn--cancel {
  background: #fff;
  margin-left: 5px;
  border-radius: 6px;
  border: 1px solid #121c42;
  color: #121c42;
  transition: background 400ms ease, color 400ms ease;
}
.profileModal .logoutBtn {
  border-bottom: 1px solid #000;
  color: #121c42;
  float: right;
  margin-top: 55px;
  margin-right: 5px;
  cursor: pointer;
}
.profileModal #image-label div {
  height: 44px;
  width: 44px;
  background: #121c42 url("../img/camera.png") no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 210px;
  cursor: pointer;
}
.profileModal #image-input {
  display: none;
}

/* profile mobile optimering */
.vhmobilescene .profileIcon {
  top: 1% !important;
  right: 1%;
  width: 50px;
  height: 50px;
  border-width: 3px;
  z-index: 1080;
  display: none;
}
.vhmobilescene .profileModal {
  position: fixed;
  top: 0px;
  left: 0px;
  transform: none;
  width: 100%;
  min-height: 100%;
  z-index: 1092;
  padding-top: 0px;
}
.vhmobilescene .profileModal .image {
  position: relative;
  transform: translateX(-50%);
  left: 50%;
}
.vhmobilescene .profileModal .inner {
  max-height: 90vh;
  padding-top: 55px;
  min-height: unset;
  padding-bottom: 70px;
}
.vhmobilescene .profileModal .inner #image-label {
  display: none;
}
.vhmobilescene .profileModal .logoutBtn {
  margin-top: 40px;
  padding: 0 0 20px 0;
}

#vhchatpanel,
#vhxpanel,
#vhvideochatpanel,
#vhlounge {
  width: 100%;
  z-index: 1000;
  height: 100%;
  border-radius: 6px;
  max-height: 100%;
}

#vhchatpanelwrapper {
  position: absolute;
  display: none;
  width: 100%;
  max-width: 301px;
  bottom: 107px;
  right: 20px;
  z-index: 1001;
  height: 100%;
  max-height: 81.5%;
  transform: translateZ(1000px);
  -webkit-transform: translateZ(1000px);
}

@media screen and (orientation: landscape) and (max-width: 900px) {
  #vhchatpanelwrapper,
  .stand-owners-wrapper {
    display: none !important;
  }
}

#vhxpanelwrapper {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 305px;
  bottom: 107px;
  left: 20px;
  z-index: 10000;
  height: 100%;
  max-height: 81.5%;
}

#vhvideochatpanelwrapper,
#vhloungewrapper {
  display: none;
  position: absolute;
  width: 100%;
  max-width: calc(100% - 40px);
  top: 7.8%;
  left: 20px;
  z-index: 1001;
  height: 83%;
  border-radius: 12px;
}

.vhmobilescene #vhvideochatpanelwrapper {
  left: 0%;
  max-width: 100%;
  bottom: unset;
  max-height: 100%;
  z-index: 1100;
}

.vhmobilescene #vhvideochatpanel,
.vhmobilescene #vhlounge {
  border-radius: 0;
}

#vhloungewrapper {
  background: transparent;
}

.closechat {
  position: absolute;
  top: -15px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
}

.closeVideoChat {
  position: absolute;
  top: -15px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
}

.closechat:hover {
  background: #19275d;
}

.closepanel {
  position: absolute;
  top: -15px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  transition: background 400ms ease;
}

.closepanel:hover {
  background: #19275d;
}

.preventedAccessOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.preventedAccess {
  position: absolute;
  top: 50%;
  max-height: 200px;
  max-width: 400px;
  height: 100%;
  width: 100%;
  left: 50%;
  flex-flow: column nowrap;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #121c42;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  z-index: 1000;
}

.preventedAccess p {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.preventedAccessCloseButton {
  cursor: pointer;
  display: flex;
  padding: 8px 12px;
  text-align: center;
  border-radius: 6px;
  color: #fff;
  background-color: #121c42;
}

#meetingSDKElement {
  position: absolute;
  left: 0%;
  top: -2.6%;
  z-index: 2000;
}

.animatedPulse {
  animation: pulse 2s infinite;
}
.animatedPulse:hover {
  animation-play-state: paused;
}

/* branding */
img.branding {
  width: 180px;
  user-select: none;
  padding-right: 25px;
}

/* splashscreen */
.splashscreen {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1091;
  transform: translateZ(1091px);
  overflow: hidden;
  background: #212121;
  display: none;
}
.splashscreen video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.splashscreen--active {
  display: block;
}
@keyframes splashscreenAnimateOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
.splashscreen--animateOut {
  display: block;
  animation-name: splashscreenAnimateOut;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: normal;
}

/* Unmute button styles */
.splashscreen-unmute-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  z-index: 10;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.splashscreen-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Less visible state when unmuted (audio is playing) */
.splashscreen-unmute-btn.unmuted {
  background: rgba(0, 0, 0, 0.4);
  opacity: 0.6;
  transform: scale(0.8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.splashscreen-unmute-btn.unmuted:hover {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transform: scale(0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.splashscreen-unmute-btn svg {
  pointer-events: none;
  flex-shrink: 0;
}

.splashscreen-unmute-btn .unmute-text {
  pointer-events: none;
  user-select: none;
}

/* Close button styles */
.splashscreen-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  z-index: 10;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.splashscreen-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.splashscreen-close-btn svg {
  pointer-events: none;
  flex-shrink: 0;
}

.splashscreen-close-btn .close-text {
  display: none; /* Hide text, only show icon for close button */
  pointer-events: none;
  user-select: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: perspective(100px) translateZ(5px);
  }
  70% {
    -webkit-transform: perspective(300px) translateZ(30px);
  }
  100% {
    -webkit-transform: perspective(200px) translateZ(10px);
  }
}

@keyframes pulse {
  0% {
    transform: perspective(100px) translateZ(5px);
  }
  70% {
    transform: perspective(300px) translateZ(30px);
  }
  100% {
    transform: perspective(200px) translateZ(10px);
  }
}

#vhsceneparent .scenestatic + div {
  color: #121c42;
}

.vhtransparentbutton {
  z-index: 100 !important;
  opacity: 0 !important;
}

.spinner {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #124238;
  animation: spin 2s ease-in-out infinite;
  top: 50%;
  left: 50%;
  z-index: 100;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#mobile-blocker {
  position: fixed;
  z-index: 999999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-blocker-message {
  font-size: 2rem;
  color: #121c42;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

#mobile-blocker-logo {
  max-width: 180px;
  margin-bottom: 2rem;
  display: none;
}
/* Left Half Iframe Dialog */
#vhdialogleft.videoLeftHalf {
  width: calc(50% - 30px);
  top: 90px;
  left: 20px;
  background: none;
  position: absolute;
  height: 82%;
}

#vhdialogleft.videoLeftHalf .videoclose {
  height: 26px;
  width: 16px;
  position: absolute;
  top: -11px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  z-index: 999999;
  cursor: pointer;
}

#vhdialogleft.videoLeftHalf .videoclose::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}

/* Right Half Iframe Dialog */
#vhdialogright.videoRightHalf {
  width: calc(50% - 30px);
  top: 90px;
  right: 20px;
  background: none;
  position: absolute;
  height: 82%;
}

#vhdialogright.videoRightHalf .videoclose {
  height: 26px;
  width: 16px;
  position: absolute;
  top: -11px;
  right: -14px;
  border-radius: 50%;
  background: #121c42;
  padding: 10px 16px;
  font-size: 1.2rem;
  display: block;
  z-index: 999999;
  cursor: pointer;
}

#vhdialogright.videoRightHalf .videoclose::after {
  content: "X";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 17px;
  font-size: 1.4rem;
}

/* ============================================
   VH Flow Modal Styles
   ============================================ */

.vhflow-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
}

.vhflow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 28, 66, 0.7);
  backdrop-filter: blur(4px);
}

.vhflow-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
/*   width: 90%;
  max-width: 600px;
  max-height: 85vh; */
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vhflow-header {
  position: relative;
  padding: 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.vhflow-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding-right: 40px;
}

.vhflow-progress {
  height: 6px;
  background: #e9ecef;
  flex: 1;
  border-radius: 3px;
}

.vhflow-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 3px;
}

.vhflow-progress-text {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

.vhflow-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: #e9ecef;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vhflow-close:hover {
  background: #dee2e6;
  color: #212529;
}

.vhflow-content {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
  color: #212529;
}

.vhflow-footer {
  padding: 16px 32px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.vhflow-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vhflow-btn-back {
  background: #e9ecef;
  color: #495057;
}

.vhflow-btn-back:hover {
  background: #dee2e6;
}

.vhflow-btn-next {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  margin-left: auto;
}

.vhflow-btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.vhflow-btn-next:disabled,
.vhflow-btn-next.loading {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Step Styles */
.vhflow-step {
  animation: vhflow-fadein 0.3s ease;
}

@keyframes vhflow-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.vhflow-title {
  font-size: 24px;
  font-weight: 700;
  color: #121c42;
  margin: 0 0 16px 0;
}

.vhflow-description {
  color: #6c757d;
  margin-bottom: 24px;
  line-height: 1.6;
}

.vhflow-text {
  line-height: 1.7;
  color: #495057;
}

.vhflow-text p {
  margin-bottom: 12px;
}

/* Question/Form Styles */
.vhflow-question {
  margin-bottom: 24px;
}

.vhflow-label {
  display: block;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.vhflow-label .required {
  color: #dc3545;
}

.vhflow-input,
.vhflow-textarea,
.vhflow-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.vhflow-input:focus,
.vhflow-textarea:focus,
.vhflow-select:focus {
  outline: none;
  border-color: #4f46e5;
}

.vhflow-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vhflow-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vhflow-option:hover {
  border-color: #4f46e5;
  background: #f0f0ff;
}

.vhflow-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #4f46e5;
}

.vhflow-option input[type="radio"]:checked + span {
  font-weight: 600;
  color: #4f46e5;
}

/* Quiz Styles */
.vhflow-quiz-question {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}

.vhflow-quiz-question:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.vhflow-quiz-question-text {
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
}

.vhflow-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vhflow-quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vhflow-quiz-option:hover {
  border-color: #4f46e5;
}

.vhflow-quiz-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #4f46e5;
}

/* Video Styles */
.vhflow-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.vhflow-video-wrapper video {
  width: 100%;
  display: block;
}

.vhflow-video-wrapper iframe {
  width: 100%;
  display: block;
}

/* Fullscreen styles */
.vhflow-video-wrapper:fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vhflow-video-wrapper:-webkit-full-screen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vhflow-video-wrapper:-moz-full-screen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vhflow-video-wrapper:-ms-fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vhflow-video-wrapper:fullscreen video,
.vhflow-video-wrapper:-webkit-full-screen video,
.vhflow-video-wrapper:-moz-full-screen video,
.vhflow-video-wrapper:-ms-fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Custom video controls */
.vhflow-video-controls-left,
.vhflow-video-controls-right {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vhflow-video-wrapper:hover .vhflow-video-controls-left,
.vhflow-video-wrapper:hover .vhflow-video-controls-right,
.vhflow-video-wrapper:fullscreen .vhflow-video-controls-left,
.vhflow-video-wrapper:fullscreen .vhflow-video-controls-right,
.vhflow-video-wrapper:-webkit-full-screen .vhflow-video-controls-left,
.vhflow-video-wrapper:-webkit-full-screen .vhflow-video-controls-right {
  opacity: 1;
}

.vhflow-video-controls-left button:hover,
.vhflow-video-controls-right button:hover {
  opacity: 0.8;
}

/* Video overlay buttons */
.vhflow-video-overlay-btn {
  position: relative;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  z-index: 100;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.9) translateY(10px);
}

.vhflow-video-overlay-btn.vhflow-btn-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.vhflow-video-overlay-btn.vhflow-btn-visible:hover {
  transform: scale(1.05) translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.vhflow-video-overlay-btn.vhflow-btn-visible:active {
  transform: scale(0.98) translateY(0);
}

.vhflow-video-notice {
  margin-top: 12px;
  padding: 12px;
  background: #fff3cd;
  border-radius: 6px;
  color: #856404;
  font-size: 14px;
  text-align: center;
}

/* Result Styles */
.vhflow-step-result .vhflow-title {
  color: #198754;
}

.vhflow-summary {
  margin-top: 20px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4f46e5;
}

/* Error Styles */
.vhflow-error {
  color: #dc3545;
  font-size: 13px;
  margin-top: 6px;
}

.vhflow-validation-error {
  background: #f8d7da;
  color: #842029;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.vhflow-step-error {
  text-align: center;
  padding: 40px 20px;
}

.vhflow-error-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

/* Body class when modal is open */
body.vhflow-open {
  overflow: hidden;
}

/* Dev trigger button */
.vhflow-dev-trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vhflow-dev-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.vhflow-dev-trigger span {
  font-size: 12px;
}

/* Quiz Feedback Styles */
.vhflow-quiz-feedback {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.vhflow-feedback-warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
}

.vhflow-feedback-error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border: 2px solid #dc3545;
}

.vhflow-feedback-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
}

.vhflow-feedback-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.vhflow-feedback-title {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}

.vhflow-feedback-score {
  font-size: 16px;
  color: #495057;
  margin-bottom: 6px;
}

.vhflow-feedback-attempts {
  font-size: 14px;
  font-weight: 600;
  color: #856404;
  margin-bottom: 12px;
}

.vhflow-feedback-error .vhflow-feedback-attempts {
  color: #842029;
}

.vhflow-feedback-hint {
  font-size: 13px;
  color: #6c757d;
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.vhflow-quiz-question-results {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.vhflow-quiz-question-results span {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.vhflow-quiz-question-results span.correct {
  background: #d4edda;
  color: #155724;
}

.vhflow-quiz-question-results span.incorrect {
  background: #f8d7da;
  color: #721c24;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vhflow-container {
    width: 95%;
    max-height: 90vh;
    border-radius: 12px;
  }
  
  .vhflow-content {
    padding: 24px 20px;
  }
  
  .vhflow-footer {
    padding: 12px 20px;
  }
  
  .vhflow-title {
    font-size: 20px;
  }
  
  .vhflow-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}
