/* Copyright 1999-2017. Plesk International GmbH. All rights reserved. */
@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600&subset=latin,latin-ext,cyrillic,cyrillic-ext,greek,greek-ext,vietnamese);
html {
    font: normal 13px/1.4 "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-y: scroll;
    color: #000;
}
html,
body {
    height: 100%;
    min-height: 100%;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(161,161,161,1) 57%, rgba(47,47,47,1) 100%);
}
body { margin: 0; }

.button__animation__viewer {
	border:none;
	position: absolute;
    top: 90px;
    right: 35px;
    z-index: 1000;
    padding: 6px 9px;
	background-color:#475ab8;
	border-radius:30px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:8px;
	padding:30px 30px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
	background: #475ab8 url('wrench.png') no-repeat center center;
    background-size: cover;
}
.button__animation__viewer:hover {
	background-color:#5cbf2a;
}

.button__animation__viewer:disabled {
	opacity: 0.3
}




       
.button__ar__viewer {
    position: absolute;
    bottom: 80px;
    right: 35px;
    z-index: 1000;
    padding: 6px 9px;
	content: "";
}

.icon__ar__viewer {
    width: 40px;
    height: 40px;
}

.spinner__loader {
    position: absolute;
    z-index: 1000;
    top: 40%;
    left: 30%;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}