.pro360-container {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: default;
    width: 100%;
    height: 100%;
    font-family: Helvetica, "Nimbus Sans L", "Liberation Sans", Arial, sans-serif;
    background: #f4f4f4 url('img/background.svg') repeat;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
    line-height: 1.4;
    
}

    .pro360-container * {
        box-sizing: content-box;
    }

.pro360-ui {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pro360-grab {
    cursor: grab;
    cursor: url('img/grab.svg') 12 8, default;
}


.pro360-grabbing {
    cursor: grabbing;
    cursor: url('img/grabbing.svg') 12 8, default;
}

.pro360-fullscreen-toggle-button {
    background-image: url('img/fullscreen.svg');
}

.pro360-zoom-in {
    background-image: url('img/zoomin.svg');
}

.pro360-zoom-out {
    background-image: url('img/zoomout.svg');
}

.pro360-orientation-button {
    background-image: url('img/active.svg');
}

.pro360-circle {
    /* background-image: url('img/blinkingspot.svg');*/
    /*background-image: url('img/direction-top.svg');
    background-repeat: round;
    width:100px;
    height:100px;*/
}

.pro360-info {
    background-image: url('img/info.svg');
    background-repeat: round;
}

.pro360-compass {
    background-image: url('img/compass.svg');
}

.pro360-container:-moz-full-screen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pro360-container:-webkit-full-screen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pro360-container:-ms-fullscreen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pro360-container:fullscreen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pro360-render-container {
    cursor: inherit;
    /* Fix display bug in Safari 7 */
    position: absolute;
    height: 100%;
    width: 100%;
}

.pro360-controls {
    margin-top: 4px;
    background-color: #444;
    opacity:8;
    /* border: 1px solid #999;
    border-color: rgba(0,0,0,0.4);
    border-radius: 3px;*/
    cursor: pointer;
    z-index: 2;
    /* Fix Safari fullscreen bug */
    -webkit-transform: translateZ(9999px);
    transform: translateZ(9999px);
}

.pro360-control:hover {
    background-color: #f8f8f8;
}

.pro360-controls-container {
    position: absolute;
    left: 4px;
    bottom: 4px;
    z-index: 1;
    display:flex;
    flex-direction:row;
}

.pro360-zoom-controls {
    width: 26px;
    height: 52px;
}

.pro360-zoom-in {
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    border-radius: 3px 3px 0 0;
}

.pro360-zoom-out {
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    background-position: 0 -26px;
    border-top: 1px solid #ddd;
    border-top-color: rgba(0,0,0,0.10);
    border-radius: 0 0 3px 3px;
}

.pro360-fullscreen-toggle-button, .pro360-orientation-button, .pro360-hot-spot-debug-indicator {
    width: 26px;
    height: 26px;
}

.pro360-hot-spot-debug-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    display: none;
}

.pro360-orientation-button-inactive {
    background-position: 0 -156px;
}

.pro360-orientation-button-active {
    background-position: 0 -182px;
}

.pro360-fullscreen-toggle-button-inactive {
    background-position: 0 -52px;
}

.pro360-fullscreen-toggle-button-active {
    background-position: 0 -78px;
}

.pro360-panorama-info {
    position: absolute;
    bottom: 4px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 0 3px 3px 0;
    padding-right: 10px;
    color: #fff;
    text-align: right;
    display: none;
    z-index: 2;
    /* Fix Safari fullscreen bug */
    -webkit-transform: translateZ(9999px);
    transform: translateZ(9999px);
}

.pro360-title-box {
    position: relative;
    font-size: 20px;
    display: table;
    padding-left: 5px;
    margin-bottom: 3px;
}

.pro360-author-box {
    position: relative;
    font-size: 12px;
    display: table;
    padding-left: 5px;
}

.pro360-load-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 150px;
    margin: -75px 0 0 -100px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 3px;
    text-align: center;
    font-size: 20px;
    display: none;
    color: #fff;
}

    .pro360-load-box p {
        margin: 20px 0;
    }

.pro360-lbox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    display: none;
}

.pro360-loading {
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-name: pro360-mv;
    -webkit-animation-name: pro360-mv;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    height: 10px;
    width: 10px;
    background-color: #fff;
    position: relative;
}

@keyframes pro360-mv {
    from {
        left: 0;
        top: 0;
    }

    25% {
        left: 10px;
        top: 0;
    }

    50% {
        left: 10px;
        top: 10px;
    }

    75% {
        left: 0;
        top: 10px;
    }

    to {
        left: 0;
        top: 0;
    }
}

@-webkit-keyframes pro360-mv {
    from {
        left: 0;
        top: 0;
    }

    25% {
        left: 10px;
        top: 0;
    }

    50% {
        left: 10px;
        top: 10px;
    }

    75% {
        left: 0;
        top: 10px;
    }

    to {
        left: 0;
        top: 0;
    }
}

.pro360-load-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 100px;
    margin: -50px 0 0 -100px;
    background-color: rgba(0,0,0,.7);
    border-radius: 3px;
    text-align: center;
    font-size: 20px;
    display: table;
    color: #fff;
    cursor: pointer;
}

    .pro360-load-button:hover {
        background-color: rgba(0,0,0,.8);
    }

    .pro360-load-button p {
        display: table-cell;
        vertical-align: middle;
    }

.pro360-info-box {
    font-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 150px;
    margin: -75px 0 0 -100px;
    background-color: #000;
    border-radius: 3px;
    display: table;
    text-align: center;
    color: #fff;
    table-layout: fixed;
}

    .pro360-info-box a, .pro360-author-box a {
        color: #fff;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .pro360-info-box p {
        display: table-cell;
        vertical-align: middle;
        padding: 0 5px 0 5px;
    }

.pro360-error-msg {
    display: none;
}

.pro360-about-msg {
    font-size: 11px;
    line-height: 11px;
    color: #fff;
    padding: 5px 8px 5px 8px;
    background: rgba(0,0,0,0.7);
    border-radius: 3px;
    position: absolute;
    top: 50px;
    left: 50px;
    display: none;
    opacity: 0;
    -moz-transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    z-index: 1;
}

    .pro360-about-msg a:link, .pro360-about-msg a:visited {
        color: #fff;
    }

    .pro360-about-msg a:hover, .pro360-about-msg a:active {
        color: #eee;
    }

.pro360-hotspot-base {
    position: absolute;
    visibility: hidden;
    cursor: default;
    vertical-align: middle;
    top: 0;
    z-index: 1;
}

.pro360-hotspot {
    height: 35px;
    width: 35px;
    border-radius: 18px;
}

.pro360-info {
    height: 40px;
    width: 40px;
    border-radius: 18px;
}

.pro360-hotspot:hover {
    /*background-color: rgba(255,255,255,0.2);*/
}


.pro360-hotspot.pro360-scene {
    background-position: 0 -130px;
}

div.pro360-tooltip span {
    
    visibility: visible;
    position: absolute;
    border-radius: 5px;
    background-color: #ffffff3b;
    color: #fff;
    text-align: center;
    max-width: 200px;
    padding: 5px 5px;
    margin-left: -220px;
    cursor: default;
    border:1px solid #fff;
}

    div.pro360-tooltip span:after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-width: 10px;
        border-style: solid;
        border-color: #fff transparent transparent transparent;
        bottom: -20px;
        left: -10px;
        margin: 0 50%;
    }

    div.pro360-tooltip:hover span:after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-width: 10px;
        border-style: solid;
        border-color: #444 transparent transparent transparent;
        bottom: -20px;
        left: -10px;
        margin: 0 50%;
    }

div.pro360-tooltip span:hover {
    /*visibility: hidden;*/
    color: #fff;
    background: #44444469;
    border: 1px solid #444;
    cursor: pointer;
}

div.pro360-tooltip:hover span {
    visibility: visible;
}



.pro360-compass {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 4px;
    bottom: 4px;
    border-radius: 25px;
    background-image: url('img/compass.svg');
    cursor: default;
    display: none;
}

.pro360-world {
    position: absolute;
    left: 50%;
    top: 50%;
}

.pro360-face {
    position: absolute;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
}

.pro360-dragfix, .pro360-preview-img {
    position: absolute;
    height: 100%;
    width: 100%;
}

.pro360-preview-img {
    background-size: cover;
    background-position: center;
}

.pro360-lbar {
    width: 150px;
    margin: 0 auto;
    border: #fff 1px solid;
    height: 6px;
}

.pro360-lbar-fill {
    background: #fff;
    height: 100%;
    width: 0;
}

.pro360-lmsg {
    font-size: 12px;
}

.pro360-fade-img {
    position: absolute;
    top: 0;
    left: 0;
}

.pro360-pointer {
    cursor: pointer;
}


.pro360-blinkcircle {
    height: 30px;
    width: 30px;
    position: absolute;
    visibility: visible;
    cursor: default;
    vertical-align: middle;
    top: 0;
    z-index: 19999;
}
/* Transparent overlay with logo */
.overlay {
    /*pointer-events: none;*/ /* Makes the overlay non-interactive */
    /*position: fixed;
    bottom: 10px;*/ /* Adjust the distance from the bottom as needed */
    /*right: 10px;*/ /* Adjust the distance from the right as needed */
    /*width: auto;*/ /* Allow content to determine width */
    /*height: auto;*/ /* Allow content to determine height */
    /*background-color: rgba(0,0,0,0.7);*/ /* Semi-transparent background */
    /*display: flex;
    justify-content: flex-end;*/ /* Align content to the end (right) */
    /*align-items: flex-end;*/ /* Align content to the end (bottom) */
    /*z-index: 9999;
    padding: 5px;*/ /* Add some padding to the right-bottom corner */

    background-color: rgba(0,0,0,0.7); /* Semi-transparent background */
    position: fixed;
    margin: 10px;
    bottom: 10px;
    right: 10px;
    padding: 5px;
}

/* Company logo */
.company-logo {
    width: 40px; /* Adjust the size as needed */
    height: auto; /* Maintains aspect ratio */
}


#toast {
    visibility: hidden;
    max-width: 50px;
    height: 50px;
    /*margin-left: -125px;*/
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 50%;
    font-size: 17px;
    white-space: nowrap;
}

    #toast #img {
        width: 50px;
        height: 50px;
        float: left;
        /* padding-top: 16px;
        padding-bottom: 16px;*/
        box-sizing: border-box;
        background-color: #111;
        color: #fff;
    }

    #toast #desc {
        color: #fff;
        /*padding: 16px;*/
        margin-top: 15px;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
    }

    #toast.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
    }


@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes expand {
    from {
        min-width: 50px
    }

    to {
        min-width: 350px
    }
}

@keyframes expand {
    from {
        min-width: 50px
    }

    to {
        min-width: 350px
    }
}

@-webkit-keyframes stay {
    from {
        min-width: 350px
    }

    to {
        min-width: 350px
    }
}

@keyframes stay {
    from {
        min-width: 350px
    }

    to {
        min-width: 350px
    }
}

@-webkit-keyframes shrink {
    from {
        min-width: 350px;
    }

    to {
        min-width: 50px;
    }
}

@keyframes shrink {
    from {
        min-width: 350px;
    }

    to {
        min-width: 50px;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}