body {
	margin: 0;
	scrollbar-color: var(--color-primary);
}
::-webkit-scrollbar {
	width: 5px;
	background-color: #171717;
}
::-webkit-scrollbar-thumb {
	background-color: var(--color-primary);
}

html {
    scroll-behavior: smooth !important;
}

.loader {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	border: 4px solid var(--color-primary);
	animation: loader 2s infinite ease;
}
.loader-inner {
	vertical-align: top;
	display: inline-block;
	width: 100%;
	background-color: var(--color-primary);
	animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(180deg);
	}
	50% {
		transform: rotate(180deg);
	}
	75% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes loader-inner {
	0% {
		height: 0%;
	}
	25% {
		height: 0%;
	}
	50% {
		height: 100%;
	}
	75% {
		height: 100%;
	}
	100% {
		height: 0%;
	}
}

.outline-btn,
.secondary-btn {
	position: relative;
	overflow: hidden;
}
:is(.outline-btn, .secondary-btn)::before {
	z-index: -1;
	content: '';
	position: absolute;
	left: -50px;
	top: 50%;
	transform: scale(0);
	width: 100px;
	height: 100px;
	background: var(--color-primary);
	border-radius: 50%;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}
.outline-btn.discord::before {
	background: var(--color-discord);
}
.outline-btn-red::before {
	background: var(--color-delete);
}
.outline-btn:hover::before {
	transform: scale(3);
	opacity: 1;
}
.secondary-btn::before {
	background-color: #ffffff21;
}
.secondary-btn:hover::before {
	transform: scale(3);
	opacity: 1;
}
.fill-btn-slower:hover::before {
	transform: scale(2);
}

.outline-btn-wider:hover::before {
	transform: scale(4);
	opacity: 1;
}
.outline-btn-widest:hover::before {
	transform: scale(5.5);
	opacity: 1;
}

.gradient-btn {
	position: relative;
	overflow: hidden;
}
.gradient-btn::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		to right,
		transparent,
		rgba(255, 255, 255, 0.5),
		transparent
	);
	transform: rotate(60deg);
	transition: transform 1s;
	transform: translate(-100%, -100%);
}
.gradient-btn:hover::before {
	transform: translate(100%, 100%);
}

.payment-item-bg-gradient {
	background: radial-gradient(
			147.63% 261.97% at 39.82% -155.45%,
			rgba(255, 255, 255, 0.1) 0%,
			rgba(255, 255, 255, 0) 100%
		),
		rgba(255, 255, 255, 0.01);
}

.blur-bg-gradient {
	background: linear-gradient(
			0deg,
			rgba(255, 255, 255, 0.03),
			rgba(255, 255, 255, 0.03)
		),
		radial-gradient(
			40.06% 191.96% at 67.84% -37.5%,
			rgba(255, 255, 255, 0.15) 0%,
			rgba(255, 255, 255, 0) 100%
		);
}
.blur-bg-gradient.circle {
	background: linear-gradient(
			0deg,
			rgba(255, 255, 255, 0.03),
			rgba(255, 255, 255, 0.03)
		),
		radial-gradient(
			121.06% 81.96% at 67.84% -27.5%,
			rgba(255, 255, 255, 0.15) 0%,
			rgba(255, 255, 255, 0) 100%
		);
}

.loading-data {
	width: 50px;
	padding: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
    background: var(--color-primary);
	--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
	mask: var(--_m);
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: l3 1s infinite linear;
}
@keyframes l3 {
	to {
		transform: rotate(1turn);
	}
}

.btn-loading {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: relative;
	animation: rotate1 1s linear infinite;
}
.btn-loading::before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 3px solid var(--color-primary-hover);
	animation: prixClipFix 2s linear infinite;
}

@keyframes rotate1 {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes prixClipFix {
	0% {
		clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
	}
	25% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
	}
	50% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
	}
	75% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
	}
	100% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
	}
}

.basket-bg {
	background-color: #141616;
	overflow: hidden;
	z-index: 1;
}
.basket-bg::before {
	content: '';
	position: absolute;
	top: -6rem;
	right: 0;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: #76ff9f78;
	filter: blur(100px);
	opacity: 0.3;
	z-index: -1;
}

.line-1 {
    font-family: var(--font-akira);
    font-size: 150px;
    letter-spacing: 5px !important;
    
}

.line-2 {
    font-family: var(--font-akira);
    letter-spacing: -5px !important;
    font-size: 150px;
    color: #A1E91A;
    
}

.colored-toast.swal2-icon-success {
	background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
	background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
	background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
	background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
	background-color: #87adbd !important;
}

.colored-toast .swal2-title {
	color: white;
}

.colored-toast .swal2-close {
	color: white;
}

.colored-toast .swal2-html-container {
	color: white;
}
