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

html {
	--color-1: #fff;
    --color-2: #eef2ff;
    --color-3: #d2d8ea;
	--color-4: #1d1d20;
	--color-5: #202020;
	--color-6: #ff5c00;
	--color-7: #e15201;
	--color-8: rgb(255, 92, 0, .15)
}

html.dark {
	--color-1: #19191c;
	--color-2: #0f0f10;
	--color-3: #2c2c31;
	--color-4: #FFFFFF;
	--color-5: #FFFFFF;
	--color-6: #ff5c00;
	--color-7: #e15201;
	--color-8: rgb(255, 92, 0, .15)
}

body {
	font-family: 'Montserrat', -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(--color-4);
	background-color: var(--color-2);
}

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

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


a:hover {
	color: var(--color-6) !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: 7px;
}

::-webkit-scrollbar-track {
	background: var(--color-2);
}

.dark ::-webkit-scrollbar-track {
	background: var(--color-1);
}

::-webkit-scrollbar-thumb {
	background: var(--color-3);
	border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color-3);
}

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

.danger-color, .danger-color:hover {
    color: #E93E3E!important;
    font-weight: 600!important
}

.alert {
	border-radius: 10px;
	border: none !important
}

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

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

.badge {
	background: var(--color-6) !important;
	color: #fff !important;
}

.h-section {
	margin: 100px 0
}

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

.c-pointer {
	cursor: pointer;
}

.p-relative {
	position: relative
}

.p-absolute {
	position: absolute
}

.transition {
	transition: all 0.15s ease;
}

.btn {
	position: relative;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	padding: 15px 30px;
	border: none;
	color: #fff;
}

.btn:hover,
btn:focus {
	color: #fff !important
}

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

.btn-rounded {
	border-radius: 50px;
}

.btn-border {
	border: 1px solid #4f75ff !important;
}

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

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

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

.btn-primary {
	background: var(--color-6);
	font-size: 16px;
	color: #fff !important
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--color-7) !important;
}

.btn-secondary {
	background: #7147ea;
	font-size: 16px
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: #7147ea!important;
}

.btn-secondary a,
.btn-secondary a:hover,
.btn-secondary a:focus {
	color: #fff !important
}

.btn-rounded {
	color: #fff !important
}

.btn-danger {
	background: bb2d3b;
	color: #fff;
	font-size: 16px
}

.form-control {
	letter-spacing: -.01em;
	padding: 12px 24px;
	font-size: 15px;
	border-radius: 10px !important;
	background: var(--color-2);
	color: var(--color-5);
	border: 1px solid var(--color-3);
	height: 50px
}

.form-control:focus {
	box-shadow: none !important;
	background: var(--color-2)!important;
	border: 1px solid var(--color-3)!important;
	color: var(--color-5)
}

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

select.form-control {
	border: none
}

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

body.stop-body {
	overflow: hidden;
}

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

.head-out.fixed {
    border: 1px solid var(--color-3);
    border-top: none;
    background: rgba(25,25,28,.8);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

html.light .head-out.fixed {
	background: rgb(194 200 218)
}

.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: var(--color-1);
	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: 10px;
	background-color: var(--color-8);
	color: var(--color-6);
	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(--color-2);
	color: #fff;
	outline: none;
	border: none;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 2000;
}


.head-right-btns {
	width: 100%;
	display: block;
	margin-bottom: 20px;
}

.mob-logo img {
	position: relative;
	z-index: 2;
	height: 50px;
}


.header-btn {
	border-radius: 15px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 9px 9px 9px 30px;
	overflow: hidden;
	background-color: var(--color-6);
	color: #fff !important;
	text-decoration: none;
	transition: 0.14s ease;
}

.header-btn:hover {
	color: #fff !important;
}

.header-btn:hover .icon::after {
	transform: scale(8);
}

.header-btn .text {
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: -0.03em;
	position: relative;
	z-index: 1004;
}

.header-btn .icon {
	display: flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	position: relative;
}

.header-btn .icon .icon-ri {
	z-index: 1003;
}

.header-btn .icon::after {
	content: "";
	z-index: 1002;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.4s ease;
}

.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: 1176px;
    height: 850px;
    left: -669px;
    top: -886px;
    background: linear-gradient(180deg,rgba(255,31,0,0),#ff5c00);
    -webkit-filter: blur(239.122px);
    filter: blur(239.122px);
    -webkit-transform: rotate(-58.53deg);
    transform: rotate(-58.53deg);
}

.card {
	background: var(--color-1);
	border: 1px solid var(--color-3);
	border-radius: 10px
}

.card-2 {
	background: var(--color-3);
	border: 1px solid var(--color-1);
	border-radius: 10px;
	z-index: 1
}

.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(--color-4) !important;
	opacity: 0.8;
	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;
}

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

.home-login {
	padding-bottom: 75px
}

.home-login .btn {
	border-radius: 10px !important
}

.home-login .card {
	background: var(--color-1);
	border: 1px solid var(--color-3);
	border-radius: 10px;
	z-index: 10
}

.dark .home-login .card .form-control,
.dark .home-login .card .form-control:focus {
	background: var(--color-2);
	color: var(--color-4);
	border: 1px solid var(--color-3)
}

.home-login .card .form-control, 
.home-login .card .form-control:focus {
    background: #d7e1ff;
    color: var(--color-4);
    border: 1px solid #9baad5;
}

.home-login .card .form-control::placeholder {
	color: var(--color-4)
}

.home-login .card .form-check-label {
	color: #9b93ce
}

.dark .home-login .hm-remember .lgn-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-2);
    border: 1px solid var(--color-3);
    border-radius: 10px;
    color: var(--color-4);
    font-size: 24px;
    transition: 0.2s ease;
    cursor: pointer;
}

.home-login .hm-remember .lgn-btn {
	background: #d7e1ff;
    color: var(--color-4);
    border: 1px solid #9baad5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    transition: 0.2s ease;
    cursor: pointer;
}

.home-login .hm-remember input {
    display: none;
}

.home-login .hm-remember .lgn-btn::before {
    content: "\eae3";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-login .hm-remember input:checked+.lgn-btn {
    background: var(--color-6);
    border-color: var(--color-7);
    color: var(--color-5);
}

.home-login .f-pass {
	background: var(--color-6);
	width: 24px;
	height: 24px;
	border-radius: 7px;
	text-align: center;
	top: 13px;
	right: 25px;
	
}

.home-login .f-pass i {
	font-weight: 900;
	color: #fff
}

.home-banner {
    position: relative;
    text-align: center;
}

.home-banner:before {
    content: "";
    position: absolute;
    bottom: -200px;
    left: 25px;
    height: 500px;
    width: 500px;
    background: url(https://storage.perfectcdn.com/ff35b7/cylr7r8w6ouwn5mk.png) no-repeat 50%;
    background-size: contain;
    z-index: 1;
}

.home-banner img {
    z-index: -1;
    position: relative;
    display: block;
    margin: auto;
}

.home-banner .hb-icon-1 {
    position: absolute;
    top: 33%;
    left: 0;
}

.home-banner .hb-icon-1 img {
    animation: animationFramesOne 20s linear infinite alternate;
}

.home-banner .hb-icon-2 {
    position: absolute;
    top: 18%;
    right: 15%;
    animation: hero-review-img-animation 2s linear infinite alternate;
}

.home-banner .hb-icon-2 img {
    animation: rotateMe 10s linear infinite alternate;
}

.home-banner .hb-icon-3 {
    position: absolute;
    bottom: 4%;
    left: 9%;
    animation: hero-review-img-animation 2s linear infinite alternate;
}

.home-banner .hb-icon-4 {
    position: absolute;
    bottom: 37%;
    right: 4%;
    animation: wiggle 2s linear infinite alternate;
}

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

	20% {
		transform: translate(73px, -1px) rotate(36deg)
	}

	40% {
		transform: translate(141px, 72px) rotate(72deg)
	}

	60% {
		transform: translate(83px, 122px) rotate(108deg)
	}

	80% {
		transform: translate(-40px, 72px) rotate(144deg)
	}

	to {
		transform: translate(0) rotate(0deg)
	}
}

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

	to {
		transform: rotate(1turn)
	}
}

@keyframes hero-review-img-animation {
	0% {
		transform: translateY(0)
	}

	to {
		transform: translateY(-20px)
	}
}

@keyframes wiggle {

	0%,
	to {
		transform: scale(1.2) rotate(7deg)
	}

	50% {
		transform: scale(.8) rotate(-7deg)
	}
}


@media only screen and (min-width: 992px) {

	.dark .head-out.fixed {
		border: 1px solid var(--color-3);
		border-top: none;
		background: rgba(25,25,28,.8);
		-webkit-backdrop-filter: blur(15px);
		backdrop-filter: blur(15px);
		border-bottom-left-radius: 8px;
		border-bottom-right-radius: 8px;
	}
  
	.head-out.fixed {
		background: rgba(255,255,255,.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 10px;
		display: block;
		font-size: 16px;
	}

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

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

.btn-group .dropdown-menu {
    border: 1px solid var(--color-3);
    border-radius: 15px;
    box-shadow: none;
    background-color: var(--color-1);
	width: 100%;
	right: 0 !important;
	left: auto !important;
	top: -15px!important;
	transform: translate3d(0px, 52px, 0px) !important;
	min-width: 200px;
}

.btn-group .dropdown-menu .dropdown-divider {
	border-color: var(--color-3)
}

.btn-group .dropdown-menu.langs {
	min-width: 150px
}

.btn-group .dropdown-menu.langs li {
    border-bottom: 1px solid var(--color-1);
}  

.btn-group .dropdown-menu.langs li:last-child {
    border: none
}  

.btn-group .dropdown-item {
	font-size: 13px;
	font-weight: 400;
	color: var(--color-5);
	padding: 10px;
	align-items: center;
	display: flex;
}

.btn-group .dropdown-item:hover,
.btn-group .dropdown-item:focus {
	background-color: var(--color-2) !important;
	color: var(--color-5);
  	border-radius: 7px
}

.btn-group .lang-icon {
	display: flex;
	align-items: center;
	padding: 17px 10px;
	border-radius: 8px;
	font-size: 17px;
	color: var(--color-4);
	margin-right: 15px;
	border: 1px solid var(--color-3)
}

.btn-group .lang-icon span {
	font-size: 16px;
	padding-left: 5px
}

.btn-group .dropdown-toggle::after {
	display: none
}

.home-content h2 {
	font-size: 36px;
	font-weight: 700
}

.home-content p {
	color: #cacad2
}

.home-subtitle {
	position: relative;
	margin-bottom: 15px
}

.home-subtitle .hst-text {
	display: flex;
	align-items: center;
	background: var(--color-8);
	color: var(--color-6);
	width: max-content;
	padding: 5px 10px 5px 5px;
	border-radius: 15px
}

.home-subtitle .hst-icon {
	background: var(--color-6);
	line-height: 28px;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	text-align: center;
	color: #fff
}

.home-content h2 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#ef5600), color-stop(30%, #ff5c00), color-stop(30%, #ff5c00), color-stop(73%, #ff7e35), to(#ff9a61));
    background-image: -webkit-linear-gradient(left, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);
    background-image: -o-linear-gradient(left, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);
    background-image: linear-gradient(to right, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);	
	font-weight: 700
}

.dark-mode {
	width: 32px;
	height: 32px;
	background: var(--color-2);
	border: 2px solid var(--color-3);
	border-radius: 10px;
	margin-left: 15px
}

.dark-mode i {
	font-size: 18px;
	color: var(--color-4);
	line-height: 18px
}

.review-box {
    background-color: var(--color-1);
    border-radius: 5px;
    max-width: 160px;
    width: 100%;
    padding: 8px 15px;
    text-align: center;
	position: absolute;
	top: 25px;
    left: -25px;
}

.review-box .review-text {
	font-size: 12px;
	font-weight: 300;
	margin-bottom: 0
}

.review-box .review-text i {
	color: #ffb539
}

.review-images {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	max-width: 120px;
	margin: 0px auto 15px auto
}

.review-images .review-img {
	min-width: 40px
}

.review-images .review-img:not(:first-child) {
	margin-left: -20px
}

.review-images .review-img.text {
	background-color: var(--color-3);
	font-size: 13px;
	font-weight: 600;
	color: var(--color-5);
	border: 2px solid var(--color-5);
	height: 40px;
	line-height: 37px;
	border-radius: 50%;
	text-align: center
}

@-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);
	}
}

.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
}

.howto-wrapper {
	position: relative
}

.howto-bg {
    background-image: linear-gradient(90deg,var(--color-2) 40%, var(--color-1) 100%);
}

.howto-icon {
    margin-bottom: 20px;
	border-radius: 10px;
	background: var(--color-6)
}
.howto-icon i {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    font-size: 20px;
}
.howto-text p {
	color: #cacad2
}

.howto-image {
	position: relative
}

.bubble {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 18px;
    background: #EC4A54;
    color: #fff;
    font-weight: 400;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 4px 3px #0000004d);
}

.like-1 {
    right: 20%;
    bottom: 135px;
    animation: FloatLike 4s infinite 0s linear;
    animation-delay: -1.0s;
}

.follow-1 {
    right: 25%;
    top: 25%;
    animation: FloatLike 4s infinite 0s linear;
    animation-delay: -2.1s;
}

.follow-2 {
    right: 15%;
    bottom: 35%;
    animation: FloatLike 5s infinite 0s linear;
    animation-delay: -4s;
}

.like-2 {
    left: 25%;
    top: 35%;
    animation: FloatLike 3s infinite 0s linear;
    animation-delay: -4s;
}

.follow-3 {
    left: 5%;
    bottom: 35%;
    animation: FloatLike 6s infinite 0s linear;
    animation-delay: -3.5s;
}

.like-3 {
    right: 5%;
    top: 30%;
    animation: FloatLike 6s infinite 0s linear;
    animation-delay: -4s;
}

.like-4 {
    left: 15%;
    bottom: 115px;
    animation: FloatLike 5s infinite 0s linear;
    animation-delay: -1.7s;
}

.like-5 {
    left: 5%;
    top: 20%;
    animation: FloatLike 6s infinite 0s linear;
    animation-delay: -4s;
}

@keyframes FloatLike{
  0%{
      transform: translateY(400%);
      opacity: 0.2;
      }
  10%{
      transform: translateY(350%);
      opacity: 0.4;
      }
  20%{
      transform: translateY(300%);
      opacity: 0.6;
      }
  30%{
      transform: translateY(250%);
      opacity: 0.8;
      }
  40%{
      transform: translateY(200%);
      opacity: 1;
      }
  50%{
      transform: translateY(150%);
      opacity: 1;
      }
  60%{
      transform: translateY(100%);
      opacity: 1;
      }
  70%{
      transform: translateY(50%);
      opacity: 1;
      }
  80%{
      transform: translateY(0%);
      opacity: .4;
      }
  90%{
      transform: translateY(-50%);
      opacity: .0;
      }
  100%{
      transform: translateY(-50%);
      opacity: .0;
      }
}

.brands-wrapper .slick-slide {
    margin: 10px 15px;
}

.brands-item {
    background: var(--color-1);
    box-shadow: 0px 20px 30px rgb(122 122 122 / 0%);
    border-radius: 15px;
    padding: 17px 34px;
}

.dark .brands-item {
    box-shadow: 0px 20px 30px rgb(3 4 28 / 8%)
}

.brands-icon {
    margin-right: 13px;
}

.brands-title {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.02em;
    color: var(--color-5);
    margin-bottom: 0;
}

.brands-wrapper::before {
    top: 0;
    left: 0;
    background: linear-gradient(to left, var(--color-2) 0%, rgba(255, 255, 255, 0) 30%);
}

.brands-wrapper::after {
    top: 0;
    left: 0;
    background: linear-gradient(to right, var(--color-2) 0%, rgba(255, 255, 255, 0) 30%);
}

.brands-wrapper::before, .brands-wrapper::after {
    content: " ";
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
}

.brands-left {
	text-align: center
}

.brands-left .bl-content h3 {
	font-size: 36px;
	font-weight: 600
}

.brands-left .bl-content h3 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#ef5600), color-stop(30%, #ff5c00), color-stop(30%, #ff5c00), color-stop(73%, #ff7e35), to(#ff9a61));
    background-image: -webkit-linear-gradient(left, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);
    background-image: -o-linear-gradient(left, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);
    background-image: linear-gradient(to right, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);	
	font-weight: 700
}

.brands-item .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;
}

.brands-item .fa-twitter {
	background: #1da1f2;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-telegram-plane {
	background: #2b9fd2;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 14px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-soundcloud {
	background: #ff5836;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-spotify {
	background: #1DB954;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-tiktok {
	background: #ff0042;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-twitch {
	background: #4b367c;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 14px;
	-webkit-text-fill-color: transparent;
}

.brands-item .fa-reddit-alien {
	background: #F43708;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
}

.brands-item .fab.fa-linkedin-in {
	background: #0077b0;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 14px;
	-webkit-text-fill-color: transparent;
}

.brands-item .fa-snapchat-ghost {
	background: #FFFC00;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
}

.brands-item .fa-discord {
	background: #1090F3;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
}

.brands-item .fa-facebook-square {
	background: #207eff;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-youtube {
	background: #ff0042;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-tumblr {
	background: #34526f;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-steam {
	background: #00adee;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-pinterest {
	background: #E60023;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.brands-item .fa-apple {
	background: #555555;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.gnyFAQs .gnyFtab {
	position: relative;
	cursor: pointer;
	background: transparent;
	color: var(--color-3);
	padding: 13px 20px;
	-webkit-transition: .2s ease;
	transition: .2s ease;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--color-1)
}

.gnyFAQs .gnyFtab .fa-minus {
	display: none;
}

.gnyFAQs .gnyFtab.active {
	background: var(--color-8);
	color: var(--color-4);
	border-radius: 15px
}

.gnyFAQs .gnyFtab.active .gnyFhead {
	color: var(--color-4);
}

.gnyFAQs .gnyFtab.active .gnyFhead .right-p {
	color: var(--color-5);
}

.gnyFAQs .gnyFtab.active .fa-minus {
	display: block;
}

.gnyFAQs .gnyFtab.active .fa-plus {
	display: none;
}

.gnyFAQs .gnyFtab .gnyFhead {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-4);
}

.gnyFAQs .gnyFtab .gnyFhead .right-p {
	color: var(--color-6);
	font-size: 16px;
	height: 30px;
	line-height: 30px;
}

.gnyFAQs .gnyFtab .gnyFcontent {
	display: none;
	padding-top: 12px;
	color: var(--color-4);
	font-size: 16px;
	line-height: 170%;
	padding-bottom: 8px;
}

.home-heads {
	text-align: center;
	margin-bottom: 50px
}

.home-heads h3 {
	font-size: 36px;
	font-weight: 600
}

.home-heads h3 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#ef5600), color-stop(30%, #ff5c00), color-stop(30%, #ff5c00), color-stop(73%, #ff7e35), to(#ff9a61));
    background-image: -webkit-linear-gradient(left, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);
    background-image: -o-linear-gradient(left, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);
    background-image: linear-gradient(to right, #ef5600 0%, #ff5c00 30%, #ff5c00 30%, #ff7e35 73%, #ff9a61 100%);	
	font-weight: 700
}

@keyframes animationBoxAfter {
  0% {
    width: 80%;
    height: 80%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes animationBox {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translate(-1%, 2%) rotate(30deg);
  }
  50% {
    transform: translate(3%, -3%) rotate(10deg);
  }
  75% {
    transform: translate(-3%, 2%) rotate(-10deg);
  }
  100% {
    transform: translate(0, 0);
  }
}

.animation-box {
  transition: all 0.3s ease-in-out;
  position: absolute;
}

.animation-box-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animation-box::before, .animation-box::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.animation-box::before {
  width: 100%;
  height: 100%;
}

.animation-box::after {
  width: 116px;
  height: 116px;
}

.animation-box .btn {
  background-color: var(--color-6);
  color: var(--color-6);
}


.animation-box:hover .btn {
  background-color: var(--color-6);
}

.animation-box.animate::before {
  animation: animationBoxAfter 1.5s ease infinite;
}

.animation-box-btn {
  position: relative;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  border-radius: 100%;
}

.animation-box-btn::before, .animation-box-btn::after {
  background-color: var(--color-6);
}

.animation-box-btn::before {
  opacity: 0.1;
}

.animation-box-btn::after {
  opacity: 0.2;
  width: 80%;
  height: 80%;
}

.animation-box-btn .btn {
  width: 60%;
  border-color: transparent !important;
  height: 60%;
  border-radius: 100%;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 42px;
  justify-content: center;
}

.animation-box-btn--2xl {
  width: 400px;
  height: 400px;
}
.animation-box--2xl .animation-box-icon {
  width: 256px;
  height: 256px;
}

.animation-box--2xl::before {
  width: 808px;
  height: 808px;
}

.animation-box--2xl::after {
  width: 464px;
  height: 464px;
}

.animation-box img {
    max-width: 100%;
    height: auto;
	margin-bottom: 1.5rem !important
}

.underline {
    position: relative;
    color: var(--color-6);
}

.underline:after {
    content: '';
    position: absolute;
    background-color: var(--color-8);
    border-radius: 0.375rem;
    left: 0;
    height: 0.75rem;
    width: 100%;
    bottom: 0.15rem;
}


.footer {
    position: relative;
    z-index: 6;
}

.footer-bottom {
    position: relative;
    z-index: 10;
    padding: 45px 0;
  	border-top: 1px solid var(--color-1)
}

.footer-cp-text {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: var(--color-5);
}

.footer-alert {
    display: inline-block;
    background: var(--color-8);
    border: 1px solid var(--color-6);
    box-sizing: border-box;
    border-radius: 15px;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: -0.03em;
    color: var(--color-6);
    padding: 18px 20px;
}

.footer-l-alert {
    background: var(--color-1);
    border: 1px solid var(--color-3);
    box-sizing: border-box;
    border-radius: 15px;
    padding: 15px 20px;
    font-weight: 400;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: var(--color-5);
}

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

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

.footer-fade .hf-glow {
    position: absolute;
    width: 1176px;
    height: 850px;
    left: -669px;
    top: 200px;
    background: linear-gradient(180deg,rgba(255,31,0,0),#ff5c00);
    -webkit-filter: blur(239.122px);
    filter: blur(239.122px);
    -webkit-transform: rotate(354deg);
    transform: rotate(354deg);
}

.outside-content {
	padding: 150px 0
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    background: linear-gradient(0deg, var(--color-1) 17%, var(--color-8) 100%);
    padding: 15px 28px;
    border-width: 1px;
    border-bottom-width: 1px;
    border-style: solid;
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: "";
    position: absolute;
    left: -0;
    top: 0;
    bottom: 0;
    width: 75%;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: #0d111710;
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
}

.card-head-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 20px;
    background-color: var(--color-8);
    color: var(--color-6);
    margin-right: 10px;
}

.card-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -.005em;
    color: var(--color-5);
    margin-bottom: 0;
}

@media only screen and (max-width: 991.98px) {
	.hm-wrapper .row.row-btn {
		display: unset !important
	}
	.home-header {
		padding: 175px 0 50px 0
	}
	.home-content h2, .brands-left .bl-content h3, .home-heads h3 {
		font-size: 28px
	}
	.hf-glow {
		position: absolute;
		height: 650px;
		left: 0;
		top: -950px;
	}	
	.home-lang {
		display: none
	}
	.h-section {
		margin: 25px 0
	}
	.home-content p {
		display: none
	}
	.header-content {
		text-align: center
	}
	.home-subtitle .hst-text {
		margin: auto
	}
	.home-content .d-flex {
		justify-content: center
	}
	.animation-box {
		display: none
	}
    .footer-cp-text p {
      	  line-height: 24px
    }  
    .outside-content {
        padding: 100px 0;
    }
}

@media only screen and (min-width: 991.98px) {
    .footer-cp-text {
          text-align: left
    }
}




.g-dash-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background-color: var(--color-2);
	color: var(--color-5);
	outline: none;
	border: none;
	font-size: 18px;
	transition: .14s ease;
	z-index: 1020
}

.g-dash {
	position: relative;
	min-height: 100vh;
	background: var(--color-2);
	padding-left: 280px;
	padding-top: 90px;
	color: var(--color-5)
}

.g-dash .container {
	max-width: 1400px
}

.g-dash .g-dash-btn {
	position: fixed;
	top: 14px;
	left: 14px
}

.g-dash .g-dash-btn:focus {
	border: none;
	outline: 0
}

.g-dash .g-dash-btn .ri-close-line,
.g-dash .g-dash-btn .ri-menu-line {
	position: absolute;
	left: 50%;
	top: 50%
}

.g-dash .g-dash-btn .ri-close-line {
	transform: scale(0) translate(-50%, -50%);
	transition: .2s ease
}

.g-dash .g-dash-btn .ri-menu-line {
	transition: .2s ease;
	transform: translate(-50%, -50%)
}

@media (max-width: 992px) {
	.g-dash {
		padding-left: 0;
	}

	.g-dash.g-bar .g-sidebar {
		transform: translateX(0) translateX(0)
	}

	.g-dash.g-bar .g-dash-btn {
		left: 300px
	}

	.g-dash.g-bar .g-dash-btn .ri-close-line {
		transform: scale(1) translate(-50%, -50%)
	}

	.g-dash.g-bar .g-dash-btn .ri-menu-line {
		transform: scale(0) translate(-50%, -50%)
	}

	.g-dash .g-sidebar {
		transform: translateX(-110%);
		transition: .24s ease;
		box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3)
	}
}

.g-sidebar {
	background: var(--color-1);
	background-size: cover;
	border-radius: 0;
	width: 280px;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	z-index: 1040
}

.g-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px 0 0;
	margin-bottom: -10px
}

.g-logo img {
	max-width: 200px
}

.g-dash-menu {
	flex: 1;
	overflow-y: auto;
	padding: 15px 0 40px
}

.g-dash-menu::-webkit-scrollbar {
	width: 0
}

.g-menu-list {
	list-style: none;
	margin: 0;
	padding: 0 15px;
	display: flex;
	flex-direction: column
}

.g-menu-list .g-menu-item {
	display: block
}

.g-menu-list .g-menu-link {
	color: var(--color-5);
	display: flex;
	align-items: center;
	padding: 15px 20px;
	transition: .14s ease;
	border-radius: 10px;
	cursor: pointer;
}

.g-menu-list .g-menu-link .g-menu-text {
	font-weight: 400;
	font-size: 14px;
	line-height: 16px
}

.g-menu-list .g-menu-link .g-menu-text .badge {
	background-color: var(--color-5)!important;
    color: var(--color-6)!important;
    border-radius: 100%;
    padding: 2px 6px;
    font-weight: bold!important;
    font-size: 13px;
}

.g-menu-list .g-menu-link .g-menu-icon {
	display: flex;
	align-items: center;
	font-size: 14px;
	width: 34px
}

.g-menu-list .g-menu-link.active .g-menu-text {
	font-weight: 600;
}

.g-menu-list .g-menu-link.active {
	position: relative;
    background: linear-gradient(to right, #8e3300 0%, var(--color-6) 100%);
    border: 1px solid var(--color-6);
  	color: #fff
}

.g-menu-list .g-menu-link.active .g-menu-icon {
	display: flex;
	align-items: center;
	font-size: 16px;
	width: 34px
}

.g-menu-list .g-menu-link.active:hover {
	color: #fff!important
}

.g-menu-list .g-menu-link:hover {
	color: var(--color-6)
}

.g-dash-header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 74px;
	z-index: 1001;
	background: #ccd2e391;
	backdrop-filter: blur(32px);
}

.g-avatar {
    width: 2.5em;
    height: 2.5em;
    background: var(--color-3);
    border-radius: 10px;
}

.g-avatar i {
	font-size: 18px;
    line-height: 34px;
    color: var(--color-5);
}

@media (min-width: 768px) {
	.g-dash-header {
		padding: 0 30px;
		height: 80px;
		border-bottom: 0
	}
}

.g-dash-header .g-mo-logo {
	height: 74px;
	align-items: center
}

.g-dash .g-sidebar .g-logo .gnyLm {
	display: none
}

@media (min-width: 992px) {
	.g-dash-header {
		left: 280px
	}

	.g-dash.g-bar .g-dash-header {
		left: -200px
	}

	.g-dash-header .g-mo-logo {
		height: 80px
	}

	.g-dash.g-bar .g-sidebar {
		width: 80px;
		transition: 250ms all
	}

	.g-dash.g-bar .g-menu-list .g-menu-link .g-menu-text {
		display: none !important
	}

	.g-dash.g-bar .g-menu-list {
		padding: 0 10px
	}
  
	.g-dash.g-bar .g-dash-content {
		margin-left: -200px;
		transition: 250ms all
	}

	.g-dash.g-bar .g-dash-btn {
		left: 300px
	}

	.g-dash.g-bar .g-sidebar .g-logo .gnyMl {
		display: none
	}

	.g-dash.g-bar .g-sidebar .g-logo .gnyLm {
		width: 30px;
		padding: 20px 0;
		display: block;
		transition: 250ms all
	}
}

.currency-toggle {
	background: none;
	border: none;
	outline: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-4);
	font-size: 24px;
	overflow: hidden;
}

.currency-toggle.dropdown-toggle::after {
	display: none
}

.currency-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	z-index: 2000;
	display: none;
}

.currency-drawer {
	display: none;
	transform: translateX(100%);
	position: fixed;
	right: 0;
	top: 0;
	height: 100vh;
	z-index: 2003;
	background: var(--color-2);
	border-left: 1px solid var(--color-3);
	width: 280px;
	display: flex;
	flex-direction: column;
	transition: 0.14s ease;
}

.currency-drawer .drawer-header {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 80px;
	padding: 0 20px;
	background-color: var(--color-6);
}

.currency-drawer .drawer-header-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: var(--color-4);
	margin-bottom: 0;
}

.currency-drawer .drawer-header-close {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	font-size: 20px;
	cursor: pointer;
}

.currency-drawer .drawer-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	padding: 10px 20px 40px;
	overflow-y: auto;
}

.currency-item {
	background: var(--color-3);
	border: 1px solid var(--color-1);
	border-radius: 10px;
	padding: 18px 23px;
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: var(--color-4);
	transition: 0.14s ease;
}

.currency-item:hover,
.currency-item:focus {
	background: var(--color-8);
	border: 1px solid var(--color-6);
	color: var(--color-4);
}

.currency-item.active {
	background: var(--color-8);
	border: 1px solid var(--color-6);
}

.flag-icon-squared {
    border-radius: 10px;
}

.flag-icon.flag-icon-squared {
    width: 2.5em!important;
    height: 2.5em
}

.select2.select2-container .select2-selection {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	height: 45px;
	color: var(--color-5);
	display: flex;
	background: var(--color-2);
	outline: 0;
	transition: .15s ease-in-out;
	align-items: center;
	border: 1px solid var(--color-3)
}

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

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

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
	background: var(--color-2);
	border-radius: 10px
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
	-webkit-border-radius: 0 10px 0 0;
	-moz-border-radius: 0 10px 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: 0 solid #34495e;
	border-radius: 10px;
	display: flex;
	align-items: center
}

.select2-container .select2-dropdown {
	border-radius: 10px!important;
	background: var(--color-1);
	border: 0;
	overflow: hidden
}

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

.select2-results__option[aria-selected] {
	cursor: pointer;
	transition: .2s;
	border-bottom: 1px solid var(--color-3);
	padding: 6px;
	font-size: 14px
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: var(--color-3) !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(--color-3);
	border-radius: 10px
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
	background-color: var(--color-3) !important;
	transition: .2s;
	border-bottom: 1px solid var(--color-3);
	color: var(--color-5)
}

.select2-results__option a {
	color: var(--color-5) !important
}

.select2-selection__icon .fa-reddit {
	background: #F43708;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	width: 25px
}

.select2-selection__icon .fab.fa-linkedin-in {
	background: #0077b0;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 14px;
	-webkit-text-fill-color: transparent;
	width: 25px
}

.select2-selection__icon .fa-snapchat-ghost {
	background: #FFFC00;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 13px;
	-webkit-text-fill-color: transparent;
	width: 25px
}

.select2-selection__icon .fa-discord {
	background: #1090F3;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	width: 25px
}

.select2-selection__icon .fa-facebook-f {
	background: #207eff;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	width: 25px
}

.select2-selection__icon .fa-list {
	background: var(--color-6);
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 13px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	width: 25px
}

.select2-selection__icon .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;
	width: 25px
}

.select2-selection__icon .fa-twitter {
	background: #1da1f2;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 13px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	width: 25px
}

.select2-selection__icon .fa-telegram-plane {
	background: #2b9fd2;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 14px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	width: 25px
}

.select2-selection__icon .fa-soundcloud {
	background: #ff5836;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	width: 25px
}

.select2-selection__icon .fa-at {
	font-size: 17px;
	width: 25px
}

.select2-selection__icon .fa-spotify {
	background: #1DB954;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 13px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	width: 25px
}

.select2-selection__icon .fa-tiktok {
	background: #ff0042;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 13px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	width: 25px
}

.select2-selection__icon .fa-twitch {
	background: #4b367c;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 14px;
	-webkit-text-fill-color: transparent;
	width: 25px
}

.select2-selection__icon .fa-youtube {
	background: #ff0042;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 13px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	width: 25px
}

.nPlatform, .slistOne .nPlatform {
   display: none
}

.slistTwo .nPlatform  {
   display: block
}

body .devServices, .slistOne .devServices {
   background: var(--color-8);
   color: #fff
}

body .norServices, .slistOne .norServices {
   color: var(--color-5)
}

.slistTwo .norServices {
   background: var(--color-6);
   color: #fff
}

.slistTwo .devServices {
   background: transparent;
   color: var(--color-5)
}

.norServices, .devServices {
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 100%!important;
  	font-size: 10px
}

.nbtn {
	background: var(--color-2);
    padding: 5px 0;
    border-radius: 50px;
    width: 66px;
    padding-left: 7px;
}

.bs-toast {
	background: var(--color-6);
	border: 1px solid var(--color-7) !important;
	color: #fff;
	padding: 10px 24px;
	border-radius: 15px;
	position: fixed;
	bottom: 30px;
	left: 40px;
	width: 100%;
	width: max-content;
	max-width: 350px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: none;
	z-index: 3000;
	text-align: center
}

.bs-toast .bs-toast-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.bs-toast .toast-text {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 14px;
	font-weight: 500
}

.bs-toast .toast-times {
	cursor: pointer;
	border: none;
	outline: 0;
	color: #fff;
	background: 0 0
}

#service_description {
	height: 250px;
    overflow-y: scroll;
    background: #eef2ff;
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
}

.g-mo-logo .col-auto {
	padding-left: 5px!important;
}

#neworder-search, #neworder-search:focus {
	background: var(--color-2)!important;
  	position: relative;
    padding-left: 40px
}

.input-group i {
	position: absolute;
    left: 13px;
  	top: 18px;
  	z-index: 10
}

.currency-toggle {
	width: 1.5em!important;
    height: 1.5em!important;
    background: rgb(10, 177, 108, 1);
    border-radius: 10px!important;
}

.currency-toggle i {
	font-size: 18px
}

ul.platforms {
	display: flex;
	align-content: center;
	list-style: none;
	gap: 6px;
	margin: 0;
	padding: 0;
}

ul.platforms li {
	flex-grow: 1;
}

ul.platforms li button {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid #222f56;
	background: #192446;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

ul.platforms li button.all {
	background: #4a5cf6;
	border: 1px solid #222f56;
}

ul.platforms li button.instagram {
	background: #ff0099;
	border: 1px solid #ff0099;
}

ul.platforms li button.twitter {
	background: #1da1f2;
	border: 1px solid #1da1f2;
}

ul.platforms li button.facebook {
	background: #3b5998;
	border: 1px solid #3b5998;
}

ul.platforms li button.youtube {
	background: #ff0000;
	border: 1px solid #ff0000;
}

ul.platforms li button.tiktok {
	background: #000000;
	border: 1px solid #000000;
}

ul.platforms li button.telegram {
	background: #0088cc;
	border: 1px solid #0088cc;
}

ul.platforms li button.steam {
	background: #000000;
	border: 1px solid #000000;
}

ul.platforms li button.discord {
	background: #7289da;
	border: 1px solid #7289da;
}

ul.platforms li button.reddit {
	background: #ff4500;
	border: 1px solid #ff4500;
}

ul.platforms li button.twitch {
	background: #6441a5;
	border: 1px solid #6441a5;
}

ul.platforms li button.snapchat {
	background: #fffc00;
	border: 1px solid #fffc00;
}

ul.platforms li button.snapchat i {
	color: #000;
}

ul.platforms li button.linkedin {
	background: #0077b5;
	border: 1px solid #0077b5;
}

ul.platforms li button.threads {
	border: 1px solid #2a2828;
    background: #2a2828
}

ul.platforms li button.pinterest {
	background: #bd081c;
	border: 1px solid #bd081c;
}

ul.platforms li button.tumblr {
	background: #35465c;
	border: 1px solid #35465c;
}

ul.platforms li button.soundcloud {
	background: #ff5500;
	border: 1px solid #ff5500;
}

ul.platforms li button.likee {
	background: #964bff;
	border: 1px solid #964bff;
}

ul.platforms li button.website {
	background: #ff0000;
	border: 1px solid #ff0000;
}

ul.platforms li button.trendyol {
	background: #f27a1a;
	border: 1px solid #f27a1a;
}

ul.platforms li button i {
	font-size: 18px;
	color: #fff;
}

ul.platforms li button.active {
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.scrollt {
		display: flex;
		overflow-x: scroll;
		overflow-y: auto;
		max-width: 100%;
	}

	.scrollt > * {
		display: flex;
		overflow-x: scroll;
		overflow-y: hidden;
		max-width: 100%;
		width: 100%;
		flex-wrap: nowrap;
		white-space: nowrap;
		justify-content: flex-start !important;
	}

	.scrollt ul.platforms {
		padding-bottom: 20px;
	}

	.scrollt .app-ord-nav {
		padding-top: 10px;
		padding-bottom: 20px;
	}
}

.search-services {
	height: 40px;
	position: relative;
}

.search-services:focus-within .icon {
	color: var(--color-3);
}

.search-services .icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	color: #92969d;
	transition: 0.14s ease;
}

.search-services .textbox {
	width: calc(100% - 40px);
	margin-left: 40px;
	height: 40px;
	background-color: transparent;
	outline: none;
	border: none;
	color: var(--color-5);
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
}

.search-services .textbox::placeholder {
	color: #92969d;
}

.s-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.s-row.s-title {
	font-weight: 600;
	display: none;
}


.services-wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.si-wrapper {
	flex: 0 0 auto;
	width: 100%;
	position: relative;
}

.s-col {
	flex: 0 0 auto;
}

.service-item {
	padding: 12px 30px;
	border-radius: 15px;
	margin-bottom: 14px;
	background: var(--color-1);
	border: 1px solid var(--color-3);
	box-sizing: border-box;
	border-radius: 10px;
}


.service-item .s-col-id i {
	cursor: pointer
}

.services-head-row .service-item {
	background-color: transparent;
	border: none;
}

.sp-serv-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
}

.sp-services .card {
	margin-bottom: 30px;
}


.si-header {
	padding: 15px 30px;
	background: var(--color-6);
	border-radius: 10px;
	border: 1px solid var(--color-7);
	margin-bottom: 14px;
}

.si-header .si-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 23px;
	color: #fff;
	margin-bottom: 0;
}

.modal-wrapper {
	margin: auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px black;
}

.modal-wrapper.active {
	display: flex;
}

.mbo-wrapper {
	height: 100%;
	width: 100%;
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	overflow-y: auto;
}

.modal-box {
	margin: auto 0;
	max-width: 560px;
	width: 100%;
	border-radius: 15px;
	background: var(--color-2);
	border: 1px solid var(--color-3);
	text-align: left;
	position: relative;
}

.modal-box .m-body .form-control {
	background: var(--color-1);
	border: 1px solid var(--color-3)
}

.m-header {
	padding: 30px 30px 60px;
	background-color: var(--color-2);
	border-radius: 15px 15px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.m-header>* {
	text-align: center;
}

.m-body {
	padding: 30px;
}

.m-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: -0.005em;
	color: var(--color-5);
	margin-bottom: 0;
	word-break: break-word;
	word-wrap: break-word;
	white-space: normal;
	max-width: 100%;
	min-width: 40%;
}

.m-close {
	border: none;
	outline: none;
	background-color: transparent;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-5);
	font-size: 20px;
	border-radius: 15px;
	position: absolute;
	z-index: 3001;
	top: 15px;
	right: 15px;
}

.m-close:focus {
	box-shadow: 0 0 0 0.25rem rgba(1, 57, 255, 0.2);
}

.m-sub-title {
	margin-top: 4px;
	font-weight: 600;
	font-size: 14px;
	line-height: 26px;
	letter-spacing: -0.005em;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0;
}

#serviceModalText {
	background: var(--color-1);
	border: 1px solid var(--color-3);
	border-radius: 15px;
	padding: 30px;
	margin-top: -60px;
	white-space: break-spaces;
	max-height: 350px;
	overflow-y: scroll;
}

@media only screen and (max-width: 991.98px) {
	.service-item .s-row {
		flex-wrap: wrap;
		align-items: center;
	}

	.service-item .s-col-avtime {
		width: 100%;
		text-align: center;
	}

	.service-item .s-col-btn {
		flex: 1;
	}

	.service-item .s-col {
		padding: 0px 0;
	}

	.service-item .s-col::before {
		content: attr(data-title);
		display: block;
		padding-bottom: 6px;
		font-weight: 600;
		color: #a1a1a1;
		font-size: 13px;
	}

	.service-item .s-col-fav {
		order: 100;
	}

	.service-item .s-col-id {
		width: 100%;
		text-align: center;
	}

	.service-item .s-title {
		width: 100%;
		text-align: center;
	}

	.service-item .s-col-c {
		width: 30%;
		text-align: center;
	}

	.service-item .s-col-d {
		width: 100%;
		text-align: center;
	}

	.search-services {
		margin-top: 15px
	}

	.m-title {
		font-size: 16px
	}

	#serviceModalText {
		padding: 15px;
		margin-top: 0
	}

	.m-header,
	.m-body {
		padding: 15px
	}

}


@media only screen and (min-width: 992px) {
	.si-wrapper {
		flex: 0 0 auto;
		width: 50%;
	}

	.s-row.s-title {
		display: flex;
	}

	.s-col {
		flex: 0 0 50px;
		width: 50px;
	}

	.s-col.s-col-sm {
		flex: 0 0 70px;
		width: 70px;
	}

	.s-col.s-col-md {
		flex: 0 0 100px;
		width: 100px;
	}

	.s-col.s-col-lg {
		flex: 0 0 180px;
		width: 180px;
	}

	.s-col.s-title {
		flex: 1 0 0;
		width: auto;
	}

	.services-wrapper {
		flex-direction: column;
	}

	.si-wrapper {
		width: 100%;
	}

	.sp-services .card {
		background-color: #fff;
		border: 1px solid #eee;
		overflow: hidden;
	}
}

.s-col-btn .btn {
	border-radius: 7px
}

.fas.fa-star {
	color: var(--color-6)
}

.s-col-id .sp-serv-sm {
    background: var(--color-8);
    padding: 5px 15px;
    border-radius: 7px;
    color: #202020;
    font-weight: 600;
}

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

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

.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(--color-3)
}

.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(--color-1);
    border: none;
    margin: 0;
    height: 50px;
    padding: 0;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 17.3005px;
    line-height: 18px;
    color: var(--color-5);
    position: relative;
}

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

.op-stats {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	padding: 5px 15px;
}

.op-stats.completed {
	background-color: #00B67A;
	border: 1px solid #00B67A;
	color: #fff;
}

.op-stats.processing {
	background-color: #f65619;
	border: 1px solid #f65619;
	color: #fff;
}

.op-stats.inprogress {
	background-color: #029fff;
	border: 1px solid #029fff;
	color: #fff;
}

.op-stats.pending {
	background-color: #fbbc05;
	border: 1px solid #fbbc05;
	color: #fff;
}

.op-stats.partial {
	background-color: #818181;
	border: 1px solid #818181;
	color: #fff;
}

.op-stats.cancelled {
	background-color: #ff2626;
	border: 1px solid #ff2626;
	color: #fff;
}

.tooltip-inner {
	background-color: var(--color-6) !important;
	color: #fff;
	font-size: 11px
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
	border-top-color: var(--color-6) !important;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
	border-right-color: var(--color-6) !important;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
	border-bottom-color: transparent !important;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
	border-left-color: var(--color-6) !important;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: transparent !important;
}

.op-card--bottom {
	border-top: 1px solid var(--color-3);
    padding-top: 15px;
}

.op-card--top {
  	padding-bottom: 15px
}

.orders-nav-link {
	background: var(--color-2);
    border: 1px solid var(--color-3);
    box-sizing: border-box;
    border-radius: 15px;
    color: #637990;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    transition: 0.14s ease;
}

.op-search-box {
  transition: 0.14s ease;
}

.op-search-box:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(2, 88, 255, 0.25);
}

.op-search-box .icon {
  color: #637990;
}

.op-search-box input {
  transition: 0.14s ease;
  background-color: transparent;
  border: none;
  outline: none;
  flex: 1;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.op-search-box input::placeholder {
  color: #566676;
}

.op-card {
  margin-bottom: 30px;
}

.op-card .op-card--top {
  padding-bottom: 30px;
  border-bottom: 1px solid #1b2454;
}

.op-card .op-card--bottom {
  padding-top: 30px;
}

.op-stats {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 34px;
}
.op-stats.op-stats-sm {
  padding: 10px 30px;
  border-radius: 10px
}
.op-stats.op-stats-btn {
  padding: 20px 20px;
  display: inline-block;
  background: #0258FF;
  border: none;
  color: #566676;
  transition: 0.14s ease;
  color: #fff;
}
.op-stats.op-stats-btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(2, 88, 255, 0.25);
}
.op-stats.op-stats-btn.cs-btn {
  font-size: 24px;
  margin-bottom: 0;
}

.op-stats.danger-btn {
  border: 1px solid var(--color-6);
  background: var(--color-8);
  color:  var(--color-6);
}

.op-service-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: var(--color-5);
  margin-bottom: 0px;
}

.op-search-box.op-order-link {
  display: flex;
  width: 100%;
}
.op-search-box.op-order-link .link {
  display: block;
  width: 100%;
  flex: 1 0 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #637990;
  opacity: 0.8;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.op-date {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #566676;
}
.op-date::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #9aacbd;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  margin-left: 0px;
}

.op-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .op-item {
    flex-direction: row;
  }
}
.op-item .title {
  font-size: 14px;
  line-height: 18px;
  color: #72879d;
}

.op-item .text {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-5);
  line-height: 27px;
}

@media (max-width: 991.98px) {
  .op-stats {
    width: max-content;
    margin: auto;
  }
  .op-stats.op-stats-sm {
      padding: 5px 25px;
      border-radius: 10px;
  }  
}

.order-container .m-header { 
    background-color: transparent;
    position: absolute;
    right: 0;
}

.order-area .dropdown-menu {
	background: var(--color-1);
	border-color: var(--color-3);
	border-radius: 15px;
	top: 4px !important;
	min-width: 100%;
}

.order-area .dropdown-menu .dropdown-item {
	color: var(--color-5)
}

.order-area .dropdown-menu .dropdown-item:hover {
	background: var(--color-3);
	color: var(--color-6)
}

.order-area .dropdown-toggle::after {
	display: none
}

@media only screen and (max-width: 991.98px) {
	.api-top {
		grid-template-columns: 1fr;
		gap: 10px
	}

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

.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;
}

@media only screen and (min-width:991.98px) {

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

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

}

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

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

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

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

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

.api-item,
.api-list .api-item {
	padding: 5px 10px;
	color: var(--text-1)
}

.api-item {
	justify-content: space-between;
	border-radius: 10px 10px 0 0;
	background: var(--color-2);
	margin-top: 10px;
	font-weight: 800
}

.api-list {
	flex-direction: column;
	overflow: hidden;
	background: var(--color-3);
	border-radius: 0 0 7px 7px;
}

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

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

.api-baslik {
	background: var(--color-2) !important;
	border-radius: 10px 10px 0 0 !important
}

.ns-box,
pre {
	background: var(--color-2);
	border-radius: 7px;
	padding: 10px
}

pre {
	color: var(--text-1);
	overflow: auto
}

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

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

pre {
	color: var(--color-6);
	background: var(--color-8);
}

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
}

.imgbb-button {
	background: var(--color-3)!important;
    color: var(--color-5)!important;
    border-radius: 5px!important;
    padding: 10px 25px!important;
}

.imgbb-button:hover,
.imgbb-button:focus {
	background: var(--color-8)!important;
    color: var(--color-5)!important;
}

#history-search .form-control {
	border-radius: 10px 0 0 10px !important
}

#history-search .btn-primary {
	height: 48px;
    border-radius: 0 10px 10px 0;
}

.tickets {
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	background: var(--color-2);
	border-radius: 10px;
	padding: 10px 15px;
}

.tickets:hover {
	background: var(--color-3);
	transition: 500ms all
}

.tickets h6 {
	margin-bottom: 10px;
	font-size: 14px;
    color: var(--color-5)
}

.tickets span {
	color: #71738d;
	font-size: 12px;
}

.tickets .date {
	position: absolute;
	top: 15px;
	right: 10px;
	font-size: 12px;
	color: #BCC2CF;
}

.ticketstatus.completed {
	color: #00B67A
}

.ticketstatus.pending {
	color: #fbbc05
}

.ticketstatus.closed {
	color: #ff3e7c
}

.tc-tdet-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 31px;
  margin-bottom: 0px;
}

.tc-tick-id {
  background-color: var(--color-6);
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 28px;
}

.tc-ti-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #acacac;
  margin-bottom: 0px;
}

.tc-ti-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-5);
}

.tc-ti-box {
  background-color: #4a5cf6;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
}

.tc-ti-box .tctb-img {
  max-width: 140px;
  margin-bottom: 20px;
}

.tc-ti-box .tctb-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 28px;
}

.tc-ti-box .tctb-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
}

.ticket-message-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ticket-message-block.ticket-message-left + .ticket-message-left {
    margin-top: 0px;
}

.ticket-message-block.ticket-message-right + .ticket-message-right {
  margin-top: 0;
}

.ticket-message-block.ticket-message-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ticket-message-block.ticket-message-right .ticket-msg-container {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.ticket-message-block.ticket-message-right .ticket-msg-container .ticket-msg {
  background: #3E4954;
}

.ticket-message-block .ticket-msg-container {
  width: 100%;
}

.ticket-message-block .ticket-msg-container .ticket-msg {
  background: var(--color-6);
  border-radius: 10px;
  padding: 14px 26px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: .3px;
  color: #fff;
  margin-bottom: 12px;  
}

.ticket-message-block .ticket-msg-container .date-time {
  font-size: 12px;
  line-height: 13px;
  color: #A5A5A5;
  margin-bottom: 30px;
  padding: 0 10px;
  display: block;
}

.schat-body .schat-chat-body {
  max-height: 454px;
  min-height: 454px;
  overflow-y: auto;
  padding: 0 15px
}

.schat-body .schat-input {
  padding-top: 10px;
}

.schat-msg-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-2);
  border-radius: 10px;
  height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.schat-msg-input textarea {
  border: none;
  outline: none;
  background: transparent;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 9px 26px;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-5);
}

.schat-msg-input .send-btn {
  height: 54px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none;
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  margin-right: 10px
}

.ph-iib {
    background: var(--color-8);
    -webkit-box-shadow: 0px 24px 40px rgba(148, 148, 148, 0.14);
    box-shadow: 0px 24px 40px rgba(148, 148, 148, 0.14);
    border-radius: 10px;
    padding: 8px 17px 8px 8px;
    display: inline-block;
    text-decoration: none;
    outline: none;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-6);
    -webkit-transition: .14s ease;
    transition: .14s ease;
}

.ph-iib .ph-iib-icon {
    background: var(--color-6);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    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;
    color: #fff;
    font-size: 20px;
}

.schat-body .avatar.me-3 {
	margin-right: 15px !important;
}

.schat-body .avatar {
	border-radius: 100%;
    color: var(--color-6) !important;
  	background: var(--color-8);
    text-align: center;
    position: relative;
    border: 3px solid var(--color-8);
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
    font-size: 26px;
    padding: 5px 10px;
}

.schat-body .avatar span {
	font-size: 24px;
	color: var(--color-6)
}

.divider {
    border-bottom: 1px solid var(--color-3);
    clear: both;
}

.d-hello-card {
    position: relative;
}

.d-hello-card .d-hello--item {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 15px;
}

.d-hello-card .d-hello--item .dh-right .text-3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-5)
}

.d-hello-card .d-hello--item .dh-right .text-2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--color-5)
}

.d-hello-card .dh-icon {
    background-color: var(--color-8);
    color: var(--color-6);
    border-radius: 50%;
    position: relative;
    height: 64px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 400;
}

@media (max-width: 991.98px) {
  .d-hello {
  	display: none
  }
}

.acp-item {
    margin: 10px 0;
}

.acp-item .acp-item--icon {
	font-size: 24px;
    line-height: 35px;
    color: var(--color-6);
    background: var(--color-8);
    width: 36px;
    height: 36px;
    border-radius: 7px;
    text-align: center;
}

.acp-item .acp-item--user {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: var(--color-5);
    margin-bottom: 0px;
}

.acp-item .acp-item--username {
    font-size: 13px;
    line-height: 20px;
    color: #202020;
}

.acpa-container {
    text-align: center;
}

.acpa-container .acpa-avatar {
    background-color: var(--color-8);
  	color: var(--color-6);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 4px;
    position: relative;
    margin: 0 auto 25px auto
}

.acpa-container .acpa-avatar  span {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-5);
}

.acpa-container .acpa-fullname {
    font-size: 16px;
    line-height: 20px;
    color: color: var(--color-5);
    margin-bottom: 8px;
}

.acpa-container .acpa-email {
    font-size: 14px;
    line-height: 17px;
    color: #b9b9b9
}

.user-card {
    background: var(--color-3);
    border-radius: 10px;
    padding: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 200px;
}

.user-card .col {
	padding-left: 0
}

.user-card .user-card--icon {
    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;
    color: var(--color-6);
    background: var(--color-8);
    height: 50px;
    width: 50px;
    border-radius: 10px;
    font-size: 25px;
    line-height: 25px;
}

.user-card .user-card--title {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 4px;
    color: var(--color-5)
}

.user-card .user-card--status {
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    color: var(--color-5);
}

.modal-content {
	background: transparent
}

.modal-header, .modal-body, .modal-footer {
	background: var(--color-1)
}

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

.guser.verified {
    color: #009ef7;
}

@media only screen and (min-width:962px) {
    .paymentlist {
        display: flex;
        width: 100%;
        gap: 7px;
        flex-wrap: wrap;
        margin-bottom: 10px;
        flex-direction: column;
    }

    .afunds-box {
        display: flex;
        padding: 10px;
        background: var(--color-2);
        border-radius: 10px;
        font-size: 12px;
        border: 1px solid var(--color-3);
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .afunds-box.active {
        border: 1px solid var(--color-6)
    }

    .afunds-name {
        font-weight: 600;
        font-size: 14px;
    }

    .afunds-bottom {
        display: flex;
        justify-content: space-between
    }
    .afunds-icon i {
          font-size: 20px;
          margin-left: 10px
    }
}

@media only screen and (max-width:962px) {
    .paymentlist {
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }

    .afunds-box {
        display: flex;
        padding: 10px;
        background: var(--color-2);
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
        justify-content: center;
        border: 1px solid var(--color-3);
        flex-direction: column
    }

    .afunds-box.active {
        border: 1px solid var(--color-6)
    }

    .afunds-name {
        font-weight: 600
    }

    .afunds-bottom {
        display: none
    }
}

.w-6 {
    width: 2.5rem;
}

.s-money {
    margin-bottom: 9px;
    margin-top: 0;
    display: flex;
    border-radius: 10px;
    justify-content: space-between
}

.s-money-list {
    width: 24%;
    background: var(--color-8);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--color-6);
    color: var(--color-6);
    font-weight: 600;
}

.s-money-list:hover {
    width: 24%;
    background: var(--color-6);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    transition: .5s ease;
    color: var(--color-5)
}

.s-money-list:link {
    text-decoration: none
}

.sc-sup-item {
	background: var(--color-1);
	border: 1px solid var(--color-3);
	box-sizing: border-box;
	border-radius: 15px;
	padding: 18px 30px;
	display: block;
	width: 100%;
	transition: .14s ease
}

.sc-sup-item:hover {
	background: var(--color-8);
	border: 1px solid var(--color-6)
}

.sc-sup-item .title {
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: var(--color-5);
	margin-bottom: 10px
}

.sc-sup-item .text {
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px
}

@media (min-width: 992px) {
	.sc-sup-item .text {
		margin-bottom: 0
	}
}

.sc-sup-item+.sc-sup-item {
	margin-top: 13px
}

.gc-scroll {
	white-space: unset;
    max-height: 350px;
    overflow-y: scroll;
}

.nav-pills .nav-link {
    color: var(--color-5);
    display: flex;
    align-items: center;
    padding: 15px 20px;
    transition: .14s ease;
    border-radius: 10px;
    cursor: pointer;
    background: var(--color-2);
    border: 1px solid var(--color-3);
  	margin-right: 10px
}

.nav-pills .nav-link.active {
    color: var(--color-5);
    display: flex;
    align-items: center;
    padding: 15px 20px;
    transition: .14s ease;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(to right, #8e3300 0%, var(--color-6) 100%);
    border: 1px solid var(--color-6);
}

.box .panel-body {
    background: var(--color-2);
    border: 1px solid var(--color-3);
    border-radius: 10px;
    padding: 15px;
}

.blog-item {
    display: block;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-item .blog-thumb {
    position: relative;
    padding-top: 60%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-item .blog-thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item .blog-title {
    padding-top: 30px;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    color: #ffffff;
}

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

.bs-single-thumbnail {
    padding: 0px 0 30px 0;
}

.bs-single-thumbnail .blog-single-image-wrapper {
    position: relative;
    padding-top: 34%;
    width: 100%;
    border-radius: 50%;
    user-select: none;
    pointer-events: none;
    border-radius: 25px;
    overflow: hidden;
}

.bs-single-thumbnail .blog-single-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bs-head-share-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bs-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bs-head-title {
    font-weight: 600;
    font-size: 35px;
    line-height: 44px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.g-userbox {
    padding: 20px 30px 0;
}

.g-userarea {
    background: var(--color-2);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 20px;
    transition: .14s ease;
    margin-top: 15px;
}

.g-avatar {
    background-color: var(--color-1);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center
}

.h-avatar img {
    width: 44px;
    height: 44px
}

.g-avatar span {
    font-weight: 600;
    font-size: 24px;
    color: var(--color-5);
}

.g-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .01em;
    color: var(--color-4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.g-userast {
    margin-top: 6px;
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: .02em;
    color: var(--color-5);
}

.ms-auto {
    margin-left: auto !important;
}

.g-user-arrow {
    color: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.sUpd.priceDown {
	color: #f65619
}

.sUpd.newServ {
	color: #00B67A
}

.sUpd.priceUp {
	color: #fbbc05
}

.sUpd.priceActive {
	color: #029fff
}

.sUpd.priceCare {
	color: #ff3e7c
}

@media (min-width: 991.98px) {
  .g-dash.g-bar .g-userbox {
      display: none
  }
}

.home-logo img {
	height: 40px
}

.dark .g-dash-header {
	background: #19191c91;
}

.dark #service_description {
    background: #313138
}

.dark .s-col-id .sp-serv-sm, .dark .acp-item .acp-item--username {
	color: #fff
}

.dark .nav-pills .nav-link.active {
    color: #fff
}

.dark-btn, .light-btn {
	font-size: 18px
}

.dark-btn,
.dark .light-btn {
	display: block
}

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

.dark .logo-white, .logo-dark {
	display: none
}

.dark .logo-dark, .logo-white {
	display: block
}

.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
}

.btn-rounded {
	color: var(--color-5)!important
}

.dark .home-content p {
    color: #cacad2;
}

.home-content p {
    color: #202020
}

.dark-mode {
	border-radius: 8px
}

@media (max-width: 991.98px) {
  .hm-wrapper .dark-mode {
  		display: none!important
  }
}

@media (min-width: 991.98px) {
  .home-login {
  		margin-top: -35px
  }
}

.hfs-content {
    box-shadow: 0px 34px 35px rgb(25 25 28);
    padding: 20px;
    border-radius: 15px;
}

.hfs-content .hfs-item .hfs-count {
    font-size: 32px;
    letter-spacing: .4px;
    color: var(--color-4);
    font-weight: 700;
}

.hfs-content .hfs-item .hfs-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-6)
}

@media (max-width: 991.98px) {
    .hfs-content {
          text-align: center
    }
    .hfs-content .hfs-item {
          margin-bottom: 15px
    }  
}

.btn-outline {
	background: var(--color-8);
  	border: 1px solid var(--color-6);
  	color: var(--color-6)
}

.btn-outline:hover, .btn-outline:focus {
	background: var(--color-6);
  	border: 1px solid var(--color-6);
  	color: #fff
}