/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
html {
	-webkit-text-size-adjust: 100%;
}
html:focus-within {
	scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
	text-size-adjust: 100%;
	position: relative;
	width: 100%;
	min-height: 100vh;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeSpeed;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
	box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
	font-size: 100%;
	font: inherit;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
	outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
	display: block;
}

canvas,
iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Remove default list styling */
ol,
ul {
	list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
	box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
	-moz-appearance: none;
}

input[type="search"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

input:focus {
	outline: none;
}

video {
	background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
	display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
	outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
	max-width: 100%;
	display: inline-block;
	vertical-align: middle;
	height: auto;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
	line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
	border: 0;
	background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
	cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled="true"],
[aria-disabled="true"] {
	pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

button {
	border: 0;
	background: transparent;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
	border-collapse: collapse;
	border-spacing: 0;
	text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
	box-sizing: content-box;
	overflow: visible;
	background: #000;
	border: 0;
	height: 1px;
	line-height: 0;
	margin: 0;
	padding: 0;
	page-break-after: always;
	width: 100%;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: none;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -5px;
}

sup {
	top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1;
	margin: 0;
	padding: 0;
}

/**
 * Show the overflow in IE and Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
	outline: 0;
}

legend {
	color: inherit;
	white-space: normal;
	display: block;
	border: 0;
	max-width: 100%;
	width: 100%;
}

fieldset {
	min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
	display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
   ========================================================================== */
template {
	display: none;
}

/* FONT FAMILIES */
@font-face {
	font-family: "Rajdhani";
	font-style: bold;
	font-weight: 700;
	src: url("../fonts/Rajdhani-Bold.ttf") format("truetype");
}
@font-face {
	font-family: "Spline Sans";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/SplineSans-Medium.ttf") format("truetype");
}
@font-face {
	font-family: "Spline Sans";
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/SplineSans-Regular.ttf") format("truetype");
}
@font-face {
	font-family: "Spline Sans";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/SplineSans-Bold.ttf") format("truetype");
}
/*
:root {
    box-sizing: border-box;
}

*,
::before,
::after {
    box-sizing: inherit;
}
*/
html {
	font-size: 14px;
}
html,
html body {
	font-family: "Spline Sans", sans-serif;
	block-size: 100%;
	color: #ffffff;
	background-color: #160d1d;
}

a {
	text-decoration: none;
	color: inherit;
}

[class*="-mobile"] {
	display: none;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: clip;
}
.wrapper > main {
	flex-grow: 1;
}

[class*="__container"] {
	max-inline-size: 1270px;
	margin-inline: auto;
	padding-inline: 15px;
}

.header {
	width: 100%;
	padding-inline: 20px;
	background-color: #000;
}
.header__container {
	display: flex;
	position: relative;
}
.header__logo {
	margin-right: 3.4rem;
}
.header__content {
	width: 100%;
	display: flex;
	align-items: center;
	top: 100%;
	left: 0;
}
@media (max-width: 800px) {
	.header__content {
		display: none;
		background-color: #000;
		flex-direction: column;
		z-index: 3;
		padding-block-end: 2rem;
	}
	.header__menu-burger-mobile {
		display: flex;
		align-items: center;
		flex-grow: 1;
		justify-content: flex-end;
	}
	.header__content {
		position: absolute;
	}
}

.modal {
	display: none;
	position: fixed;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	padding-top: 100px;
}
.modal-content {
	position: relative;
	background-color: #20162f;
	margin: auto;
	padding: 40px;
	border: 1px solid #493b5d;
	border-radius: 8px;
	max-width: 550px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	animation-name: animatetop;
	animation-duration: 0.4s;
}
@media (max-width: 600px) {
	.modal-content {
		margin: auto 30px;
		padding: 10px;
	}
}
.modal-subtitle {
	margin-block-end: 16px;
}
.modal-close {
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.modal-body__title {
	margin-block-end: 16px;
}
@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}
	to {
		top: 0;
		opacity: 1;
	}
}
.modal-footer__title {
	text-align: center;
}
@media (max-width: 600px) {
	.modal-title {
		margin-block-end: 8px;
	}
	.modal-title.section-title {
		font-size: 1.8rem;
	}
}

.link {
	color: #9d59ef;
	text-decoration: underline;
}
.link--left-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
}
.link--left-arrow::before {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/left-purple-arrow.svg") no-repeat center/contain;
	flex-shrink: 0;
}

.form {
	display: flex;
	flex-direction: column;
}
.form__field {
	display: flex;
	flex-direction: column;
	margin-block-end: 14px;
}
.form__label {
	color: #a88fc8;
	line-height: 1.4rem;
	margin-block-end: 6px;
}
.form__input {
	padding-block: 15px;
	padding-inline: 20px;
	background-color: #150d1c;
	border: 1px solid #493b5d;
	border-radius: 4px;
	color: #fff;
}
.form__input::placeholder {
	color: #929292;
}
@media (max-width: 600px) {
	.form__input {
		padding-block: 7.5px;
		padding-inline: 10px;
	}
}
.form__submit {
	margin-bottom: 16px;
}
.form__forgot {
	color: #9d59ef;
	line-height: 1.4rem;
	text-decoration: underline;
	margin-block-end: 16px;
}

.custom-select {
	position: relative;
}

.custom-select select {
	display: none;
	/*hide original SELECT element: */
}

.select-selected {
	background-color: #150d1c;
	border: 1px solid #493b5d;
}

/* Style the arrow inside the select element: */
.select-selected:after {
	position: absolute;
	content: "";
	top: 22px;
	right: 22px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: #9d59ef transparent transparent transparent;
}
@media (max-width: 600px) {
	.select-selected:after {
		top: 14px;
	}
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
	border-color: transparent transparent #9d59ef transparent;
	top: 14px;
}
@media (max-width: 600px) {
	.select-selected.select-arrow-active:after {
		top: 8px;
	}
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
	color: #ffffff;
	padding: 15px 20px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
}
@media (max-width: 600px) {
	.select-items div,
	.select-selected {
		padding-block: 7.5px;
		padding-inline: 10px;
	}
}

.select-selected {
	border: 1px solid #3b3048;
	border-radius: 4px;
}

/* Style items (options): */
.select-items {
	position: absolute;
	background-color: #150d1c;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	border: 1px solid #3b3048;
}

/* Hide the items when the select box is closed: */
.select-hide {
	display: none;
}

.select-items div:hover,
.same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
}

.menu {
	display: flex;
	align-items: center;
}
.menu__list {
	display: flex;
	flex-flow: row nowrap;
	gap: 2.2rem;
	line-height: 1.4rem;
}
.menu__item {
	padding-inline: 0.8rem;
	padding-block: 1/3rem;
}
.menu__link {
	text-transform: uppercase;
	transition: all 0.3s;
}
.menu__link:hover,
.menu__link--active {
	color: #ebb305;
}
.menu-burger__icon {
	display: flex;
	flex-direction: column;
	width: 24px;
	height: 24px;
	gap: 5px;
}
.menu-burger__icon span {
	transition: 0.25s ease-in-out;
	width: 13px;
	height: 2px;
	background-color: #9547df;
}
.menu-burger__icon span:nth-child(2) {
	width: 18px;
}
.menu-burger__icon-opened span:nth-child(1) {
	transform: rotate(-45deg) translateY(6px);
}
.menu-burger__icon-opened span:nth-child(3) {
	transform: rotate(-45deg) translateX(3px) translateY(-4px);
}
.menu-burger__icon-opened span:nth-child(2) {
	transform: rotate(45deg);
}
@media (max-width: 800px) {
	.menu__list {
		flex-flow: column nowrap;
		gap: 1.2rem;
		margin-block-end: 2rem;
	}
}

.actions,
.profile-info {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	flex-grow: 1;
	justify-content: flex-end;
}

@media (max-width: 800px) {
	.actions {
		gap: 0.6rem;
	}
}

@media (max-width: 800px) {
	.profile-info {
		gap: 3.6rem;
	}
}

.button {
	text-transform: uppercase;
	white-space: nowrap;
	transition: all 0.3s;
}
.button--login::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	background-image: url("../img/login.svg");
	background-size: cover;
	margin-right: 4px;
	vertical-align: middle;
}
.button--filled {
	color: #000;
	background-color: #ebb305;
	padding-inline: 1.1rem;
	padding-block: 0.8rem;
	border-radius: 0.8rem;
}
.button--action {
	color: #fff;
	padding-block: 19px;
	padding-inline: 30px;
	border-radius: 8px;
}
.button--action--filled {
	background-color: #a855f7;
	border: 1px solid #a855f7;
	position: relative;
}
.button--action--filled:hover {
	background-color: #8b4bd7;
}
.button--action--filled__arrow-right {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.button--action--transparent {
	border: 1px solid #3e444f;
	background-color: #18181b;
}
.button--action--steam {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	border: 1px solid #9d59ef;
	text-transform: none;
}

.cart-icon {
	position: relative;
	background-color: #221631;
	padding: 7px;
	border-radius: 8px;
}
.cart-icon img {
	max-width: none;
	width: 20px;
	height: 20px;
	object-fit: cover;
	display: block;
}
.cart-icon::after {
	position: absolute;
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #a855f7;
	border-radius: 100%;
	top: 4px;
	right: 4px;
}

.balance {
	display: flex;
	white-space: nowrap;
	align-items: center;
	color: #22c55d;
	padding-inline: 12px;
	padding-block: 8px;
	border-radius: 17px;
	background-color: #031409;
}
.balance img {
	max-width: none;
	width: 22px;
	height: 22px;
	object-fit: cover;
	display: block;
}

.profile {
	display: flex;
	white-space: nowrap;
	align-items: center;
	text-transform: uppercase;
	padding-inline: 12px;
	padding-block: 8px;
	border-radius: 17px;
}
.profile img {
	max-width: none;
	margin-inline-end: 6px;
	width: 32px;
	height: 32px;
	object-fit: cover;
	display: block;
}

.hero {
	margin-block-end: 100px;
}
@media (max-width: 950px) {
	.hero {
		margin-block-end: 40px;
	}
}
.hero {
	position: relative;
}
.hero__container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.4rem;
	padding-block: 73px;
}
.hero__title {
	width: 39%;
	text-align: center;
	position: relative;
}
.hero__title::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(168, 85, 247, 0.25);
	filter: blur(28px);
	z-index: -1;
	border-radius: 0.2em;
}
.hero__description {
	width: 56%;
	text-align: center;
}
.hero__actions {
	display: flex;
	gap: 1.4rem;
}
.hero__actions-browse {
	padding-inline-start: 60px;
	position: relative;
}
.hero__actions-browse::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 34px;
	width: 14px;
	height: 14px;
	background-image: url("../img/browse.svg");
	background-size: cover;
}
.hero__picture img {
	position: absolute;
	max-width: 1440px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 1250px) {
	.hero__title {
		width: 59%;
	}
	.hero__description {
		width: 75%;
	}
}
@media (max-width: 840px) {
	.hero__title {
		width: 85%;
	}
	.hero__description {
		width: 85%;
	}
	.hero__container {
		padding-block: 40px;
	}
}
@media (max-width: 590px) {
	.hero__title {
		width: 90%;
	}
	.hero__description {
		width: 90%;
	}
	.hero__title.title {
		font-size: 5.1rem;
		line-height: 4.5rem;
	}
	.hero .hero__actions {
		flex-direction: column;
	}
}
@media (max-width: 440px) {
	.hero__title.title {
		font-size: 4rem;
	}
}

.badge {
	color: #9c59ee;
	font-size: 0.85rem;
	text-transform: uppercase;
	padding-block: 6px;
	padding-inline: 16px;
	border: 1px solid #9c59ee;
	border-radius: 15px;
	font-family: "Spline Sans";
	font-weight: 700;
	position: relative;
}
.badge::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(168, 85, 247, 0.35);
	filter: blur(28px);
	z-index: -1;
	border-radius: 0.2em;
}
.badge--red {
	color: #dd524c;
	border: 1px solid #dd524c;
	border-radius: 16px;
}
.badge--red::after {
	display: none;
}

.title {
	text-transform: uppercase;
	font-size: 6.7rem;
	line-height: 6.8rem;
	letter-spacing: -4.8px;
	font-family: "Rajdhani";
	font-weight: 700;
}
.title-sm {
	font-size: 3.4rem;
	line-height: 3.4rem;
	letter-spacing: 0px;
	font-family: "Rajdhani";
	font-weight: 700;
}

.description {
	font-size: 1.3rem;
	line-height: 2.1rem;
	color: #929292;
	font-family: "Spline Sans";
	font-weight: 500;
}

.accent {
	color: #bd90f2;
}
.accent-2 {
	color: #9d59ef;
}

.skins {
	margin-block-end: 100px;
}
@media (max-width: 950px) {
	.skins {
		margin-block-end: 30px;
	}
}

.section-title {
	font-family: "Rajdhani";
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 2.8rem;
	text-transform: uppercase;
}

.section-subtitle {
	line-height: 1.4rem;
	color: #929292;
}
@media (max-width: 360px) {
	.section-subtitle {
		font-size: 0.9rem;
	}
}

.section-subhead {
	display: flex;
	justify-content: space-between;
	margin-block-end: 30px;
}
@media (max-width: 360px) {
	.section-subhead {
		display: flex;
		justify-content: space-between;
		margin-block-end: 30px;
		gap: 20px;
	}
}

.section-link {
	text-transform: uppercase;
	line-height: 1.4rem;
	color: #9d59ef;
	padding-inline-end: 18px;
	position: relative;
}
.section-link::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 90%;
	width: 6px;
	height: 9px;
	background-image: url("../img/arrow-right-2.svg");
	background-size: cover;
}

.skins-list {
	display: flex;
	flex-wrap: wrap;
	margin-block-end: 24px;
	justify-content: flex-start;
    gap: 20px;
}
.skins-list__item {
	border-block-start: 4px solid #a88fc8;
	border-radius: 4px;
	margin-block-end: 24px;
	flex: 0 0 calc(25% - 24px);
	padding: 20px;
	background-color: #20162f;
}
@media (max-width: 950px) {
	.skins-list {
		gap: 15px;
	}
	.skins-list__item {
		flex: 0 0 calc(33.333% - 15px);
	}
}
@media (max-width: 700px) {
	.skins-list__item {
		flex: 0 0 calc(50% - 15px);
	}
}
@media (max-width: 450px) {
	.skins-list__item {
		flex: 0 0 100%;
	}
}

.skin-pic {
	margin-block-end: 20px;
	margin: 0 auto;
}
.skin-pic img {
	width: 100%;
	height: auto;
}
.skin-head {
	text-transform: uppercase;
	font-family: "Rajdhani";
	font-weight: 700;
	line-height: 1.6rem;
	font-size: 1.3rem;
}
.skin-subhead {
	color: #929292;
	margin-block-end: 6px;
	font-family: "Spline Sans";
	font-weight: 500;
}
.skin-price {
	font-family: "Rajdhani";
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 2.4rem;
}
.skin-price-purchase {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.skin-purchase {
	padding: 11px;
	border: 1px solid #303030;
	border-radius: 8px;
	background-color: #150d1c;
}

.skins-button {
	display: flex;
	justify-content: center;
}

.collections {
	margin-block-end: 100px;
}
@media (max-width: 950px) {
	.collections {
		margin-block-end: 40px;
	}
}
.collections-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
}
.collections-list__item {
	padding: 25px;
	border: 1px solid #2b213a;
	border-radius: 8px;
	background-color: #20162f;
	padding-block-end: 16px;
	flex: 0 0 calc(25% - 24px);

	display: flex;
	flex-direction: column;
}
@media (max-width: 1105px) {
	.collections-list__item {
		flex: 0 0 calc(50% - 15px);
	}
}
@media (max-width: 600px) {
	.collections-list__item {
		flex: 0 0 100%;
	}
}
@media (max-width: 1105px) {
	.collections-list {
		gap: 15px;
	}
}

.collection-pic img {
	width: 100%;
	height: auto;
}
.collection-gradient {
	width: 48px;
	height: 4px;
	margin-block-end: 16px;
}
.collection-gradient__purple {
	background: linear-gradient(90deg, rgb(157, 89, 239) 0%, rgba(255, 255, 255, 0) 100%);
}
.collection-gradient__orange {
	background: linear-gradient(90deg, rgb(221, 82, 76) 0%, rgba(255, 255, 255, 0) 100%);
}
.collection-gradient__yellow {
	background: linear-gradient(90deg, rgb(219, 176, 61) 0%, rgba(255, 255, 255, 0) 100%);
}
.collection-gradient__blue {
	background: linear-gradient(90deg, rgb(76, 124, 233) 0%, rgba(255, 255, 255, 0) 100%);
}
.collection-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-block-end: 18px;
}
.collection-head {
	flex: 1;

	font-family: "Rajdhani";
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 2.3rem;
	text-transform: uppercase;
}
.collection-subhead {
	font-family: "Spline Sans";
	font-weight: 700;
	font-size: 0.85rem;
	line-height: 1.14rem;
	letter-spacing: 1px;
	color: #929292;
	text-transform: uppercase;
	padding-block-end: 16px;
	border-block-end: 1px solid #2e2c30;
}
.collection-qty {
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	font-family: "Spline Sans";
	font-weight: 700;
	line-height: 1.4rem;
	position: relative;

	margin-top: auto;
}
.collection-qty__link {
	width: 100%;
}
.collection-qty__link img {
	float: right;
}

.workflow {
	margin-block-end: 100px;
}
@media (max-width: 950px) {
	.workflow {
		margin-block-end: 40px;
	}
}
.workflow__container {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}
@media (max-width: 800px) {
	.workflow__container {
		align-items: center;
	}
}
.workflow__badge {
	margin-block-end: 24px;
}
.workflow__title {
	width: 37%;
	margin-block-end: 24px;
}
@media (max-width: 1160px) {
	.workflow__title {
		width: auto;
	}
}
@media (max-width: 800px) {
	.workflow__title {
		text-align: center;
	}
}
.workflow-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex-basis: 42%;
}
.workflow-list__item {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}
.workflow-list__item:not(:last-child) .workflow-counter::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 77px;
	background-color: #303030;
	top: 100%;
	left: 50%;
}
.workflow-counter {
	position: relative;
	font-family: "Rajdhani";
	font-weight: 700;
	color: #e2b53e;
	font-size: 1.4rem;
	padding-inline: 15.5px;
	padding-block: 7px;
	background-color: #20162f;
	border: 1px solid #303030;
	border-radius: 8px;
}
.workflow-head {
	font-family: "Rajdhani";
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 2.2rem;
	margin-block-end: 8px;
	text-transform: uppercase;
}
.workflow-desc {
	font-family: "Spline Sans";
	font-weight: 400;
	line-height: 1.4rem;
	color: #929292;
}
.workflow__steps-and-pic {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}
@media (max-width: 800px) {
	.workflow__steps-and-pic {
		flex-direction: column;
		gap: 30px;
	}
}
.workflow-steps {
	flex-basis: 42%;
}
.workflow-pic {
	flex-basis: 49%;
}
.workflow-pic img {
	width: 100%;
	height: auto;
}

.advantages {
	margin-block-end: 100px;
}
@media (max-width: 950px) {
	.advantages {
		margin-block-end: 40px;
	}
}
.advantages__container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.advantages__badge {
	margin-block-end: 20px;
}
.advantages__title {
	margin-block-end: 30px;
}
.advantages__blocks {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
@media (max-width: 1080px) {
	.advantages__blocks {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
}
.advantages-block {
	width: calc(33.3333% - 24px);
	background-color: #20162f;
	padding-block: 41.5px;
	padding-inline: 30px;
	border: 1px solid #2b213a;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 24px;
}
@media (max-width: 1080px) {
	.advantages-block {
		width: 100%;
	}
}
@media (max-width: 530px) {
	.advantages-block {
		padding: 15px;
	}
}
.advantages-block__pic {
	position: relative;
	padding-block: 19.5px;
	padding-inline: 25px;
	background-color: #150d1c;
	border-radius: 8px;
	border-radius: 10px;
}
.advantages-block__pic_purple {
	filter: drop-shadow(0 0 0.5rem rgba(168, 85, 247, 0.5));
}
.advantages-block__pic_blue {
	filter: drop-shadow(0 0 0.5rem rgba(78, 128, 138, 0.5));
}
.advantages-block__pic_yellow {
	filter: drop-shadow(0 0 0.5rem rgba(226, 181, 62, 0.5));
}
.advantages-block__pic img {
	max-width: none;
}
.advantages-block__title {
	font-family: "Rajdhani";
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 2rem;
	margin-block-end: 4px;
	text-transform: uppercase;
}
.advantages-block__desc {
	font-family: "Spline Sans";
	font-weight: 400;
	line-height: 1.6rem;
	color: #908a97;
}

.faq {
	margin-block-end: 100px;
}
@media (max-width: 950px) {
	.faq {
		margin-block-end: 40px;
	}
}
.faq__title {
	margin-block-end: 30px;
	text-align: center;
}
.faq__accordion {
	max-width: 70%;
	margin: 0 auto;
}
@media (max-width: 900px) {
	.faq__accordion {
		max-width: 90%;
	}
}

.accordion__item {
	background-color: #20162f;
	border: 1px solid #2b213a;
	border-radius: 8px;
	margin-block-end: 24px;
}
.accordion__title {
	padding: 24px;
	position: relative;
	cursor: pointer;
	user-select: none;
	font-family: "Spline Sans";
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.4rem;
	letter-spacing: 0.35px;
	padding-right: 24px;
}
.accordion__title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	width: 10px;
	height: 7px;
	background-image: url("../img/purple-chevron.svg");
	background-size: cover;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}
.accordion__title.is-open::after {
	transform: translateY(-50%) rotate(180deg);
}
.accordion__content {
	line-height: 1.4rem;
	color: #929292;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease;
}
.accordion__content__wrapper {
	padding-inline: 24px;
	padding-block-end: 24px;
}

.copyright {
	line-height: 1.4rem;
	color: #929292;
}

.footer {
	background-color: #000;
	padding-block: 60px;
}
@media (max-width: 900px) {
	.footer {
		padding-block: 30px;
	}
}
.footer__container {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
@media (max-width: 900px) {
	.footer__container {
		justify-content: space-around;
	}
}
.footer__logo {
	width: 150px;
	height: 40px;
	margin-block-end: 16px;
}
@media (max-width: 550px) {
	.footer__logo {
		margin: 0 auto 16px auto;
	}
}
.footer-desc {
	line-height: 1.4rem;
	color: #a88fc8;
	margin-block-end: 16px;
}
.footer__column-two,
.footer__column-three {
	padding-block-start: 10px;
}
.footer__column-one {
	width: 18.5%;
	margin-inline-end: 140px;
}
@media (max-width: 900px) {
	.footer__column-one {
		width: 30%;
		margin-inline-end: auto;
		margin-block-end: 15px;
	}
}
@media (max-width: 550px) {
	.footer__column-one {
		width: 100%;
		text-align: center;
	}
}
.footer__column-two {
	margin-inline-end: 246px;
}
@media (max-width: 900px) {
	.footer__column-two {
		margin-inline-end: auto;
	}
}
.footer-column-title {
	text-transform: uppercase;
	font-family: "Spline Sans";
	font-weight: 700;
	margin-block-end: 24px;
	line-height: 1.4rem;
}

.product-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.product-links__item a {
	color: #929292;
	line-height: 1.4rem;
}

.filters-inputs {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 30px;
}
@media (max-width: 1060px) {
	.filters-inputs {
		flex-direction: row;
		justify-content: space-around;
	}
}
.filters__item-title {
	display: inline-block;
	margin-block-end: 8px;
	text-transform: uppercase;
	line-height: 1.4rem;
	letter-spacing: 0.35px;
	font-family: "Spline Sans";
	font-weight: 700;
}
@media (max-width: 1060px) {
	.filters__item--range {
		flex-basis: 100%;
	}
	.filters__item--checkboxes {
		flex-basis: 40%;
	}
}

.filter-range-wrapper {
	background-color: #1e142b;
	padding-block-start: 30px;
	padding-block-end: 16px;
	padding-inline: 32.5px;
	border: 1px solid #3f3250;
	border-radius: 8px;
}
@media (max-width: 390px) {
	.filter-range-wrapper {
		padding-block-start: 15px;
		padding-block-end: 8px;
		padding-inline: 16.75px;
	}
}
.filter-range-values {
	display: flex;
	justify-content: space-between;
}
.filter-value {
	padding-block: 4px;
	padding-inline: 8px;
	background-color: #150d1c;
	border-radius: 4px;
}

#price-range-slider {
	margin-block-end: 28px;
}

#price-range-slider .noUi-connect {
	background: #824bc4;
}

#price-range-slider .noUi-tooltip {
	background: #824bc4;
	color: #824bc4;
}

#price-range-slider .noUi-handle {
	background: #824bc4;
	box-shadow: none;
	border: 1px solid #824bc4;
	height: 18px;
	width: 18px;
	top: -8px;
	right: -9px;
	border-radius: 9px;
}

.noUi-handle:after,
.noUi-handle:before {
	display: none;
}

.noUi-target {
	background: #2b292c;
	border-radius: 4px;
	border: 1px solid #2b292c;
	box-shadow: none;
}

.noUi-horizontal {
	height: 4px;
}

.noUi-connects {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.noUi-connect {
	height: 4px;
}

.checkbox-wrapper {
	display: block;
	position: relative;
	padding-inline-start: 30px;
	margin-bottom: 12px;
	cursor: pointer;
	line-height: 1.6rem;
	user-select: none;
	color: #929292;
}
.checkbox-wrapper input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkbox-wrapper input:checked ~ .checkmark {
	background-color: #9d59ef;
}
.checkbox-wrapper input:checked ~ .checkmark:after {
	display: block;
}
.checkbox-wrapper .checkmark:after {
	left: 7px;
	top: 3px;
	width: 5px;
	height: 11px;
	border: solid white;
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 21px;
	width: 21px;
	background-color: #1f1f23;
	border: 1px solid #9d59ef;
	border-radius: 4px;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.catalog__container {
	padding-block-start: 67px;
	padding-block-end: 100px;
	display: grid;
	grid-template-columns: 24% 1fr;
}
@media (max-width: 1060px) {
	.catalog__container {
		grid-template-columns: 1fr;
	}
}
.catalog__title {
	margin-block-end: 40px;
}
.catalog__filters {
	margin-inline-end: 30px;
}
@media (max-width: 1060px) {
	.catalog__filters {
		margin-inline-end: 0px;
	}
}
.catalog-results-amount {
	background-color: #211928;
	border-radius: 12px;
	padding-block: 28.5px;
	padding-inline: 30px;
	margin-block-end: 30px;
}
.catalog__skins-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-block-end: 30px;
}
.catalog__skins-list .skins-list__item {
	flex: 0 0 calc(33.333% - 24px);
	margin-block-end: 24px;
}
@media (max-width: 750px) {
	.catalog__skins-list .skins-list__item {
		flex: 0 0 calc(50% - 12px);
	}
}
@media (max-width: 550px) {
	.catalog__skins-list .skins-list__item {
		flex: 0 0 100%;
	}
}

.amount-title {
	font-family: "Spline Sans";
	font-weight: 400;
	line-height: 1.4rem;
}

.pagination__list {
	display: flex;
	gap: 8px;
	justify-content: center;
	color: #a88fc8;
	font-size: 1.1rem;
	line-height: 1.7rem;
}
.pagination__item--active .pagination__link {
	color: #fff;
	background-color: #9d59ef;
}
.pagination__item--dots {
	padding-inline: 16.5px;
	padding-block: 10.5px;
}
.pagination__link {
	font-family: "Spline Sans";
	font-weight: 700;
	padding-inline: 16.5px;
	padding-block: 10.5px;
	background-color: #211928;
	border-radius: 8px;
	display: inline-block;
}
@media (max-width: 380px) {
	.pagination__link {
		padding-inline: 8.75px;
		padding-block: 5.75px;
	}
}

.product {
	padding-block-start: 60px;
	margin-block-end: 100px;
}
@media (max-width: 670px) {
	.product {
		padding-block-start: 15px;
		margin-block-end: 30px;
	}
}
.product__container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media (max-width: 670px) {
	.product__container {
		flex-direction: column;
	}
}
.product-pic {
	flex-basis: 40%;
	padding-block: 67px;
	padding-inline: 45px;
	background-color: #20162f;
	border-radius: 8px;
	margin-block-end: 12px;
}
@media (max-width: 670px) {
	.product-pic {
		align-self: center;
	}
}
.product-pic img {
	width: 100%;
	height: auto;
}
@media (max-width: 1240px) {
	.product-pic {
		flex-basis: 50%;
		padding-block: 33px;
		padding-inline: 28px;
	}
}
.product-info {
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media (max-width: 1240px) {
	.product-info {
		flex-basis: 45%;
	}
}
.product-badge {
	margin-block-end: 16px;
}
.product-title {
	margin-block-end: 10px;
}
.product-assurance {
	margin-block-end: 30px;
}
@media (max-width: 670px) {
	.product-assurance {
		margin-block-end: 10px;
	}
}
.product-desc {
	display: flex;
	gap: 20px;
	flex-direction: column;
	margin-block-end: 30px;
}
.product-desc__item {
	font-family: "Spline Sans";
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 2.1rem;
	color: #929292;
}
.product-desc__value {
	color: #fff;
	margin-inline-start: 6px;
}

.recommended {
	margin-block-end: 100px;
}
@media (max-width: 670px) {
	.recommended {
		margin-block-end: 30px;
	}
}
.recommended-title {
	margin-block-end: 40px;
}

.cart {
	padding-block-start: 60px;
	margin-block-end: 100px;
}
@media (max-width: 670px) {
	.cart {
		margin-block-end: 30px;
	}
}
.cart-title {
	margin-block-end: 40px;
}
.cart__order-list--item {
	display: flex;
	align-items: center;
	padding: 30px;
	border: 1px solid #41354f;
	border-radius: 8px;
	margin-block-end: 24px;
}
@media (max-width: 900px) {
	.cart__order-list--item {
		padding: 15px;
		margin-block-end: 12px;
	}
}
.cart-order__wrapper {
	display: grid;
	grid-template-columns: 1fr 24%;
	align-items: start;
	grid-column-gap: 24px;
}
@media (max-width: 900px) {
	.cart-order__wrapper {
		grid-template-columns: 1fr;
	}
}
.cart-order-pic {
	display: flex;
	height: 95px;
	overflow: hidden;
	background-color: #20162f;
	border-radius: 8px;
	padding: 10px;
	margin-inline-end: 14px;
}
.cart-order-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cart-order-group {
	flex-grow: 1;
	display: grid;
	justify-content: space-between;
	align-items: center;
	grid-template-columns: 1fr auto;
}
@media (max-width: 440px) {
	.cart-order-group {
		grid-template-columns: 1fr;
	}
}
.cart-order-info__head {
	font-size: 1.4rem;
	line-height: 1.7rem;
	text-transform: uppercase;
	font-family: "Rajdhani";
	font-weight: 700;
}
@media (max-width: 440px) {
	.cart-order-info__head {
		font-size: 1.1rem;
	}
}
.cart-order-info__subhead {
	font-family: "Spline Sans";
	font-weight: 400;
	line-height: 1.4rem;
	color: #929292;
}
@media (max-width: 440px) {
	.cart-order-info__subhead {
		font-size: 0.9rem;
	}
}
.cart-order-price {
	font-size: 1.4rem;
	line-height: 1.7rem;
	text-transform: uppercase;
	font-family: "Rajdhani";
	font-weight: 700;
	margin-inline-end: 20px;
}

.summary {
	padding: 30px;
	border-radius: 8px;
	background-color: #20162f;
}
@media (max-width: 900px) {
	.summary {
		max-width: 320px;
		padding: 15px;
	}
}
.summary--title {
	font-family: "Spline Sans";
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 2.1rem;
	margin-block-end: 20px;
}
.summary--total {
	display: flex;
	justify-content: space-between;
	font-family: "Spline Sans";
	font-weight: 400;
	line-height: 1.4rem;
	color: #929292;
}
.summary--price {
	font-size: 1.7rem;
	line-height: 2.3rem;
	text-transform: uppercase;
	font-family: "Rajdhani";
	font-weight: 700;
	margin-inline-end: 20px;
	margin-block-end: 10px;
}

.checkout {
	margin-block: 100px;
}
@media (max-width: 950px) {
	.checkout {
		margin-block: 40px;
	}
}
.checkout__section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-block-end: 30px;
}
.checkout-content {
	display: grid;
	grid-template-columns: 1fr 24%;
	align-items: start;
	grid-column-gap: 24px;
}
@media (max-width: 900px) {
	.checkout-content {
		grid-template-columns: 1fr;
	}
}
.checkout-form__section {
	padding: 30px;
	background-color: #20162f;
	border-radius: 8px;
}
.checkout-form__section--personal {
	margin-block-end: 24px;
}
.checkout-form__section-head {
	margin-block-end: 20px;
}
.checkout-form__section-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.7rem;
	line-height: 2.3rem;
	text-transform: uppercase;
	font-family: "Rajdhani";
	font-weight: 700;
	margin-inline-end: 20px;
}
.checkout-form__fields--personal,
.checkout-form__fields--card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 600px) {
	.checkout-form__fields--personal,
	.checkout-form__fields--card {
		grid-column-gap: 16px;
		grid-row-gap: 0;
	}
}
@media (max-width: 600px) {
	.checkout-form__fields--personal {
		grid-template-columns: 1fr;
	}
}
.checkout-form__fields--card {
	grid-template-areas: "one one" "two three" "four four";
}
.checkout-form__fields--card > :nth-child(1) {
	grid-area: one;
}
.checkout-form__fields--card > :nth-child(2) {
	grid-area: two;
}
.checkout-form__fields--card > :nth-child(3) {
	grid-area: three;
}
.checkout-form__fields--card > :nth-child(4) {
	grid-area: four;
}
@media (max-width: 600px) {
	.checkout-form__fields--card {
		grid-template-columns: 1fr;
		grid-template-areas: none;
		grid-template-areas: "one one" "two two" "three three" "four four";
	}
}
.checkout-form__control {
	position: relative;
}
.checkout-form__control input {
	width: 100%;
}
.checkout-form__icon {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
}
.checkout-form__icon img {
	width: 15px;
	height: 12px;
}
.checkout-form__input--card,
.checkout-form__input--cardholder {
	padding-inline-start: 32px;
}
.checkout-form__checkbox {
	color: #fff;
}
@media (max-width: 900px) {
	.checkout-summary {
		order: -1;
		margin-block-end: 16px;
	}
}

.account {
	margin-block: 100px;
}
@media (max-width: 950px) {
	.account {
		margin-block: 40px;
	}
}
.account__content {
	padding: 30px;
	background-color: #20162f;
	border: 1px solid #493b5d;
	border-radius: 12px;
	display: grid;
	grid-template-columns: 1fr auto;
	margin-block-end: 12px;
}
@media (max-width: 560px) {
	.account__content {
		grid-template-columns: 1fr;
		padding: 10px;
	}
}
.account__info {
	display: flex;
	align-items: center;
}
.account__ava {
	width: 128px;
	height: 128px;
	margin-inline-end: 24px;
}
.account__ava img {
	max-width: none;
	object-fit: cover;
	display: block;
}
@media (max-width: 370px) {
	.account__ava {
		margin-inline-end: 10px;
	}
}
.account__details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
@media (max-width: 560px) {
	.account__info {
		margin-block-end: 12px;
	}
}
.account__nickname {
	font-size: 1.7rem;
	line-height: 2.3rem;
	text-transform: uppercase;
	font-family: "Rajdhani";
	font-weight: 700;
	margin-inline-end: 20px;
}
.account__steam-id,
.account__wallet {
	color: #a88fc8;
}
.account__wallet {
	display: flex;
	align-items: center;
}
.account__steam-id {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-block-end: 4px;
}
.account__balance {
	color: #5ec269;
	font-family: "Rajdhani";
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 2rem;
	letter-spacing: -0.5;
}
.account__actions {
	display: flex;
	align-items: center;
	gap: 24px;
}
@media (max-width: 770px) {
	.account__actions {
		flex-direction: column;
	}
}
@media (max-width: 560px) {
	.account__actions {
		flex-direction: row;
		gap: 10px;
	}
	.account__actions .button--action {
		color: #fff;
		padding-block: 10px;
		padding-inline: 15px;
	}
}

/* Style the tab */
.tab {
	overflow: hidden;
	margin-block-end: 30px;
	border-bottom: 1px solid #41354f;
}
.tab button {
	color: #828183;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	border-bottom: 2px solid rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	gap: 4px;
}
.tab button svg {
	fill: #828183;
	width: 13.5px;
	height: 13.5px;
}
.tab button.active {
	color: #9d59ef;
	border-bottom: 2px solid #9d59ef;
}
.tab button.active svg {
	fill: #9d59ef;
}
.tab__content {
	display: none;
	padding: 30px;
	background-color: #20162f;
	border-radius: 8px;
	border-top: none;
	animation: fadeEffect 1s;
}
@media (max-width: 740px) {
	.tab__content {
		padding: 10px;
	}
}
@keyframes fadeEffect {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.tab__head {
	font-family: "Rajdhani";
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 2.4rem;
	text-transform: uppercase;
	margin-block-end: 20px;
}

.sales__item {
	display: flex;
	align-items: center;
	padding: 20px;
	border: 1px solid #493b5d;
	border-radius: 8px;
	margin-block-end: 24px;
}
@media (max-width: 740px) {
	.sales__item {
		padding: 6px;
	}
}
.sales__item-pic-and-name {
	display: flex;
	align-items: center;
	flex-grow: 1;
	gap: 20px;
}
@media (max-width: 740px) {
	.sales__item-pic-and-name {
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}
}
.sales__item-purchase-info {
	display: flex;
	align-items: center;
	gap: 20px;
}
@media (max-width: 650px) {
	.sales__item-purchase-info {
		flex-direction: column;
		gap: 5px;
		align-items: flex-end;
	}
}
.sales__item-pic {
	height: 61px;
	width: 77px;
	overflow: hidden;
}
.sales__item-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sales__item-name {
	font-size: 1.3rem;
	line-height: 2.1rem;
	font-family: "Rajdhani";
	font-weight: 700;
	text-transform: uppercase;
}
.sales__item-date {
	line-height: 1.4rem;
	font-family: "Spline Sans";
	font-weight: 500;
	color: #929292;
}
.sales__item-badge {
	display: flex;
	align-items: center;
	gap: 3px;
	padding-block: 7px;
	padding-inline: 12px;
	border-radius: 12px;
}
.sales__item-badge--under-review {
	color: #e2b53e;
	background-color: #33262d;
}
.sales__item-badge--sold {
	color: #5ec269;
	background-color: #232734;
}
.sales__item-price {
	font-size: 1.3rem;
	line-height: 2.1rem;
	font-family: "Rajdhani";
	font-weight: 700;
}
.sales__action {
	display: flex;
	justify-content: center;
}

.drop-zone {
	border: 1px dashed #9d59ef;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #2b213a;
	padding-block: 34px;
	border-radius: 8px;
	gap: 4px;
	margin-block-end: 20px;
}
.drop-zone__pic {
	padding-block: 22px;
	padding-inline: 18.25px;
	background-color: #362c44;
	border-radius: 100%;
}
.drop-zone__pic img {
	object-fit: cover;
}
.drop-zone__desc {
	line-height: 1.4rem;
}
.drop-zone__desc .link {
	cursor: pointer;
}
.drop-zone__desc--sub {
	color: #929292;
}

#drop-preview {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.upload-form__actions {
	display: flex;
	justify-content: center;
}

.upload-preview {
	display: flex;
	display: none;
	gap: 10px;
	align-items: center;
}
.upload-preview__pic {
	width: 77px;
	height: 61px;
}
.upload-preview__title {
	font-size: 1.3rem;
	line-height: 2.1rem;
	font-family: "Rajdhani";
	font-weight: 700;
	text-transform: uppercase;
}
.upload-preview__size {
	color: #929292;
}

.profile-form .profile-form__section:not(:last-child) {
	margin-block-end: 30px;
	padding-block-end: 30px;
	border-block-end: 1px solid #493b5d;
}
.profile-form__fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	row-gap: 6px;
}
@media (max-width: 560px) {
	.profile-form__fields {
		grid-template-columns: 1fr;
	}
}
.profile-form__section--password .profile-form__fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
@media (max-width: 560px) {
	.profile-form__section--password .profile-form__fields {
		grid-template-columns: 1fr;
	}
}
.profile-form__section--password .profile-form__field:nth-child(1) {
	grid-column: 1/2;
}
@media (max-width: 560px) {
	.profile-form__section--password .profile-form__field:nth-child(1) {
		grid-column: 1/-1;
	}
}
.profile-form__section--password .profile-form__field:nth-child(2) {
	grid-column: 1/2;
}
@media (max-width: 560px) {
	.profile-form__section--password .profile-form__field:nth-child(2) {
		grid-column: 1/-1;
	}
}
.profile-form__section--password .profile-form__field:nth-child(3) {
	grid-column: 2/3;
}
@media (max-width: 560px) {
	.profile-form__section--password .profile-form__field:nth-child(3) {
		grid-column: 1/-1;
	}
}

.add-funds-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 16px;
}
@media (max-width: 540px) {
	.add-funds-form {
		grid-template-columns: 1fr;
	}
}
.add-funds-form .form__submit {
	grid-column: 1/-1;
}

.modal-add-funds .modal-title {
	margin-block-end: 16px;
}

.modal-withdraw .modal-header {
	margin-block-end: 16px;
}
.modal-withdraw .modal-subtitle {
	color: #9780b5;
}
.modal-withdraw .custom-radio {
	width: 183px;
	border: 1px solid #9d59ef;
	border-radius: 4px;
	padding-block: 14px;
	padding-inline: 17px;
}

.radio-wrapper {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	line-height: 1.6rem;
	user-select: none;
}
.radio-wrapper input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.radio-wrapper:hover input ~ .radio-checkmark {
	background-color: #ccc;
}
.radio-wrapper input:checked ~ .radio-checkmark {
	background-color: #fff;
}
.radio-wrapper input:checked ~ .radio-checkmark:after {
	display: block;
}
.radio-wrapper .radio-checkmark:after {
	top: 4px;
	left: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #9d59ef;
}

.radio-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: #eee;
	border-radius: 50%;
}
.radio-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}