body {
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #121212;
}

body.dropdownshown {
	height: 100vh;
	width: 100%;
	overflow: hidden;
	position: fixed;
}

input, button, select {
	/*font-family: 'Open Sans', sans-serif;*/
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookieNotice {
	position: fixed;
	width: 60%;
	bottom: 0;
	left: 0;
	padding: 3vh 20%;
	background-color: rgba(26, 26, 26, .95);
	z-index: 10;
	text-align: center;
}

.cookieNotice.approved {
	display: none;
}

.cookieNotice h1 {
	margin: 0;
	font-size: 2vh;
	color: #fff;
	margin-bottom: 2vh;
}

.cookieNotice p {
	margin: 0;
	font-size: 1.3vh;
	color: #fff;
}

.cookieNotice p a {
	color: var(--color-one);
}

.cookieNotice button {
	font-size: 1.3vh;
	outline: none;
	border: none;
	background-color: var(--color-one);
	color: #fff;
	font-weight: bolder;
	padding: .75vh 3%;
	border-radius: .2vh;
	margin-top: 2vh;
	cursor: pointer;
}

.dropdown {
	display: flex;
	visibility: hidden;
	text-align: center;
	position: fixed;
	z-index: 10;
	background-color: var(--color-one);
	height: 100vh;
	width: 100%;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .25s ease;
}

.dropdown.shown {
	visibility: visible;
	opacity: 1;
}

.dropdown a {
	display: block;
	font-size: 4vh;
	color: #fff;
	text-decoration: none;
	margin-bottom: 1vh;
}

.announcement {
	position: fixed;
	width: 90%;
	max-height: 3.75vh;
	background-color: var(--color-one-darken);
	color: #fff;
	padding: 1vh 5%;
	text-align: center;
	font-size: 1.75vh;
	transition: max-height .5s ease, padding .5s ease;
	margin-bottom: 3vh;
	z-index: 1;
}

.announcement.cookie {
	max-height: 0vh;
	padding: 0vh 5%;
	overflow: hidden;
}

.announcement .close {
	position: absolute;
	top: 1vh;
	right: 1.5%;
	cursor: pointer;
}

.navbar {
	display: flex;
	width: 80%;
	padding: 3vh 10%;
	align-items: center;
	/*background-color: var(--color-one);*/
	background-color: transparent;
	position: fixed;
	z-index: 9;
	transition: padding .45s ease, background-color .45s ease;
}

.navbar.scrolled {
	background-color: var(--color-one);
	padding: 1.5vh 10%;
	transition: padding .45s ease, background-color .45s ease;
}

.navbar.margin {
	margin-top: 4.39vh;
}

.navbar.dropdownshown {
	z-index: 11;
}

.navbar .left img {
	height: 8vh;
	width: auto;
	opacity: 1;
	visibility: visible;
	transition: opacity .25s ease, visibility .25s ease;
}

.navbar.dropdownshown .left img {
	visibility: hidden;
	opacity: 0;
}

.navbar .right {
	flex-grow: 100;
	text-align: right;
}

.navbar .right .links {
	display: flex;
	align-items: center;
	justify-content: right;
}

.navbar .right .dropdownbtn {
	display: none;
	font-size: 3vh;
	margin-right: 10%;
}

.navbar .right .closebtn {
	font-size: 4vh;
}

.navbar .right a, .navbar .right .more {
	display: inline-block;
	font-size: 2vh;
	color: #fff;
	text-decoration: none;
	margin-left: 1.5%;
	position: relative;
	padding-bottom: .5vh;
	font-weight: 600;
}

.navbar .right a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: .2vh;
	background-color: #fff;
	transition: width .3s ease;
}

.navbar .right a.active::after, .navbar .right a:hover::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: .2vh;
	background-color: #fff;
}

.navbar .right a i {
	margin-left: .5%;
}

.navbar .right .more {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.navbar .right .more span {
	cursor: pointer;
}

.navbar .right .more i {
	margin-left: .5vw;
}

.navbar .right .more .dd {
	display: inline-flex;
	position: absolute;
	top: 5vh;
	left: -3vw;
	visibility: hidden;
	opacity: 0;
	background-color: #1e1e1e;
	z-index: 5;
	text-align: center;
	transition: opacity .2s ease, visibility .2s ease;
	padding-bottom: 0vh;
	width: 10vw;
	flex-wrap: wrap;
	border-radius: .3vh;
}

.navbar .right .more .dd i {
	position: absolute;
	top: -1.1vh;
	margin-left: 0%;
	width: 100%;
	left: 0;
	text-align: center;
	color: #1e1e1e;
}

.navbar .right .more .dd.shown {
	opacity: 1;
	visibility: visible;
}

.navbar .right .more .dd a {
	display: block;
	width: 100%;
	padding: 1vh 0vw;
	color: #fff;
	margin-left: 0;
	transition: background-color .3s ease, color .3s ease;
	font-size: 1.65vh;
	font-weight: 500;
	text-align: center;
}

.navbar .right .more .dd a:nth-child(2) {
	border-top-left-radius: .3vh;
	border-top-right-radius: .3vh;
}

.navbar .right .more .dd a:last-child {
	border-bottom-left-radius: .3vh;
	border-bottom-right-radius: .3vh;
}

.navbar .right .more .dd a:hover {
	background-color: var(--color-one-darken);
	color: #fff;
}

.navbar .right .account i, .navbar .right a.cart i {
	margin-left: none;
}

.navbar .right a.cart {
	position: relative;
	margin-left: 3%;
}

.navbar .right .account {
	margin-left: 1.5%;
	display: inline-flex;
	align-items: center;
	position: relative;
	margin-bottom: .6vh;
}

.navbar .right .account.icon {
	margin-bottom: 0vh;
	padding-bottom: .5vh;
}

.navbar .right .account .avatar {
	height: 3.5vh;
	width: 3.5vh;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
}

.navbar .right .account .dd {
	display: inline-flex;
	position: absolute;
	top: 5vh;
	left: -2.85vw;
	visibility: hidden;
	opacity: 0;
	background-color: #1e1e1e;
	z-index: 5;
	text-align: center;
	transition: opacity .2s ease, visibility .2s ease;
	padding-bottom: 0vh;
	width: 7.5vw;
	flex-wrap: wrap;
	border-radius: .3vh;
	color: #fff;
	font-size: 2vh;
}

.navbar .right .account .dd i {
	position: absolute;
	top: -1.1vh;
	margin-left: 0%;
	width: 100%;
	left: 0;
	text-align: center;
	color: #1e1e1e;
}

.navbar .right .account .dd.shown {
	opacity: 1;
	visibility: visible;
}

.navbar .right .account .dd a {
	display: block;
	width: 100%;
	padding: .75vh 0vw;
	color: #fff;
	margin-left: 0;
	transition: background-color .3s ease, color .3s ease;
	font-size: 1.5vh;
	font-weight: 500;
	text-align: center;
}

.navbar .right .account .dd a:nth-child(2) {
	border-top-left-radius: .3vh;
	border-top-right-radius: .3vh;
}

.navbar .right .account .dd a:last-child {
	border-bottom-left-radius: .3vh;
	border-bottom-right-radius: .3vh;
}

.navbar .right .account .dd a:hover {
	background-color: var(--color-one-darken);
	color: #fff;
}

.navbar .right .more .dd a:hover::after, .navbar .right .account .dd a:hover::after, .navbar .right .dropdownbtn {
	width: 0%;
}

.navbar .right .account:hover::after, .navbar .right a.cart:hover::after {
	width: 0%;
}

.navbar .right a.cart .num {
	display: flex;
	position: absolute;
	top: -1vh;
	right: -1vh;
	height: 2vh;
	width: 2vh;
	background-color: var(--color-one-darken);
	border-radius: 50%;
	font-size: 1.5vh;
	align-items: center;
	justify-content: center;
}

.header {
	height: 100vh;
	width: 100%;
	background-color: #e1e1e1;
	background-image: var(--background-image);
	background-repeat: no-repeat;
	background-size: cover;
}

.header .screen {
	display: flex;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .5);
	align-items: center;
	justify-content: center;
	text-align: center;
}

.header .screen h1 {
	font-size: 6vh;
	color: #fff;
	margin: 0;
	margin-bottom: 1vh;
}

.header .screen p {
	font-size: 2vh;
	color: #fff;
	margin: 0;
	opacity: .9;
	margin-bottom: 4vh;
	padding: 0 15%;
	width: 70%;
}

.header .screen .buttons a {
	display: inline-block;
	background-color: var(--color-one);
	text-decoration: none;
	color: #fff;
	text-align: center;
	padding: 1vh 4%;
	font-size: 1.65vh;
	margin: 0 1%;
	border-radius: .15vh;
	transition: border-radius .25s ease, color .25s ease;
}

.header .screen .buttons a:hover {
	border-radius: .35vh;
	color: rgba(255, 255, 255, .75);
}

.body {
	display: block;
	width: 80%;
	margin: 5vh 10% 0vh 10%;
}

.body .about {
	width: 80%;
	margin: 0 10%;
	margin-bottom: 10vh;
	color: #fff;
}

.body .about h1 {
	font-size: 3vh;
	text-align: center;
	margin: 0;
	margin-bottom: 3vh;
	font-weight: 600;
}

.body .about p {
	margin: 0;
	font-size: 1.6vh;
	line-height: 2.5vh;
	text-align: center;
}

.body .statistics {
	display: grid;
	width: 75%;
	grid-auto-rows: 1fr;
	grid-column-gap: 2.5%;
	grid-row-gap: 3vh;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 12.5%;
	color: #fff;
}

.body .statistics .item {
	display: inline-flex;
	justify-content: center;
}

.body .statistics .item .icon {
	display: flex;
	background-color: var(--color-one);
	height: 8vh;
	width: 8vh;
	color: #fff;
	align-items: center;
	font-size: 2.75vh;
	justify-content: center;
	border-radius: 1.5vh;
}

.body .statistics .item .information {
	margin-left: 1.5vw;
	position: relative;
}

.body .statistics .item .information h1 {
	font-size: 3vh;
	margin: 0;
	font-size: 600;
}

.body .statistics .item .information p {
	font-size: 1.65vh;
	margin: 0;
	font-weight: 700;
	position: absolute;
	bottom: .5vh;
	color: #919191;
}

.footer {
	display: block;
	width: 80%;
	margin-top: 7vh;
	background-color: #1e1e1e;
	padding: 3vh 10% 2vh 10%;
}

.footer p {
	font-size: 1.5vh;
	color: #fff;
	opacity: .75;
	text-align: right;
	margin: 0;
	margin-top: 2vh;
}

.footer .top {
	display: flex;
	border-bottom: .2vh solid #fff;
	padding-bottom: 2vh;
}

.footer .top .left, .footer .top .center, .footer .top .right {
	width: 33.33%;
}

.footer .top h1 {
	font-size: 2vh;
	color: #fff;
	margin: 0;
	margin-bottom: 3vh;
}

.footer .top li {
	list-style: none;
}

.footer .top a {
	display: inline-block;
	font-size: 1.75vh;
	color: #fff;
	margin: 0;
	text-decoration: none;
	margin-bottom: 1.25vh;
	opacity: .75;
}

.footer .top .center {
	text-align: center;
}

.footer .top .right {
	text-align: right;
}

@media screen and (max-width: 600px), (orientation : portrait) {
	.announcement .close {
		right: 4%;
	}

	.navbar .right .dropdownbtn {
		display: inline-block;
	}

	.navbar .right .dropdownbtn.hidden {
		display: none;
	}

	.navbar .right .links {
		display: none;
	}

	.header {
		background-position: center !important;
	}

	.body {
		display: block;
	}

	.body .statistics {
		grid-template-columns: repeat(1, 1fr);
	}

	.body .statistics .item {
		display: block;
		text-align: center;
	}

	.body .statistics .item .icon {
		display: inline-flex;
	}

	.body .statistics .item p {
		position: relative !important;
	}

	.body .statistics .item .information {
		margin-left: 0vw;
	}

	.footer .top {
		display: block;
	}

	.footer p, .footer h1, .footer li {
		text-align: center !important;
	}

	.footer .top .left, .footer .top .center, .footer .top .right {
		width: 100%;
		text-align: left;
		margin-bottom: 4vh;
	}
}