html, body {
  height: 100vh;
}

/* Цвет информационных маркеров */
#markers .button {
  /*background: #f6e50a;*/
}

/* Цвет полосы загрузки */
#control-panel .progress-bar .value {
  /*background: #f6e50a;*/
}

#tour-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.modal-content img, .modal-content video{
  width: calc(100% + var(--padding)*2);
  margin-left: calc(var(--padding)*-1);
  margin-right: calc(var(--padding)*-1);
  margin-top: 12px;
  margin-bottom: 12px;
  display: block;
}

.modal-content video{
  aspect-ratio: 16 / 9 ;
  width: calc(100% + var(--padding)*2);
}
.modal-container .modal{
  max-width: 800px !important;
  background: rgba(255,255,255, 0.8) !important;
  box-shadow: 0 2px 4px rgb(0 0 0 / 30%), 0 2px 32px rgb(0 0 0 / 30%);
}

.modal-container .modal-header {
  background: transparent !important;
}

.modal-container{
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px);
}

#tooltip {
  backdrop-filter: blur(15px);
  background-color: rgba(255,255,255, .75);
  border-radius: 4px;
  max-width: 200px;
  line-height: 1.5em;
  margin: 12px 0 0 8px;
}

#loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0f4779;
  top:  0;
  left:  0;
  background-image: url(../img/ldpr_logo.svg);
  background-image: url(../img/ldpr_logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50vw;
  transition: opacity 0.5s ease;
}

#loader.animate {
  opacity: 0;
  pointer-events: none;
}

#loader.hide {
  display: none;
} 

#loader .bar{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 50vw;
  height: 8px;
  top:  calc(50vh + 50vw/2.14/2);
  background-color: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

#loader .bar .progress{
  transition: width 0.3s ease;
  position: absolute;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: #fce700;
  border-radius: 8px;
}