@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap);
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: https://meyerweb.com
	HTML5 Doctor				:: https://html5doctor.com
	and the HTML5 Boilerplate	:: https://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
	display: block;
}

/* Handle box-sizing while better addressing child elements:
   https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
*/
img,
object,
embed {
	max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	 In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
	overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	don't forget to restore the bullets within content. */
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted #000;
	cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

th {
	font-weight: bold;
	vertical-align: bottom;
}

td {
	font-weight: normal;
	vertical-align: top;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

pre {
	white-space: pre;
	/* CSS2 */
	white-space: pre-wrap;
	/* CSS 2.1 */
	white-space: pre-line;
	/* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word;
	/* IE */
}

input[type="radio"] {
	vertical-align: text-bottom;
}

input[type="checkbox"] {
	vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
	vertical-align: baseline;
}

.ie6 input {
	vertical-align: text-bottom;
}

select,
input,
textarea {
	font: 99% sans-serif;
}

table {
	font-size: inherit;
	font: 100%;
}

small {
	font-size: 85%;
}

strong {
	font-weight: bold;
}

td,
td img {
	vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights https://gist.github.com/413930 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
	font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type="button"],
input[type="submit"],
input[type="file"],
button {
	cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
	margin: 0;
}

/* make buttons play nice in IE */
button,
input[type="button"] {
	width: auto;
	overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: block;
	height: 0;
	overflow: hidden;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

body {
	position: relative;
	width: 100%;
	min-width: 320px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: white;
	overflow: hidden;
	background-color: #001428;
}

.screen {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-image: url(https://cdn.lesta.ru/wows-promo-production/mkpub-72/src/images/Back.jpg);

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.video-bg__container {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.video-bg__container video {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center right;
	object-position: center right;
}

@media screen and (max-width: 980px) {
	body {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center right;
	}

	.screen {
		background-image: url(https://cdn.lesta.ru/wows-promo-production/mkpub-72/src/images/Back-mobile.jpg);
	}

	.video-bg__container {
		display: none;
	}
}
.loader {
	display: none;
}

body.loading.loading--fade-out .loader {
	-webkit-animation: loaderFadeOut 0.5s linear forwards;
	animation: loaderFadeOut 0.5s linear forwards;
}
body.loading .loader {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 99;
	opacity: 1;
}
body.loading .loader:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
}
body.loading .loader__processing {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: block;
	width: 78px;
	height: 78px;
	background-image: url(https://cdn.lesta.ru/wows-promo-production/mkpub-72/src/images/loader/anchor.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 1;
}
body.loading .loader__processing:after {
	content: "";
	position: absolute;
	display: block;
	width: 78px;
	height: 78px;
	background-image: url(https://cdn.lesta.ru/wows-promo-production/mkpub-72/src/images/loader/circle.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	-webkit-animation: loaderSpinning 1.5s linear infinite;
	animation: loaderSpinning 1.5s linear infinite;
}

@-webkit-keyframes loaderSpinning {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loaderSpinning {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-webkit-keyframes loaderFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes loaderFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
main {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 1.875em auto 0;
	width: 90%;
	max-width: 1600px;
	min-height: 565px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

@media screen and (max-width: 1200px) {
	main {
		width: 95%;
	}
}
.legends__label {
	position: absolute;
	top: 0;
	right: 0;
}

.legends__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90px;
	text-decoration: none;
	text-transform: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0.77;
}
.legends__link:hover {
	opacity: 1;
}
.legends__link img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 1360px) {
	.legends__link {
		width: 67px;
	}
}
.content__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.logos {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.logo-wrapper {
	display: block;
	width: 30%;
}
.logo-wrapper img {
	display: block;
	width: 100%;
}

.logo-separator {
	display: block;
	width: 2px;
	height: 180px;
	margin: 0 1.875em;
	background-color: #fff;
	opacity: 0.2;
}

@media screen and (max-width: 1360px) {
	.logo-wrapper {
		width: 60%;
	}

	.logo-separator {
		height: 140px;
	}
}
@media screen and (max-width: 640px) {
	.content__top {
		padding-top: 2em;
	}
	.logo-wrapper {
		width: 90%;
	}

	.logo-separator {
		margin: 0 1.625em;
	}
}
.content__middle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.content__middle .content__container {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 1000px;
	margin: 1.875em 0;
	padding: 5em 0;
}
.content__middle .content__container:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(48.96%, #ffffff), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #ffffff 48.96%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 48.96%, rgba(255, 255, 255, 0) 100%);
	opacity: 0.3;
}
.content__middle .content__container::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(48.96%, #ffffff), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #ffffff 48.96%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 48.96%, rgba(255, 255, 255, 0) 100%);
	opacity: 0.3;
}

.content__h1 {
	font-size: 3em;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.content__paragraph {
	display: block;
	margin-top: 1.25em;
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	line-height: 1.375em;
	text-align: center;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
	.content__paragraph br {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.content__h1 {
		font-size: 1.5em;
	}

	.content__paragraph {
		margin-top: 0.625em;
	}
}
.content__bottom {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}
.content__bottom::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	display: block;
	width: 100vw;
	height: 100%;
	background: #001428;
	opacity: 0.5;
}

.content__bottom .content__container {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 1000px;
	padding: 1.875em 0;
}

.content__user-new {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.content__h2 {
	display: block;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.333;
	text-align: center;
}

.content__subtitle {
	display: block;
	margin-top: 0.625em;
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	text-align: center;
	color: #ffffff;
	opacity: 0.54;
}

.form {
	display: block;
	margin-top: 1.25em;
}

.content__user_registered {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 1.25em;
	width: 100%;
}

.content__link {
	margin-top: 0.625em;
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	line-height: 1.375em;
	color: #00b4b9;
	text-decoration: none;
	text-transform: none;
	opacity: 1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.content__link:hover {
	color: #00cccc;
}
.content__link:active {
	opacity: 0.5;
	text-decoration: underline;
}

@media screen and (max-width: 1360px) {
	.content__middle .content__container {
		padding: 0;
	}
	.content__middle .content__container::before {
		display: none;
	}
	.content__middle .content__container::after {
		display: none;
	}

	.content__h1 {
		font-size: 2.25em;
	}

	.content__h2 {
		font-size: 1.25em;
	}
}
.footer {
	display: block;
	padding: 1.3125em 0;
	width: 100%;
	background-color: #001428;
}

.footer__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
}
.footer__row:nth-child(n + 2)::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin: 1.25em 0;
	background-color: #fff;
	opacity: 0.1;
}

.footer__wargaming-logo {
	display: block;
	margin-right: 3.5625em;
}

.footer__wargaming-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #ffffff;
	text-decoration: none;
	text-transform: none;
}

.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: 3.5625em;
}

.footer__link-wrapper {
	display: inline-block;
	margin-right: 2.5em;
}

.footer__link {
	display: block;
	font-size: 1em;
	font-weight: 400;
	color: #ffffff;
	opacity: 0.54;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.footer__link:hover {
	opacity: 1;
}
.footer__link:active {
	text-decoration: underline;
}

.footer__language-picker {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0.54;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.footer__language-picker:hover {
	opacity: 1;
}
.footer__language-picker:active {
	opacity: 0.7;
}

.language-picker__icon {
	display: block;
	width: 41px;
	margin-right: 0.25em;
}
.language-picker__icon img {
	display: block;
	width: 100%;
}

.language-picker__language {
	display: block;
	margin-right: 0.25em;
	font-family: "Roboto", sans-serif;
	font-size: 0.75em;
}

.language-picker__realm {
	display: block;
	margin-right: 0.25em;
	font-family: "Roboto", sans-serif;
	font-size: 0.75em;
}

.language-picker__arrow {
	display: block;
	width: 16px;
	height: 16px;
}
.language-picker__arrow svg {
	display: block;
	width: 100%;
	height: 16px;
}

.footer__texts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.footer__copyright {
	font-family: "Roboto", sans-serif;
	font-size: 0.75em;
	line-height: 1.16;
	opacity: 0.54;
}

/* FOOTER AGE RATINGS START */

.age-ratings {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}

.age-ratings__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.age-rating__item {
	display: block;
	height: 55px;
	margin: 0 8px;
	opacity: 0.9;
}
.age-rating__item img {
	display: block;
	height: 100%;
}

.age-ratings__description {
	display: block;
	text-align: center;
	margin-top: 10px;
	font-size: 10px;
	opacity: 0.7;
}

/* FOOTER AGE RATINGS END */

@media screen and (max-width: 1200px) {
	.footer__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer__wargaming-logo {
		margin: 0;
	}

	.footer__menu {
		margin-top: 1.875em;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.footer__links {
		margin: 1.875em 0 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.footer__link-wrapper {
		margin: 0 1.25em;
	}

	.footer__texts {
		text-align: center;
	}

	.age-ratings {
		margin-top: 1.25em;
	}
}
@media screen and (max-width: 640px) {
	.footer__links {
		margin-top: 1.25em;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer__link-wrapper {
		margin: 1.25em 0 0;
	}
	.footer__link-wrapper:first-child {
		margin: 0;
	}
}
body #ot-sdk-btn.ot-sdk-show-settings {
	display: none;
	padding: 0;
	color: #ffffff;
	border: none;
	height: auto;
	white-space: normal;
	word-wrap: break-word;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
}

body #ot-sdk-btn.ot-sdk-show-settings:hover {
	background-color: transparent;
	border-bottom: none;
}

.button {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0.82em 2.56em;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 2.25em;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	border: 4px solid #00b98d;
	border-radius: 0;
	background-color: #00b4b9;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	opacity: 0.9;
	-webkit-box-shadow: 0 0 0 #106f58;
	box-shadow: 0 0 0 #106f58;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.button:hover {
	background-color: rgba(16, 111, 88, 0.5);
	-webkit-box-shadow: 0 8px 20px #106f58;
	box-shadow: 0 8px 20px #106f58;
	opacity: 1;
}
.button:active,
.button:focus {
	outline: transparent;
}
.button:active {
	-webkit-box-shadow: 0 0 0 #106f58;
	box-shadow: 0 0 0 #106f58;
}
.button:disabled {
	opacity: 0.5;
	cursor: default;
}
.button.button--form {
	width: 100%;
	font-size: 1.5em;
	border-color: #00b4b9;
	background-color: black;
}
.button.button--form:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.button.button--floating {
	will-change: transform;
	animation: floating 7s ease-in infinite alternate-reverse forwards;
	-webkit-animation-play-state: running;
	animation-play-state: running;
}
.button.button--floating:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.button.button--hided {
	display: none;
}

.button__label {
	display: block;
}

@media screen and (max-width: 1200px) {
	.button {
		font-size: 1.7em;
	}
}
@media screen and (max-width: 980px) {
	.button {
		font-size: 1.4em;
	}
}
@media screen and (max-width: 640px) {
	.button {
		font-size: 1em;
	}

	.button.button.button--form {
		font-size: 1.2em;
	}
}
@-webkit-keyframes floating {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	25% {
		-webkit-transform: translate(0, 5%);
		transform: translate(0, 5%);
	}
	40% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	65% {
		-webkit-transform: translate(0, 4%);
		transform: translate(0, 4%);
	}
	85% {
		-webkit-transform: translate(0, -2%);
		transform: translate(0, -2%);
	}
	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
@keyframes floating {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	25% {
		-webkit-transform: translate(0, 5%);
		transform: translate(0, 5%);
	}
	40% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	65% {
		-webkit-transform: translate(0, 4%);
		transform: translate(0, 4%);
	}
	85% {
		-webkit-transform: translate(0, -2%);
		transform: translate(0, -2%);
	}
	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
.form {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 1.25em;
	width: 100%;
}
.form::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(48.96%, #ffffff), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #ffffff 48.96%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 48.96%, rgba(255, 255, 255, 0) 100%);
	opacity: 0.3;
}

.form__elements {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.form__input-code {
	padding: 1.3125em 1.25em;
	margin-right: 1.25em;
	width: 270px;
	font-size: 1em;
	line-height: 1.375em;
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.3);
	border: none;
	border-radius: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.form__input-code::-webkit-input-placeholder {
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	line-height: 1;
	color: #ffffff;
}
.form__input-code::-moz-placeholder {
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	line-height: 1;
	color: #ffffff;
}
.form__input-code:-ms-input-placeholder {
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	line-height: 1;
	color: #ffffff;
}
.form__input-code::-ms-input-placeholder {
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	line-height: 1;
	color: #ffffff;
}
.form__input-code::placeholder {
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	line-height: 1;
	color: #ffffff;
}
.form__input-code:hover {
	background-color: rgba(255, 255, 255, 0.5);
}
.form__input-code:focus {
	outline: none;
}
.form__input-code:focus::-webkit-input-placeholder {
	opacity: 0;
}
.form__input-code:focus::-moz-placeholder {
	opacity: 0;
}
.form__input-code:focus:-ms-input-placeholder {
	opacity: 0;
}
.form__input-code:focus::-ms-input-placeholder {
	opacity: 0;
}
.form__input-code:focus::placeholder {
	opacity: 0;
}

.form__button {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0.8em;
	width: 270px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.25em;
	line-height: 1.6;
	color: #ffffff;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
	background-color: #00b4b9;
	border: none;
	border-radius: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 0;
}
.form__button::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: -1;
}
.form__button:hover::before {
	opacity: 0;
}
.form__button:focus {
	outline: none;
}
.form__button:focus::before {
	opacity: 0;
}
.form__button:hover,
.form__button:focus {
	background-color: #00cccc;
}
.form__button:active {
	-webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
	box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
	background-color: #00cccc;
}

@media screen and (max-width: 640px) {
	.form__elements {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.form__input-code {
		margin: 0;
		padding: 0.8125em 1.25em;
	}

	.form__button {
		margin-top: 1.25em;
	}
}

/* footer */

.footer-links {
	margin-bottom: 15px;
}

.logo-footer {
	margin-right: 30px;
	/* margin-bottom: 30px; */
}

.logo-footer_image {
	opacity: 0.4;
	height: 28px;
}

.logo-footer_image:hover {
	opacity: 1;
}

.footer-nav {
	text-align: center;
	/* margin-bottom: 30px; */
}

.footer-nav_item {
	text-transform: uppercase;
	display: inline-block;
	margin-right: 15px;
}

.footer-nav_link {
	color: #ffffff;
	opacity: 0.5;
	text-decoration: none;
	font-weight: normal;
	font-size: 12px !important;
	font-family: "robotocondensed-regular", sans-serif;
}

.footer-nav_link:hover {
	text-decoration: none;
	color: #fff;
	border: none !important;
}

@media only screen and (min-width: 48em) {
	.footer-nav_link {
		/* font-size: 9px; */
	}
}

@media only screen and (min-width: 48em) {
	.footer-nav {
		text-align: left;
	}
}

.copyright,
.copyright-full {
	text-align: center;
	font:
		400 9px/12px "Arial",
		sans-serif;
	color: #696969;
}

.copyright a,
.copyright-full a {
	font:
		400 9px/12px "Arial",
		sans-serif;
	color: #7a7a7a;
	text-decoration: underline;
}

.copyright a:hover,
.copyright-full a:hover {
	text-decoration: none;
}

.copyright-full_text {
	margin-top: 0.5em;
	margin-bottom: 10px;
}

@media only screen and (min-width: 48em) {
	.copyright,
	.copyright-full {
		text-align: left;
	}
}

.page-footer {
	width: 100%;
	background-color: #092744;
	text-align: center;
	padding: 20px;
	border-top: 1px solid #ffffff;
}

@media only screen and (min-width: 80em) {
	.page-footer {
		position: relative;
		bottom: auto;
		left: auto;
	}
}

.page-footer_container {
	max-width: 1600px;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
	.page-footer_container--wide-age .flex-layout {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.page-footer_container--wide-age .flex-layout_cell {
		width: 100%;
	}
}

@media only screen and (min-width: 100em) {
	.page-footer_container {
		margin: 0 auto;
	}
}

.flex-layout {
	display: block;
	width: 100%;
	text-align: center;
}

@media only screen and (min-width: 48em) {
	.flex-layout__t {
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;
		-ms-flex-flow: row wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		flex-flow: row wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.flex-layout_cell {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}

.flex-layout_fit {
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}

@media screen and (max-width: 1200px) {
	.page-footer_container--wide-age .flex-layout {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.page-footer_container--wide-age .flex-layout_cell {
		width: 100%;
	}
}

@media only screen and (min-width: 48em) {
	.column-70 {
		width: 66%;
	}
}

@media only screen and (min-width: 48em) {
	.column-30 {
		width: 33%;
	}
}

/* FOOTER AGE RATINGS START */

.age-ratings {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
}

.age-ratings__items {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.age-rating__item {
	display: block;
	height: 55px;
	margin: 0 4px;
	opacity: 0.9;
	text-decoration: none;
}

.age-rating__item:last-child {
	margin-right: 0;
}

.age-rating__item:first-child {
	margin-left: 0;
}

.age-rating__item img {
	display: block;
	height: 100%;
}

.age-ratings__description {
	display: block;
	text-align: center;
	margin-top: 10px;
	font-size: 10px;
	opacity: 0.7;
}

@media screen and (max-width: 1200px) {
	.age-ratings {
		margin-top: 1.25em;
	}
}

/* FOOTER AGE RATINGS END */
