@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap";

html.dark {
	--main-bg: #0d1117;
	--second-bg: #12171f;
	--border: #27303e;
	--t-white: #FFFFFF;
	--t-main: #FFFFFF;
	--mc: #1f0b6c;
	--mc-hover: #301696;
	--mc-dark: #0e033c;
	--mc-trans: rgb(31, 11, 108, .15);
	--radius: 15px
}

html {
	--main-bg: #f7f8f9;
	--second-bg: #ebecee;
	--border: #dcdfe3;
	--t-white: #FFFFFF;
	--t-main: #3E4954;
	--mc: #1f0b6c;
	--mc-hover: #301696;
	--mc-dark: #0e033c;
	--mc-trans: rgb(31, 11, 108, .15);
	--radius: 15px
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	letter-spacing: -.015em;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.6;
	min-width: 375px;
	color: var(--t-main);
	background-color: var(--main-bg);
	overflow-x: hidden
}

.light body#outside {
	background: var(--second-bg)
}

a {
	text-decoration: none !important;
	color: var(--t-main)
}

a,
[type="checkbox"] {
	cursor: pointer;
}

a:hover {
	color: var(--mc)
}

li {
	list-style-type: none
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
	-webkit-text-fill-color: #fff !important;
}

button,
input {
	background-color: transparent;
	line-height: 0;
	border: 0;
	padding: 0;
}

button:focus,
input:focus {
	outline: 0 !important;
	border: none !important
}

b,
strong {
	letter-spacing: -.01em;
	font-weight: 600;
	line-height: 1.6;
	transition: all 0.15s ease;
}

.hidden {
	display: none !important
}

::-webkit-scrollbar {
	width: 6px;
	height: 3px
}

::-webkit-scrollbar-track {
	background: transparent
}

::-webkit-scrollbar-thumb {
	background-color: var(--second-bg);
	border-radius: var(--radius)
}

.primary-color {
	color: var(--mc) !important;
	font-weight: 600
}

.alert {
	border-radius: var(--radius);
	border: none !important;
	padding: 15px 20px;
	font-size: 14px;
	line-height: 21px;
}

.alert.alert-success {
	color: #09b797 !important;
	background: #2dfad431 !important;
}

.alert.alert-danger {
	color: #EE5B5B !important;
	background: #ee5b5b41 !important;
}

.alert.alert-secondary {
	background: rgba(135, 135, 135, 0.25);
	color: #9f9f9f;
}

.alert.alert-primary {
	background: rgba(34, 200, 254, 0.25);
	color: #22c8fe;
}

.alert.alert-warning {
	background: rgba(237, 206, 28, 0.12);
	color: #edb51c;
}

.badge {
	background: var(--mc) !important;
	color: #fff !important;
	font-weight: 400;
	font-size: 12px;
	border-radius: 5px !important
}

.h-section {
	padding: 100px 0
}

.h-section.section-50 {
	padding: 50px 0 100px 0
}

.h-section.section-0 {
	padding: 50px 0
}

.c-pointer {
	cursor: pointer;
}

.p-relative {
	position: relative
}

.p-absolute {
	position: absolute
}

.transition {
	transition: all 0.15s ease;
}

.hidden {
	display: none !important
}

.overflow-hidden {
	overflow: hidden
}

input[type="checkbox"] {
	display: none;
}

input[type="checkbox"]+label {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 20px;
	color: #ddd;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.light input[type="checkbox"]+label {
	color: #6c7985
}

input[type="checkbox"]+label:last-child {
	margin-bottom: 0;
}

input[type="checkbox"]+label:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border: 2px solid var(--mc);
	border-radius: 6px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: .6;
	-webkit-transition: all .12s, border-color .08s;
	transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked+label:before {
	width: 10px;
	top: -5px;
	left: 10px;
	border-radius: 0;
	opacity: 1;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 11px 25px;
	align-items: center;
	gap: 10px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.14px;
	white-space: nowrap;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn:hover,
btn:focus {
	color: var(--t-main) !important;
	box-shadow: none !important;
	outline: 0 !important
}

.btn-sm {
	font-size: 14px !important;
	padding: 6px 12px;
}

.btn-rounded {
	background: var(--border);
	border-radius: var(--radius);
}

.btn-border {
	border: 1px solid var(--border) !important;
}

.btn-100 {
	display: block;
	width: 100%;
}

.btn-100.btn-icon {
	display: flex;
}

.btn-dark,
.btn-dark:hover,
.btn-dark:focus {
	background: var(--main-bg) !important
}

.btn-primary {
	background: var(--mc);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
	border-radius: var(--radius)
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--mc);
	border: 1px solid rgba(255, 255, 255, .15) !important;
	color: #fff !important;
	outline: 0 !important
}

.btn-secondary {
	background: radial-gradient(397.75% 81.29% at 109.6% 34.26%, #0d1117 0%, #0e1621 99.99%, #0e131b 100%), #070a0e;
	color: #fff !important;
	border: 1px solid #27303e;
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #27303e;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: radial-gradient(397.75% 81.29% at 109.6% 34.26%, #070a0e 0%, #0e1621 99.99%, #0e131b 100%), #0d1117;
	color: #fff !important;
	border: 1px solid #27303e !important;
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #27303e !important;
}

.btn-details {
	justify-content: space-between;
	background: #ff7500;
	border: 1px solid #ff7500;
	color: #fff;
	border-radius: var(--radius)
}

.btn-details:hover,
.btn-details:focus {
	background: #ff7500;
	color: #fff !important;
	border: 1px solid #ff7500 !important;
	box-shadow: none
}

.btn-details i {
	background: #9f5312;
	width: 32px;
	height: 32px;
	justify-content: center;
	line-height: 32px;
	border-radius: 10px;
}

.btn-danger {
	background: #bb2d3b;
	border: 1px solid #bb2d3b20;
	color: #fff
}

.btn-danger:hover,
.btn-danger:focus {
	background: #e83042;
	color: #fff !important
}

.btn-outline {
	padding: 12px 30px;
	border: 1px solid var(--main-bg);
	color: var(--main-bg) !important;
	background: transparent;
}

.btn-lg {
	font-size: 14px;
	padding: 15px 34px;
	font-weight: 500;
}

.hm-wrapper .btn.btn-outline:hover {
	background: rgba(255, 255, 255, 0.3);
	color: #fff !important
}

.form-group {
	position: relative
}

.form-group label {
	color: var(--t-main);
	width: 100%
}

.form-control,
.form-select {
	letter-spacing: -.01em;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--main-bg);
	color: var(--t-main);
	height: 55px;
	width: 100%
}

.form-control:focus,
.form-select:focus {
	box-shadow: none !important;
	background: var(--main-bg);
	border: 1px solid var(--mc) !important;
	color: var(--t-main)
}

.form-control:disabled,
.form-control[readonly] {
	background-color: var(--main-bg);
}

.form-group label {
	padding-bottom: 5px
}

.form-group .forget-pass {
	position: absolute;
	right: 13px;
	top: 47px;
	background: var(--mc);
	width: 32px;
	height: 32px;
	border-radius: 10px;
	text-align: center;
	line-height: 32px;
}

.form-group .forget-pass:hover {
	background: var(--mc-hover)
}

.form-group .forget-pass a {
	color: #fff
}


select.form-control {
	border: none
}

body.stop-body {
	overflow: hidden;
}

.head-out {
	position: fixed;
	top: 0px;
	background-color: transparent;
	width: 100%;
	z-index: 1030;
}

.head-out.fixed {
	border-bottom: 1px solid var(--border);
	background: rgba(13, 17, 23, .8)
}

.light .head-out.fixed {
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, .8);
}

.home-logo img {
	max-height: 40px
}

.hm-wrapper {
	display: block;
	position: fixed;
	bottom: -1px;
	left: -1px;
	width: calc(100% + 2px);
	border-radius: 0;
	padding: 77px 10px;
	height: 100%;
	transition: 0.14s ease;
	transform: translateY(101%);
	opacity: 0.4;
	background: #191b29;
	z-index: 1
}

.hm-wrapper.active {
	transform: translateY(0);
	opacity: 1;
}

.sm-header {
	display: block;
	padding: 14px 0;
	transition: 0.14s ease;
}

.menu-btn {
	height: 48px;
	width: 48px;
	border-radius: 15px;
	background-color: var(--mc-trans);
	color: var(--mc);
	outline: none;
	border: none;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.b-menu-close {
	height: 48px;
	width: 48px;
	border-radius: 15px;
	background-color: var(--main-bg);
	color: var(--t-main);
	outline: none;
	border: none;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 2000;
}

.home-fade {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-x: hidden;
	pointer-events: none;
}

.home-fade>div {
	position: relative;
	width: 100%;
}

.hf-glow {
	position: absolute;
	width: 1920px;
	height: 725px;
	left: 0;
	top: -1177px;
	background: linear-gradient(180deg, rgba(255, 31, 0, 0), var(--mc));
	-webkit-filter: blur(239.122px);
	filter: blur(239.122px);
	-webkit-transform: rotate(-58.53deg);
	transform: rotate(-58.53deg);
}

.dark-mode.dark {
	display: block
}

.light .dark-mode.light,
.dark-mode.light {
	display: none
}

.dark .dark-mode.dark {
	display: none
}

.dark .dark-mode.light {
	display: block
}

.header-menu {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	gap: 10px;
	padding: 10px 0 20px 0;
}

.header-menu .hm-item {
	position: relative;
	display: flex;
	justify-content: flex-start;
}

.header-menu .hm-item .hm-link {
	font-weight: 400;
	font-size: 23px;
	line-height: 125%;
	color: var(--t-main) !important;
	padding: 7px 0;
	transition: 0.14s ease;
	text-decoration: none;
	display: inline-block;
	text-align: left;
}

.header-menu .hm-item .hm-link:hover {
	opacity: 0.7;
}

.header-menu .hm-item .hm-link.active {
	opacity: 1;
}

.header-menu .hm-item .hm-link.active::before {
	opacity: 1;
}

.home-header {
	margin-top: -86px;
	padding-top: 86px;
	position: relative;
	background: url(https://storage.perfectcdn.com/jev4hh/bslwn68h5xmqcq2o.webp), #0d1117;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.light .home-header {
	margin-top: -86px;
	padding-top: 86px;
	position: relative;
	background: url(https://storage.perfectcdn.com/jev4hh/f5br8q8dapfoe9h6.webp), var(--second-bg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.home-header .home-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .57;
}

.home-header .header-content {
	position: relative;
	z-index: 5;
}

.login-card .btn {
	width: 100%
}

.login-card .form-control .login-card .form-control:focus {
	border-radius: 100px !important;
	border: 1px solid #303c58 !important;
	background: #09101e !important
}

.card {
	border-radius: var(--radius);
	background: var(--second-bg);
	border-color: var(--border)
}

.dark .card {
	border-radius: var(--radius);
	background: radial-gradient(397.75% 81.29% at 109.6% 34.26%, #0d1117 0%, #0e1621 99.99%, #0e131b 100%), #070a0e
}

.card.card-shadow {
	position: relative;
	overflow: hidden
}

.card-shadow::before {
	content: "";
	position: absolute;
	top: 95%;
	right: 80%;
	width: 60%;
	height: 50%;
	transform: translate(100%, 60%) scale(1);
	transition: .14s ease;
	background: var(--mc);
	background: linear-gradient(120deg, var(--mc-trans) 0%, var(--mc) 100%);
	border-radius: 100px;
	filter: blur(60px);
	z-index: 0;
}

.card-heads {
	background: var(--second-bg);
	border: 1px solid var(--border);
	padding: 25px 10px;
	border-radius: var(--radius);
	text-align: center;
	margin-bottom: 15px
}

.card .form-control::placeholder {
	color: var(--border)
}

.body-scroll {
	max-height: 500px;
	overflow-y: auto
}

.card.order-filter {
	position: relative;
	overflow: hidden !important
}

.card.order-filter .card-body::before,
.card.order-filter .card-body::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 10;
}

.card.order-filter .card-body::before {
	-webkit-box-shadow: 10px 0px 70px var(--mc-trans);
	box-shadow: 10px 0px 70px var(--mc-trans);
	left: -40px;
	top: 0;
	width: 40px;
}

.card.order-filter .card-body::after {
	-webkit-box-shadow: 10px 0px 70px rgb(176 176 176);
	box-shadow: 10px 0px 70px rgb(176 176 176);
	right: -40px;
	top: 0;
	width: 40px;
}

.dark .card.order-filter .card-body::before {
	-webkit-box-shadow: 10px 0px 70px var(--mc-trans);
	box-shadow: 10px 0px 70px var(--mc-trans);
}

.dark .card.order-filter .card-body::after {
	-webkit-box-shadow: 10px 0px 70px var(--mc-trans);
	box-shadow: 10px 0px 70px var(--mc-trans);
}

.card.order-filter .card-body {
	padding: .50rem 1.25rem .50rem 1.25rem
}

.home-content h2 {
	font-size: 42px;
	font-weight: 600;
	font-style: normal;
	line-height: 64px;
	letter-spacing: -2px;
	color: var(--t-main)
}

.home-content p {
	font-size: 14px;
	line-height: 20px;
	color: #9eabc5
}

.light .home-content p {
	color: #6c7985
}

.home-content h2 span {
	font-weight: 700;
	position: relative;
	display: inline-block;
	background-image: linear-gradient(-225deg, var(--mc-trans) 0%, var(--mc-hover) 29%, var(--mc) 67%, var(--mc-dark) 100%);
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto;
	color: #fff;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 3s linear infinite;
	display: inline-block;
}

.dark-mode i {
	color: #133bbe;
}

.dark .dark-mode i {
	color: #ffc107
}

.dark-mode i {
	font-size: 18px;
	color: #133bbe;
	line-height: 18px
}

.floating {
	-webkit-animation-name: floating;
	animation-name: floating;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	margin-top: 5px;
	box-shadow: none !important
}

.brands-area {
	width: 100%;
	margin: -85px auto 0;
	z-index: 2;
	position: relative;
	display: flex;
	align-items: center;
	background: linear-gradient(270deg, rgba(4, 10, 24, 0) 0%, #0d1117 23.56%, #0d1117 51.12%, #0d1117 78.68%, rgba(4, 10, 24, 0) 100.23%);
	padding: 25px;
	height: 100px;
	overflow: hidden
}

.light .brands-area {
	background: linear-gradient(270deg, rgba(4, 10, 24, 0) 0%, var(--second-bg) 23.56%, var(--second-bg) 51.12%, var(--second-bg) 78.68%, rgba(4, 10, 24, 0) 100.23%)
}

.brands-area::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	height: 1px;
	max-width: 1000px;
	width: 100%;
	background: linear-gradient(90deg, var(--main-bg) 0%, var(--mc) 53%, var(--main-bg) 100%);
	z-index: 1
}

.brands-top-active {
	display: flex;
	padding-left: 20px;
	padding-top: 20px;
	gap: 20px;
	overflow: hidden;
	position: relative;
}

.brands-top-active::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100px;
	height: 100%;
	background: linear-gradient(90deg, #0d1117 0%, rgba(4, 10, 24, 0) 100%);
	z-index: 5
}

.light .brands-top-active::before {
	background: linear-gradient(90deg, var(--second-bg) 0%, rgba(4, 10, 24, 0) 100%);
}

.brands-top-active::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100px;
	height: 100%;
	background: linear-gradient(90deg, rgba(4, 10, 24, 0) 0% 0%, #0d1117 100%);
	z-index: 5
}

.light .brands-top-active::after {
	background: linear-gradient(90deg, rgba(4, 10, 24, 0) 0% 0%, var(--second-bg) 100%)
}

.brands-item {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgba(56, 75, 110, 0.2) 0%, rgba(5, 9, 16, 0.2) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
	border: 1px solid var(--border);
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #000000;
	border-radius: 15px;
	display: flex;
	align-items: center;
	margin: 0 10px;
	padding: 20px 15px;
	transition: 300ms all;
	justify-content: center;
	min-width: 75px;
	z-index: 1;
	white-space: nowrap;
	line-height: 1px;
	position: relative;
	user-select: none;
	pointer-events: none;
}

.light .brands-item {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgb(255 255 255 / 20%) 0%, rgb(207 215 228 / 20%) 100%), linear-gradient(0deg, #e7e8e9 0%, #ffffff 100%), var(--second-bg);
	box-shadow: 0px 1.182px 2.365px 0px rgb(255 255 255), 0px 0px 0px 1.182px #faebeb;
}

.brands-item span {
	font-size: 16px
}

.brands-item .brands-icon {
	font-size: 32px;
}

.fab.fa-instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-twitter {
	background: #1da1f2;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

.fab.fa-youtube {
	background: #ff0042;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-facebook-f {
	background: #207eff;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-soundcloud {
	background: #ff5836;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-spotify {
	background: #1DB954;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-tiktok {
	background: #ff0042;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-twitch {
	background: #4b367c;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fa-telegram-plane {
	background: #2b9fd2;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fa-kickstarter {
	background: #53fc18;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-snapchat-ghost {
	background: #FFFC00;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-discord {
	background: #1090F3;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-reddit-alien {
	background: #F43708;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-linkedin-in {
	background: #0077b0;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-steam {
	background: #00adee;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-pinterest {
	background: #ff5858;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fab.fa-tumblr {
	background: #1c3764;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/* APP */

.main-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: var(--main-bg);
	transition: opacity .15s linear;
	opacity: .8
}

.tooltip {
	z-index: 5000
}

.tooltip-inner {
	color: #fff;
	background: #ff7603;
	border: none;
	font-size: 13px;
	font-weight: 500;
	border-radius: 7px;
	padding: 3px 7px;
	-webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	opacity: 1
}

.tooltip.bs-tooltip-top .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before {
	border: none
}

.rotate-360 {
	animation: rotate 10s linear infinite;
}

.dark .tooltip-inner {
	-webkit-box-shadow: 0 5px 30px rgba(255, 255, 255, 0.1);
	box-shadow: 0 5px 30px rgba(255, 255, 255, 0.1);
}

.modal-open .modal {
	backdrop-filter: blur(10px) !important;
	-webkit-backdrop-filter: blur(10px) !important;
}

.modal-content {
	border-radius: var(--radius);
	background: radial-gradient(397.75% 81.29% at 109.6% 34.26%, #0d1117 0%, #0e1621 99.99%, #0e131b 100%), #070a0e;
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #1a2433;
	border-radius: var(--radius);
}

.light .modal-content {
	background: var(--main-bg);
	box-shadow: 0px 1.182px 2.365px 0px var(--second-bg), 0px 0px 0px 1.182px var(--second-bg)
}

.modal-header {
	border-color: var(--border);
}

.modal-header h4 {
	font-size: 15px
}

.modal-header .close {
	color: var(--border);
	opacity: .7;
	text-shadow: none
}

.modal-body {
	font-weight: 400
}

.modal-footer {
	border-color: var(--border)
}

.app-body,
.home-body {
	background-color: var(--main-bg)
}

.app {
	background: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
	min-width: 100%;
	overflow: hidden
}

.dark .app {
	background: url(https://storage.perfectcdn.com/jev4hh/bslwn68h5xmqcq2o.webp), #0d1117;
}

.app .card.no-border {
	border: none;
}

.app .btn.btn-primary {
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 100%
}

.card.card-addfunds {
	display: flex;
	padding: 10px;
	align-items: center;
	gap: 15px;
	flex-direction: row;
}

.card.card-addfunds>.fal {
	color: var(--mc);
	padding: 10px;
	border-radius: 8px;
	background: var(--mc-trans)
}

.card.card-addfunds .btn {
	width: max-content;
	margin-left: auto;
	border-radius: 10px
}

.sbar-btn {
	line-height: 26px;
	font-size: 18px;
	padding: 12px 15px;
	width: 50px;
	height: 50px;
	background: var(--main-bg);
	border-radius: var(--radius);
	color: var(--t-main)
}

.sbar-btn.sbar-logout {
	background: #dc3545
}

.sbar-btn .avatar {
	height: 26px;
}

.sbar-btn.sbar-lang {
	padding: 5px;
}

.sbar-btn .flag-icon {
	border-radius: 100px;
	font-size: 32px;
}

.sidebar {
	width: 270px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	top: 15px;
	bottom: 15px;
	left: 15px;
	border-radius: var(--radius);
	z-index: 4000;
	position: fixed;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-transition: .2s ease;
	transition: .2s ease;
	overflow: hidden
}

.sidebar::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 5%;
	width: 90%;
	height: 50%;
	transform: translate(100%, -60%) scale(1);
	transition: .14s ease;
	background: #2c3748;
	background: linear-gradient(120deg, rgb(13 17 23) 0%, #2c3748 100%);
	border-radius: 100px;
	filter: blur(60px);
	z-index: 0;
}

.light .sidebar::before {
	background: linear-gradient(120deg, rgb(237 239 242) 0%, #d3cfcf 100%)
}

.sidebar .sidebar-dismiss {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	background: rgba(238, 91, 91, 0.05);
	color: #EE5B5B;
	border-radius: var(--radius);
	padding: 0 !important;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}


#up-header.active {
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	position: fixed;
	left: 300px;
	z-index: 1019;
	right: 15px;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease
}

.sidebar-active #up-header.active {
	left: 110px
}

.sp-box {
	padding: 13px 10px;
	border-color: #1b1e25;
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, var(--mc-trans) 0%, rgb(240 240 240 / 20%) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 10px 0 25px 0
}

.dark .sp-box {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgba(56, 75, 110, 0.2) 0%, rgba(5, 9, 16, 0.2) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
}

.sidebar-header {
	padding: 15px 0 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.sidebar-header .logo-big {
	height: 50px
}

.sidebar-profile {
	position: relative;
	padding: 0 15px;
	width: 100%;
	color: var(--t-main)
}

.sidebar-profile .verified {
	margin-top: -1px;
	color: #009ef7
}

.sidebar-profile .verified svg {
	margin-top: -3px
}

.sidebar-profile .power-off {
	background: #ff000030;
	padding: 7px;
	border-radius: 100px;
	line-height: 14px;
	color: #ff0000
}

.sidebar-profile .power-off:hover {
	background: #ff000050
}

.sidebar-user {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
	font-size: 14px;
	font-weight: 400
}

.sidebar-user .user-status {
	font-size: 12px;
	color: var(--mc)
}

.sp-wrapper {
	display: flex;
	align-items: center;
	gap: 10px
}

.sp-wrapper .sidebar-text {
	width: 36px;
	height: 36px;
	line-height: 36px;
	background: var(--mc);
	color: var(--t-white);
	border-radius: 12px;
	font-size: 26px;
}

.sidebar-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow-y: auto;
}

.sidebar-menu {
	list-style: none;
	margin: 0px;
	padding: 10px 15px;
}

.sidebar-menu .sidebar-menu-item {
	position: relative;
}

.sidebar-menu .sidebar-menu-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 20px;
	color: var(--t-main);
	margin-bottom: 10px;
	-webkit-transition: 0.14s ease;
	transition: 0.14s ease;
	border-radius: var(--radius)
}

.sidebar-menu .sidebar-menu-link.active {
	background: var(--mc);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff !important
}

.sidebar-menu .sidebar-menu-link.active:hover {
	background: var(--mc);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff !important
}

.sidebar-menu .sidebar-menu-link:hover {
	background: var(--second-bg);
	color: var(--t-main) !important;
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #27303e;
}

.sidebar-active .sidebar-menu .sidebar-menu-link {
	text-align: center
}

.light .sidebar-menu .sidebar-menu-link:hover {
	box-shadow: 0px 1.182px 2.365px 0px var(--border), 0px 0px 0px 1.182px var(--border);
}

.sidebar-menu .sidebar-menu-link .sidebar-menu-icon {
	line-height: 20px;
	font-size: 16px;
}

.sidebar-menu .sidebar-menu-link .sidebar-menu-text {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
}

.header {
	background: var(--second-bg);
	border-radius: var(--radius);
	padding: 15px;
	z-index: 1019;
	right: 0px
}

.dark .header {
	background: rgb(14, 21, 31, .7)
}

.header .row {
	min-height: 50px;
}

.page {
	padding: 15px 0px 40px 285px;
}

.header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.hd-btn {
	display: none;
}

.mobHid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.service-name {
	background: var(--mc);
	border-radius: 100px;
	padding: 10px;
	text-align: center;
	font-size: 18px;
	color: var(--t-white);
	margin-bottom: 15px
}

.panel-body {
	background: var(--main-bg);
	border-radius: var(--radius);
	font-size: 13px
}

.switcher {
	height: 50px;
	border-radius: var(--radius);
	background-color: var(--main-bg);
	padding: 5px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 8px;
	position: relative;
}

.switcher .active-bg {
	content: "";
	position: absolute;
	background: radial-gradient(397.75% 81.29% at 109.6% 34.26%, #01993e 0%, #038234 99.99%, #29cb69 100%), #11c456;
	box-shadow: 0px 1.182px 2.365px 0px rgb(49 155 91), 0px 0px 0px 1.182px #23a055;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: var(--radius);
	left: 5px;
	top: 5px;
	width: 40px;
	height: 40px;
	z-index: 1;
	-webkit-transition: 0.14s ease;
	transition: 0.14s ease;
}

.switcher .switcher-item {
	position: relative;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: transparent;
	height: 40px;
	width: 40px;
	border: 1px solid transparent;
	outline: none;
	font-size: 17px;
	line-height: 17px;
	color: var(--t-main);
	-webkit-transition: 0.14s ease;
	border-radius: var(--radius);
	transition: 0.14s ease;
}

.switcher .switcher-item.active {
	background: var(--mc);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 12px;
	color: #fff
}

.pt-info {
	margin-top: 30px;
}

.pagination .page-item {
	margin: 0 2px
}

.pagination .page-item.active .page-link::before {
	content: "";
	bottom: 0;
	height: 3px;
	width: 14px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-color: #253cff
}

.pagination .page-item:first-child {
	border-right: 1px solid var(--border-color)
}

.pagination .page-item:first-child .page-link {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	font-weight: 400
}

.pagination .page-item:last-child {
	border-left: 1px solid var(--border-color)
}

.pagination .page-item:last-child .page-link {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	font-weight: 400
}

.pagination .page-item .page-link {
	background: var(--second-bg);
	border: none;
	margin: 0;
	height: 50px;
	padding: 0;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 15;
	line-height: 18px;
	color: var(--t-main) !important;
	position: relative;
}

.pagination .page-item .page-link:focus {
	z-index: 2
}

.pagination .page-item.active .page-link {
	background-color: var(--mc);
	color: var(--t-white);
}

.pagination .page-item .page-link .far {
	font-size: 12px
}

.blog-txt {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nwo-categories .swiper-slide {
	width: auto !important;
}

.nwo-categories .swiper-wrapper {
	position: relative;
}

.dark .nwo-categories .swiper-wrapper::before,
.dark .nwo-categories .swiper-wrapper::after {
	-webkit-box-shadow: 10px 0px 70px rgb(153, 153, 153, 1);
	box-shadow: 10px 0px 70px rgba(153, 153, 153, 1);
}

.nwo-categories .swiper-wrapper {
	justify-content: center
}

.nwo-cat-btn {
	display: flex;
	align-items: center;
	gap: 15px;
	background: var(--main-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 15px;
	justify-content: center;
	width: 45px;
	height: 45px
}

.nwo-cat-btn:hover {
	background: var(--mc-trans);
	border: 1px solid var(--mc);
}

.nwo-cat-btn .g-ticon {
	color: var(--t-main);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nwo-cat-btn:hover .g-ticon {
	color: var(--mc)
}

.service-search {
	height: 52px;
	position: relative;
}

.service-search .btn-primary {
	border-radius: 12px
}

.service-search .textbox,
.service-search .textbox:focus {
	width: 100%;
	height: 52px;
	background-color: var(--second-bg);
	outline: none;
	color: var(--t-main);
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	border-radius: var(--radius);
	padding: 0 25px;
	border: 1px solid var(--border) !important
}

.service-search .input-group-btn {
	position: absolute;
	right: 4px;
	top: 3px
}

.service-category {
	margin-bottom: 25px
}

.service-wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background: var(--second-bg);
	border: 1px solid var(--border);
	box-sizing: border-box;
	border-radius: var(--radius);
	font-size: 13px
}

.logo-small {
	display: none
}

.service-content {
	flex: 0 0 auto;
	width: 100%;
	position: relative;
}

.service-content.service-count {
	flex: 0 0 auto;
	width: 100%;
	position: relative;
	box-sizing: border-box;
	font-size: 13px
}

.dropdown-menu {
	background: var(--main-bg);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	overflow: hidden
}

.dropdown-menu li a:hover {
	background: var(--second-bg);
	color: var(--mc)
}

.dropdown-menu li a {
	color: var(--t-main)
}

#notify {
	visibility: hidden;
	width: 100%;
	background: var(--mc);
	border-bottom: 1px solid var(--mc-dark);
	color: var(--t-white);
	text-align: center;
	padding: 30px 16px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center
}

#notify.show i {
	background: var(--t-white);
	border-radius: 10px;
	line-height: 1;
	display: flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
}

#notify.show {
	visibility: visible;
	-webkit-animation: .5s fadein, .5s 2.5s fadeout;
	animation: .5s fadein, .5s 2.5s fadeout;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center
}

#notify.show i {
	color: var(--mc);
	flex-direction: column
}

#notify #notifyText {
	display: flex;
	align-items: center;
	gap: 7px
}


textarea.form-control {
	border-radius: var(--radius)
}

.neworder-group {
	position: relative
}

.neworder-group input {
	padding-left: 50px
}

.neworder-group i {
	position: absolute;
	left: 20px;
	top: 20px
}

.dash-widget {
	height: 100%;
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	overflow: hidden
}

.dw-item {
	display: flex;
	flex-direction: row;
	gap: 15px;
	align-items: center
}

.dw-first {
	display: flex;
	flex-direction: column;
	gap: 0
}

.dw-icon {
	background: var(--mc);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff !important;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	text-align: center;
	font-size: 18px;
	line-height: 36px
}

.dw-title {
	font-size: 14px;
	color: #9eabc5
}

.light .dw-title {
	color: #3e4954
}

.dw-value {
	color: var(--t-main);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	letter-spacing: -0.066px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 10px
}

.dw-value a {
	color: #ff7603;
	font-size: 18px
}

.service-cat-side {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 30px;
	background: var(--mc);
	background-repeat: no-repeat;
	background-position: right center;
	border-radius: 15px;
	margin-bottom: 14px
}

.service-item {
	padding: 10px;
	box-sizing: border-box;
	font-size: 14px;
	position: relative;
	background: var(--second-bg);
	border-radius: var(--radius);
	margin-bottom: 10px;
	border: 1px solid var(--border)
}

.services-item-top {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--border);
	padding-bottom: 10px
}

.sit-first {
	display: flex;
	align-items: center;
	gap: 7px
}

.sit-first .services-id {
	background: var(--border);
	width: 60px;
	height: 30px;
	line-height: 30px;
	border-radius: 8px;
	text-align: center;
	color: var(--t-main)
}

.sit-last {
	display: flex;
	align-items: center;
	gap: 7px
}

.sit-last .services-rate {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #09b797;
	background: #2dfad431;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 8px;
	padding: 0 10px
}

.sit-last .btn-favorite .fas.fa-star {
	width: 40px;
	height: 30px;
	line-height: 30px;
	background: var(--mc);
	text-align: center;
	border-radius: 8px;
	color: var(--mc-dark)
}

.sit-last .btn-favorite .far.fa-star {
	width: 40px;
	height: 30px;
	line-height: 30px;
	background: var(--border);
	text-align: center;
	border-radius: 8px;
	color: var(--t-main)
}

.services-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 7px;
	font-size: 13px
}

.services-item-bottom .sib-first {
	display: flex;
	align-items: center;
	gap: 7px
}

.services-item-bottom .sib-first .min {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #22c8fe;
	background: #22c8fe31;
	padding: 5px 10px;
	border-radius: 8px
}

.services-item-bottom .sib-first .max {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #dc3545;
	background: #ee5b5b41;
	padding: 5px 10px;
	border-radius: 8px
}

.services-item-bottom .sib-first .avg {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--t-main);
	background: var(--border);
	padding: 5px 10px;
	border-radius: 8px
}

.services-item-bottom .sib-first .avg i {
	-webkit-animation: 1s linear infinite rotation;
	animation: 1s linear infinite rotation
}

.services-item-bottom .sib-last {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 7px
}

.services-item-bottom .sib-last .btn {
	font-size: 14px;
	padding: 0 15px;
	height: 35px;
	line-height: 35px;
}

.services-item-bottom .sib-last .btn.btn-primary {
	border-radius: 8px
}

.s-count {
	background: var(--mc-dark);
	padding: 2px 10px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 400;
	color: var(--t-white)
}

.service-cat-side .service-cat-header {
	font-weight: 500;
	font-size: 15px;
	line-height: 23px;
	color: #fff;
	margin-bottom: 0
}

.nav {
	position: relative;
	display: inline-flex;
	flex-wrap: nowrap;
	gap: 2px;
	max-width: 100%;
	overflow-x: auto;
	align-items: center;
	list-style: none;
	padding: 9px;
	margin: 0 0 15px 0;
	border-radius: var(--radius);
	background: var(--second-bg);
	box-shadow: 0px 1.182px 2.365px 0px rgb(247 248 249), 0px 0px 0px 1.182px #f7f8f9;
	color: var(--t-main) !important;
	padding: 9px;
	width: 100%
}

.dark .nav {
	background: radial-gradient(397.75% 81.29% at 109.6% 34.26%, #0d1117 0%, #0e1621 99.99%, #0e131b 100%), #070a0e;
	color: #fff !important;
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #27303e;
}

.nav-item {
	width: 100%
}

.nav-link {
	cursor: pointer;
	display: flex;
	padding: 10px 14px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	gap: 10px;
	outline: none;
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, 0);
	background-color: rgba(0, 0, 0, 0);
	color: var(--t-main) !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: -0.3px;
	white-space: nowrap;
}

.nav-link:hover {
	background: #00000030
}

.light .nav-link:hover {
	background: var(--main-bg)
}

.light .nav-link.active {
	border-radius: 11px;
	background: var(--mc);
	border: 1px solid rgba(255, 255, 255, .15);
	color: var(--t-white) !important
}

.nav-link.active {
	border-radius: 11px;
	background: var(--mc);
	border: 1px solid rgba(255, 255, 255, .15);
	color: var(--t-white) !important
}

.nav-link .icon {
	font-size: 18px
}


.tab-content>.active {
	-webkit-animation: key-animation .3s ease-in-out;
	animation: key-animation .3s ease-in-out
}

.select2.select2-container .select2-selection {
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: 12px 24px;
	color: var(--t-main);
	display: flex;
	background: var(--main-bg);
	outline: 0;
	transition: .15s ease-in-out;
	align-items: center;
	border: 1px solid var(--border);
	width: 100%
}

.select2.select2-container .select2-selection .select2-selection__rendered {
	line-height: 32px;
	padding-right: 33px;
	color: var(--t-main);
	border: 0;
	width: 100%;
	display: flex
}

.select2.select2-container .select2-selection .select2-selection__arrow {
	-webkit-border-radius: 0 var(--radius) var(--radius) 0;
	-moz-border-radius: 0 var(--radius) var(--radius) 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	height: 100%;
	width: 26px
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
	background: var(--main-bg);
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
	border-radius: var(--radius);
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
	-webkit-border-radius: 0 var(--radius) 0 0;
	-moz-border-radius: 0 var(--radius) 0 0
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
	border: 0 solid #34495e
}

.select2.select2-container.select2-container--focus .select2-selection {
	border: 1px solid var(--border);
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
	border-radius: var(--radius);
	display: flex;
	align-items: center
}

.select2-container .select2-dropdown {
	-webkit-border-radius: var(--radius) !important;
	-moz-border-radius: var(--radius) !important;
	border-radius: var(--radius) !important;
	background: var(--main-bg);
	border: 0;
	margin-top: 8px !important;
	overflow: hidden
}

.select2-container .select2-dropdown .select2-results ul {
	background: 0 0;
	color: var(--t-main);
	display: flex;
	flex-direction: column;
	max-height: 286px;
	padding: 5px 0
}

.select2-results__option[aria-selected] {
	cursor: pointer;
	transition: .2s;
	padding: 6px;
	font-size: 12px
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: var(--second-bg) !important;
	padding: 6px
}

.select2-container .select2-dropdown .select2-results ul::-webkit-scrollbar {
	width: 6px
}

.select2-container .select2-dropdown .select2-results ul::-webkit-scrollbar-track {
	background: 0
}

.select2-container .select2-dropdown .select2-results ul::-webkit-scrollbar-thumb {
	background-color: var(--border);
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
	border-radius: var(--radius)
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
	background-color: var(--mc-trans) !important;
	border-color: var(--mc);
	transition: .2s;
	color: var(--t-main)
}

.select2-results__option {
	color: var(--t-main) !important;
	font-size: 14px !important;
	border-bottom: 1px solid var(--border)
}

.select2-results__option:last-child {
	border: none
}

.select2-results__option a {
	color: var(--t-main) !important;
	padding: 3px !important
}

.select2-results__option a:hover {
	background: transparent !important
}

.select2-container--open .select2-dropdown--below {
	border: 1px solid var(--border);
	-webkit-box-shadow: 0 5px 35px 0 5px 35px rgb(1, 153, 62, .15);
	box-shadow: 0 5px 35px 0 5px 35px rgb(1, 153, 62, .15);
}

.select2-search--dropdown {
	display: none !important
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
	-webkit-border-radius: var(--radius) !important;
	-moz-border-radius: var(--radius) !important;
	border-radius: var(--radius) !important
}

.select2-results__option:hover {
	background-color: var(--border) !important;
	transition: .2s;
	color: var(--t-main);
	border-radius: 0;
}

.select2-container .select2-dropdown .select2-results {
	background: 0 0;
	color: var(--t-main);
	display: flex;
	flex-direction: column;
	max-height: 286px;
	padding: 5px 0
}

.select2-container {
	width: 100% !important
}

.select2-search__field {
	border-radius: 8px;
	height: 42px;
}

.select2-container .select2-selection__id {
	min-width: 40px !important;
	margin-right: 5px
}

.select2-search__field-icon span {
	color: var(--mc)
}

.input-wrapper__prepend {
	color: var(--t-main)
}

.input-wrapper__append {
	color: #ff0000
}

.lang-wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	width: 100%
}

.lang-wrapper .lang-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--second-bg);
	border: 1px solid var(--border);
	border-radius: 100px;
	width: 100%;
	padding: 13px 10px;
	transition: 300ms all;
	color: var(--t-main)
}

.lang-wrapper .lang-item i {
	font-size: 24px;
	border-radius: 100px
}

.lang-wrapper .lang-item:hover {
	border-color: var(--mc)
}

.lang-wrapper .lang-item.active {
	background: var(--mc-trans);
	border-color: var(--mc)
}

.currency-wrapper {
	display: grid;
	align-items: center;
	gap: 10px;
	width: 100%;
	grid-template-columns: repeat(2, 1fr)
}

.currency-wrapper .currency-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--second-bg);
	border: 1px solid var(--border);
	border-radius: 100px;
	width: 100%;
	padding: 13px 10px;
	transition: 300ms all;
	color: #fff
}

.currency-wrapper .currency-item .cSymbol {
	background: var(--mc);
	width: 50px;
	text-align: center;
	border-radius: 100px
}

.currency-wrapper .currency-item:hover {
	border-color: var(--mc)
}

.currency-wrapper .currency-item.active {
	border-color: var(--mc)
}

.dd-custom .dropdown-menu {
	right: 15px !important;
	left: 15px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	transform: translate3d(0px, 80px, 0px) !important;
	background: var(--main-bg);
	color: #fff !important;
	border: 1px solid var(--border);
	box-shadow: 0px 0.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 0.182px #27303e;
	border-radius: var(--radius);
	padding: 0;
	overflow: hidden;
	transition: 150ms all
}

.dd-custom .dropdown-menu {
	margin-top: 0
}

.light .dd-custom .dropdown-menu {
	background: var(--main-bg);
	color: #fff !important;
	border: 1px solid var(--second-bg);
	box-shadow: 0px 0.182px 2.365px 0px var(--second-bg), 0px 0px 0px 0.182px var(--second-bg);
}

.dd-custom .dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--t-main);
	padding: 10px 15px;
	border-bottom: 1px solid var(--border);
	font-size: 14px
}

.dd-custom .dropdown-item:last-child {
	border: none
}

.dd-custom .dropdown-item:hover,
.dd-custom .dropdown-item:focus {
	background: rgba(255, 255, 255, .03)
}

.alert strong {
	font-weight: 600
}

.alert p {
	margin-bottom: 5px
}

.sb-wrapper {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 15px
}

.service-badge {
	display: flex;
	align-items: center;
	gap: 5px;
	border: 1px solid var(--border);
	background: var(--second-bg);
	color: var(--t-main);
	padding: 5px;
	border-radius: 10px
}

.service-badge .sb-icon {
	width: 20px
}

.panel-body.service-desc {
	background: var(--main-bg);
	border-radius: var(--radius);
	font-size: 13px;
	padding: 10px;
	margin-bottom: 5px;
	position: relative;
	overflow: hidden
}

.panel-body.service-desc:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 5%;
	width: 90%;
	height: 50%;
	transform: translate(100%, -60%) scale(1);
	transition: .14s ease;
	background: rgb(40, 203, 105);
	background: linear-gradient(150deg, rgba(40, 203, 105, 1) 0%, rgb(214 45 45) 100%);
	border-radius: 100px;
	filter: blur(100px);
	z-index: 0;
}


.section-top {
	display: flex;
	justify-content: center;
	text-align: center
}

.section-header {
	display: flex;
	align-items: center;
	max-width: 600px;
	width: 100%;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px
}

.section-header h5 {
	font-size: 24px
}

.section-header p {
	color: #9eabc5
}

.sh-label {
	border-radius: var(--radius);
	display: inline-flex;
	padding: 1px;
	overflow: hidden;
	position: relative;
	background: radial-gradient(77.87% 74.89% at 99.57% 106.76%, var(--second-bg) 0%, rgba(6, 11, 26, 0.2) 100%), var(--second-bg);
}

.sh-content {
	position: relative;
	z-index: 10;
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgba(56, 75, 110, 0.2) 0%, rgba(5, 9, 16, 0.2) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
	border-radius: var(--radius);
	padding: 6px 18px 6px 6px;
	display: flex;
	align-items: center;
	gap: 16px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 25px;
	letter-spacing: -0.28px;
	text-align: center
}

.sh-content>.icon {
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .1);
	background: var(--mc);
	padding: 3px;
	color: #fff;
	width: 32px;
	height: 32px;
	font-size: 18px;
	margin: 0
}

.sh-glow {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: var(--mc);
	filter: blur(20px);
	-webkit-filter: blur(20px);
	position: absolute;
	z-index: 5;
	transform: translate(-50%, -50%);
}

.home-how-use .card {
	padding: 30px 30px 5px 30px;
	position: relative;
	overflow: hidden;
	width: 100%;
	cursor: pointer;
	transition: 500ms all
}

.home-how-use .card:hover {
	-webkit-transform: translateY(-1rem);
	transform: translateY(-1rem);
	transition: 500ms all
}

.home-how-use .card:hover .icon {
	opacity: 1
}

.home-how-use .card .icon {
	position: absolute;
	right: -20px;
	top: -20px;
	min-width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-right: 10px;
	padding-top: 10px;
	background: var(--mc);
	border-radius: 20px;
	font-size: 25px;
	color: #fff;
	font-weight: 700;
	z-index: 2;
	opacity: .3;
	transition: 250ms all
}

.home-how-use .card .icon::before {
	content: "";
	position: absolute;
	left: -7px;
	top: -7px;
	right: -7px;
	bottom: -7px;
	border-radius: 25px;
	background: var(--mc-trans);
	z-index: -1;
}

.home-how-use .card .title {
	font-size: 18px;
	font-weight: 600;
	color: var(--t-main);
	margin-bottom: 5px;
}

.home-how-use .card p {
	color: #9eabc5;
	font-size: 14px;
}

.c-reviews .slick-track {
	display: flex;
	align-items: center;
	gap: 30px
}

.c-reviews .review-item {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgba(56, 75, 110, 0.2) 0%, rgba(5, 9, 16, 0.2) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
	border: 1px solid var(--border);
	padding: 20px 30px 10px 30px;
	border-radius: 20px;
	position: relative;
	max-width: 600px;
	cursor: pointer
}

.c-reviews .review-item .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 5px;
	color: var(--t-main);
	border-bottom: 1px solid var(--border)
}

.c-reviews .review-item .head .r-user {
	display: flex;
	align-items: center;
	gap: 10px
}

.c-reviews .review-item .head .r-user .avatar img {
	width: 45px;
	height: 45px;
	border-radius: 50%
}

.c-reviews .review-item .head .r-user .name {
	font-weight: 600;
	font-size: 16px;
}

.c-reviews .review-item .head .r-user .name span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: var(--mc);
}

.c-reviews .review-item .head .rate {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 18px;
	color: var(--mc);
}

.c-reviews .review-item .text p {
	font-weight: 300;
	color: var(--t-main)
}

.c-reviews .fa-chevron-left,
.c-reviews .fa-chevron-right {
	position: absolute;
	background: var(--mc-trans);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: none;
	color: var(--mc);
	font-size: 26px;
	text-align: center;
	transition: 250ms all
}

.c-reviews .fa-chevron-left:hover,
.c-reviews .fa-chevron-right:hover {
	background: var(--mc-hover);
	color: var(--t-white);
	transition: 250ms all
}

.c-reviews .fa-chevron-left {
	top: -75px;
	right: 100px
}

.c-reviews .fa-chevron-right {
	top: -75px;
	right: 50px
}

.payments-area {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 30px
}

.p-cards {
	position: relative;
	z-index: 10;
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgba(56, 75, 110, 0.2) 0%, rgba(5, 9, 16, 0.2) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 25px;
	letter-spacing: -0.28px;
	text-align: center;
	height: 75px;
	border: 1px solid var(--border);
	transition: 500ms all;
	cursor: pointer
}

.p-cards:hover {
	transform: translateY(-1rem);
	transition: 500ms all;
}

.p-cards img {
	max-height: 50px
}


.home-faq .hf-item {
	position: relative;
	cursor: pointer;
	background: transparent;
	padding: 13px 20px;
	-webkit-transition: .2s ease;
	transition: .2s ease;
	margin-bottom: 14px;
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgba(56, 75, 110, 0.2) 0%, rgba(5, 9, 16, 0.2) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
	border: 1px solid var(--border);
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #000000;
	border-radius: 15px;
}

.home-faq .hf-item h4 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 0
}

.home-faq .hf-item .fa-angle-up {
	display: none;
}

.home-faq .hf-item .hf-item-head {
	font-size: 14px;
	font-weight: 400;
	color: var(--t-main);
	display: flex;
	align-items: center;
	justify-content: space-between
}

.home-faq .hf-item.active {
	border-radius: 15px
}

.home-faq .hf-item.active .fa-angle-up {
	display: block;
}

.home-faq .hf-item.active .fa-angle-down {
	display: none;
}

.home-faq .hf-item .hf-item-head .hf-arrow {
	color: var(--t-main);
	font-size: 16px;
	height: 30px;
	line-height: 30px;
}

.home-faq .hf-item .hf-item-content {
	display: none;
	padding-top: 12px;
	color: var(--t-main);
	font-size: 14px;
	line-height: 170%;
	padding-bottom: 8px;
}

footer .footer-top {
	background: var(--mc);
	padding: 15px 0;
	position: relative
}

footer .footer-top::after {
	content: "";
	position: absolute;
	left: calc(50% - 20px);
	top: -10px;
	width: 40px;
	height: 15px;
	background: var(--mc);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 2;
	transform: rotateX(180deg);
}

footer .footer-top .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .footer-top .info {
	display: flex;
	align-items: center;
	gap: 15px;
}

footer .footer-top .info .text {
	color: #dfd;
	font-size: 15px;
	border-left: 1px dashed var(--mc-hover);
	padding-left: 15px
}

footer .footer-top .info .icon i {
	display: flex;
	font-size: 52px;
	color: var(--mc-hover)
}

footer .footer-top .info .text span {
	display: block;
	font-weight: 600;
	font-size: 24px;
	color: #fff;
}

.footer-top .action {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-top .action> :is(a, button) {
	color: #fff;
	background: var(--mc-dark);
	font-size: 20px;
	position: relative;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	transition: 0.2s;
	cursor: pointer;
}

.footer-top .action> :is(a, button):hover {
	background: #fff;
	border: 2px solid #fff;
	color: var(--mc)
}

.footer-top .action .fab.fa-instagram,
.footer-top .action .fab.fa-twitter,
.footer-top .action .fab.fa-telegram-plane {
	background: unset;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: unset;
}

footer .footer-content {
	padding: 30px 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .footer-content .footer-links {
	display: flex;
	align-items: center
}

footer .footer-content .footer-links a {
	border-right: 1px dashed var(--border);
	padding: 0 15px
}

footer .footer-content .footer-links a:last-child {
	border: none;
	padding-right: 0
}

footer .footer-content .action {
	display: flex;
	align-items: center;
}

footer .footer-content .action .footer-logo img {
	height: 40px;
}

footer .footer-bottom {
	background: var(--second-bg);
}

.light footer .footer-bottom {
	background: var(--main-bg);
}

footer .footer-bottom .container .copyright {
	color: #a7afd0;
	padding: 15px 0;
	text-align: center
}

.rank-card {
	position: relative;
	overflow: hidden;
	padding: 2px
}

.rank-card .card-body {
	z-index: 2
}

.rank-card:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 80%;
	width: 100%;
	height: 100%;
	transform: translate(3%, 40%) scale(1);
	transition: .14s ease;
	background: var(--mc);
	background: linear-gradient(216deg, rgb(255, 255, 255, 0) 0%, var(--mc) 100%);
	border-radius: 100px;
	filter: blur(80px);
	z-index: 1;
}

.rank-card .progress {
	background-color: var(--second-bg);
	border-radius: 10px;
	height: 10px;
	width: 100%;
	position: relative
}

.light .rank-card .progress {
	background-color: var(--main-bg)
}

.rank-card .progress-bar {
	background-color: var(--mc);
	border-radius: var(--radius)
}

#currentRank {
	background: var(--mc-trans);
	padding: 5px 10px 5px 5px;
	border-radius: 10px;
	color: var(--mc)
}

#currentRank i {
	background: var(--mc);
	color: #fff;
	padding: 5px;
	border-radius: 8px
}

#currentRank span {
	color: var(--t-main)
}

#currentRank span strong {
	color: var(--mc)
}

#nextRank {
	color: var(--mc)
}

#nextRank i {
	color: #fff;
}

#nextRank span {
	color: var(--t-main)
}

#nextRank span strong {
	color: var(--mc)
}

.rank-card .rank-area {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.second-area {
	background: var(--second-bg);
	border-radius: var(--radius);
	padding: 15px 10px;
	margin-bottom: 15px;
	border: 1px solid var(--border)
}

.api-box,
.api-code,
.api-item,
.api-list,
.api-list .api-item,
.api-top-item,
.ns-box,
pre[class*=language-] {
	display: flex;
	display: flex
}

.api-title {
	font-size: 18px;
}

.api-box {
	flex-direction: column;
}

.api-top-item {
	padding: 10px;
	background: var(--main-bg);
	border: 1px solid var(--border);
	justify-content: space-between;
	align-items: center;
	color: var(--t-main);
	border-radius: 12px
}

.api-top-item a {
	color: var(--t-main);
	margin-left: 10px
}

.api-code {
	flex-direction: column;
	margin-bottom: 10px
}

.api-title {
	color: var(--t-main);
	margin-top: 10px;
	margin-bottom: 10px
}

.api-item,
.api-list .api-item {
	padding: 10px 15px;
	color: var(--t-main)
}

.api-item {
	justify-content: space-between;
	border-radius: var(--radius) var(--radius) 0 0;
	background: var(--main-bg);
	font-weight: 800;
	border: 1px solid var(--border);
	border-bottom: 0
}

.api-list {
	flex-direction: column;
	overflow: hidden;
	background: var(--main-bg);
	border-radius: 0 0 var(--radius) var(--radius);
	border: 1px solid var(--border);
	border-top: 0;
}

.api-list .api-item,
.panel-top {
	justify-content: space-between
}

.api-list .api-item {
	border-top: 1px solid var(--border);
	background: 0;
	border-radius: 0;
	font-size: 14px;
	font-weight: 400;
	border-left: 0;
	border-right: 0
}

.api-baslik {
	background: var(--t-main) !important;
	border-radius: var(--radius) var(--radius) 0 0 !important
}

.ns-box,
pre {
	background: var(--t-main);
	border-radius: var(--radius);
	padding: 10px
}

pre {
	color: var(--t-main);
	overflow: auto
}

.api-item b {
	width: 50%;
	color: var(--t-main)
}

.ns-box {
	margin-bottom: 20px;
	border: 1px solid var(--border);
	flex-direction: column
}

pre[class*=language-] {
	color: var(--mc);
	background: var(--mc-trans)
}

code {
	padding: 0;
	margin-top: -20px;
	flex-direction: column
}

@media print {

	code[class*=language-],
	pre[class*=language-] {
		text-shadow: none
	}
}

pre[class*=language-] {
	margin: 0;
	overflow: auto
}

:not(pre)>code[class*=language-] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal
}

.panel-body.border-solid {
	background: var(--main-bg);
	border-radius: var(--radius);
	font-size: 13px;
	padding: 10px;
	margin-bottom: 5px;
	position: relative;
	overflow: hidden;
}

.panel-body.border-solid:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 5%;
	width: 90%;
	height: 50%;
	transform: translate(100%, -60%) scale(1);
	transition: .14s ease;
	background: rgb(40, 203, 105);
	background: linear-gradient(150deg, var(--mc) 0%, var(--mc-hover) 100%);
	border-radius: 100px;
	filter: blur(100px);
	z-index: 0;
}

.payment-history {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 450px;
	overflow-x: auto
}

.history-item {
	padding: 10px;
	box-sizing: border-box;
	font-size: 14px;
	position: relative;
	background: var(--main-bg);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	width: 100%
}

.history-item-top {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--border);
	padding-bottom: 10px;
}

.hit-first {
	display: flex;
	align-items: center;
	gap: 7px;
}

.hit-first .history-id {
	background: var(--border);
	width: 60px;
	height: 30px;
	line-height: 30px;
	border-radius: 8px;
	text-align: center;
	color: var(--t-main);
}

.hit-last {
	display: flex;
	align-items: center;
	gap: 7px;
}

.history-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 7px;
	font-size: 13px;
}

.history-item-bottom .hib-first {
	display: flex;
	align-items: center;
	gap: 7px;
}

.history-item-bottom .hib-first .date {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--t-main);
	background: var(--border);
	padding: 5px 10px;
	border-radius: 8px;
}

.history-item-bottom .hib-last {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 7px;
}

.history-item-bottom .hib-last .btn {
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 8px;
	padding: 10px 16px
}

.history-status .os-widget {
	padding: 3px 10px;
	border-radius: 7px;
	font-size: 13px;
	min-width: 100px;
	text-align: center;
	font-weight: 600
}

.btn.clear-datetime {
	background: var(--mc);
	height: 55px;
	border-radius: 0 var(--radius) var(--radius) 0;
	color: var(--t-white)
}

.btn-secondary.dropdown-toggle i {
	background: #00000050;
	color: #fff;
	width: 28px;
	height: 28px;
	font-size: 12px;
	line-height: 28px;
	border-radius: 100px;
}

.btn-secondary.dropdown-toggle,
.btn-secondary.dropdown-toggle:hover,
.btn-secondary.dropdown-toggle:focus,
.light .btn-secondary.dropdown-toggle,
.light .btn-secondary.dropdown-toggle:hover,
.light .btn-secondary.dropdown-toggle:focus {
	background: var(--mc) !important;
	color: var(--t-white) !important;
	border: 1px solid var(--mc) !important;
	box-shadow: none !important;
	padding: 11px;
}

.d-dropdown {
	display: inline-block;
}

.d-dropdown .btn {
	padding: 11px 25px;
	display: inline-flex;
	align-items: center;
	background-color: transparent !important;
	outline: none;
	box-shadow: none;
	border: transparent
}

.d-dropdown .btn:focus {
	outline: none;
	box-shadow: none;
	border: transparent
}

.d-dropdown .btn .icon {
	width: 40px;
	height: 40px;
	font-size: 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
}

.d-dropdown .btn .icon.c-1 {
	box-shadow: 0px 4px 16px rgb(37 23 51 / 32%), inset 0px 1px 0px rgb(255 255 255 / 20%), inset 0px 6px 30px rgb(255 255 255 / 20%);
	background-color: var(--mc);
	color: var(--t-white);
}

.d-dropdown .btn .title {
	font-size: 15px;
	line-height: 19px;
	color: var(--t-main);
	align-items: center;
	gap: 6px;
	display: none;
}

.d-dropdown .btn .title span {
	font-weight: 600;
}

.d-dropdown .btn .info {
	font-weight: 600;
	margin-top: 4px;
	font-size: 14px;
	line-height: 17px;
	color: #9eabc5;
	display: none !important;
}

.light .d-dropdown .btn .info {
	color: #6c7985
}

.d-dropdown .btn::after {
	content: "";
	display: none;
}

.dropdown-menu {
	background: var(--second-bg);
	border: 1px solid var(--border);
	border-radius: 15px;
	padding: 10px 0;
	-webkit-animation: dropdown-active .3s cubic-bezier(0.25, 0.1, 0.15, 1.34) forwards;
	animation: dropdown-active .3s cubic-bezier(0.25, 0.1, 0.15, 1.34) forwards;
	margin-top: 60px
}

.dropdown-menu .dropdown-item {
	color: var(--t-main);
	padding: 6px 24px;
	font-size: 14px
}

.dropdown-menu .dropdown-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.page-outside {
	padding: 100px 0
}

.tickets-uploader {
	padding: 7px 15px;
	border-radius: 12px;
	background: var(--second-bg);
	transition: 0.5s ease-in-out !important;
	border: 1px solid var(--border);
	color: var(--t-main);
	width: max-content;
}

.files-wrapper {
	display: flex;
	flex-direction: column;
	line-height: 29px;
}

.files-wrapper a {
	color: var(--mc)
}

.files-label {
	color: var(--t-main);
	font-size: 13px;
}

.card.card-tickets {
	display: flex;
	padding: 10px;
	align-items: center;
	gap: 15px;
	flex-direction: row;
}

.card.card-tickets>.fal {
	color: var(--mc);
	padding: 10px;
	border-radius: 8px;
	background: var(--mc-trans)
}

.card.card-tickets .btn {
	width: max-content;
	margin-left: auto
}

.ticket-search {
	height: 52px;
	position: relative;
}

.ticket-search .btn-primary {
	border-radius: 12px
}

.ticket-search .textbox,
.ticket-search .textbox:focus {
	width: 100%;
	height: 52px;
	background-color: var(--main-bg);
	outline: none;
	color: var(--t-main);
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	border-radius: var(--radius);
	padding: 0 25px;
	border: 1px solid var(--border) !important
}

.dark .ticket-search .textbox,
.dark .ticket-search .textbox:focus {
	background-color: var(--second-bg)
}

.ticket-search .input-group-btn {
	position: absolute;
	right: 4px;
	top: 3px
}

.ticket-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
	max-height: 450px;
	overflow-x: auto
}

.ticket-item {
	padding: 10px;
	box-sizing: border-box;
	font-size: 14px;
	position: relative;
	background: var(--main-bg);
	border-radius: var(--radius);
	border: 1px solid var(--border)
}

.ticket-item.ticket-item-new {
	border-color: var(--mc)
}

.ticket-item.ticket-item-new .ticket-new-badge {
	background: var(--mc);
	color: var(--t-white);
	padding: 3px 10px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.ticket-item-top {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--border);
	padding-bottom: 10px;
}

.tit-first {
	display: flex;
	align-items: center;
	gap: 7px;
}

.tit-first .ticket-id {
	background: var(--border);
	width: 60px;
	height: 30px;
	line-height: 30px;
	border-radius: 8px;
	text-align: center;
	color: var(--t-main);
}

.tit-last {
	display: flex;
	align-items: center;
	gap: 7px;
}

.ticket-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 7px;
	font-size: 13px;
}

.ticket-item-bottom .tib-first {
	display: flex;
	align-items: center;
	gap: 7px;
}

.ticket-item-bottom .tib-last {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 7px;
}

.ticket-item-bottom .tib-first .date {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--t-main);
	background: var(--border);
	padding: 5px 10px;
	border-radius: 8px;
}

.ticket-status .os-widget {
	padding: 3px 10px;
	border-radius: 7px;
	font-size: 13px;
}

.ticket-header {
	display: flex;
	align-items: center;
	gap: 23px;
}

.ticket-header .item.item-title {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 4px;
}

.ticket-header .item.item-title .title {
	color: var(--t-main);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.547px;
}

.ticket-header .item.item-title .value {
	color: #9eabc5;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.42px;
}

.ticket-header .ticket-id-title {
	background: var(--second-bg);
	border-radius: var(--border);
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	padding: 8px 14px;
	min-height: 35px;
	display: flex;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 10px
}

.ticket-header .text {
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: -0.032px;
}

.ticket-body {
	flex: 1;
	overflow-y: auto;
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	border-radius: 15px;
	max-height: 500px;
	background: var(--main-bg);
	margin: 15px 0;
}

.ticket-body .ticket-message {
	max-width: 450px;
	width: 100%;
}

.ticket-body .ticket-message.ticket-message-support {
	align-self: flex-end;
}

.ticket-body .ticket-message-box .ticket-file {
	font-size: 12px
}

.ticket-body .ticket-message-box {
	border-radius: 15px 15px 15px 0px;
	border: 1px solid var(--mc);
	background: var(--mc-trans);
	padding: 14px 22px;
	color: var(--mc);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: .4px;
}

.ticket-body .ticket-message.ticket-message-support .ticket-message-box {
	border: 1px solid var(--border);
	background: var(--second-bg);
	border-radius: 15px 15px 0px 15px;
	color: var(--t-main)
}

.ticket-body .ticket-message-info {
	padding-top: 5px;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	color: #9eabc5;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	letter-spacing: -0.443px;
}

.ticket-body .ticket-message-info .ticket-owner .verified {
	color: #e2b719
}

.ticket-body .ticket-message-info .ticket-owner .verified svg {
	margin-top: -2px
}

.ticket-body .ticket-message-info .ticket-owner.support {
	color: var(--t-main)
}

.ticket-footer .message-send {
	width: 100%;
	display: flex;
	gap: 10px;
	align-items: center
}

.ticket-footer .message-send textarea {
	flex: 1;
	min-height: 1lh;
	resize: none;
	padding-top: 18px;
	padding-bottom: 18px;
	border: 1px solid var(--border);
	border-radius: 15px;
	outline: none;
	box-shadow: none;
	background: var(--main-bg);
}

.ticket-footer .message-send .tickets-uploader {
	padding: 15px;
	border-radius: 15px
}

.ticket-footer .message-send .files-label {
	display: none
}

.ticket-footer .message-send .btn-text {
	display: none;
}

.ticket-detail-box {
	border-radius: 25px;
	border: 1px solid var(--border);
	background: var(--main-bg);
	margin-bottom: 10px
}

.ticket-detail-box .sup-item {
	padding: 25px;
	display: flex;
	align-items: center;
	gap: 15px
}

.ticket-detail-box .sup-item .icon {
	background: var(--mc);
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	border-radius: 10px;
	font-size: 28px;
	color: #fff;
}

.ticket-detail-box .sup-item .content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ticket-detail-box .sup-item-title {
	color: var(--t-main);
	font-size: 19px;
	font-style: normal;
	font-weight: 600;
	line-height: 28.409px;
	letter-spacing: -0.57px;
}

.ticket-detail-box .sup-item-value {
	color: #9eabc5;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 18.182px;
	letter-spacing: -0.64px;
}

.s-lang-btn {
	box-shadow: 0px 4px 16px rgb(37 23 51 / 32%), inset 0px 1px 0px rgb(255 255 255 / 20%), inset 0px 6px 30px rgb(255 255 255 / 20%);
	background-color: var(--mc);
	color: #fff;
	border-radius: 15px;
	height: 48px;
	width: 48px;
	font-size: 20px;
	margin-right: 10px;
}

.card.blog-card {
	overflow: hidden;
	border-radius: var(--radius)
}

.card.blog-card .blog-image {
	width: 100%;
	padding-top: 55%;
	position: relative;
	background-color: var(--second-bg);
	color: var(--t-white);
}

.card.blog-card .blog-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease-in-out;
}

.card.blog-card .blog-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.card.blog-card .blog-title {
	font-size: 18px;
	font-weight: 500;
	color: var(--t-main);
	letter-spacing: -0.4px;
	line-height: 1.2;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card.blog-card .blog-date {
	font-size: 12px;
	font-weight: 400;
	color: #9eabc5;
	letter-spacing: -0.4px;
	line-height: 1.2;
	margin-bottom: 0;
	padding: 10px 0
}

.card .blog-text p {
	text-align: justify;
	width: 100%;
}

.blog-single .card .blog-image .btn {
	position: absolute;
	z-index: 3;
	left: 20px;
	top: 20px;
	padding: 0;
	width: 52px;
	min-height: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	font-size: 20px;
}

.ns-info {
	padding-top: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.ns-info .ns-item {
	display: flex;
	gap: 15px;
	padding: 10px;
	align-items: center;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--main-bg)
}

.ns-info>.ns-item {
	flex: 0 0 calc(50% - 5px);
}

.ns-info .ns-item .icon {
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 10px;
	background: var(--mc);
	color: #fff;
	text-align: center
}

.ns-info .ns-item .text {
	color: var(--t-main);
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.14px;
}

.ns-desc {
	display: flex;
	gap: 15px;
	padding: 15px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--main-bg);
	margin-top: 10px;
	max-height: 200px;
	overflow: auto
}

.ns-desc-empty {
	display: flex;
	gap: 15px;
	padding: 10px;
	align-items: center;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--main-bg);
	margin-top: 10px
}

.ns-name {
	background: var(--mc);
	border-radius: var(--radius);
	padding: 15px;
	text-align: center;
	color: #fff
}

.addBalance {
	display: flex;
	border-radius: 10px;
	justify-content: space-between;
}

.addBalanceBtn {
	width: 24%;
	background: var(--main-bg);
	padding: 20px 16px;
	border-radius: 10px;
	text-align: center;
	border: 1px solid var(--border);
	color: var(--t-main);
	font-weight: 600;
}

.addBalanceBtn:hover,
.addBalanceBtn:focus {
	border: 1px solid var(--mc) !important
}


.order-item {
	padding: 10px;
	box-sizing: border-box;
	font-size: 14px;
	position: relative;
	background: var(--second-bg);
	border-radius: var(--radius);
	margin-bottom: 10px;
	border: 1px solid var(--border)
}

.order-item-top {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--border);
	padding-bottom: 10px
}

.oit-first {
	display: flex;
	align-items: center;
	gap: 7px
}

.oit-first .order-id {
	background: var(--border);
	min-width: 100px;
	height: 30px;
	line-height: 30px;
	border-radius: 8px;
	text-align: center;
	color: var(--t-main)
}

.oit-last {
	display: flex;
	align-items: center;
	gap: 7px
}

.oit-last .btn-danger,
.oit-last .btn-primary {
	width: 40px !important;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 8px;
}

.order-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 7px;
	font-size: 13px
}

.order-item-bottom .oib-first {
	display: flex;
	align-items: center;
	gap: 7px
}

.order-item-bottom .oib-first .link {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #22c8fe;
	background: #22c8fe31;
	padding: 5px 10px;
	border-radius: 8px
}

.order-item-bottom .oib-first .link strong {
	max-width: 200px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.order-item-bottom .oib-first .item {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--t-main);
	background: var(--border);
	padding: 5px 10px;
	border-radius: 8px;
	white-space: nowrap
}

.order-item-bottom .oib-first .item .primary-color {
	color: var(--mc-hover) !important
}

.order-item-bottom .oib-last {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 7px
}

.order-item-bottom .oib-last .btn {
	font-size: 14px;
	padding: 0 15px;
	height: 35px;
	line-height: 35px;
}

.order-item-bottom .sib-last .btn.btn-primary {
	border-radius: 8px
}

.order-status {
	min-width: max-content;
}

.order-status .os-widget {
	padding: 5px 10px;
	border-radius: 8px;
	font-size: 13px;
}

.os-widget.completed {
	background: #28a74521;
	border: 1px solid #28a745;
	color: #28a745
}

.os-widget.processing {
	background: #4a5cf621;
	border: 1px solid #4a5cf6;
	color: #4a5cf6
}

.os-widget.partial {
	background: #6a7b9121;
	border: 1px solid #6a7b91;
	color: #6a7b91
}

.os-widget.pending {
	background: #ffc10721;
	border: 1px solid #ffc107;
	color: #ffc107;
}

.os-widget.inprogress {
	background: #f5830021;
	border: 1px solid #f58300;
	color: #f58300;
}

.os-widget.canceled {
	background: #ff000021;
	border: 1px solid #ff0000;
	color: #ff0000
}

.order-actions {
	display: flex;
	gap: 5px
}

.order-actions .btn,
.order-actions .btn:hover,
.order-actions .btn:focus {
	height: 30px !important;
	line-height: 30px !important;
	text-align: center;
	font-size: 13px !important;
	border-radius: 8px
}

.updates-wrapper {
	max-height: 400px;
	overflow: auto
}

.updates-item-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.updates-item {
	padding: 10px;
	box-sizing: border-box;
	font-size: 14px;
	position: relative;
	background: var(--main-bg);
	border-radius: var(--radius);
	margin-bottom: 10px;
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden
}

.updates-item-wrapper .updates-item {
	background: var(--second-bg);
}

.updates-item-top {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--border);
	padding-bottom: 10px
}

.uit-first {
	display: flex;
	align-items: center;
	gap: 7px
}

.uit-last {
	display: flex;
	align-items: center;
	gap: 7px;
}

.uit-last .btn-success,
.uit-last .btn-primary {
	width: 40px !important;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 8px;
}

.uit-first .updates-id {
	background: var(--border);
	min-width: 100px;
	height: 30px;
	line-height: 30px;
	border-radius: 8px;
	text-align: center;
	color: var(--t-main)
}

.updates-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 7px;
	font-size: 13px;
}

.updates-item-bottom .uib-first {
	display: flex;
	align-items: center;
	gap: 7px;
}

.updates-item-bottom .uib-last {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 7px;
}

.updates-item-bottom .uib-first .added {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #09b797;
	background: #2dfad431;
	padding: 5px 10px;
	border-radius: 8px;
}

.updates-item-bottom .uib-first .removed {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #dc3545;
	background: #ee5b5b41;
	padding: 5px 10px;
	border-radius: 8px;
}

.updates-item-bottom .uib-first .decreased {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #22c8fe;
	background: #22c8fe31;
	padding: 5px 10px;
	border-radius: 8px;
}

.updates-item-bottom .uib-first .increased {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #ffc107;
	background: #ffc10731;
	padding: 5px 10px;
	border-radius: 8px;
}

.updates-item.disabled::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 80%;
	width: 100%;
	height: 100%;
	transform: translate(3%, 40%) scale(1);
	transition: .14s ease;
	background: rgb(214, 45, 45);
	background: linear-gradient(216deg, rgb(255, 255, 255, 0) 0%, rgb(214, 45, 45, 1) 100%);
	border-radius: 100px;
	filter: blur(80px);
	z-index: 1;
}

.updates-item.enabled::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 80%;
	width: 100%;
	height: 100%;
	transform: translate(3%, 40%) scale(1);
	transition: .14s ease;
	background: rgb(41, 203, 105);
	background: linear-gradient(216deg, rgb(255, 255, 255, 0) 0%, rgb(41, 203, 105, 1) 100%);
	border-radius: 100px;
	filter: blur(80px);
	z-index: 1;
}

.updates-item.decrease::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 80%;
	width: 100%;
	height: 100%;
	transform: translate(3%, 40%) scale(1);
	transition: .14s ease;
	background: rgb(28, 240, 255);
	background: linear-gradient(216deg, rgb(255, 255, 255, 0) 0%, rgb(28, 240, 255, 1) 100%);
	border-radius: 100px;
	filter: blur(80px);
	z-index: 1;
}

.updates-item.increased::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 80%;
	width: 100%;
	height: 100%;
	transform: translate(3%, 40%) scale(1);
	transition: .14s ease;
	background: rgb(255, 154, 0);
	background: linear-gradient(216deg, rgb(255, 255, 255, 0) 0%, rgb(255, 154, 0, 1) 100%);
	border-radius: 100px;
	filter: blur(80px);
	z-index: 1;
}


.nameservers {
	display: flex;
	align-items: center;
	gap: 50px
}

.nameservers ul {
	padding-left: 0
}

.nameservers .fa-server {
	font-size: 52px
}

.nameservers .fa-dot-circle {
	color: var(--mc);
	font-size: 12px;
	padding-right: 5px
}

.card.card-child {
	background: url(https://storage.perfectcdn.com/n9zgv4/q7uuhp88z0wgk0jn.svg), #ff7603;
	background-repeat: no-repeat;
	background-position: bottom 0 right 0;
	margin-top: 60px
}

.child-support {
	position: relative;
	padding: 35px 25px
}

.child-support h4 {
	max-width: 400px;
	color: var(--t-white);
	line-height: 32px
}

.child-support .cs-image {
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 200px
}

.child-support .btn-secondary {
	width: max-content
}


.child-item {
	padding: 10px;
	box-sizing: border-box;
	font-size: 14px;
	position: relative;
	background: var(--second-bg);
	border-radius: var(--radius);
	margin-bottom: 10px;
	border: 1px solid var(--border);
}

.child-item-top {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--border);
	padding-bottom: 10px;
}

.cit-first {
	display: flex;
	align-items: center;
	gap: 7px;
}

.cit-last {
	display: flex;
	align-items: center;
	gap: 7px;
}

.child-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 7px;
	font-size: 13px;
}

.child-item-bottom .cib-first {
	display: flex;
	align-items: center;
	gap: 7px;
}

.child-item-bottom .cib-first .item {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--t-main);
	background: var(--border);
	padding: 5px 10px;
	border-radius: 8px;
	white-space: nowrap;
}

.child-item-bottom .cib-first .item .primary-color {
	color: var(--mc-hover) !important;
}

.child-item-bottom .cib-last .btn {
	font-size: 14px;
	padding: 0 15px;
	height: 35px;
	line-height: 35px;
	border-radius: 8px
}

.light .home-faq .hf-item {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgb(255 255 255 / 20%) 0%, rgb(254 254 254 / 20%) 100%), linear-gradient(0deg, #e7e8e9 0%, #ffffff 100%), var(--main-bg);
	box-shadow: none
}

.light .sh-label {
	background: var(--second-bg)
}

.light .sh-content {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgb(255 255 255 / 20%) 0%, rgb(254 254 254 / 20%) 100%), linear-gradient(0deg, #e7e8e9 0%, #ffffff 100%), var(--main-bg);
	color: var(--t-main)
}

.light .p-cards,
.light .c-reviews .review-item {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgb(255 255 255 / 20%) 0%, rgb(254 254 254 / 20%) 100%), linear-gradient(0deg, #e7e8e9 0%, #ffffff 100%), var(--main-bg)
}

.light .section-header p {
	color: #6c7985
}

.light .home-how-use .card p {
	color: #6c7485
}

.light .home-how-use .card {
	background: var(--main-bg)
}


.article-content {
	padding: 24px 20px;
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgba(56, 75, 110, 0.2) 0%, rgba(5, 9, 16, 0.2) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
	border: 1px solid var(--border);
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #000000;
	border-radius: 15px;
	color: var(--t-main);
	height: 250px;
	font-size: 12px;
	overflow: hidden;
	line-height: 1.5;
	margin-bottom: 15px;
}

.light .article-content {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgb(255 255 255 / 20%) 0%, rgb(254 254 254 / 20%) 100%), linear-gradient(0deg, #e7e8e9 0%, #ffffff 100%), var(--main-bg);
	box-shadow: none
}

.article-text {
	height: 200px;
	overflow-y: auto;
}

.article-text h2 {
	font-size: 18px
}

.signup-area {
	background: url(https://storage.perfectcdn.com/n9zgv4/35bl4nflwdee75rl.webp), #0d1117;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 100vh
}

.light .signup-area {
	background: url(https://storage.perfectcdn.com/n9zgv4/dodu0ci95z5kioq9.webp), var(--second-bg)
}

.signup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgb(2, 2, 3, 1);
	padding: 15px
}

.light .signup-header {
	background: rgb(243 243 244)
}

.signup-content {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgba(56, 75, 110, 0.2) 0%, rgba(5, 9, 16, 0.2) 100%), linear-gradient(0deg, var(--second-bg) 0%, var(--second-bg) 100%), var(--second-bg);
	border: 1px solid var(--border);
	box-shadow: 0px 1.182px 2.365px 0px rgb(19 27 38), 0px 0px 0px 1.182px #000000;
	border-radius: 15px;
	padding: 25px;
	margin-top: 15px
}

.light .signup-content {
	background: radial-gradient(68.6% 68.6% at 57.8% 96.86%, rgb(255 255 255 / 20%) 0%, rgb(254 254 254 / 20%) 100%), linear-gradient(0deg, #e7e8e9 0%, #ffffff 100%), var(--main-bg);
	box-shadow: none
}

.signup-badge {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 15px
}

.signup-badge .icon {
	background: var(--mc);
	width: 45px;
	height: 45px;
	font-size: 24px;
	text-align: center;
	border-radius: 10px;
	color: var(--t-white)
}

.signup-badge .text {
	display: flex;
	flex-direction: column
}


.signup-badge .text span {
	font-size: 16px;
	font-weight: 600
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
	.signup-badge {
		flex-direction: column;
		text-align: center
	}

	.signup-header .signup-logo img {
		height: 40px
	}

	.signup-header .btn {
		padding: 7px 10px;
		border-radius: 10px
	}

	.c-reviews .fa-chevron-left,
	.c-reviews .fa-chevron-right {
		display: none !important
	}

	.c-reviews .slick-track {
		gap: 15px
	}

	#up-header.active {
		left: 15px;
		right: 15px
	}

	.child-item-bottom,
	.cib-first {
		flex-direction: column
	}

	.child-item-bottom .cib-last .btn {
		margin-top: 10px
	}

	.card.card-child {
		display: none
	}

	.nameservers .fa-server {
		display: none
	}

	.card.card-viewticket {
		position: fixed;
		z-index: 5000;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		border-radius: 0
	}

	.ticket-body {
		height: calc(100vh - 350px);
		max-height: unset
	}

	.nwo-categories .swiper-wrapper {
		justify-content: flex-start
	}

	.m-hidden {
		display: none
	}

	.sidebar {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	.sidebar-active .sidebar {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.sidebar .sidebar-dismiss {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.header {
		left: 0px;
		padding: 15px 15px;
	}

	.page {
		padding-left: 0px;
	}

	.sidebar {
		background: var(--main-bg);
		width: 100%;
		left: 0;
		top: 0;
		bottom: 0;
		border-radius: 0
	}

	.sidebar-menu {
		padding-left: 15px;
		padding-right: 15px;
	}

	.header-right {
		display: block;
		position: absolute;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		margin-top: 20px;
		right: 10px;
		text-align: right;
		width: 100%;
		opacity: 0;
	}

	.header-right.mobHid {
		display: none;
	}

	.header-right .hd-shadow {
		content: '';
		position: absolute;
		right: -500px;
		top: -500px;
		width: 500px;
		height: 500px;
		border-radius: 50%;
		background: transparent;
		-webkit-box-shadow: -160px 260px 300px var(--mc-trans);
		box-shadow: -160px 260px 300px var(--mc-trans);
		z-index: 1001;
		-webkit-transition: .14s ease;
		transition: .14s ease;
	}

	.header-right .hdi {
		margin-bottom: 10px;
		z-index: 1002;
		position: relative;
	}

	.header-right .hdi.active>* {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.header-right .hdi>* {
		-webkit-transform: scale(0);
		transform: scale(0);
		-webkit-transition: .14s ease;
		transition: .14s ease;
	}

	.hd-btn {
		display: block;
		z-index: 1004;
		position: relative;
	}

	.order-item-bottom .oib-first {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}

	.order-item-bottom .oib-first .link {
		grid-area: 1 / 1 / 3 / 3;
		justify-content: center
	}

	.order-item-bottom .oib-first .item.date {
		grid-area: 3 / 1 / 4 / 3;
		justify-content: center
	}

	.order-item-top,
	.oit-first {
		flex-direction: column
	}

	.order-item-top .oit-last {
		justify-content: center;
		margin-top: 10px;
	}

	.order-item-bottom .oib-first .item.flex-item {
		display: flex;
		flex-direction: column;
		align-items: flex-start
	}

	.order-item-bottom {
		flex-direction: column
	}

	.ticket-body {
		padding: 25px 15px
	}

	.ticket-body .ticket-message-box,
	.ticket-body .ticket-message.ticket-message-support .ticket-message-box {
		border-radius: 15px
	}

	.updates-item-bottom {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start
	}

	.ns-info {
		flex-direction: column
	}

	.ns-info .ns-item {
		width: 100%
	}

	.services-item-top,
	.sit-first,
	.services-item-bottom {
		flex-direction: column
	}

	.sit-first .services-title {
		text-align: center
	}

	.services-item-bottom .sib-first {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%
	}

	.services-item-bottom .sib-first .min,
	.services-item-bottom .sib-first .max {
		justify-content: center
	}

	.services-item-bottom .sib-first .avg {
		grid-area: 2 / 1 / 3 / 3;
		justify-content: center
	}

	.services-item-bottom .sib-last {
		width: 100%;
		margin-top: 15px
	}

	.service-cat-side {
		text-align: center;
		padding: 10px 15px
	}

	.service-cat-side .service-cat-header {
		margin-bottom: 5px
	}

	.sit-first {
		justify-content: flex-start;
		align-items: unset;
		gap: 0
	}

	.sit-last {
		justify-content: center;
		margin-top: 10px;
	}

	.service-cat-side {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.dash-widget {
		flex-direction: column;
		align-items: start;
		gap: 25px;
		padding: 0 5px
	}

	.dropdown-menu {
		width: 100%
	}

	.dd-custom .dropdown-menu {
		width: auto
	}

	.app-body {
		-webkit-transition: 0.25s ease;
		transition: 0.25s ease;
		z-index: 1234;
		position: fixed;
		left: 0px;
		width: 100%;
		top: 0px;
		height: 100%;
		overflow: scroll;
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.app-body .home-header {
		top: 0px;
		position: -webkit-sticky;
		position: sticky;
	}

	.app-body.menu-active {
		position: fixed;
		height: 100%;
		border-radius: 20px;
		-webkit-transform: scale(0.8) translateX(calc(100% - 100px));
		transform: scale(0.8) translateX(calc(100% - 100px));
		overflow: hidden;
		-webkit-box-shadow: 8px 0px 34px rgba(0, 0, 0, 0.6);
		box-shadow: 8px 0px 34px rgba(0, 0, 0, 0.6);
		opacity: 0.9;
	}

	.rank-card {
		display: none
	}

	.btn-secondary.dropdown-toggle {
		width: 100%
	}

	.api-top {
		grid-template-columns: 1fr;
		gap: 10px
	}

	.api-top {
		display: grid;
		font-size: 12px
	}

	.dropdown.d-dropdown {
		display: none
	}

	.rank-card .rank-area {
		flex-direction: column;
		gap: 10px
	}

	.section-header h5 {
		font-size: 18px
	}

	.section-header p {
		font-size: 13px
	}

	.payments-area {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	.p-cards img {
		max-height: 40px;
	}

	.home-faq .hf-item h4 {
		font-size: 14px
	}

	.c-reviews .review-item {
		max-width: 400px
	}

	.brands-area {
		margin: -25px 0 25px 0
	}

	footer .footer-top .info .text {
		border: none
	}

	footer .footer-top .info .icon {
		display: none;
	}

	footer .footer-top .container {
		flex-direction: column;
		gap: 20px;
	}

	footer .footer-top .info {
		text-align: center;
	}

	footer .footer-content,
	footer .footer-content .action {
		flex-direction: column;
	}

	footer .footer-content .action {
		flex-direction: column;
	}

	footer .footer-content .action {
		margin-bottom: 15px;
	}

	footer .footer-content {
		padding: 20px 0 10px;
	}

	footer .footer-content .footer-links {
		gap: 10px;
		padding-bottom: 10px
	}

	footer .footer-content .footer-links a {
		padding: 0;
		border: none
	}

	footer .footer-content .footer-logo {
		padding: 5px 0 25px 0
	}

	.home-header .header-content {
		padding-top: 100px
	}

	.mob-logo img {
		width: 175px
	}

	.hm-wrapper .row.row-btn {
		display: unset !important
	}

	.home-header {
		padding: 175px 0 50px 0
	}

	.hm-wrapper .dark-mode {
		display: none !important
	}

	.home-content h2,
	.brands-left .bl-content h3,
	.home-heads h3 {
		font-size: 24px;
		line-height: 32px;
		font-weight: 600
	}

	.home-content p {
		display: none
	}

	.hf-glow {
		position: absolute;
		height: 650px;
		left: 0;
		top: -950px;
	}

	.home-lang {
		display: none
	}

	.h-section {
		margin: 0 0 50px 0 !important;
		padding: 25px 0;
		overflow: hidden
	}

	.home-content .home-text {
		display: none
	}

	.header-content {
		text-align: center
	}

	.home-content .d-flex {
		justify-content: center
	}

	.payment-box {
		margin-bottom: 15px
	}

	.home-content .btn {
		display: none
	}

	.home-area-text,
	.home-area-text .home-heads {
		text-align: center
	}

	.hm-remember {
		text-align: left
	}

	.home-how-use .card {
		padding: 15px 25px;
		margin-bottom: 15px
	}

	.sb-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}

	.nav,
	.nav-item {
		width: 100%
	}

	.service-item .btn-favorite {
		position: absolute;
		top: 14px;
		right: 10px
	}

	.service-item {
		padding: 15px 10px
	}

	.sidebar-menu .sidebar-menu-link .sidebar-menu-text {
		padding-left: 10px
	}

	.modal-content.modal-fixed {
		position: fixed;
		border-radius: var(--radius) var(--radius) 0 0;
		bottom: 0;
		right: 0;
		left: 0
	}

	.modal-order-content {
		max-height: 250px;
		overflow-y: auto
	}

	.neworder-desc .nav {
		display: none
	}

	.neworder-desc,
	.old-tickets {
		position: fixed;
		bottom: 0;
		display: flex;
		flex-direction: column;
		transition: .14s ease;
		z-index: 3000;
		max-height: 55px;
		overflow: hidden;
		left: 0;
		right: 0;
		bottom: 10px;
		width: 100%;
		border-radius: 15px;
		transition: .5s ease;
	}

	.neworder-desc.active,
	.old-tickets.active {
		max-height: calc(100% - 20px);
		left: -1px;
		right: -1px;
		bottom: 0px;
		border-radius: 15px 15px 0 0;
		width: 100%
	}

	.btn-details {
		margin: 0 5px 10px 5px
	}

	.neworder-desc .fa-chevron-down,
	.neworder-desc.active .fa-chevron-up,
	.old-tickets .fa-chevron-down,
	.old-tickets.active .fa-chevron-up {
		display: none
	}

	.neworder-desc.active .fa-chevron-down,
	.neworder-desc .fa-chevron-up,
	.old-tickets.active .fa-chevron-down,
	.old-tickets .fa-chevron-up {
		display: flex
	}

	.neworder-desc.active .card,
	.old-tickets.active .card {
		border-radius: 15px 15px 0 0
	}

	.old-tickets.active .card-tickets {
		display: none
	}
}

@media (min-width: 991.98px) {
	.ns-desc {
		max-height: 300px
	}

	.btn-details {
		display: none
	}

	.modal-order-content {
		max-height: 150px;
		overflow-y: auto
	}

	.service-content {
		width: 100%
	}

	.sidebar-menu .sidebar-menu-link .sidebar-menu-icon {
		width: 30px
	}

	.service-content {
		flex: 0 0 auto;
		width: 100%
	}

	.service-wrapper {
		flex-direction: column
	}

	.sidebar-active .sidebar {
		width: 80px;
		overflow: hidden
	}

	.sidebar-active .sidebar .sidebar-menu-text {
		display: none
	}

	.sidebar-active .sidebar .sidebar-menu {
		padding-left: 7px;
		padding-right: 7px;
	}

	.sidebar-active .sidebar .sidebar-menu-item span {
		display: none
	}

	.sidebar-active .sidebar .logo-big {
		display: none
	}

	.sidebar-active .sidebar .logo-small {
		display: block;
		width: 55px;
		margin: auto
	}

	.sidebar-active .page {
		padding-left: 95px
	}

	.sidebar-active .sidebar-profile {
		display: none
	}

	.d-hidden {
		display: none
	}

	.blog-single .card .blog-image {
		padding-top: 40%;
	}

	.api-top {
		grid-template-columns: 1fr 1fr
	}

	.api-top {
		display: grid;
		gap: 10px
	}

	.ticket-footer .message-send .btn-text {
		display: block;
	}

	.d-dropdown .btn {
		gap: 15px;
	}

	.d-dropdown .btn .info {
		display: flex !important;
	}

	.d-dropdown .btn .title {
		display: flex;
	}

	.head-out.fixed {
		border: 1px solid #191b29;
		border-top: none;
		border-left: none;
		border-right: none;
		background: rgba(13, 17, 23, .8);
		-webkit-backdrop-filter: blur(15px);
		backdrop-filter: blur(15px)
	}

	.light .head-out.fixed {
		border: 1px solid var(--border);
		background: rgba(255, 255, 255, .8);
	}

	.dark .head-out.fixed {
		background: rgba(13, 17, 23, .8)
	}

	.head-out.fixed .header-menu .hm-item .hm-link {
		padding: 20px 20px;
	}

	.hm-wrapper {
		display: block;
		bottom: inherit;
		background-color: transparent;
		position: relative;
		border-radius: 0;
		padding: 0;
		width: 100%;
		transform: none;
		overflow: inherit;
		opacity: 1 !important;
	}

	.sm-header {
		display: none;
	}

	.b-menu-close {
		display: none;
	}

	.header-btn.without-icon {
		background-color: transparent;
		padding: 14px 30px;
	}

	.header-btn.without-icon .icon {
		display: none;
	}

	.header-menu {
		display: inline-flex;
		align-items: center;
		flex-direction: row;
		padding: 10px 0 10px 0;
	}

	.header-menu .hm-item .hm-link {
		padding: 34px 20px;
		display: block;
		font-size: 16px;
	}

	.home-header {
		margin-top: -127px;
		padding-top: 127px;
		padding-bottom: 50px
	}

	.home-header .header-content {
		padding: 150px 0 125px 0;
	}
}

@media (min-width: 1200px) {
	.blog-single .card .blog-image {
		padding-top: 32%;
	}
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
	.sidebar {
		width: 230px;
	}

	.header {
		left: 230px;
	}

	.page {
		padding-left: 245px;
	}

	.sidebar-menu {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 1399.98px) {
	.page .container-fluid {
		padding: 0 15px;
	}
}

/* KEYFRAMES */

@keyframes rotation {
	0 {
		transform: rotate(0)
	}

	100%,
	50% {
		transform: rotate(180deg)
	}
}


@-webkit-keyframes floating {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
		-webkit-transform: translatey(0px);
		transform: translatey(0px);
	}

	50% {
		box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
		-webkit-transform: translatey(-20px);
		transform: translatey(-20px);
	}

	100% {
		box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
		-webkit-transform: translatey(0px);
		transform: translatey(0px);
	}
}

@keyframes floating {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
		-webkit-transform: translatey(0px);
		transform: translatey(0px);
	}

	50% {
		box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
		-webkit-transform: translatey(-20px);
		transform: translatey(-20px);
	}

	100% {
		box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
		-webkit-transform: translatey(0px);
		transform: translatey(0px);
	}
}

@keyframes key-animation {
	0% {
		opacity: 0;
		transform: translateY(10px)
	}

	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes dropdown-active {
	0% {
		opacity: 0;
		transform: translateY(-50px);
		max-height: 0
	}

	100% {
		opacity: 1;
		transform: translateY(0) skewY(0)
	}
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

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

@keyframes textclip {
	to {
		background-position: 200% center;
	}
}

.outside-switcher {
	position: fixed;
  	bottom: 15px;
  	right: 15px;
	z-index: 1020
}

.outside-switcher .switcher-item {
    margin: 0 auto;
    font-size: 24px;
    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 15px;
    transition: all 500ms ease-in-out;
    background: var(--mc-dark);
  	color: var(--t-white)
}

.outside-switcher .switcher-item.light-btn {
    background: #ffc107
}


.dark .outside-switcher .dark-btn {
	display: none
}

.light .outside-switcher .light-btn {
	display: none
}

.dash-header {
	background: var(--mc);
    text-align: center;
    color: #fff;
    border-radius: 10px;
    padding: 10px 0;
    background-position: center;
    background-size: cover;
    margin-bottom: 15px;
}

.aff-item {
    background: var(--main-bg);
    border-radius: 15px;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.aff-item span.aff-bold {
	font-weight: 600
}

.dh-icon {
    background: var(--mc);
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 5px
}

.alert-top {
	display: flex;
  	align-items: center;
  	justify-content: space-between
}

.alert-top .d-flex {
  	display: flex;
	align-items: center;
  	gap: 20px
}

.alert-top .d-flex a:hover {
  	opacity: .8;
  	color: #fff!important
}

@media (max-width: 991.98px) {
  .alert-top {
  		flex-direction: column;
    	gap: 10px
  }
  .alert-top .d-flex {
  		flex-direction: column;
    	gap: 7px
  }
}

.dw-first small {
	cursor: pointer
}

.user_point_data {
    display: flex;
    gap: 10px;
    width: max-content;
  	align-items: center;
    background: var(--mc-trans);
    padding: 5px 10px 5px 5px;
    border-radius: 10px;
    color: var(--t-white);
  	font-size: 18px
}

.user_point_data i {
    background: var(--mc);
    color: #fff;
    padding: 5px;
    border-radius: 8px;
}

.point_note ul li {
    font-size: 13px
}
.calc-desc {
    height: 500px;
    overflow-y: auto;
}

.calc-desc h2 {
    font-size: 16px;
  	font-weight: 600
}

.calc-desc p {
  	font-size: 13px;
  	font-weight: 400
}

.calc-desc ul li {
  	list-style-type: disc
}

#calculaterform h2 {
    text-align: center;
    font-size: 20px;
}

/* ========== FIX scroll táctil en submenús (iOS/iPhone) ========== */
/* Los desplegables de categoría/servicio (Select2) y los menús dropdown
   no hacían scroll con el dedo: se movía la página entera. */
.select2-results__options,
.select2-results,
.select2-dropdown,
.dropdown-menu,
.dropdown-menu ul {
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
}


/* ========== FIX DEFINITIVO scroll táctil bottom-sheet (iOS) ========== */
/* El bottom-sheet móvil tiene drag-to-close que capturaba el dedo dentro
   de la lista. Aquí forzamos que el contenido sea scrollable de forma nativa. */
.bottom-sheet .grey-content-area,
.grey-content-area,
.bottom-sheet .sheet-content {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
}


/* ========== REFUERZO scroll táctil: CUALQUIER contenido de bottom-sheet ========== */
.bottom-sheet [class*="content"],
.bottom-sheet [class*="options"],
.bottom-sheet [class*="results"],
.bottom-sheet [class*="list"],
.bottom-sheet ul,
.bottom-sheet ol {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
}
