@font-face {font-family: Roboto-Thin; src: url("../fonts/Roboto-Thin.ttf")}
@font-face {font-family: Roboto-Light; src: url("../fonts/Roboto-Light.ttf")}

.layout {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.progressBar {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.3);
    transition: opacity 1s;
    justify-content: center;
    align-items: center;
}

    .progressBar-active {
        opacity: 1;
    }

    .progressBar_scale {
        position: absolute;
        left: 0;
        bottom: 10px;
        width: 100%;
        height: 2px;
        background: white;
    }

    .progressBar_state {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        transition: width 0.2s;
        background: #9bb603;
    }

    .progressBar_value {
        position: relative;
        color: white;
        font-size: 65px;
        font-family: Roboto-Light;
    }

.infospot {
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    background-position: 0 0;
    background-size: 80px 40px;
    background-image: url(../img/sprite.png);
    cursor: pointer;
}

.infospot_rent {
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    background-position: 40px 0;
    background-size: 80px 40px;
    background-image: url(../img/sprite.png);
    cursor: pointer;
}

.panospot {
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    background-position: 40px 0;
    background-size: 80px 40px;
    background-image: url(../img/sprite.png);
    cursor: pointer;
}

.controlBar {
    position: absolute;
    display: flex;
    left: 50%;
    bottom: 20px;
    width: 110px;
    transform: translateX(-50%);
    justify-content: space-between;
}

    .controlBar_navi {
        position: relative;
        display: flex;
        width: 50px;
        height: 50px;
        pointer-events: auto;
        background: #9bb603;
        cursor: pointer;
        justify-content: center;
        align-items: center;
    }

    .controlBar_navi::before {
        position: relative;
        content: '';
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }

    .controlBar_navi-prev::before {border-right: 12px solid #fff}
    .controlBar_navi-next::before {border-left: 12px solid #fff}

.sceneList {
    position: absolute;
    left: 10px;
    top: 10px;
    height: 30px;
    padding: 0px 5px;
    pointer-events: auto;
}

.compass {
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 150px;
    background-image: url(../img/compass.png);
    background-size: 100%;
}

.gallery {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background: rgba(0,0,0,0.5);
    transition: opacity 0.5s;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.gallery-opened {
    pointer-events: auto;
    opacity: 1;
}

.gallery_popup {
    position: relative;
    display: flex;
    max-width: 240px;
    background:white;
    flex-direction: column;
}

.gallery_photo {
    position: relative;
    width: 100%;
}

.gallery_content {
    position: relative;
    padding: 15px;
    font-family: Roboto-Light;
}

.logo_right {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
	pointer-events: auto;
}

#logo3dtour {
  height: 50px;
  width: 50px;
  background: url(../img/logo_sprite.png) 0px 50px;
  margin:0;
  padding:0;
  z-index: 100000;
}
