:root {
	--main-bg: #020202;
	--page-content-bg: #fff;
	--page-bg: #07250c;
	--footer: #000;
	--header: #361f5b;
	--main-font: #fff;
	--page-font: #787780;
	--highlight: #516dff;
	--title: #285237;
	--btn: #cb1054;
	--btn-hover: #f91c5f;
	--black: #000;
	--white: #fff;
	--error: #ff2e2e;
}

.link-container {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.link-block {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.mobile-link {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
}
.link-inner-block {
	display: flex;
	justify-content: space-between;
	background-color: whitesmoke;
}
.link-left-block,
.link-right-block {
	width: 50%;
	display: flex;
	align-items: center;
}

.link-logo img {
	width: 100%;
	padding: 0 0.5rem;
}
.rating-container {
	width: 60%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1rem 1rem 0;
}
.link-votes,
.link-score {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.stars-container {
	position: relative;
	display: inline-block;
	color: transparent;
	font-size: 20px;
	margin-bottom: 0.7rem;
}
.stars-container:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '&#9733;&#9733;&#9733;&#9733;&#9733;';
	color: #d3d3d3;
}
.stars-container:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '&#9733;&#9733;&#9733;&#9733;&#9733;';
	color: #ffcb0f;
	overflow: hidden;
}
.star-100:after {
	width: 100%;
}
.star-90:after {
	width: 90%;
}
.star-80:after {
	width: 80%;
}
.star-70:after {
	width: 70%;
}
.star-50:after {
	width: 50%;
}
.link-votes span {
	font-size: 1rem;
	font-weight: 600;
	padding-left: 20px;
}
.link-score {
	align-items: flex-end;
	padding-right: 1rem;
}
.link-score-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.site-rating {
	margin-bottom: 0.3rem;
	font-size: 2rem;
	font-weight: 600;
	color: var(--highlight);
}
.site-rating-text {
	font-size: 1rem;
	font-weight: 600;
}
.link-right-block {
	background-color: #510b69;
	border-radius: 25px;
}
.link-page-container .link-right-block {
	border-radius: 0;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}
.link-right-block:hover {
	background-color: #5f1976;
}
.bonus {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	line-height: 1.5rem;
}
.bonus span.welcome-title {
	margin-bottom: 0.5rem;
	font-weight: 700;
}
.bonus span {
	font-weight: 600;
}
.btn-block {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.link-btn {
	width: 15rem;
	height: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 1rem;
	color: var(--main-font);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	background-color: #516dff;
	border-top: 3px solid transparent;
	box-shadow: 0px 4px 10px rgba(255, 123, 123, 0.81);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.link-btn:hover {
	transform: scale(1.1);
}
.payments-block {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
	margin-bottom: -8px;
	font-weight: 600;
	font-size: 12px;
}
@media (max-width: 1024px) {
	.payments-block {
		flex-wrap: wrap;
	}
}
.payments-block .img-block {
	width: 15%;
	margin-right: 10px;
	margin-bottom: 8px;
}
@media (max-width: 1024px) {
	.payments-block.wrap-condition .img-block {
		width: 23%;
		margin: 0 2px 5px 2px;
		text-align: center;
	}
}
.payments-block .img-block img {
	width: 25px;
}
.payments-block .img-block img:last-child {
	margin-right: 0;
}
.label-container {
	width: 100%;
	padding: 0.5rem;
	color: #fff;
	font-size: 0.75rem;
	background: #043a49;
}

/* RESPONSIVE */
@media (max-width: 767px) {
	.mobile-link {
		display: block;
	}
	.link-right-block {
		flex-direction: column;
		justify-content: center;
		padding: 1rem;
		border-radius: 0;
	}
	.bonus {
		margin-bottom: 1.5rem;
	}
	.btn-block,
	.bonus {
		width: 100%;
	}
	.link-left-block {
		flex-direction: column;
	}

	.rating-container {
		width: 100%;
		justify-content: space-between;
		padding: 0 0 1rem 2%;
	}
	.link-votes {
		align-items: flex-start;
	}
	.link-btn {
		border-radius: 2rem;
		cursor: pointer;
		text-transform: uppercase;
		letter-spacing: 0.03rem;

		box-shadow: 0 5px 8px 0 #14121db3;
		-webkit-transition: 0.15s ease-out;
		-o-transition: 0.15s ease-out;
		transition: 0.15s ease-out;
	}
	.link-btn:active,
	.link-btn:hover {
		transform: scale(1) translateY(3px);
	}
}

html {
	scroll-behavior: smooth;
	font-size: 14px;
}

body {
	margin: 0;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--main-font);
	background-color: #000;

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
footer {
	background: var(--main-bg);
}
a {
	color: var(--main-font);
}
.home-page-cover {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	position: relative;
	padding: 0 0 16.7rem;
}
.main-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.content-container {
	width: 100%;
	padding: 1.3rem;
	background-color: var(--main-bg);
}
.content-container h4 {
	text-transform: uppercase;
	font-weight: 700;
}
.content-container h4,
.content-container ul,
.content-container p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.3rem;
}
.content-container p strong {
	font-weight: 700;
}
.content-container ul {
	list-style-type: disc;
	padding-left: 2.4rem;
}
.adv-footer-container h4 {
	margin-bottom: 0.5rem;

	font-size: 1.25rem;
	text-transform: none;
}
.adv-footer-container p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.3rem;
}

.view-footer-links > a:not(:last-child) {
	font-size: 0.875rem !important;
	padding-right: 5px;
	margin-right: 5px;
	border-right: 1px solid #bcbbb6;
}

.link-page-container {
	margin-top: 1rem;
	padding: 0 1rem;
}
.link-container {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.link-block {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.link-page-container .link-block:nth-child(n + 4) {
	display: none;
}
.mobile-link {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
}
.link-inner-block {
	flex-direction: row;
	justify-content: space-between;
	background-color: whitesmoke;

	color: #000;
	padding: 50px 20px;
	border-radius: 5px;
}

@media (max-width: 768px) {
	.link-inner-block {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.link-left-block,
.link-right-block {
	width: 50%;
	display: flex;
	align-items: center;
}

.link-logo {
	width: 40%;
}

.link-logo img {
	width: 100%;
	padding: 0 0.5rem;
}
.rating-container {
	width: 60%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1rem 1rem 0;
}
.link-votes,
.link-score {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* RESPONSIVE */

@media (max-width: 1064px) {
	.link-btn {
		width: 13rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 767px) {
	.mobile-link {
		display: block;
	}
	.link-right-block {
		flex-direction: column;
		justify-content: center;
		padding: 1rem;
		border-radius: 0;
	}
	.bonus {
		margin-bottom: 1.5rem;
	}
	.btn-block,
	.bonus {
		width: 100%;
	}
	.link-left-block {
		flex-direction: column;
	}
	.link-logo {
		width: 90%;
		margin-bottom: 1rem;
		background-color: transparent;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		padding: 0;
	}
	.rating-container {
		width: 100%;
		justify-content: space-between;
		padding: 0 0 1rem 2%;
	}
	.link-votes {
		align-items: flex-start;
	}
	.link-btn {
		width: 18rem;
		font-size: 1.2rem;
		border-radius: 5px;
		cursor: pointer;
		text-transform: uppercase;
		letter-spacing: 0.03rem;

		box-shadow: 0 5px 8px 0 #14121db3;
		-webkit-transition: 0.15s ease-out;
		-o-transition: 0.15s ease-out;
		transition: 0.15s ease-out;
	}
	.link-btn:active,
	.link-btn:hover {
		transform: scale(1) translateY(3px);
	}
}
