/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/roboto-v30-latin-300.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('fonts/roboto-v30-latin-300.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('fonts/roboto-v30-latin-300.woff') format('woff'),
    /* Modern Browsers */
    url('fonts/roboto-v30-latin-300.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('fonts/roboto-v30-latin-300.svg#Roboto') format('svg');
  /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-v30-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('fonts/roboto-v30-latin-regular.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('fonts/roboto-v30-latin-regular.woff') format('woff'),
    /* Modern Browsers */
    url('fonts/roboto-v30-latin-regular.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
  /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/roboto-v30-latin-700.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('fonts/roboto-v30-latin-700.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('fonts/roboto-v30-latin-700.woff') format('woff'),
    /* Modern Browsers */
    url('fonts/roboto-v30-latin-700.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
  /* Legacy iOS */
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 13px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #000;
  background: #d2d5dd;
  height: 100vh;
  overflow: hidden;
}

/* Fonts */
h1 {
  font-size: 6rem;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: #001689;
}

h2 {
  font-size: 4.5rem;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: #0045FF;
  font-weight: 400;
}

.room__side_right h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #000;
}

h4 {
  margin: 0;
  color: #0045FF;
  font-size: 1.375rem;
}

h5 {
  font-size: 1.5rem;
  margin: 1rem 0 0.375rem 0;
  font-weight: 700;
}
.fancybox__content h4 {
  font-size: 2rem;
}

#room5_display h4 {
  color: #fff;
}

.fancybox__content #room5_display h4 {
  color: #000;
}

p {
  font-size: 2rem;
  font-weight: 400;
  margin: 1rem 0 0 0;
}

h5+p {
  margin: 0;
}

p.link_popup {
  font-size: 1rem;
  color: #001689;
  cursor: pointer;
}

.rollup_content p {
  font-size: 17px;
}

ul {
  -webkit-padding-start: 15px;
  padding-inline-start: 15px;
  margin: 0;
}

ul li {
  margin-bottom: .375rem;
  font-size: 17px;
}

.fancybox__content ul li, .fancybox__content p {
  font-size: 17px;
}

.tank ul li {
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: #000;
  outline: none;
}

a:hover,
a:focus {
  color: #c2292e;
}

.entry_display_content a {
  margin: 0;
  color: #001689;
  font-size: 1.5rem;
  display: block;
}

/* Buttons */
.btn {
  position: relative;
  border: 0;
  color: #ffffff;
  background: #0045FF;
  text-decoration: none;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  -webkit-transition: background-color .5s;
  -o-transition: background-color .5s;
  transition: background-color .5s;
  border-radius: 4px;
  border: 1px solid transparent;
  display: inline-block;
  letter-spacing: .02em;
  line-height: 1.5;
  padding: 10px 15px;
  text-align: center;
  will-change: background-color;
}

.btn:focus {
  outline: none;
}

.btn:hover {
  background: #001689;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  color: #fff;
}

.btn_nav {
  font-size: 1rem;
  pointer-events: auto;
}

.link_slide {
  display: none;
}

/* Rooms */

.container {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  -webkit-perspective: 2000px;
  perspective: 2000px;
}

.scroller {
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.room {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  margin: -50vh 0 0 -50vw;
  pointer-events: none;
  opacity: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.room_current {
  pointer-events: auto;
  opacity: 1;
}

@-moz-document url-prefix() {
  .room_current {
    opacity: .99 !important;
    perspective: 1500px;
    perspective-origin: center;
  }
}

.room__side {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.room__side_left,
.room__side_right {
  width: 2000px;
  height: 108vh;
  background: #f1f2f5;
  margin-top: -8vh;
}

.room__side_back {
  width: 100vw;
  height: 108vh;
  background: #ffffff;
  /* -webkit-transform: translate3d(0px, 0px, -2000px) rotate3d(1, 0, 0, 0.1deg) rotate3d(1, 0, 0, 0deg); */
  /* transform: translate3d(0px, 0px, -2000px) rotate3d(1, 0, 0, 0.1deg) rotate3d(1, 0, 0, 0deg); */
  transform: translateX(0) translateY(0) translateZ(-2000px) rotate3d(1, 0, 0, 0.1deg) rotate3d(1, 0, 0, 0deg);
  display: block;
  margin-top: -8vh;
}

.room__side_right {
  right: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: rotate3d(0, 1, 0, -90.03deg);
  transform: rotate3d(0, 1, 0, -90.03deg);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.room_content_left,
.room_content_right {
  position: relative;
}

.room__side_left {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: rotate3d(0, 1, 0, 90deg);
  transform: rotate3d(0, 1, 0, 90deg);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.ideation_prototyping .room__side_left .room__img {
  width: 90rem;
}

.room__side_left>div {
  padding-top: 8.25rem;
}

.room__side_bottom {
  width: 100vw;
  height: 2000px;
  background: #d2d5dd;
  /* -webkit-transform: rotate3d(1, 0, 0, 90deg) translate3d(0px, -2000px, 0px); */
  /* transform: rotate3d(1, 0, 0, 90deg) translate3d(0px, -2000px, 0px); */
  transform: rotate3d(1, 0, 0, 90deg) translateX(0) translateY(-2000px) translateZ(0);
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  top: 100%;
}

.bg_blue {
  background-color: #001689;
}

/* Inner elements */
.room_content_right .room__img {
  height: 35vh;
}

.fancybox__content .room__img {
  height: initial;
  max-height: 50vh;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.container_content_back {
  position: relative;
  margin: 9vh auto auto 4vw;
}

.popup_more img {
  width: 100%;
}


/* Entry */
.room_entry .room__side_back .room__img {
  height: 108vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.room_entry .room__side_bottom {
  height: 2000px;
}

.room_entry .room__side_right div img {
  width: 5rem;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.entry_display {
  /* -webkit-transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translate3d(0px, -65%, 0rem); */
  /* transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translate3d(0px, -65%, 0rem); */
  transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translateX(0) translateY(-65%) translateZ(0);
  width: 25rem;
  position: absolute;
  top: auto;
  bottom: 15vh;
  left: 25%;
}

.entry_display img {
  width: 100%;
}

.entry_display_content {
  position: absolute;
  top: -48vh;
  left: 0;
  padding: 2rem;
  width: 100%;
}

.entry_display_content>a>img {
  width: 1.5rem;
  margin-right: 1rem;
  display: inline-block;
  top: .25rem;
  position: relative;
}

.entry_display_content>a:nth-of-type(3)>img,
.entry_display_content>a:nth-of-type(4)>img,
.entry_display_content>a:nth-of-type(7)>img {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.entry_display_content>a:nth-of-type(5)>img {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.entry_display_content>a {
  text-indent: -3rem;
  padding-left: 3rem;
  margin-bottom: .5rem;
}

/* Elements */
.rollup {
  /* -webkit-transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translate3d(0%, -50%, 0rem); */
  /* transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translate3d(0%, -50%, 0rem); */
  transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translateX(0) translateY(-50%) translateZ(0);
  max-width: 350px;
  width: 24vw;
  position: absolute;
  top: auto;
  /* bottom: 43rem; */
  /* bottom: 24vw; */
  bottom: 55rem;
  left: auto;
  right: 20%;
}

.rollup_ceiling {
  /* -webkit-transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translate3d(0%, -70%, 0rem); */
  /* transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translate3d(0%, -70%, 0rem); */
  transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translateX(0) translateY(-70%) translateZ(0);
}

.rollup img:not(.rollup img.rollup_lupe) {
  width: 100%;
}

/* .cat_2 .rollup_banner {
  height: 100%;
  object-fit: cover;
  max-height: 28vh;
  object-position: top;
} */

.rollup_content {
  /* padding: 2vw; */
  padding: 1vw 2vw 2vw 2vw;
  background: #f1f2f5;
  /* max-height: 35vh; */
  overflow: auto;
}

.rollup_lupe {
  position: absolute;
  bottom: 5vh;
  right: 1vw;
  width: 40px;
  cursor: pointer;
}

.room_content_left .rollup_lupe {
  right: auto;
  left: 4vw;
  bottom: 3vh;
}

.room__side_back .rollup_lupe {
  position: relative;
  right: initial;
  left: auto;
  display: inline-block;
  margin: 0 0 -10px 10px;
  bottom: initial;
}

.design_thinking_backwall_bgimage,
.business_model_innovation_backwall_bgimage,
.ideation_prototyping_backwall_bgimage {
  width: 40rem;
  margin: 9% 0 0 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

.design_thinking_backwall_bgimage {
  opacity: .5;
}

.business_model_innovation_backwall_bgimage {
  margin: 12% 0 0 5%;
  opacity: .5;
}

.ideation_prototyping_backwall_bgimage {
  margin: 10% 0 0 0%;
  width: 55rem;
}

.nature_care .rollup_content ul li {
  list-style-type: none;
  text-indent: -24px;
}

.fancybox__nav .carousel__button {
  background: #0045FF;
  transition: .3s;
}

.fancybox__nav .carousel__button:hover {
  background: #001689;
}

/* .nature_care .rollup_content ul {
  padding-inline-start: 0px;
}

.nature_care .rollup_content li {
  list-style-type: none;
} */

#product_18_rollup>div {
  display: flex;
  flex-wrap: wrap;
  max-width: 100rem;
}

#product_18_rollup>div>div {
  display: flex;
  flex: 1 1 50%;
  padding: 2.5rem;
  align-items: center;
}

#product_18_rollup>div>div>img {
  width: 50%;
  padding: 3rem;
}


.tank {
  /* -webkit-transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translate3d(0%, -100%, 0rem); */
  /* transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translate3d(0%, -100%, 0rem); */
  transform: rotate3d(1, 0, 0, -90deg) rotateZ(0deg) translateX(0) translateY(-100%) translateZ(0);
  /* max-width: 30rem; */
  width: 26vw;
  min-width: 14rem;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 24%;
  right: auto;
  height: 21vh;
}

.tank .bottom {
  /* max-width: 26rem; */
  width: 100%;
  /* min-width: 14rem; */
  height: 6vh;
  border-radius: 60px / 25px;
  position: absolute;
  top: 21vh;
  background: rgba(161, 161, 161, 1);
}

.tank .middle {
  /* max-width: 26rem; */
  width: 100%;
  min-width: 14rem;
  height: 20vh;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(222, 224, 230, 1)), to(rgba(161, 161, 161, 1)));
  background: -o-linear-gradient(top, rgba(222, 224, 230, 1) 0%, rgba(161, 161, 161, 1) 100%);
  background: linear-gradient(180deg, rgba(222, 224, 230, 1) 0%, rgba(161, 161, 161, 1) 100%);
  top: 4.5vh;
}

.tank .top {
  /* max-width: 26rem; */
  width: 100%;
  min-width: 14rem;
  height: 3vh;
  background-color: #efeef5;
  border-radius: 9rem / 2rem;
  position: absolute;
  top: 3vh;
  -webkit-box-shadow: inset 0px -6px 6px 0px rgb(222 224 230);
  box-shadow: inset 0px -6px 6px 0px rgb(222 224 230);
}

.tank_top_logo {
  position: absolute;
  width: 50%;
  top: 12vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tank_top_content {
  position: absolute;
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: initial;
  max-width: initial;
  width: initial;
  height: initial;
}


/* .cat_1 .tank_top_content {
    /* width: 50%;
    bottom: 15.5vh;
    height: 27vh;
}

.cat_2 .tank_top_content {
  bottom: 16vh;
  height: 30vh;
  width: 70%;
}

.cat_3 .tank_top_content {
    bottom: 15.5vh;
    width: 100%;
    height: 25vh;
} */

.tank_top_content img:not(.tank_top_content img.rollup_lupe),
.tank_top_logo img {
  height: 100%;
  position: relative;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}

/* Fancyybox */

.fancybox_row.fancybox__content, [id^="product_19_popup"], [id^="product_21_popup"], [id^="product_26_popup"], [id^="product_27_popup"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

[id^="product_21_popup"], [id^="product_26_popup"] {
  height: 100%;
}

.fancybox_row.fancybox__content .rollup_content_top,
.fancybox_row.fancybox__content .rollup_content,
[id^="product_21_popup"] .rollup_content_top, 
[id^="product_21_popup"] .rollup_content,
[id^="product_27_popup"] .rollup_content_top,
[id^="product_27_popup"] .rollup_content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-height: initial;
}

[id^="product_26_popup"] .rollup_content_top {
  flex: 0 1 40%;
  max-height: initial;
}


[id^="product_26_popup"] .rollup_content {
  flex: 0 1 60%;
  max-height: initial;
}

#product_21_popup2 .rollup_content_top, #product_21_popup3 .rollup_content_top, #product_21_popup4 .rollup_content_top {
  flex: 0 1 35%;
}

#product_21_popup2 .rollup_content, #product_21_popup3 .rollup_content, #product_21_popup4 .rollup_content {
  flex: 0 1 65%;
}

.fancybox__content .rollup_content_top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

[id^="product_21_popup"] .rollup_content_top img, [id^="product_26_popup"] .rollup_content_top img {
  object-fit: contain;
  object-position: top;
}

[id^="product_19_popup"] .rollup_content, [id^="product_21_popup"] .rollup_content, [id^="product_26_popup"] .rollup_content, [id^="product_22_popup"] .rollup_content {
  background: initial;
}

#product_21_popup1 .rollup_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2vw;
}

#product_26_popup1 .rollup_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 2vw;
}

#product_19_popup1 .rollup_content>div, #product_21_popup1 .rollup_content>div {
  display: flex;
}

#product_21_popup1 .rollup_content>div>div:first-of-type {
  margin: 0px 20px 20px 0;
  width: 15%;
}

#product_21_popup1 .rollup_content>div>div:nth-of-type(2) {
  width: 85%;
}

[id^="product_19_popup"] .rollup_content h2, [id^="product_23_rollup"] .rollup_content h2, [id^="product_26_popup"] .rollup_content h2 {
  color: #374151;
}

[id^="product_19_popup"] .rollup_content ul {
  margin: 0 0 4rem 0;
}

#product_23_left p {
  color: #fff;
}
#product_09_rollup--clone .rollup_content_top {
  background: #f1f2f5;
}

#product_09_rollup--clone .rollup_content_top img {
  object-fit: contain;
  object-position: top;
}

.fancybox__content .rollup_lupe,
.fancybox__content .link_popup {
  display: none;
}

.popup_more {
  display: none;
}

.fancybox__content .popup_more {
  display: block;
}

.fancybox__slide .displaynone {
  display: none;
}

.fancybox__slide #product_23_left p {
  color: #000;
}

/*
.tank_top_content img, .tank_top_logo img {
  width: 100%;
  position: relative;
} */
/* Navigation */
.content {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 0 2rem 2rem 2rem;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: auto 0 0 0;
}

.category {
  position: absolute;
  top: 0;
  left: 0;
  margin: 2rem;
  font-size: 1.5rem;
  /* color: #001689; */
  color: #000;
}

.language {
  position: absolute;
  top: 0;
  right: 0;
  margin: 2rem;
  font-size: 1.5rem;
  color: #000;
}

/* Overlay with menu */
.overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

.overlay_loader {
  z-index: 1000;
  background: #fff;
}

.js .overlay_active {
  pointer-events: auto;
  opacity: 1;
}

.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.loader div {
  width: 30px;
  height: 30px;
  margin: -30px 0.2em 0;
  border: 4px solid;
  background: #e9e9e9;
  -webkit-animation: anim-loader 0.8s alternate infinite forwards;
  animation: anim-loader 0.8s alternate infinite forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.loader div:nth-child(2) {
  border-radius: 50%;
  background: #c2292e;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.loader div:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes anim-loader {
  100% {
    /* -webkit-transform: translate3d(0px, 30px, 0px) scale3d(0.9, 0.9, 1); */
    /* transform: translate3d(0px, 30px, 0px) scale3d(0.9, 0.9, 1); */
    transform: translateX(0) translateY(30px) translateZ(0) scale3d(0.9, 0.9, 1);
  }
}

@keyframes anim-loader {
  100% {
    /* -webkit-transform: translate3d(0px, 30px, 0px) scale3d(0.9, 0.9, 1); */
    /* transform: translate3d(0px, 30px, 0px) scale3d(0.9, 0.9, 1); */
    transform: translateX(0) translateY(30px) translateZ(0) scale3d(0.9, 0.9, 1);
  }
}

/* for all screens */
#rotate {
  display: none !important;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100vw;
  left: 0;
  color: #fff;
}

#rotate p {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: fixed;
  left: 50%;
  top: 50%;
}

/* @media screen and (max-width: 1000px) {
  #rotate {
    display: block !important;
  }
} */
/* only when orientation is in portrait mode */
@media all and (orientation:portrait) {
  #rotate {
    display: block !important;
  }
}

@media screen and (max-width: 800px) {
  #rotate {
    display: block !important;
  }
}

/* debug 20251006 */
.scroller {
  pointer-events: none;
}

.room {
  pointer-events: none;
}

/* Only current room's sides should be interactive */
.room_current .room__side {
  pointer-events: auto;
}

/* And specifically all clickable elements within current room */
.room_current .room_content_left,
.room_current .room_content_right,
.room_current .rollup,
.room_current .tank_top_content,
.room_current .entry_display_content a {
  pointer-events: auto;
  cursor: pointer;
}

