.objectvr {
    position: relative;
    overflow: hidden;
    -ms-touch-action: none;
	touch-action: none;
}
.objectvr .images {
    position: absolute;
}
.objectvr .images img.hidden {
    visibility: hidden;
}
.objectvr .images img.precache-ie {
    z-index: -1;
    opacity: 0.01;
    visibility: visible;
}
.objectvr .images img,
.objectvr .images svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.objectvr .images svg {
    height: 100%;
}
.objectvr .images path {
    cursor: pointer;
    fill: #ffffff;
    fill-opacity: 0.3;
    stroke: #ffffff;
    stroke-width: 3px;
    opacity: 0;
    transition: 0.4s opacity;
}
.objectvr .images path:hover {
    opacity: 1;
    transition: 0.1s opacity;
}
.objectvr .shapes .disabled {
    pointer-events: none;
}
.objectvr .images.fade-width:before,
.objectvr .images.fade-width:after {
    content: " ";
    position: absolute;
    z-index: 1;
    top: 0;
    width: 10%;
    bottom: 0;
    pointer-events: none;
}
.objectvr .images.fade-width:before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.objectvr .images.fade-width:after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.objectvr .images.fade-height:before,
.objectvr .images.fade-height:after {
    content: " ";
    position: absolute;
    z-index: 1;
    left: 0;
    height: 10%;
    right: 0;
    pointer-events: none;
}
.objectvr .images.fade-height:before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.objectvr .images.fade-height:after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.objectvr .controllers {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    left: 20px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}
.objectvr .controllers button {
    cursor: pointer;
    border: none;
    font: 0/0 a;
    color: transparent;
    width: 32px;
    height: 32px;
    background: transparent url('vtourskin_light.png') no-repeat;
    background-size: 64px 384px;
    position: relative;
    margin: 0 6px;
}
.objectvr .controllers button:hover:before {
    content: '';
    position: absolute;
    top: 0;
    right:0;
    bottom: 0;
    left: 0;
    background: url('vtourskin_light.png') -32px -192px no-repeat;
    background-size: 64px 384px;
    opacity: 0.2;
    -webkit-transform: scale(2);
    transform: scale(2);
}
.objectvr .controllers .prev {
    background-position: 0px -96px;
}
.objectvr .controllers .next {
    background-position: -32px -96px;
}
.objectvr .controllers .zoom-in {
    background-position: 0px -160px;
}
.objectvr .controllers .zoom-out {
    background-position: -32px -160px;
}
.objectvr .controllers .full-screen {
    position: absolute;
    right: 10px;
    background-position: 0px -288px;
}
.objectvr .controllers .compass {
    display: inline-block;
    vertical-align: top;
    transform: scaleY(0.75);
    margin: 0 6px;
}
.objectvr .controllers .compass span {
    content: " ";
    display: inline-block;
    background-position: 50% 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='35' viewBox='0 0 7 35'%3E%3Cpath fill='%23E90014' d='M0 17.5L3.5 0 7 17.5z'/%3E%3Cpath fill='%23999' d='M7 17.5L3.5 35 0 17.5z'/%3E%3Cpath opacity='.25' d='M3.5 0v35L7 17.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
}

@-webkit-keyframes spin {
    0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    }
    }
    @keyframes spin {
    0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    }
}
.objectvr .loadbar {
	position: absolute;
	z-index: 10;
	left: 0;
	height: 5px;
	background: #666;
	transition: 0.3s width;
}
.objectvr.loading:before {
    content: " ";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    -webkit-animation: spin 1s infinite linear;
            animation: spin 1s infinite linear;
}
.objectvr.dark .controllers {
    border-bottom: none;
    background: rgba(255, 255, 255, 0.8);
    max-width: 270px;
    padding-top: 5px;
}
.objectvr.dark .controllers button {
    background-image: url('vtourskin_dark.png');
}
.objectvr.dark .controllers .full-screen {
    position: relative;
    right: auto;
}
.objectvr.loading.dark:before {
    border-color: rgba(80, 80, 80, 0.2);
    border-top-color: #000;
}