/* CSS for index.html */
* {
    margin: 0;
    padding: 0;
    outline: none;
}

/* html */
html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,118,206,0.75);
    background: -moz-linear-gradient(180deg, rgba(0,118,206,0.75) 0%, rgba(0,68,124,0.75) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,118,206,0.75) 0%, rgba(0,68,124,0.75) 100%);
    background: linear-gradient(180deg, rgba(0,118,206,0.75) 0%, rgba(0,68,124,0.75) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0076ce",endColorstr="#00447c",GradientType=1);
    font-family: 'Roboto';
}

/* Logo */
#logo {
    max-width: 9vw;
    top: 2vw;
    left: 3vw;
    position: absolute;
    cursor: pointer;
    z-index: 5;
}

#logo img {
    width: 100%;
}

/* Home Screen P */
#home_Screen_Text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 7vw;
    width: 38vw;
    z-index: 5;
    display: none
}

#home_Screen_Text p {
    font-size: 7vw;
    color: #ffffff;
    font-family: sans-serif;
    font-weight: bold;
}

#home_Screen_Text span {
    font-size: 3.5vw;
    font-weight: 300;
    display: block;
    line-height: 1.5;
}

/* BG vxBlock */
#bg_vxblock {
    position: absolute;
    height: 100%;
    width: 25%;
    right: 0;
    background: rgb(0,118,206);
    background: -moz-linear-gradient(180deg, rgba(0,118,206,1) 0%, rgba(0,68,124,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,118,206,1) 0%, rgba(0,68,124,1) 100%);
    background: linear-gradient(180deg, rgba(0,118,206,1) 0%, rgba(0,68,124,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0076ce",endColorstr="#00447c",GradientType=1);
    transition: width 0.3s linear 0.2s;
}

#bg_vxblock.active {
    width: 100%;
}

#vxblock, #unity {
    position: absolute;
    /* z-index: 0; */
}

#unity {
    display: none;
    width: 75%;
    height: 100%;
    left: 0;
    top: 0;
    transition: width 0.3s linear;
    /* z-index: 0; */
}

#unity .unityTitle, #unity .unityBase {
    position: absolute;
    width: 20vw;
    left: 0;
    right: 0;
    top: 16vw;
    margin: 0 auto;
}

#unity .unityBase {
    top: 25vw;
}

.unityButtons {
    width: 20vw;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 40vw;
    text-align: center;
    z-index: 1;
}

.unityButtons > div {
    width: 2vw;
    display: inline-block;
    margin-right: 1.5vw;
    padding: 0.6vw;
    background-color: transparent;
    border-bottom: 1px solid #41B6E6;
    cursor: pointer;
    position: relative;
    /* box-sizing: border-box; */
}

.unityButtons #unityRotate:hover, .unityButtons #unityExpand:hover, .unityButtons #unityRotate.active, .unityButtons #unityExpand.active {
    background-color: #0076CE;
}

.unityButtons > div:nth-child(1) {
    margin-right: 1.5vw;
}

.unityButtons > div p {
    display: none;
    content: 'Rotate Zoom';
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 0.8vw;
    color: #ffffff;
}

.unityButtons > div:hover p {
    display: block
}

.unityDes {
    display: none;
    position: absolute;
    width: 15vw;
    bottom: 3vw;
    left: 3vw;
}

.unityClose {
    display: none;
    position: absolute;
    bottom: -0.5vw;
    width: 8vw;
    right: 0;
    z-index: 1;
    cursor: pointer;
}

#vxblock_expand {
    position: absolute;
    bottom: 2vw;
    right: 4vw;
    width: 5vw;
    text-align: center;
    cursor: pointer;
}

#vxblock_expand img {
    width: 35%;
    padding: 10%;
    background-color: transparent;
    border-bottom: 1px solid #41B6E6;
}

#vxblock_expand.active img {
    background-color: #0076CE;
}

#vxblock_expand p {
    color: #ffffff;
}

/* CSS for page */
#number {
	position: absolute;
	z-index: -1;
	visibility: hidden;
}

#number1 {
    z-index: 7;
}

#number2 {
    z-index: 6;
}

#number3 {
    z-index: 5;
}

#number4 {
    z-index: 4;
}

#number5 {
    z-index: 3;
}

#number6 {
    z-index: 2;
}

#number7 {
    z-index: 1;
}

.annotation {
	position: absolute;
	top: 0;
	left: 0;
	/* z-index: 1; */
	margin-left: -15px;
    margin-top: -15px;
    z-index: 5;
}
.annotation.hide {
    opacity: 0 !important;
}
.annotation-number {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	background: #EE6411;
}
.annotation-number:before{
    content: '';
    position: absolute;
    z-index: -1;
    border-style:solid;
    border-width:1px;  
    border-color:#EE6411;
    border-radius: 50%;
    width: 108%;
    height: 108%;
    left: -2px;
    top: -2px;
}

#number5 .annotation-number {
    /* background: #11a6f7; */
}

#number5 .annotation-number:before {
    /* border-color: #11a6f7; */
}

.annotation:hover {
    transform: scale(1.2);
    transform-origin: center;
}

.annotation:hover .annotation-number, .annotation.active .annotation-number{
    background: #ffffff;
}

.annotation:hover .annotation-number:before, .annotation.active .annotation-number:before{
    border-color: #ffffff;
}

.annotation-text {
	display: none;
	position: absolute;
	z-index: 2;
	margin-left: 20px;
	margin-top: 10px;
	padding: 1em;
	width: 200px;
	color: #07548f;
	background: rgba(215, 215, 215, 0.95);
	border-radius: .5em;
	font-size: 12px;
	line-height: 1.2;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.annotation-text strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #07548f;
}
.annotation:hover .annotation-text{
	display: block;
}
#number5 .annotation-number:hover {
	cursor: pointer;
}
.annotation-number:hover ~ .annotation-text {
	display: block;
}

/* Loading screen */
#loading-screen {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 1;
 	transition: 1s opacity;
}

#loader img {
    max-width: 250px;
}

#loading-screen.fade-out {
    opacity: 0;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: auto;
    height: 200px;
    transform: translate(-50%, -50%);
    text-align: center;
}
#loader_animation {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0076ce;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader_animation:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #a0a0a0;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader_animation:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0076ce;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}