/*
 * Cubesviewer sites CSS
 * This file must not be included needed if you are embedding cubesviewer in your site, as it
 * contains global CSS selectors.
 */

html {
    font-size: 13px;
    font-family: Helvetica, Arial, sans-serif;
}

img.cv-logo {
	margin: 0px;
	height: 40px;
	width: 85px;
}

.header h1 {
	margin-bottom: 5px;
}

#cubesviewer {
    margin-top: 10px;
}

.cv-gui-panel {
    /*
    position: fixed;
    border-bottom: 2px solid black;
    background-color: #ffffff;
    left: 0px;
    right: 0px;
    padding: 3px 5px 3px 5px;
    margin-bottom: 10px;
    */

}

.spin-loader {
	position: fixed;
	top: 45%;
	left: 50%;
	margin-left: -30px;
	height: 60px;
	width: 60px;
	background: transparent;
	border: 3px solid;
	border-color: #21b46d #21b46d #21b46d #136f42;
	border-radius: 50%;
	transition: all 0.3s cubic-bezier(0.23, 0.78, 0.69, 0.84);
	animation: spin 0.75s infinite linear;
}

.loader-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.5);
	-moz-transition: opacity 0.3s cubic-bezier(0.23, 0.78, 0.69, 0.84);
	-o-transition: opacity 0.3s cubic-bezier(0.23, 0.78, 0.69, 0.84);
	-webkit-transition: opacity 0.3s cubic-bezier(0.23, 0.78, 0.69, 0.84);
	transition: opacity 0.3s cubic-bezier(0.23, 0.78, 0.69, 0.84);
}
.ng-hide {
	opacity: 0;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
