
.absolute-full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.q-img__image {
  border-radius: inherit;
  background-repeat: no-repeat;
}
.bg-room-pitselnas {
  /* background: url(../../images/vektor/room_pitselnas.jpg);
  background-size: 100%; */

  background-size: cover; background-image: url("../../images/vektor/room_pitselnas.jpg");
}

.content-vektor {
  position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; background:rgba(243, 207, 4, 0.02);
}


.room-a, .pleno-room, .room-b, .lomba-video-pendek { 
  color: rgba(255, 255, 255, 0.0); display: flex; justify-content: center; align-items: center; background:rgba(0, 0, 0, 0.0);  font-size: 1.5vw; text-align: center; cursor: pointer;
}
.room-a {
  width: 10%; height: 12%; position: absolute; left: 28%; top: 54%;
}
.pleno-room {
  width: 15%; height: 16%; position: absolute; left: 42.1%; top: 50.7%; 
}
.room-b {
  width: 10%; height: 12%; position: absolute; left: 61.3%; top: 54%;
}
.lomba-video-pendek {
  width: 9%; height: 25%; position: absolute; left: 66.5%; top: 73.5%; font-size: 1.3vw;
}

.spanduk-reg-a {
  width: 18.5%; height: 13.5%; position: absolute; left: 16.5%; top: 35.5%; font-size: 1.3vw; background:rgba(201, 38, 38, 0.0); 
}
.spanduk-reg-b {
  width: 18.5%; height: 13.5%; position: absolute; left: 64.75%; top: 35.5%; font-size: 1.3vw; background:rgba(201, 38, 38, 0.0); 
}

.point-test {
  width: 18.5%; height: 100%; position: absolute; left: 50%; top: 0%; font-size: 1.3vw; background:rgba(179, 240, 12, 0.6); 
}

.pulsingButton {  
  box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  transition: all 300ms ease-in-out;
}


/* Comment-out to have the button continue to pulse on mouseover */

a.pulsingButton:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
  color: #ffffff;
}


/* Animation */

@-webkit-keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

@-moz-keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

@-ms-keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}


/* 
@media (max-width:991.98px) {
  .room-a, .pleno-room { 
    font-size: 30px;
  }
}

@media (min-width:400px) {
  .room-a, .pleno-room { 
    font-size: 10px;
  }
}
 */



 /* START TOOLTIP STYLES */
[tooltip] {
   /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1.2em;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  width: 30em;
  max-width: 21em;
  /* max-width: 21em; */
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}
