
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400');
.loader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: #fff;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	text-align: center;
	z-index: 999;
	overflow: hidden;
}
.circle {
	position: relative;
	width: 100%;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.diamond-wrap {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.inner-circle {
	position: relative;
	width: 110px;
	height: 110px;
	border: 2px #DE1A23 solid;
	border-bottom: 2px #DE1A23 solid;
	border-top: 2px #DE1A23 solid;
	border-left-color: #fff;
	border-right-color: #fff;
	margin: 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	animation: spin 1s linear infinite;
	-webkit-animation: spin 1s linear infinite;
	-moz-animation: spin 1s linear infinite;
	-ms-animation: spin 1s linear infinite;
	z-index: 7;
}
.diamond {
	position: relative;
	width: 75px;
	height: 75px;
	z-index: 9;
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    };
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    };
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    };
}
.loader2 {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: none;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	text-align: center;
	z-index: 1000;
	overflow: hidden;
}
.circle2 {
	position: relative;
	width: 100%;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.inner-circle2 {
	position: relative;
	width: 90px;
	height: 90px;
	border: 2px #000 solid;
	border-bottom: 2px #499A9B solid;
	border-top: 2px #499A9B solid;
	border-left-color: #fff;
	border-right-color: #fff;
	margin: 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	animation: spin2 1s linear infinite;
	-webkit-animation: spin2 1s linear infinite;
	-moz-animation: spin2 1s linear infinite;
	-ms-animation: spin2 1s linear infinite;
	z-index: 7;
}
@-moz-keyframes spin2 {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(-360deg);
    };
}
@keyframes spin2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    };
}
@-webkit-keyframes spin2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    };
}
body {
	min-width: 320px;
	max-width: 1440px;
	font-family: 'Poppins', sans-serif;
	margin: 0 auto;
	font-size: 13px;
	letter-spacing: 1px;
}
.red {
	color: #780001;
}
.green {
	color: #499A9B;
}
.left, .right {
	position: relative;
	display: block;
	margin: 0;
	padding: 30px 5%;
	width: 90%;
	text-align: center;
	overflow: hidden;
}
.left {
	background-color: #fff;
}
.right {
	background-color: #252525;
	color: #DFDFDF;
	padding: 30px 5% 40px;
	border-top: 5px #FF7803 solid;
	display: none;
}
h1 {
	font-weight: 500;
	color: #fff;
	font-size: 2.2em;
	text-transform: uppercase;
}
label {
	color: #fff;
	font-size: 1.1em;
	font-weight: 400;
	display: none;
}
form {
	position: relative;
	max-width: 600px;
	overflow: hidden;
	margin: 0 auto;
}
input {
	width: 39%;
	display: inline-block;
}
input:nth-child(1), input:nth-child(3) {
	margin-right: 2%;
}
input, textarea {
	border: none;
	padding: 10px 5%;
	height: 20px;
	-webkit-border-radius: 1px;
	-ms-border-radius: 1px;
	border-radius: 1px;
	margin: 5px 0;
	background-color: #808080;
	font-family: 'Poppins', sans-serif;
	color: #fff;
}
::-webkit-input-placeholder {
	font-style: italic;
	color: #ddd;
}
textarea {
	height: 80px;
	margin-bottom: 10px;
	width:100%;
}
button {
	padding: 12px 20px;
	border: none;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	background-color: #499A9B;
	width: 300px;
	margin-top: 5px;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
}
button:hover {
	background-color: #418989;
	cursor: pointer;
}
button:active {
	opacity: .8;
	filter: alpha(opacity=80);
}
@media screen and (max-width: 480px) {
	.logo {
	width: 80%;
}
h1 {
	font-size: 2.1em;
}
form {
	width: 90%;
}
input, textarea {
	width: 85%;
	margin-right: 0 !important;
}
form button {
	width: 95%;
	padding: 15px 5%;
}
#tab {
	width: 80%;
}
}
