* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
	
}

@font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-light-webfont.woff2") format("woff2"), url("../fonts/poppins-light-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-bold-webfont.woff2") format("woff2"), url("../fonts/poppins-bold-webfont.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-regular-webfont.woff2") format("woff2"), url("../fonts/poppins-regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2"), url("../fonts/poppins-semibold-webfont.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

body {
	
    width: 100vw;
    overflow: hidden;
    font-family: poppins, sans-serif;
	background: #C31741;
}

.tool-bar {
    position: fixed;
    background: #C31741;
    top: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 100vh;

    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    justify-content: space-between;

    z-index: 9999;
}

.tool-bar .info {
    width: 100%;
    position: relative;
}

.tool-bar .info:after {
    content: '';
    width: 100%;
    height: 24px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    background: url('../img/bg-info.png');
    background-size: cover;
}

.tool-bar .info a {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.tool-bar .info a img {
    max-width: 60%;
}

.tool-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    position: relative;
}

.tool-bar a .tooltip {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(calc(-100% - 20px), -50%);
    background: url('../img/bg-tooltip.png');
    background-size: cover;
    width: 100px;
    height: 28px;
    display: none;
    align-items: center;
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: all .3s;
}

.tool-bar a:hover .tooltip {
    display: flex;
    opacity: 1;
}

.tool-bar a.zoomOut {
    /*height: 70px;
    margin-top: 0;*/
    height: 10px;
}

.tool-bar-controls img {
    max-width: 70%;
    filter: brightness(0) invert(1);
    transition: all .3s;
}

.tool-bar-controls a:hover img {
    filter: none;
}

.menu-bar {
    position: fixed;
    background: #C31741;
    top: 0;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 100vh;

    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    justify-content: space-between;

    z-index: 9999;
}

.menu-bar a {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-bar-levels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.indicator1 {
    color: #fff;
    font-size: 9px;
    margin-top: 80px;
	
}
.indicator2 {
    color: #fff;
    font-size: 9px;
    margin-top: 0px;
}
.indicator3 {
    color: #fff;
    font-size: 9px;
    margin-top: -80px;

}
.indicator1 span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 12px;
    margin: 7px 0;
}
.indicator2 span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 12px;
    margin: 7px 0;
}
.indicator3 span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 12px;
    margin: 7px 0;
}

.tool-bar-levels ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.tool-bar-levels ul li {
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0;
}

.tool-bar-levels ul li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin: 0;
}

.tool-bar-levels ul li a span {
    background: #C31741;
    position: absolute;
    bottom: 10px;
    left: 30%;
    transform: translateX(-50%);
}

.tool-bar-levels ul li a:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 20%;
    transform: translateX(-50%);
    background: transparent;
    width: 1px;
    height: 0;
    transition: all .3s;
}

.tool-bar-levels ul li a.hovered::before {
    height: 100%;
    background: #fff;
}

.tool-bar-levels ul li a.filled:before {
    background: #fff;
    height: 100%;
}

.tool-bar-levels ul li a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #C31741;
    transition: all .3s;
}

.tool-bar-levels ul li a.active:after {
    border-color: #FFFFFF;
    background: #011425;
}

.tool-bar-levels ul li:first-child a:before {
    display: none;
}

.tool-bar-levels ul li:last-child {
    margin-bottom: 20px;
    display: block;
}

.animate-creator-major-button-div {
    display: none;
}

.nav {
    width: 171px;
    padding-top: 150px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 70px;
    background: rgba(195, 23, 65, 0.8);

    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: center;
    flex-direction: column;
    z-index: 9999;
}

.nav.active {
    display: flex;
}

.nav a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 20px 0;
    padding-left: 18px;
    position: relative;
}

.submenu {
    margin-top: -20px;
    padding-left: 15px;
}

.submenu a {
    font-size: 14px;
}

.nav a:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #fff;

    position: absolute;
    left: -31px;
    top: 50%;
    transform: translateY(-50%);

    transition: all .3s;
}

.nav a.active:before {
    border-color: transparent;
    background: #011425;
    width: 5px;
    height: 5px;
}

.nav a:after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0;
    background: #fff;
}

.about {
    padding: 25px;
    width: 510px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 70px;
    background: rgba(195, 23, 65, 0.8);
    color: #fff;
    font-size: 14px;
    height: 100%;
    overflow: auto;

    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: center;
    flex-direction: column;
    z-index: 9999;
}

.about.active {
    display: flex;
}

.about img {
    width: 250px;
    display: block;
    margin: 0 auto;
}

.animate-creator-container {
	/*transform: scale(1.1)*/;
}

.animate-creator-photo-div {
    transform: scale(1);
	background-color: #FFFFFF;
}

.nav-icon-8{
    width: 40px;
    height: 20px;
    margin: 10px 10px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.nav-icon-8 span {
    background: #fff;
    position: absolute;
    transition: all .3s cubic-bezier(.8, .5, .2, 1.4);
    width: 100%;
    height: 2px;
}
.nav-icon-8 span:nth-child(1) {
    top: 0;
    left: 0;
}
.nav-icon-8 span:nth-child(2) {
    top: 9px;
    left: 0;
    transform: scaleX(.4);
}
.nav-icon-8 span:nth-child(3) {
    bottom:0;
    left: 0;
}
.nav-trigger:not(.open):hover .nav-icon-8:not(.open) span:nth-child(1) {
    transform: scaleX(.8);
}
.nav-trigger:not(.open):hover .nav-icon-8:not(.open) span:nth-child(2) {
    transform: scaleX(.5);
}
.nav-trigger:not(.open):hover .nav-icon-8:not(.open) span:nth-child(3) {
    transform: scaleX(.8);
}
.nav-trigger.open .nav-icon-8.open span:nth-child(1) {
    top: 13px;
}
.nav-trigger.open .nav-icon-8.open span:nth-child(2) {
    top: 13px;
}
.nav-trigger.open .nav-icon-8.open span:nth-child(3) {
    top: 13px;
}
.animate-creator-photo {
    /*min-width: 100vw;
    min-height: 100vh;*/
}


iframe, .carousel {
    width: calc(100vw - 80px);
    height: 100vh;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.animate-creator-hotspot {
    animation: none !important;
    transition: opacity .3s;
    background-image: url('../img/pins-white.png') !important;
    width: 32px !important;
    height: 94px !important;
    transform: translate(-50%,-50%) scale(1);
}

.animate-creator-hotspot.hided {
    opacity: 0;
}

.animate-creator-overlay > .animate-creator-overlay-close {
    top: 50px;
    right: 125px;
}

.nav span {
    position: absolute;
    bottom: 15px;
    right: 0;
    color: #fff;
    width: 100%;
    font-size: 10px;
    text-align: center;
}

.carousel .owl-item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel .owl-theme img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.owl-theme .owl-dots {
    transform: translateY(-40px);
}

.carousel {
    /*position: relative;*/
}



.loader {
    position: fixed;
    top: 0;
    left: 60px;
    right: 0;
    bottom: 0;

    z-index: 9999999999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.8);
}

.screenShot {
    display: none !important;
}

@media only screen and (max-width: 812px) {
    .tool-bar-controls a {
        width: 50%;
        float: left;
        height: 40px !important;
        margin: 5px 0;
    }
    .nav {
        padding-top: 70px;
    }
    .nav a {
        font-size: 16px;
        margin: 12px 0;
    }
}

.about p {
    margin-bottom: 20px;
}

.about ul {
    padding-left: 40px;
    margin-bottom: 10px;
}