.header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  right: 0;
  left: 0;
  height: 48px;
  background-color: #ffffff;
  box-shadow: 0 1px 0 #F0F0F5;
}

.button,
.vr-button,
.panoramic-view-exit-button,
.fullscreen-button {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  color: white;
  text-align: center;
  vertical-align: middle;
  line-height: 48px;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: none;
  font-size: 0;
}

.button--dark {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.8);
}

.logo {
  margin-left: 16px;
}

.logo svg {
  width: 24px;
  height: 24px;
}

.app-close-button {
  display: block;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='M15.046 1L1.012 15 15.046 1z' stroke='%23222' stroke-width='1.5' stroke-linecap='square'/%3E%3Cpath d='M1.012 1l14.034 14' stroke='%23222' stroke-width='1.5'/%3E%3C/svg%3E");
}

.panoramic-view-exit-button {
  position: absolute;
  background-color: #222222;
  bottom: 33px;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml, %3Csvg width='19' height='15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.078 5.078l3.668-3.665-.825-.826-5.08 5.077 5.08 5.077.825-.825-3.673-3.671h10.26a4.083 4.083 0 014.084 4.083V15h1.166v-4.672c0-2.9-2.35-5.25-5.25-5.25H3.079z' fill='%23EAEAEA'/%3E%3C/svg%3E");
}

.vr-button {
  position: absolute;
  left: 50%;
  top: 73px;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml, %3Csvg width='30' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.136 2.363a1.5 1.5 0 011.5-1.5h25.09a1.5 1.5 0 011.5 1.5v9.426a1.5 1.5 0 01-1.5 1.5h-8.53a1.5 1.5 0 01-.89-.292l-2.758-2.034-.296.403.296-.403a.618.618 0 00-.733 0l-2.837 2.092a1.2 1.2 0 01-.713.234H2.636a1.5 1.5 0 01-1.5-1.5V2.363z' stroke='%23878D98'/%3E%3Ccircle cx='7.35' cy='7.077' r='2.857' stroke='%23878D98'/%3E%3Ccircle cx='23.013' cy='7.077' r='2.857' stroke='%23878D98'/%3E%3C/svg%3E");
}

.fullscreen-button {
  position: absolute;
  left: 25px;
  top: 73px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml, %3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.74 1H1v9.74M5.26 15H15V5.26' stroke='%23878D98' stroke-width='1.5'/%3E%3C/svg%3E");
}

.marker-icon-text {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #808080;
  font-size: 11px;
  display: block;
  text-align: center;  
  line-height: 24px;
}

.marker-button {
  position: absolute;
  overflow: hidden;

  box-sizing: border-box;
  display: flex;
  max-width: 24px;
  border-radius: 12px;

  box-shadow: 0 0 8px rgba(15, 27, 51, 0.1);

  background: white;
  cursor: pointer;

  font-size: 0;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-transition: max-width .5s ease;
  transition: max-width .5s ease;
}

.marker-icon-box {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  padding: 6px;
  font-size: 0;
}


.panoramic-view-button {
  position: absolute;
  overflow: hidden;

  box-sizing: border-box;
  display: flex;
  max-width: 48px;
  border-radius: 24px;

  box-shadow: 0 0 8px rgba(15, 27, 51, 0.1);

  background: white;
  cursor: pointer;

  font-size: 0;

  animation: three-d-pulse 2.5s ease-in-out 0s infinite normal forwards;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-transition: max-width .5s ease;
  transition: max-width .5s ease;
}

.panoramic-view-button:hover {
  max-width: 24px;
  animation: none;
  -webkit-transition: max-width .5s ease;
  transition: max-width .5s ease;
}

.panoramic-view-icon-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 14px;
  font-size: 0;
}

.panoramic-view-icon {
  fill: #959ba6;
}

.panoramic-view-text {
  width: 100%;
  max-width: 160px;
  flex-shrink: 0;
  color: black;
  letter-spacing: 0;
}

.panoramic-view-room {
  height: 48px;
  line-height: 48px;
  box-sizing: border-box;
  display: block;
  padding-left: 6px;
  padding-right: 40px;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  transform: translateX(12px);
  -webkit-transition: opacity .5s ease-in-out, transform .5s ease-in-out;
  transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}

.panoramic-view-button:hover .panoramic-view-room {
  transform: translateX(0);
  opacity: 1;
}

.panoramic-view-square {
  display: none;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #959ba6;
}

.waypoint-button {
  width: 32px;
  height: 32px;
  position: absolute;
  background: #3578af;
  border-radius: 8px;
  margin: 0;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.orbit-icon
{
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -200px);
  z-index: 1000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  touch-action: none;
}

.loader-dots {
  display: flex;
  flex-direction: row;
}

.loader-dots span {
  animation-name: preloadAnimate;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  display: inline-block;
  border-radius: 50%;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes preloadAnimate {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@media screen and (min-width: 1025px) {
  .panoramic-view-button:hover {
    max-width: 300px;
    animation: none;
  }
}

@media screen and (min-width: 769px) {
  .panoramic-view-exit-button {
    opacity: 0.9;
    transition: opacity .3s;
  }

  .panoramic-view-exit-button:hover {
    opacity: 1;
  }

  .header {
    display: none;
  }

  .app-close-button {
    top: 8px;
    right: 8px;
  }
}


@keyframes three-d-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  66% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

html, body {
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: auto;
    font-family: Graphik, Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: 'kern';
    -ms-font-feature-settings: 'kern' 1;
    font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;

}

body {
    background-color: #F8F8F8;
    font-size: 14px;
    color: #000;
    margin: 0px;
    overflow: hidden;
}

.player {
    height: 100%;
}

.progress {
    position: absolute;
    top: calc(50% - 3px);
    left: 50%;
    transform: translateX(-50%);
    max-width: 512px;
    width: calc(100% - 64px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-radius: 3px;
    background: rgba(149, 155, 166, 0.12);
}

.progress__bar {
	background-color: #C60;
	height: 20px;
	border-radius: 3px;
	transition: width .2s ease-in;
}

.progress span {
    position: absolute;
    display: block;
    width: 100%;
	color: black;
	text-align:center;
	font-weight:bold;
}

.stats {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    position: absolute;
    pointer-events: none;
    color: rgb(0, 172, 72);
    font-size: 16pt;
}

.switch {
    display: block;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -90px);
    z-index: 1000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #aaa;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

/*# sourceMappingURL=styles.css.map*/
