.btn, .button, header .auth, header .reg, .btn.pink, a.user-toppanel__item_profile, .user-btn  {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	white-space: nowrap;

	height: 48px;
	min-height: 48px;
	padding: 8px 18px;

	border-radius: 6px;

	font-size: 16px;
	font-weight: 700;
	line-height: 24px;

	transition: background-color .15s cubic-bezier(.4,0,.2,1),
		color .15s cubic-bezier(.4,0,.2,1),
		fill .15s cubic-bezier(.4,0,.2,1),
		stroke .15s cubic-bezier(.4,0,.2,1);
		
	background-color: rgb(38, 44, 80);
	border: 1px solid rgb(51, 57, 92);
	color: #fff;
	
	cursor: pointer;
}

.btn:focus-visible, .button:focus-visible, header .auth:focus-visible, header .reg:focus-visible, .btn.pink:focus-visible, a.user-toppanel__item_profile:focus-visible, .user-btn:focus-visible  {
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .25);
}

.btn:hover, .button:hover, header .auth:hover, header .reg:hover, .btn.pink:hover, a.user-toppanel__item_profile:hover, .user-btn:hover{
	background-color: rgb(33, 38, 70); /* ~12-15% darker */
	border-color: rgb(46, 51, 83);
	color: #fff;
}

.btn:active, .button:active, header .auth:active, header .reg:active, .btn.pink:active, a.user-toppanel__item_profile:active, .user-btn:active{
	background-color: rgb(29, 33, 61);
	border-color: rgb(41, 46, 74);
	color: #fff;
}
 
 
.form-block .btn, .form-block .button {
	width: 100%;
} 


header .reg, .btn.pink, a.user-toppanel__item_profile, .user-btn {
	background-color: rgb(0, 119, 219);
	border: 1px solid rgb(31, 153, 255);
	color: #fff;	
}


header .reg:hover, .btn.pink:hover, a.user-toppanel__item_profile:hover, .user-btn:hover {
	background-color: rgb(0, 104, 191); /* ~15% darker */
	border-color: rgb(21, 137, 234);    /* ~10% darker */
	color: #fff;
}

header .reg:active, .btn.pink:active, a.user-toppanel__item_profile:active, .user-btn:active {
	background-color: rgb(0, 92, 168);  /* a bit more */
	border-color: rgb(18, 122, 209);
	color: #fff;
}

.cta-frame{
	display: inline-flex;
	padding: 10px; /* more "air" like original */
	border-radius: 14px;

	/* glass capsule */
	background: rgba(15, 28, 52, .55);
	border: 1px solid rgba(140, 180, 255, .25);
	backdrop-filter: blur(8px);

	/* depth like original */
	box-shadow:
		0 10px 24px rgba(0, 0, 0, .28),
		inset 0 1px 0 rgba(255, 255, 255, .08);
}

.cta-btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	height: 46px; /* slightly taller */
	padding: 0 22px;

	border-radius: 12px;
	border: 0;

	background-color: rgb(56, 199, 88);
	color: #fff;

	font-size: 16px;
	font-weight: 700; /* bolder like original */
	line-height: 1;

	text-decoration: none;

	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .12); /* subtle depth */
	transition: background-color .15s ease, transform .05s ease;
}

.cta-btn:hover{
	background-color: rgb(47, 169, 75);
	color: #fff;
}

/* Duel category tabs/carousels buttons */
.duel-cat-carousel__all.btn,
.duel-cat-tabs__more.btn {
	height: 34px;
	min-height: 34px;
	padding: 5px 12px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	color: var(--duel-text-muted);
}

.duel-cat-carousel__all.btn:hover,
.duel-cat-tabs__more.btn:hover {
	color: #fff;
}

.duel-cat-carousel__nav {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(51, 57, 92);
	border-radius: 6px;
	background: rgb(38, 44, 80);
	color: var(--duel-text-muted);
	cursor: pointer;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), opacity .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-cat-carousel__nav:hover {
	background: rgb(33, 38, 70);
	border-color: rgb(46, 51, 83);
	color: #fff;
}

.duel-cat-carousel__nav.swiper-button-disabled {
	opacity: .35;
	cursor: default;
}

.duel-cat-carousel__nav img {
	width: 14px;
	height: 14px;
	filter: var(--duel-icon-filter-muted);
	transition: filter .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-cat-carousel__nav:hover img {
	filter: var(--duel-icon-filter-white);
}

@media only screen and (max-width: 767px) {
	.duel-cat-carousel__all.btn,
	.duel-cat-tabs__more.btn {
		height: 30px;
		min-height: 30px;
		padding: 4px 10px;
		font-size: 12px;
	}

	.duel-cat-carousel__nav {
		width: 30px;
		height: 30px;
	}
}

.cta-btn:active{
	transform: translateY(1px);
}

.cta-btn__icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 24px;
	height: 24px;

	border-radius: 999px;

	/* ORIGINAL: white circle + green arrow */
	background: rgba(255, 255, 255, .95);
	color: rgb(56, 199, 88);

	box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

/* Duel form controls */
.duel-form-control,
input[type='text'],
input[type='search'],
input[type='email'],
input[type='tel'],
input[type='password'],
input[type='number'],
select,
textarea {
	background-color: #121731;
	color: #d0d0d0;
	border: 0;
	border-radius: 6px;
	outline: 2px solid transparent;
	outline-offset: -2px;
	transition: all .15s cubic-bezier(.4, 0, .2, 1);
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	height: 48px;
	padding: 8px 12px;
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%23767FAA' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px 12px;
	padding: 10px 36px 10px 14px;
	font-size: 14px;
	line-height: 1.2;
	color: #fff;
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

select option,
select optgroup {
	background-color: #1f264d;
	color: #fff;
}

input[type='text']::placeholder,
input[type='search']::placeholder,
input[type='email']::placeholder,
input[type='tel']::placeholder,
input[type='password']::placeholder,
input[type='number']::placeholder,
textarea::placeholder,
.duel-form-control::placeholder {
	color: #d0d0d0;
	opacity: 1;
}

input[type='text']:hover,
input[type='search']:hover,
input[type='email']:hover,
input[type='tel']:hover,
input[type='password']:hover,
input[type='number']:hover,
select:hover,
textarea:hover,
.duel-form-control:hover,
input[type='text']:focus,
input[type='search']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type='password']:focus,
input[type='number']:focus,
select:focus,
textarea:focus,
.duel-form-control:focus {
	outline-color: rgb(52, 60, 100);
	color: #d0d0d0;
}

textarea {
	min-height: 96px;
	height: auto;
	text-indent: 0;
}


.form-block .field-block .field {
	width: 100%;
}

.font-semibold {
	font-weight: 600;
}

.text-b-md {
	font-size: 14px;
	line-height: 21px;
	font-weight: 500;
}

/* Providers as select-like dropdown */
.providers-dropdown {
	position: relative;
	flex: 0 0 auto;
}

.providers-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	min-height: 48px;
	padding: 10px 16px;
	border-radius: 10px;
	border: 1px solid rgb(51, 57, 92);
	background: rgb(38, 44, 80);
	color: rgb(118, 127, 170);
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
}

.providers-title:hover,
.providers-title.active {
	background: rgb(33, 38, 70);
	border-color: rgb(68, 76, 118);
	color: #fff;
}

.providers-dropdown .icon {
	display: none;
}

.providers-dropdown .arrow {
	margin-left: auto;
	width: 12px;
	height: 12px;
	position: relative;
}

.providers-dropdown .arrow::before,
.providers-dropdown .arrow::after {
	content: "";
	position: absolute;
	top: 5px;
	width: 7px;
	height: 2px;
	background: #767faa;
	border-radius: 2px;
	transition: transform .15s ease, background-color .15s ease;
}

.providers-dropdown .arrow::before {
	left: 0;
	transform: rotate(40deg);
}

.providers-dropdown .arrow::after {
	right: 0;
	transform: rotate(-40deg);
}

.providers-title:hover .arrow::before,
.providers-title:hover .arrow::after,
.providers-title.active .arrow::before,
.providers-title.active .arrow::after {
	background: rgb(118, 127, 170) !important;
}

.providers-title.active .arrow::before {
	transform: rotate(-40deg);
}

.providers-title.active .arrow::after {
	transform: rotate(40deg);
}

.providers-dropdown-block {
	margin-top: 8px;
	padding: 8px;
	border-radius: 10px;
	border: 1px solid rgb(51, 57, 92);
	background: rgb(33, 38, 70);
	box-shadow: 0 12px 24px rgba(2, 6, 30, .35);
	min-width: 230px;
}

.providers-dropdown-block .check-text,
.providers-dropdown-block .provmain-text {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 8px;
	background: transparent;
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	text-decoration: none;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
}

.providers-dropdown-block .check-text:hover,
.providers-dropdown-block .check-text.active,
.providers-dropdown-block .provmain-text:hover {
	background: rgb(69, 81, 130);
	color: #fff;
}

.providers-dropdown .check-text__provider {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.providers-dropdown .check-text__provider img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.providers-dropdown-block .check-text__summ {
	margin-left: auto;
	color: rgb(118, 127, 170);
	font-size: 14px;
	font-weight: 600;
}

.providers-title .remove-selected {
	width: 12px;
	height: 12px;
	margin-left: 8px;
	fill: rgb(118, 127, 170);
	opacity: .95;
	transition: fill .15s cubic-bezier(.4, 0, .2, 1), opacity .15s cubic-bezier(.4, 0, .2, 1);
}

.providers-title:hover .remove-selected,
.providers-title.active .remove-selected {
	fill: #fff;
	opacity: 1;
}

.providers-title.active.active .remove-selected {
	fill: #fff;
	opacity: 1;
}

.duel-provider-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.duel-provider-head__back {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(51, 57, 92);
	border-radius: 10px;
	background: rgb(38, 44, 80);
	text-decoration: none;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-provider-head__back:hover {
	background: rgb(33, 38, 70);
	border-color: rgb(68, 76, 118);
}

.duel-provider-head__back img {
	width: 16px;
	height: 16px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(38deg) brightness(101%) contrast(100%);
}

.duel-provider-head__title {
	margin: 0;
	color: #fff;
	font-family: var(--font-main);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
}

.main-title.providers-block {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 12px;
	margin-bottom: 24px;
}

.duel-provider-search {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	align-items: stretch;
	background: #070b23;
	border-radius: 12px;
	height: 48px;
	min-height: 48px;
	padding: 1px;
	box-sizing: border-box;
	overflow: hidden;
}

.duel-provider-search__icon-wrap {
	position: absolute;
	left: 12px;
	top: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	margin: auto 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.duel-provider-search__icon {
	width: 16px;
	height: 16px;
	display: block;
	color: rgb(118, 127, 170);
}

.duel-provider-search__input {
	width: 100%;
	height: 100%;
	min-height: 0;
	text-indent: 28px;
	background: rgb(7, 11, 35) !important;
	border-radius: 11px;
}

label {
	padding: 0 0 4px 0;
	color: rgb(118, 127, 170);
	font-weight: 600;
	font-size: 14px;
}

.btn-blue {
	background: var(--duel-accent-btn-bg) !important;
	border-color: var(--duel-accent-btn-border) !important;
	color: #fff !important;
}

.btn-blue:hover {
	background: var(--duel-accent-btn-bg-hover) !important;
	border-color: var(--duel-accent-btn-border-hover) !important;
	color: #fff !important;
}

.btn.disabled,
.btn[aria-disabled='true'] {
	opacity: .55;
	cursor: not-allowed;
	pointer-events: none;
}

.popup.auth-tabs .field.currency {
	background: rgb(38, 44, 80);
	border: 1px solid rgb(51, 57, 92);
	color: rgb(118, 127, 170);
	border-radius: 10px;
	min-height: 48px;
	padding: 10px 36px 10px 16px;
}

.popup.auth-tabs .field.currency:hover,
.popup.auth-tabs .field.currency:focus {
	background: rgb(33, 38, 70);
	border-color: rgb(68, 76, 118);
	color: #fff;
	outline-color: transparent;
}

.check-block .check-input {
	position: relative;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	margin-top: 0;
	flex: 0 0 20px;
}

.check-block .check-input input[type='checkbox'] {
	position: absolute;
	inset: 0;
	opacity: 0;
	margin: 0;
	cursor: pointer;
}

.check-block .checkbox-style {
	width: 20px;
	height: 20px;
	border: 1px solid rgb(75, 86, 130);
	border-radius: 5px;
	background: rgb(54, 62, 101);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1);
}

.check-block .check-input input[type='checkbox']:checked + .checkbox-style {
	background: var(--duel-accent-btn-bg);
	border-color: var(--duel-accent-btn-border);
	background-image: none;
}

.check-block .check-input input[type='checkbox']:checked + .checkbox-style::before {
	content: "";
	width: 10px;
	height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg) translateY(-1px);
}

.check-block .check-text {
	color: rgb(118, 127, 170);
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
}

.form-block .check-block {
	align-items: flex-start;
}

.popup.auth-tabs .check-block {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.popup.auth-tabs .check-block .check-input {
	margin: 1px 0 0;
	margin-right: 0;
}

.popup.auth-tabs .check-block .checkbox-style {
	border-color: rgb(74, 85, 129);
	background: rgb(58, 66, 104);
}

.popup.auth-tabs .check-block .check-text {
	margin: 0;
	line-height: 21px;
}

.check-block.active .check-text {
	color: #fff;
}

.check-block:has(.check-input input[type='checkbox']:checked) .check-text {
	color: #fff;
}

.check-block.active .check-text a,
.check-block:has(.check-input input[type='checkbox']:checked) .check-text a {
	color: #fff;
}

.check-block .check-text a,
.form-block .check-block a {
	color: rgb(118, 127, 170);
	font-weight: 600;
	text-decoration: underline;
}

.check-block .check-text a:hover,
.form-block .check-block a:hover {
	color: #fff;
}

input[type='checkbox'].checkbox__inner {
	accent-color: var(--duel-accent-btn-bg);
	width: 18px;
	height: 18px;
}

.field-block.password .password-toggle {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: rgb(118, 127, 170);
	padding: 0;
	cursor: pointer;
	opacity: .95;
}

.field-block.password .password-toggle svg {
	width: 16px;
	height: 16px;
	display: block;
}

.field-block.password .password-toggle.is-visible,
.field-block.password .password-toggle:hover {
	color: #fff;
}

.field-block.password .field.pass {
	padding-right: 34px;
}

.popup.auth-tabs .form-block .field-block .error-text {
	margin-top: 8px;
	margin-left: 0;
	color: rgb(255, 147, 176);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.load-more,
.load-more-category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	height: 40px;
	min-height: 40px;
	min-width: 0;
	width: auto !important;
	max-width: max-content;
	flex: 0 0 auto;
	padding: 0 16px;
	margin: 24px auto 0;
	border-radius: 9px;
	border: 1px solid rgb(51, 57, 92);
	background: rgb(52, 60, 100);
	color: #fff;
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	position: relative;
	z-index: 2;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
}

.product > .title,
.product > .text {
	display: none !important;
}

.load-more:hover,
.load-more-category:hover {
	background: rgb(62, 72, 118);
	border-color: rgb(68, 76, 118);
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.duel-provider-head__title {
		font-size: 24px;
	}

	.main-title.providers-block {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.main-title.providers-block .duel-provider-search {
		width: 100%;
		flex: 0 0 auto;
	}

	.main-title.providers-block .providers-dropdown {
		width: 100%;
	}

	.main-title.providers-block .providers-title {
		width: 100%;
		justify-content: space-between;
	}

	.load-more,
	.load-more-category {
		margin-top: 24px;
		height: 36px;
		min-height: 36px;
		padding: 0 14px;
		font-size: 14px;
	}
}



.profile-details__input .input__inner {
	width: 100%;
	height: 42px;
	padding: 10px 17px 14px;
	color: #fff;
}

.profile-contacts__input .input__inner {
	width: 100%;	
}
