@import url("colors.css");

a {
	color: var(--accent);
}

pre {
	color: var(--text-secondary);
}

a:hover {
	color: var(--accent-hover);
}

section#main-body {
	min-height: calc(100vh - 420px);
	position: relative;
}

section#main-body:has(.custom-hero-container) {
	padding: 0;
}

.dashboard-container {
	padding: 1.25rem 2rem;
}

.p-absolute {
	position: absolute;
}

@media (min-width: 1500px) {
	.container-xl,
	.container-lg,
	.container-md,
	.container-sm,
	.container {
		max-width: 1420px;
	}
}

.close {
	color: #fff;
	text-shadow: none;
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.close:hover {
	color: var(--accent);
	opacity: 1 !important;
}

label:has(.icheckbox_square-blue),
label:has(.iradio_square-blue) .iradio_square-blue {
	flex-shrink: 0;
}

.icheckbox_square-blue,
.iradio_square-blue {
	flex-shrink: 0;
}

.section-title h1 {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

.section-title p {
	font-size: 18px;
	color: var(--text-secondary);
	margin: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
	background: none;
	width: 8px;
}

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

::-webkit-scrollbar-thumb {
	background-color: var(--accent);
	border-radius: 9px / 4px;
}

/* Lables */
.label {
	padding: 0.3em 0.6em;
}

.label-default {
	background-color: var(--accent);
}

/* Irs */
.irs-min,
.irs-max {
	color: var(--text-primary) !important;
	background-color: var(--color-600) !important;
	border: 1px solid var(--color-500) !important;
	padding: 4px 10px !important;
	margin-top: -4px !important;
}

.irs-from,
.irs-to,
.irs-single {
	background: var(--accent) !important;
}

.irs-from:after,
.irs-to:after,
.irs-single:after {
	border-top-color: var(--accent) !important;
}

.irs-grid-pol.small {
	display: none;
}

.irs-grid-pol {
	height: 5px !important;
	background: var(--text-primary) !important;
}

.irs-grid-text {
	font-size: 14px !important;
	color: var(--text-primary) !important;
}

/* Checkbox */
.icheckbox_square-blue,
.iradio_square-blue {
	border-radius: 4px;
}

label:has(.icheckbox_square-blue),
label:has(.iradio_square-blue) {
	display: flex;
	align-items: center;
	gap: 6px;
}

.billing-contact-0 {
	display: inline-block !important;
}

/* Banners */
.verification-banner {
	background-color: var(--accent);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: 16px 19px;
}

.verification-banner.email-verification .btn.btn-action,
.verification-banner.email-verification .btn.btn-action:active,
.verification-banner.email-verification .btn.btn-action[disabled]:hover {
	color: #fff;
	background-color: var(--color-500);
	border: 1px solid var(--color-800);
}

.verification-banner .btn.close {
	color: var(--text-primary);
	margin-top: -2px;
}

.verification-banner .btn.close:hover {
	color: var(--text-secondary);
}

.verification-banner .fal,
.verification-banner .far,
.verification-banner .fas {
	color: #fff;
	font-size: 18px;
	padding: 8px 10px 0 0;
	font-weight: 500;
}

@media (min-width: 768px) {
	.verification-banner .fal,
	.verification-banner .far,
	.verification-banner .fas {
		font-size: 20px;
		padding: 11px 10px 0 0;
	}
}

/* Alerts */
.alert {
	background-color: var(--accent);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: 16px 19px;
}

/* Modal */
.modal-content {
	background-color: var(--color-700);
}

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

.modal-title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.modal-footer {
	border-top: 1px solid var(--color-500);
}

/* Header client */
.header-client {
	position: relative;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(10px);
	padding: 26px 0;
	z-index: 1000;
}

body:has(.custom-hero-container) .header-client {
	position: absolute;
	top: 0;
	left: 0;
}

.header-client-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-client .client-nav-wrapper {
	flex: 1 1 auto;
	max-width: 75vw;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	height: 100dvh;
	padding: 5rem 2.5rem;
	padding-top: 26px;
	background-color: var(--color-800);
	z-index: 9998;
	transform: translateX(-100%);
	transition: transform ease-in-out 0.3s;
}

.header-client .client-nav-wrapper.active {
	transform: translateX(0%);
}

.header-client .client-nav {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 16px;
	flex: 1 1 auto;
	margin-top: 40px;
}

.header-client .client-nav a {
	font-size: 18px;
	font-weight: 500;
	color: #cdd9ec;
	transition: all ease-in-out 0.3s;
}

.header-client .client-nav a:hover {
	text-decoration: none;
	color: var(--accent);
}

.header-client .client-nav-aside {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: flex-end;
	gap: 25px;
}

.header-client .client-nav-aside a {
	color: #cdd9ec;
	transition: all ease-in-out 0.3s;
}

.header-client .client-nav-aside a:hover {
	text-decoration: none;
	color: var(--accent);
}

.header-client .client-nav-aside .cart:hover svg {
	color: var(--accent);
}

.header-client .client-nav-aside .btn {
	white-space: nowrap;
	border-radius: 90px;
	padding: 12px 26px;
}

.header-client .hamburger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 2.05rem;
	height: 1.6rem;
	z-index: 99999;
}

.header-client .hamburger span {
	width: 100%;
	height: 16%;
	background-color: #cdd9ec;
	border-radius: 10px;
	transition: all ease-in-out 0.3s;
}

.header-client .hamburger span:nth-child(1) {
	transform-origin: top left;
}

.header-client .hamburger span:nth-child(2) {
	transition-duration: 0.2s;
}

.header-client .hamburger span:nth-child(3) {
	transform-origin: bottom left;
}

.header-client .hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
}

.header-client .hamburger.active span:nth-child(2) {
	transform: scaleX(0);
}

.header-client .hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
}

@media (min-width: 1024px) {
	.header-client .client-nav-wrapper {
		position: static;
		height: auto;
		transform: none;
		background-color: transparent;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding: 0;
		transition: none;
		max-width: none;
	}

	.header-client .client-nav {
		flex-direction: row;
		justify-content: center;
		gap: 30px;
		margin: 0;
	}

	.header-client .client-nav a {
		font-size: 16px;
		font-weight: 400;
	}

	.header-client .client-nav-aside {
		flex-direction: row;
		flex-wrap: nowrap;
	}

	.header-client .hamburger {
		display: none;
	}
}

/* Header */
header.header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	padding: 2rem 1.5rem;
	background-color: var(--color-900);
}

.header-navbar-controller {
	padding-right: 1.25rem;
	user-select: none;
	color: var(--color-400);
}

.header-content {
	display: flex;
	align-items: center;
	flex: 1 1 0%;
}

.header-greetings {
	flex: 1 1 0%;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.75rem;
	margin: 0;
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 2.25rem;
	width: 2.25rem;
	cursor: pointer;
	border-radius: 9999px;
	border-width: 1px;
	border-color: var(--color-500);
	border-style: solid;
	background-color: var(--color-700);
}

.header-icon svg {
	color: var(--color-400);
}

.client-alerts {
	list-style-type: none;
	padding: 0;
}

/* Dropdown custom */
.dropdown-custom-wrapper {
	position: relative;
	width: fit-content;
}

.dropdown-custom {
	position: absolute;
	top: calc(100% + 20px);
	right: 0;
	z-index: 101;
	user-select: none;
	clip-path: inset(-10% 0% 100%);
	display: none;
	width: fit-content;
}

.dropdown-custom-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem;
	border-bottom: 1px solid var(--color-500);
}

.dropdown-custom-header-left h1 {
	color: var(--text-primary);
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.dropdown-custom-header-left p {
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

.dropdown-custom-content .message h1 {
	color: var(--text-primary);
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.dropdown-custom-content .message p {
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	white-space: initial;
	line-height: 1rem;
}

.dropdown-custom-content {
	position: relative;
	border: 1px solid var(--color-500);
	border-radius: 0.375rem;
	background-color: var(--color-700);
}

.dropdown-custom-content::before {
	content: "";
	position: absolute;
	bottom: 100%;
	right: 0.5rem;
	z-index: 40;
	width: 1.25rem;
	height: 1.25rem;
	background-color: var(--color-700);
	border: 1px solid var(--color-500);
	border-radius: 0.125rem;
	transform: translateY(50%) rotate(45deg);
	clip-path: polygon(0px 0px, 100% 0px, 0px 100%);
}

.dropdown-custom-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1.25rem;
	width: 100%;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
	cursor: pointer;
	border-bottom: 1px solid var(--color-500);
	color: var(--text-primary);
}

.dropdown-custom-item:hover {
	background-color: var(--color-600);
	color: var(--text-primary);
	text-decoration: none;
}

.dropdown-custom-item:last-child {
	border: 0;
}

.dropdown-custom-item svg {
	width: 1.25rem;
	color: var(--color-400);
}

.dropdown-custom-item p {
	white-space: nowrap;
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin: 0;
}

#dropdown-user {
	min-width: 180px;
}

#dropdown-notify {
	min-width: 250px;
}

@media screen and (min-width: 1024px) {
	#dropdown-notify {
		min-width: 380px;
	}
}

/* Navbar custom */
.navbar-custom {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--color-900);
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	z-index: 100;
	min-height: 100vh;
}

.navbar-custom-wrapper {
	padding: 0 1.5rem;
	min-width: 260px;
}

.navbar-custom-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 0;
}

.navbar-custom-row svg {
	color: var(--color-400);
	user-select: none;
}

.navbar-custom-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	user-select: none;
	color: var(--text-primary);
}

.navbar-custom-brand:hover {
	color: var(--text-primary);
	text-decoration: none;
}

.navbar-custom-brand img {
	width: 32px;
	height: auto;
}

.navbar-custom-brand h1 {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	margin: 0;
	font-family: "dm-sans", sans-serif;
}

.navbar-custom-nav {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.navbar-custom-nav a {
	display: flex;
	cursor: pointer;
	user-select: none;
	align-items: center;
	gap: 0.75rem;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
	color: var(--color-400);
}

.navbar-custom-nav a.active {
	background-color: var(--accent);
	color: var(--text-primary);
}

.navbar-custom-nav a:hover {
	text-decoration: none;
	background-color: var(--accent);
	color: var(--text-primary);
}

.navbar-custom-nav a svg {
	width: 1rem;
	height: 1rem;
}

.navbar-custom-nav a p {
	white-space: nowrap;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	margin: 0;
}

/* Card custom */
.custom-card {
	display: flex;
	flex-direction: column;
	background-color: var(--color-700);
	border-radius: 0.5rem;
}

.custom-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-500);
	padding: 1rem 1.5rem;
}

.custom-card-header-left {
	display: flex;
	flex-direction: column;
}

.custom-card-header-left h1 {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	margin: 0;
}

.custom-card-header-left h2 {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.custom-card-header-left h3 {
	font-size: 0.75rem;
	line-height: 1.25rem;
	font-weight: 700;
	margin: 0;
}

.custom-card-header-left p {
	color: var(--color-400);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	margin: 0;
}

.custom-card-header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.custom-card-header-right p {
	color: var(--color-400);
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin: 0;
}

.custom-card-wrapper {
	padding: 1rem 1.5rem;
	overflow-x: auto;
}

.custom-card-wrapper .nothing-to-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 30px;
}

.custom-card-wrapper .nothing-to-display svg {
	flex-shrink: 0;
}

.custom-card-wrapper .nothing-to-display p {
	color: var(--text-secondary);
	font-weight: 500;
	margin: 0;
}

.custom-card-wrapper .attachment {
	display: block;
	margin: 0;
	font-size: 14px;
	color: var(--text-secondary);
}

.custom-card-wrapper table,
.custom-card-wrapper table.dataTable {
	width: 100%;
	border-collapse: collapse !important;
}

.custom-card-wrapper table .dropdown-custom-wrapper {
	margin-left: auto;
}

.custom-card-wrapper table tr th {
	color: var(--color-400);
	text-transform: uppercase;
	font-weight: 500;
	font-size: 0.75rem;
	line-height: 1rem;
	margin: 0;
}

.custom-card-wrapper table tr {
	border-bottom: 1px solid var(--color-500);
}

.custom-card-wrapper table tr:nth-last-of-type(1) {
	border-bottom: none;
}

.custom-card-wrapper table tr td {
	white-space: nowrap;
	vertical-align: top;
	padding: 1rem 5px;
}

.custom-card-wrapper table tr:nth-last-of-type(1) td {
	padding-bottom: 0.5rem;
}

.custom-card-wrapper table tr:nth-of-type(1) td {
	padding-bottom: 0.5rem;
}

.custom-card-wrapper table tr td.icon {
	display: flex;
	align-items: center;
	gap: 14px;
}

.custom-card-wrapper table tr td .title {
	color: var(--color-400);
	text-transform: uppercase;
	font-weight: 500;
	font-size: 0.75rem;
	line-height: 1rem;
	margin: 0;
}

.custom-card-wrapper table tr td .value {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin: 0;
}

.custom-card-wrapper table tr td .button {
	width: 2.25rem;
	height: 2.25rem;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-500);
	border-radius: 9999px;
	cursor: pointer;
}

.custom-card-wrapper table tr td .button svg {
	color: var(--accent);
	width: 1rem;
	height: 1rem;
}

.custom-card-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.custom-card-list li {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--color-500);
}

.custom-card-list li:last-child {
	border: 0;
}

.custom-card-list li .title {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.25rem;
	margin: 0;
}

.custom-card-list li .value {
	color: var(--color-400);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin: 0;
}

.custom-card .btn-custom-card {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	color: var(--color-400);
	font-size: 14px;
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
	border-radius: 6px;
}

@media screen and (min-width: 1024px) {
	.custom-card-wrapper table tr td {
		white-space: initial;
	}
}

/* Custom hero */
.custom-hero-container {
	position: relative;
	width: 100%;
	height: 100vh;
}

.custom-hero {
	position: relative;
	width: 100%;
	height: 100%;
}

.custom-hero-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

.custom-hero .custom-hero-title {
	font-size: 74px;
}

.custom-hero .custom-hero-title h1,
.custom-hero .custom-hero-title strong {
	font-size: 34px;
	margin: 0;
	line-height: 1;
}

.custom-hero .custom-hero-title h1 {
	font-weight: 400;
	color: var(--text-primary);
}

.custom-hero .custom-hero-title strong {
	display: block;
	font-weight: 700;
	color: var(--accent);
	margin-top: 0.5rem;
}

.custom-hero .description {
	font-size: 18px;
	color: var(--text-secondary);
}

.custom-hero .button-wrapper {
	display: flex;
	gap: 8px;
	flex-direction: column;
}

.custom-hero .button-wrapper .btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 17px 30px;
	border-radius: 36px;
	font-size: 16px;
	font-weight: 500;
	width: fit-content;
}

.custom-hero .button-wrapper .btn-default {
	background-color: rgba(20, 22, 28, 0.2) !important;
	backdrop-filter: blur(4px);
}

.custom-hero .button-wrapper .btn-default:hover {
	background-color: rgba(20, 22, 28, 0.3) !important;
}

.custom-hero .features-wrapper {
	margin-top: 40px;
	display: none;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	width: fit-content;
	column-gap: 56px;
	row-gap: 16px;
}

.custom-hero .feature {
	display: flex;
	gap: 8px;
	align-items: center;
}

.custom-hero .feature p {
	color: var(--text-secondary);
	margin: 0;
}

.carousel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel-slides {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	transition: all 0.3s ease-in-out;
}

.carousel-slide {
	flex: 0 0 100%;
	background-size: cover;
	background-repeat: no-repeat;
}

.carousel-slide.slide-1 {
	background-image: url(../../../assets/img/slides/slide1.webp);
}

.carousel-slide.slide-2 {
	background-image: url(../../../assets/img/slides/slide2.webp);
}

.carousel-slide.slide-3 {
	background-image: url(../../../assets/img/slides/slide3.webp);
}

.carousel-pagination {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 1;
}

.carousel-pagination .dot {
	width: 15px;
	height: 15px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 100%;
	cursor: pointer;
}

.carousel-pagination .dot.active {
	background-color: var(--accent);
}

.custom-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		black 50%,
		transparent 100%
	);
	background-image: url(../../../assets/img/crate.png);
	background-size: cover;
	background-repeat: repeat;
	background-position-x: 50%;
	opacity: 0.5;
}

@media (min-width: 1024px) {
	.custom-hero-wrapper {
		gap: 20px;
	}

	.custom-hero .custom-hero-title h1,
	.custom-hero .custom-hero-title strong {
		font-size: 74px;
	}

	.custom-hero .features-wrapper {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.custom-hero .button-wrapper {
		flex-direction: row;
	}
}

/* Sections */
.custom-section {
	position: relative;
	width: 100%;
	padding: 60px 0;
}

.custom-section.background {
	background-color: var(--color-700);
}

.custom-section-title {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.custom-section-title h1 {
	color: var(--text-primary);
	font-size: 30px;
	font-weight: 700;
	margin: 0;
}

.custom-section-title h1 strong {
	color: var(--accent);
	font-weight: 700;
}

.custom-section.background h1 {
	font-size: 25px;
}

.custom-section-title p {
	font-size: 18px;
	color: var(--text-secondary);
	margin: 0;
}

.custom-section-wrapper {
	font-size: 18px;
	color: var(--text-secondary);
	margin: 0;
}

.custom-section-content {
	margin-top: 20px;
}

.section-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}

.section-background .crate {
	width: 100%;
	height: 100%;
	mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		black 50%,
		transparent 100%
	);
	background-image: url(../../../assets/img/crate.png);
	background-size: cover;
	background-repeat: repeat;
	background-position-x: 50%;
	opacity: 0.5;
}

.section-background .neon {
	position: absolute;
	width: 150px;
	height: 150px;
	background: radial-gradient(
		circle at center center,
		var(--accent),
		transparent 100%
	);
	filter: blur(80px);
	border-radius: 100%;
}

.section-background .neon-left {
	top: 120px;
	left: 0;
	transform: translateX(-50%);
}

.section-background .neon-right {
	bottom: 120px;
	right: 0;
	transform: translateX(50%);
}

@media (min-width: 1024px) {
	.custom-section {
		padding: 63px 0;
	}

	.custom-section-title h1 {
		font-size: 48px;
	}

	.custom-section.background h1 {
		font-size: 36px;
	}

	.custom-section-content {
		margin-top: 50px;
	}
}

/* Footer */
footer.footer {
	background-color: var(--color-700);
	padding: 0;
}

.footer-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding: 0 20px;
	padding-top: 86px;
	padding-bottom: 60px;
}

.footer-left {
	display: flex;
	flex-direction: column;
}

.footer-branding img {
	margin-bottom: 20px;
}

.footer-branding p {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 700;
	margin: 0;
}

.footer-branding p.secondary {
	color: var(--text-primary);
	font-weight: 400;
}

.footer-left hr {
	border-top: 1px solid var(--color-500);
	margin-left: 0;
	margin-right: 0;
}

.footer-nav-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-nav h1 {
	font-size: 18px;
	font-weight: bold;
}

.footer-nav ul {
	margin-top: 8px;
	padding: 0;
	list-style: none;
}

.footer-nav li {
	padding: 5px 0;
}

.footer-nav li a {
	color: var(--text-secondary);
	font-size: 15px;
	font-weight: 400;
}

.footer-end {
	background-color: var(--color-600);
}

.footer-end .container {
	display: flex;
	justify-content: space-between;
	padding-top: 26px;
	padding-bottom: 26px;
}

@media (min-width: 768px) {
	.footer-wrapper {
		flex-direction: row;
		padding: 0;
		padding-top: 86px;
		padding-bottom: 60px;
	}

	.footer-nav-wrapper {
		flex-direction: row;
		gap: 42px;
	}

	.footer-nav ul {
		margin-top: 2rem;
	}
}

/* Dropdowns */
.dropdown-menu {
	background-color: var(--color-900);
	border: 1px solid var(--color-600);
}

.dropdown-item:hover {
	background-color: var(--color-700);
}

.header .navbar .dropdown-item:hover a {
	color: #cdd9ec;
}

/* Buttons */
.btn-primary {
	background-color: var(--accent);
	border-radius: 4px;
	border: none;
	padding: 8px 18px;
	color: var(--text-primary) !important;
	font-size: 15px;
	font-weight: 500;
}

.btn-primary:hover {
	background-color: var(--accent-hover);
}

.btn-default {
	color: var(--text-primary);
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
	border-radius: 4px;
}

.btn-default:hover {
	background-color: var(--color-600) !important;
	border-color: var(--color-600) !important;
	color: var(--accent) !important;
}

.btn-link {
	color: #fff;
}

.btn-link:hover {
	color: var(--accent);
	text-decoration: none;
}

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

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
	background-color: var(--accent-hover);
	border-color: var(--accent);
	box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: none;
}

.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default,
.btn-default.focus,
.btn-default:focus {
	background-color: var(--accent);
	color: var(--text-primary);
	border-color: var(--accent-hover);
}

.btn-primary.disabled,
.btn-primary:disabled {
	background-color: #9a1a1a;
	border-color: #9a1a1a;
}

.btn-group-sm > .btn,
.btn-sm {
	padding: 4px 10px;
	font-size: 0.875rem;
	line-height: 1.5;
	font-weight: 500;
}

/* Custom checkboxes */
input[type="checkbox"] {
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border: 2px solid var(--color-400);
	border-radius: 4px;
	background-color: var(--color-500);
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

input[type="checkbox"]:hover {
	border-color: var(--accent-hover);
}

input[type="checkbox"]:checked {
	background-color: var(--accent);
	border-color: var(--accent-hover);
}

input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 8px;
	border: solid white;
	border-width: 0 3px 3px 0;
	border-radius: 1px;
	transform: translateX(-50%) translateY(-60%) rotate(40deg);
}

/* Custom Switch */
.custom-switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	margin: 0;
	padding: 0;
}

.custom-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.custom-switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-400);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.custom-switch .slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.custom-switch input:checked + .slider {
	background-color: var(--accent);
}

.custom-switch input:focus + .slider {
	box-shadow: 0 0 1px var(--accent);
}

.custom-switch input:checked + .slider:before {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.custom-switch .slider.round {
	border-radius: 34px;
}

.custom-switch .slider.round:before {
	border-radius: 50%;
}

/* Page links */
.page-item .page-link {
	color: var(--text-primary);
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
}

.page-item.disabled .page-link {
	color: var(--text-primary);
	background-color: var(--color-900);
	border: 1px solid var(--color-500);
}

.page-item.active .page-link,
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
	color: var(--text-primary);
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
}

/* Inputs */
.form-group {
	position: relative;
}

.form-control-label,
#registration label {
	position: absolute;
	top: 8px;
	left: 13px;
	z-index: 5;
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-400);
	text-transform: uppercase;
}

.form-control,
#registration .field,
#registration .form-control {
	height: initial;
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
	font-size: 15px;
	font-weight: 500;
	color: var(--text-primary);
}

.form-group:has(.form-control-label) .form-control {
	padding-top: 25px;
}

.form-control::placeholder {
	color: var(--color-400);
	opacity: 1;
}

.form-control:focus,
#registration .form-control:focus {
	background-color: var(--color-600);
	color: var(--text-primary);
	border-color: var(--color-400);
}

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

.input-group-text {
	background-color: var(--color-500);
	border: 1px solid var(--color-500);
}

.form-group:has(.intl-tel-input) .form-control-label {
	left: 76px !important;
}

.custom-select {
	color: var(--text-primary);
	background: var(--color-600)
		url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
		no-repeat right 0.75rem center/8px 10px !important;
}

/* List groups */
.sidebar .list-group-item {
	border-color: var(--color-500);
}

.list-group-item-action {
	color: var(--text-primary);
}

.list-group-item {
	background-color: var(--color-700);
}

.list-group-item .title {
	font-size: 16px;
	font-weight: bold;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
	background-color: var(--color-700);
	color: var(--text-primary);
}

/* Card */
.card {
	background-color: var(--color-700);
}

.card-header,
.client-home-cards .card-header {
	background-color: var(--color-700);
	border-bottom: 1px solid var(--color-500);
}

.mc-promo-login .panel-heading .primary-content h3,
.mc-promo-manage .panel-heading .primary-content h3,
.primary-content .card-title,
.primary-content .mc-promo-login .panel-heading h3,
.primary-content .mc-promo-manage .panel-heading h3,
.primary-content .promo-container .header h3,
.promo-container .header .primary-content h3 {
	font-size: 24px;
	font-weight: bold;
}

/* Separator */
.separator {
	display: flex;
	align-items: center;
	justify-items: center;
	gap: 10px;
}

.separator hr {
	flex: 1 1 auto;
	margin: 0;
	border-top: 1px solid var(--color-500);
}

.separator p {
	font-size: 12px;
	text-transform: uppercase;
	margin: 0;
	color: var(--text-secondary);
}

/* Text colors */
.text-accent {
	color: var(--accent);
}

.text-accent-hover {
	transition: color 0.3s ease-in-out;
}

.text-accent-hover:hover {
	color: var(--accent-hover);
}

.text-secondary {
	color: var(--text-secondary) !important;
}

.text-secondary-hover {
	transition: color 0.3s ease-in-out;
}

.text-secondary-hover:hover {
	color: var(--accent) !important;
}

a.text-secondary-hover:hover {
	color: var(--accent) !important;
}

/* Register */
#registration .form-check {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}

.intl-tel-input .country-list {
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
}

.intl-tel-input .country-list .country.highlight {
	background-color: var(--color-500);
}

.intl-tel-input .country-list .divider {
	border-bottom: 1px solid var(--color-500);
}

.password-strength-meter {
	margin-top: 5px;
}

.progress {
	background-color: var(--color-500);
	height: 4px;
}

.form-separator {
	flex: 0 0 100%;
	border-top: 1px solid var(--color-500);
}

/* Editor */
.md-editor,
div.md-editor.active {
	border: none;
}

.md-editor > .btn-toolbar {
	background-color: var(--color-600) !important;
}

.md-editor > .btn-toolbar .btn-default {
	background-color: none;
	border: none;
}

.md-editor > .md-preview,
.md-editor > textarea.markdown-editor {
	background-color: var(--color-700) !important;
	border: none !important;
	color: #fff !important;
}

.md-editor .md-footer {
	display: none;
}

.md-editor .md-footer,
.md-editor > .md-header {
	padding: 10px;
}

.md-editor > .md-header {
	border-radius: 0.5rem 0.5rem 0 0;
}

.md-editor .md-footer {
	border-radius: 0 0 0.5rem 0.5rem;
}

.markdown-editor-status {
	color: var(--text-secondary);
}

.md-editor .md-controls .md-control-fullscreen {
	display: none;
}

.markdown-content h1,
.md-preview h1,
.markdown-content h2,
.md-preview h2,
.markdown-content h3,
.md-preview h3,
.markdown-content h4,
.md-preview h4 {
	color: var(--text-secondary);
}

.markdown-content table,
.md-preview table {
	background-color: var(--color-500);
	border: 1px solid var(--color-400);
}

.markdown-content table > thead > tr > th,
.md-preview table > thead > tr > th {
	background-color: var(--color-600);
	border: 1px solid var(--color-400);
}

.markdown-content table > tbody > tr > td,
.md-preview table > tbody > tr > td {
	border: 1px solid var(--color-400);
}

.markdown-content pre,
.md-preview pre {
	background-color: var(--color-900);
}

/* File input */
.custom-file-label {
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
}

.custom-file-input {
	background-color: var(--color-600);
}

.custom-file-label::after {
	background-color: var(--color-600);
	color: var(--text-primary);
}

.custom-file-label:hover::after {
	background-color: var(--color-500);
	color: var(--accent);
}

/* Client area */
.client-area-cards {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.25rem;
}

@media (min-width: 1024px) {
	.client-area-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Affiliate singup */
.affiliate {
	display: grid;
	grid-template-columns: minmax(0, auto) minmax(0, 1fr);
	align-items: center;
	justify-items: center;
}

.affiliate img {
	display: none;
	user-select: none;
	width: 100%;
	max-width: 1000px;
	height: auto;
}

@media (min-width: 1500px) {
	.affiliate img {
		display: block;
	}
}

.affiliate-content {
	max-width: 700px;
}

.affiliate-content h1 {
	font-size: 50px;
	font-weight: bold;
}

.affiliate-content ul {
	list-style: none;
	padding: 0;
	margin-top: 27px;
}

.affiliate-content ul li {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	line-height: 1;
}

.affiliate-content ul li:last-child {
	margin: 0;
}

.affiliate-content ul li p {
	color: var(--text-secondary);
	font-size: 17px;
	margin: 0;
}

.affiliate-content ul li svg {
	flex-shrink: 0;
}

.affiliate-content .btn {
	margin-top: 18px;
}

.affiliate-earnings-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--color-600);
	border-radius: 10px;
	margin-top: 8px;
	padding: 20px;
}

.affiliate-earnings-item:first-child {
	margin: 0;
}

.affiliate-earnings-item p,
.affiliate-earnings-item strong {
	font-size: 15px;
	font-weight: bold;
	margin: 0;
}

.affiliate-earnings-item strong {
	color: var(--accent);
}

.affiliate-stats-wrapper {
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
}

.affiliate-stats-col > * {
	margin-top: 10px;
}

.affiliate-stats-col .custom-card {
	position: relative;
	overflow: hidden;
}

.affiliate-stats h1 {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.affiliate-stats strong {
	font-size: 22px;
	font-weight: bold;
	color: var(--accent);
}

.affiliate-stats p {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	margin: 0;
}

.affiliate-stats-icon {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media (min-width: 1024px) {
	.affiliate-stats {
		max-width: 440px;
	}
}

/* Card Tables */
.card table {
	border: none !important;
	color: var(--text-primary) !important;
	border-radius: 0 !important;
	border-collapse: collapse !important;
}

.card thead th {
	border: none !important;
	color: var(--text-secondary) !important;
	text-transform: uppercase;
	font-size: 14px !important;
	font-weight: 500 !important;
	background-color: transparent !important;
	border-radius: 0 !important;
	text-align: left !important;
}

.card tbody tr {
	border-top: 1px solid var(--color-500);
}

.card tbody tr td {
	border: none !important;
	color: var(--text-primary) !important;
	background-color: transparent !important;
	border-radius: 0 !important;
	font-size: 15px !important;
	font-weight: 500 !important;
}

.dataTables_wrapper .dataTables_filter label .form-control {
	background: url(../../../assets/img/search.png) var(--color-600) no-repeat
		8px 5px;
	border: 1px solid var(--color-500);
	color: var(--text-primary);
}

/* Support center */
.search-articles {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	padding: 1rem 1.5rem;
	background-color: var(--color-700);
	border-radius: 6px;
}

.search-articles svg {
	color: var(--text-secondary);
	flex-shrink: 0;
}

.search-articles input {
	width: 0;
	flex: 1 1 auto;
	background-color: transparent;
	border: none;
	outline: none;
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 500;
}

.search-articles .btn {
	flex-shrink: 0;
}

.articles-search .title {
	color: var(--text-primary);
	font-size: 26px;
	font-weight: 700;
	margin: 0;
	padding: 1rem 1.5rem;
	margin-top: 15px;
}

.articles-wrapper .title {
	color: var(--text-primary);
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	padding: 1rem 1.5rem;
	margin-top: 15px;
}

.articles {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.articles .article {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background-color: var(--color-700);
	border-radius: 6px;
	padding: 1rem 1.5rem;
	color: inherit;
	text-decoration: none;
}

.articles .article svg {
	flex-shrink: 0;
	color: var(--text-secondary);
}

.articles .article p {
	flex: 1 1 auto;
	font-size: 15px;
	font-weight: 500;
	margin: 0;
}

.articles .article .button {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent);
	width: 34px;
	height: 34px;
	border-radius: 100%;
	flex-shrink: 0;
}

/* .tickets {
	margin-top: 30px;
} */

.submit-ticket-footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding: 6px 4px;
}

/* Tickets */
.ticket-message {
	background-color: var(--color-700);
	padding: 18px 21px;
	border-radius: 0.5rem;
	margin-bottom: 16px;
}

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

.ticket-message .user {
	color: var(--text-primary);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.ticket-message .date {
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
}

.ticket-message .header .badge {
	color: var(--text-primary);
	font-size: 14px;
	font-size: 700;
	background-color: #309d1e;
	border-radius: 4px;
	padding: 9px;
}

.ticket-message .message {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
	padding-top: 10px;
}

.ticket-message .message * {
	margin: 0;
}

.view-ticket .attachments {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
	gap: 10px;
	margin-top: 10px;
	border: none;
}

.view-ticket .attachments .attachment {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	overflow: hidden;
	color: var(--text-secondary);
}

.view-ticket .attachments .attachment p {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	margin-top: 4px;
}

.view-ticket .attachments .attachment img {
	width: 100px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.view-ticket {
	display: grid;
	column-gap: 16px;
}

.ticket-respond footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	background-color: var(--color-800);
	padding: 6px 4px;
}

#attachment-upload-container {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 6px;
}

.ticket-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background-color: var(--color-700);
	padding: 18px 21px;
	border-radius: 0.5rem;
	margin-bottom: 16px;
}

.ticket-details div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ticket-details div h1 {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.ticket-details div p {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	margin: 0;
	text-align: right;
}

.ticket-attachments {
	width: 100%;
	background-color: var(--color-700);
	padding: 18px 21px;
	border-radius: 0.5rem;
	margin-bottom: 16px;
}

.ticket-attachments h1 {
	font-size: 15px;
	font-weight: 700;
	margin: 0;
}

.ticket-attachments .content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 10px;
}

.ticket-attachments .attachment {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	overflow: hidden;
	color: var(--text-secondary);
}

.ticket-attachments .attachment .preview {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 6px;
}

.ticket-attachments .attachment .preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ticket-attachments .attachment p {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	margin-top: 4px;
}

@media (min-width: 1024px) {
	.view-ticket {
		grid-template-columns: 1fr 400px;
	}
}

/* Homepage */

/* Recommended */
#home-recomended .custom-section-content {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 24px;
}

.home-recomended-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 36px;
	border-radius: 8px;
	background-color: var(--color-700);
	border: 1px solid var(--color-500);
	gap: 35px;
	overflow: hidden;
}

.home-recomended-wrapper .ribbon {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--accent);
	text-transform: uppercase;
	font-size: 15px;
	padding: 5px;
	color: var(--color-700);
	transform: rotate(45deg) translateY(125%) translateX(50%);
	transform-origin: top right;
	width: 100%;
	text-align: center;
}

.home-recomended-wrapper .title h1 {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

.home-recomended-wrapper .title p {
	color: var(--text-secondary);
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}

.home-recomended-wrapper .title h1 {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

.home-recomended-wrapper .details-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1 1 0;
}

.home-recomended-wrapper .detail {
	display: flex;
	align-items: center;
	gap: 12px;
}

.home-recomended-wrapper .detail .description h1 {
	color: var(--text-secondary);
	font-size: 15px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}

.home-recomended-wrapper .detail .description p {
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}

.home-recomended-wrapper .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 20px;
	border-radius: 36px;
}

@media (min-width: 1024px) {
	#home-recomended .custom-section-content {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 24px;
	}
}

@media (min-width: 1500px) {
	#home-recomended .custom-section-content {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: 24px;
	}
}

/* Offer */
.home-offer-groups {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 4px;
	border-bottom: 2px solid var(--color-500);
	user-select: none;
}

.home-offer-group {
	border-bottom: none;
    flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 25px;
	background-color: var(--color-700);
	border: 1px solid var(--color-500);
	border-bottom: none;
	border-radius: 8px 8px 0 0;
    text-align: center;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.home-offer-group:hover svg {
	color: var(--accent);
	opacity: 1;
}

.home-offer-group.active {
	background-color: var(--color-700);
	border: 1px solid var(--color-500);
	border-bottom: none;
}

.home-offer-group svg {
	height: 16px;
	width: auto;
	color: var(--text-primary);
	opacity: 0.35;
	transition: all 0.2s ease-in-out;
    flex-shrink: 0;
}

.home-offer-group.active svg {
	color: var(--accent);
	opacity: 1;
}

.home-offer-group p {
	font-size: 15px;
	margin: 0;
}

.home-offer-products {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 8px;
}

.home-offer-products .product {
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
	column-gap: 40px;
	background-color: var(--color-700);
	border: 1px solid var(--color-500);
	border-radius: 6px;
	padding: 22px;
}

.home-offer-products .product .name {
	flex: 1 1 100% !important;
	display: flex;
	align-items: center;
	gap: 12px;
}

.home-offer-products .product .name svg {
	color: var(--accent);
    height: 16px;
    width: auto;
    flex-shrink: 0;
}

.home-offer-products .product .data {
	flex: 1 1 0;
}

.home-offer-products .product .title {
	color: var(--text-secondary);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
}

.home-offer-products .product .value {
	font-size: 16px;
	font-weight: 400;
}

.home-offer-products .product .btn {
	flex: 1 1 100%;
	align-self: center;
	border-radius: 36px;
	display: block;
}

@media (min-width: 1024px) {
	.home-offer-products .product {
		flex-wrap: nowrap;
		column-gap: 10px;
	}

	.home-offer-products .product .name {
		flex: 1 1 0 !important;
	}

	.home-offer-products .product .btn {
		flex: 0 1 auto;
	}
}

@media (min-width: 1200px) {
	.home-offer-products .product {
		column-gap: 40px;
	}
}

/* Features */
#home-features .custom-section-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.home-features-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 25px;
	border-radius: 6px;
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
}

.home-features-wrapper .title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.home-features-wrapper .title h1 {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.home-features-wrapper .description {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	margin: 0;
}

/* Ratings */
#home-ratings .custom-section-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	column-gap: 90px;
	row-gap: 20px;
}

#home-ratings .title h1 {
	font-size: 40px;
	font-weight: 500;
	white-space: nowrap;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#home-ratings .title .green {
	color: rgb(2, 204, 137);
	font-weight: 700;
	filter: drop-shadow(0 2px 54px rgba(2, 204, 137, 0.45));
}

#home-ratings .ratings {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 16px;
}

#home-ratings .rate {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background-color: var(--color-600);
	border: 1px solid var(--color-500);
	padding: 16px 10px;
	border-radius: 20px;
}

#home-ratings .rate header {
	display: flex;
	gap: 16px;
	align-items: center;
}

#home-ratings .rate header .avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background-color: #3e9fff;
	font-size: 18px;
	font-weight: 700;
	border-radius: 100%;
	flex-shrink: 0;
}

#home-ratings .rate header .details h1 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}

#home-ratings .rate header .details p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1;
	margin: 0;
}

#home-ratings .rate .review h1 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

#home-ratings .rate .review p {
	font-size: 15px;
	color: var(--color-400);
	margin: 0;
	margin-top: 6px;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (min-width: 1200px) {
	#home-ratings .rate {
		padding: 32px 27px;
		gap: 26px;
	}

	#home-ratings .title h1 {
		font-size: 52px;
		text-align: left;
	}

	#home-ratings .custom-section-content {
		flex-direction: row;
	}

	#home-ratings .ratings {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* User settings */
.settings-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.settings-nav {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	height: fit-content;
	background-color: var(--color-600);
	border-radius: 0.5rem;
}

.settings-nav-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	line-height: 1.5rem;
	color: var(--text-secondary);
	white-space: nowrap;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
	cursor: pointer;
}

.settings-nav-option:hover {
	color: var(--text-primary);
	text-decoration: none;
}

.settings-nav-option svg {
	width: 1.25rem;
	height: 1.25rem;
}

.settings-nav-option.active {
	background-color: var(--accent);
	color: var(--text-primary);
}

.settings-content {
	width: 100%;
}

@media (min-width: 1024px) {
	.settings-wrapper {
		flex-direction: row;
	}
}

/* Announcements */
.announcements {
	display: grid;
	gap: 20px;
}

.announcements .announcement {
	margin: 0;
}

.announcements .announcement article {
	padding: 0;
	background-color: transparent;
	border: none;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.45;
}

.announcements .announcement .btn {
	width: 100%;
}

@media (min-width: 1024px) {
	.announcements {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Cancelation */
.request-cancellation-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding: 6px 4px;
}

.request-cancellation-footer .form-group {
	margin: 0;
}

/* Upgrades */
.package-upgrade {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.package-upgrade .upgrade {
	flex: 1 1 0;
	padding: 1rem 1.5rem;
	background-color: var(--color-700);
	border-radius: 0.5rem;
}

.package-upgrade .upgrade h1 {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	margin: 0;
}

.upgrade-summary {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.upgrade-summary-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.upgrade-summary-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.upgrade-summary-sidebar #btnOrderContinue {
	margin-top: 20px;
	width: 100%;
}

.upgrade-summary .table {
	color: var(--text-primary);
}

.upgrade-summary .table thead th,
.upgrade-summary .table tbody td {
	border: 0;
}

.upgrade-summary .table tbody td {
	padding: 0.75rem;
}

.hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.hint svg {
	flex-shrink: 0;
}

.hint p {
	color: var(--color-400);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	margin: 0;
}

@media (min-width: 1024px) {
	.upgrade-summary {
		grid-template-columns: repeat(8, minmax(0, 1fr));
	}

	.upgrade-summary-body {
		grid-column: span 5 / span 5;
	}

	.upgrade-summary-sidebar {
		grid-column: span 3 / span 3;
	}
}

/* Mass pay */
.mass-pay {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.mass-pay-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mass-pay-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 1024px) {
	.mass-pay {
		grid-template-columns: repeat(8, minmax(0, 1fr));
	}

	.mass-pay-body {
		grid-column: span 5 / span 5;
	}

	.mass-pay-sidebar {
		grid-column: span 3 / span 3;
	}
}

/* Payments */
.payment-method {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5em;
}

.payment-method label {
	font-size: 16px;
}
