/* =======================================================
   Template Information:
   Template Name: InnovatePro
   Version: 1.0
   =======================================================

/* =======================================================
   Developer Information:
   Agency: Planisio
   Contact Email: info@planisio.com
   Website: https://planisio.com
   =======================================================
*/

/* ------------------------------ */
/* STARTING: ROOT VARIABLES */
/* ------------------------------ */

:root {
	--primary-color: #1E2B2F;
	--primary-color-hover: #757394;
	--primary-color-active: #5a5877;
	--secondary-color: #203136;
	--secondary-color-hover: #2f4247;
	--secondary-color-active: rgb(26, 67, 65);
	--primary-theme-color: #FFFFFF;
	--secondary-theme-color: #f3f2f9;
	--text-color: #374F56;
	--border-color: #E1E7F1;
	--success-color: #37CB8D;
	--font-size-xxs: 0.628rem;
	--font-size-xs: calc(var(--font-size-xxs) * 1.20);
	--font-size-sm: calc(var(--font-size-xxs) * 1.24);
	--font-size-md: calc(var(--font-size-xxs) * 1.4457);
	--font-size-lg: calc(var(--font-size-xxs) * 1.50);
	--font-size-xl: calc(var(--font-size-xxs) * 1.58);
	--font-size-xxl: calc(var(--font-size-xxs) * 1.68);
	--padding: 20px;
	--border-radius: 2px;
	--bs-border-radius-lg: var(--border-radius);
	--content-padding: var(--padding);
	--bs-body-color: var(--text-color);
	--bs-body-bg: var(--primary-theme-color);
	--bs-border-color: var(--border-color);
	--bs-border-color-translucent: var(--border-color);
	--bs-emphasis-color: var(--text-color);
	--bs-link-color: var(--primary-color);
	--bs-navbar-active-color: var(--primary-color);
}

/* ------------------------------ */
/* ENDING: ROOT VARIABLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: FONTS */
/* ------------------------------ */

@font-face {
	font-family: "font-regular";
	font-display: swap;
	src: url("../fonts/PlusJakartaSans-Regular.ttf");
}

@font-face {
	font-family: "font-medium";
	font-display: swap;
	src: url("../fonts/PlusJakartaSans-Medium.ttf");
}

@font-face {
	font-family: "font-semi-bold";
	font-display: swap;
	src: url("../fonts/PlusJakartaSans-SemiBold.ttf");
}

/* ------------------------------ */
/* ENDING: FONTS */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: LOADING PAGE */
/* ------------------------------ */

body {
	opacity: 0;
	transition: opacity 0.6s ease-in;
 }
 
 body.ready {
	opacity: 1;
 }
 
 /* ------------------------------ */
 /* ENDING: LOADING PAGE */
 /* ------------------------------ */

/* ------------------------------ */
/* STARTING: DEFAULT STYLES */
/* ------------------------------ */

html,
body {
    margin: 0;
    height: 100%;
    scroll-behavior: smooth;
}

body {
	background-color: var(--primary-theme-color);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	color: var(--text-color);

}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

header, main, footer {
    flex-shrink: 0;
}

header,
footer {
	background-color: var(--secondary-theme-color);
}

main {
	flex: 1;
}

.thumb,
section >.content,
.section >.content,
.section,
section {
	padding: 3.2rem 0 3.2rem 0;
	overflow-x: hidden;
}

.content-wrapper,
.section-label {
	width: 100%;
	max-width: 840px;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 1.8rem;
}

.container {
	max-width: 1200px;
}

.lucide {
	color: var(--text-color);
	flex-shrink: 0;
}

.waves,
.waves svg {
	width: 100%;
	display: flex;
}

.waves svg {
	height: 100%;
}

.waves svg path {
	fill: var(--secondary-theme-color);
}

[class*="border-"] {
	border-color: var(--border-color) !important;
}

.logo {
	width: 100%;
	max-width: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo.xs {
	max-width: 24px;
}

.logo.md {
	max-width: 36px;
}

.logo.lg {
	max-width: 46px;
}

.logo.xl {
	max-width: 60px;
}

.logo.xxl {
	max-width: 80px;
}

.logo.fixed {
	width: 134px;
}

.logo img {
	width: 100%;
	height: 100%;
}

.font-regular {
	font-family: "font-regular" !important;
}

.font-medium {
	font-family: "font-medium" !important;
}

.font-semi-bold {
	font-family: "font-semi-bold" !important;
}

.font-size-xs {
	font-size: var(--font-size-xs) !important;
}

.font-size-sm {
	font-size: var(--font-size-sm) !important;
}

.font-size-md {
	font-size: var(--font-size-md) !important;
}

.font-size-lg {
	font-size: var(--font-size-lg) !important;
}

.font-size-xl {
	font-size: var(--font-size-xl) !important;
}

.font-size-xxl {
	font-size: var(--font-size-xxl) !important;
}

.thumb .waves {
    bottom: 2.5px;
}

.waves {
    position: relative;
}

.waves img {
    width: 100%;
}

.waves svg,
.waves {
    width: 100%;
    height: auto;
}

.waves path {
    fill: var(--secondary-theme-color) !important;
}

.text-color {
	color: var(--text-color) !important;
}

.text-color-navy-blue {
	color: var(--navy-blue-color) !important;
}

.text-primary-color {
	color: var(--primary-color) !important;
}

.icon-color {
	stroke: var(--text-color) !important;
}

.bg-primary {
	background-color: var(--primary-color) !important;
}

.bg-secondary {
	background-color: var(--secondary-color) !important;
}

.bg-primary-tc {
	background-color: var(--primary-theme-color) !important;
}

.bg-secondary-tc {
	background-color: var(--secondary-theme-color) !important;
}

.bg-text-color {
	background-color: var(--text-color) !important;
}

.bg-secondary-tc-half-column {
	background: linear-gradient(to bottom, var(--secondary-theme-color) 50%, #fff 50%);
}

.w-mc {
	max-width: max-content;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "font-medium";
	letter-spacing: 1px;
	line-height: 1.899;
}

.h1 {
	font-size: calc(var(--font-size-xxl) * 1.40) !important;
}

.h2 {
	font-size: calc(var(--font-size-xxl) * 1.20) !important;
}

.h3 {
	font-size: calc(var(--font-size-xxl) * 1.18) !important;
}

.h4 {
	font-size: calc(var(--font-size-xxl) * 1.14) !important;
}

.h5 {
	font-size: calc(var(--font-size-xxl) * 1.12) !important;
}

.h6 {
	font-size: calc(var(--font-size-xxl) * 1.08) !important;
}

p,
span,
a,
li,
label {
	font-family: var(--font-regular);
	font-size: var(--font-size-lg);
	line-height: 1.888;
}

span {
	display: block;
}

cite {
	display: inline-block;
	line-height: normal;
	font-style: normal;
	color: var(--primary-color);
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: color 0.2s ease-in-out;
}

a:hover {
	color: var(--primary-color-hover);
}

a:active {
	color: var(--primary-color-active);
}

strong {
	font-family: "font-medium";
	font-weight: normal;
	color: var(--text-color);
}

.text-success {
	color: var(--success-color) !important;
}

.dominant-hover-color,
.dominant-hover-color > * {
    transition: color 0.2s ease-in-out;
}

.dominant-hover-color:hover,
.dominant-hover-color:hover > * {
    color: var(--primary-color-hover) !important;
}

.dominant-hover-color:active,
.dominant-hover-color:active > * {
    color: var(--primary-color-hover) !important;
}

.text-bg-color {
    --bs-badge-color: var(--text-color);
	border: 1px solid var(--text-color);
	--bs-badge-padding-x: 0.88em;
    --bs-badge-padding-y: 0.68em;
	--bs-badge-font-family: "font-regular";
    --bs-badge-font-size: var(--font-size-md);
    --bs-badge-font-weight: normal;
}

.image-wrapper {
	width: 100%;
	max-width: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.image-wrapper img {
	width: 100%;
	height: 100%;
}

.image-wrapper.xxs {
	max-width: 42px;
}

.image-wrapper.xs {
	max-width: 140px;
}

.image-wrapper.sm {
	max-width: 240px;
}

.image-wrapper.md {
	max-width: 310px;
}

.image-wrapper.lg {
	max-width: 400px;
}

.image-wrapper.xl {
	max-width: 540px;
}

.image-wrapper.xxl {
	max-width: 1200px;
}

.image-wrapper.full {
	max-width: 100%;
}

.image-wrapper.height {
	height: 100vh;
	max-height: 35px;
}

.image-wrapper.height img {
	height: 100%;
	width: auto;
}

.image-wrapper.height.xs {
	max-height: 140px;
}

.image-wrapper.height.sm {
	max-height: 240px;
}

.image-wrapper.height.md {
	max-height: 310px;
}

.image-wrapper.height.lg {
	max-height: 400px;
}

.image-wrapper.height.xl {
	max-height: 800px;
}

.image-wrapper.height.xxl {
	max-height: 1200px;
}

.image-wrapper.height.full {
	max-height: 100%;
}

.image-wrapper.xxs {
    max-width: 40px;
}

.image-wrapper.icon {
    max-width: 16.2px;
}

.image-wrapper.reverse {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.image-wrapper.height.xs {
    width: auto;
    height: 100%;
    max-height: 22px !important;
}

[data-lucide] {
    color: var(--text-color);
    flex-shrink: 0;
}

button {
    background-color: unset;
    padding: unset;
    outline: none;
    border: unset;
}

.p-content {
	padding: var(--padding);
}

.bg-decoration {
	background: url("../img/design/decoration-01.svg") no-repeat;
	background-size: 14rem;
	background-position: left top;
}

.bg-gray-light {
	background-color: #e3e3e326;
}

.bg-servers::before,
.bg-poly::before,
.bg-waves-in-column::before,
.bg-waves::before,
.bg-motherboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-waves:before {
	background-image: url('../img/design/waves.jpg');
    background-size: cover;
	background-position: center;
	filter: brightness(5.2) contrast(0.34) saturate(0.19) hue-rotate(1deg) brightness(1.48);
}

.bg-waves-in-column:before {
	background-image: url('../img/design/waves-in-column.jpg');
    background-size: cover;
	background-position: center;
	filter: brightness(2.8) contrast(0.22) saturate(0.1) hue-rotate(129deg) brightness(1.6);
}

.bg-motherboard::before {
	background-image: url('../img/design/motherboard-background.jpg');
    background-size: cover;
	background-position: center -28rem;
    filter: brightness(48%);
}

.bg-poly:before {
	background-image: url('../img/design/poly.jpg');
    background-size: cover;
	background-position: center;
	filter: brightness(0.4);
}

.bg-servers:before {
	background-image: url('../img/design/servers.jpg');
    background-size: cover;
	background-position: center;
	filter: brightness(0.48);
}

.bg-servers > *,
.bg-poly > *,
.bg-motherboard > * {
	color: white;
}

.w-mc {
	width: max-content;
}

.h-mc {
	height: max-content;
}

.scroll-touch {
    overflow: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.scroll-touch .scroll-content {
    flex-wrap: nowrap;
}

.box-info .content {
	width: 100%;
	max-width: 404px;
	position: absolute;
	left: 0;
	bottom: -0.5rem;
}

.form-control,
.form-select {
	font-size: var(--font-size-md);
}

/* ------------------------------ */
/* ENDING: DEFAULT STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: INPUT RANGE STYLES */
/* ------------------------------ */

.rs-container {
    z-index: 5;
}

.rs-container .rs-bg, .rs-container .rs-selected {
    background-color: var(--range-bg);
    border-color: var(--range-bg);
}

.rs-container .rs-pointer,
.rs-container .rs-selected {
    background-color: var(--primary-color);
}

.rs-container .rs-pointer {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    box-shadow: unset;
    border: unset;
    top: -2px;
}

.rs-container .rs-pointer::before, .rs-container .rs-pointer::after,
.rs-container .rs-pointer::before, .rs-container .rs-pointer::before {
    all: unset;
}

.rs-tooltip {
    width: max-content;
    min-width: unset;
    height: max-content;
    background-color: var(--primary-color);
    color: #fff;
    font-size: var(--font-size-sm);
    padding: 9px 18px;
    bottom: 15px;
    border-color: var(--primary-color);
}

.rs-tooltip::after {
    height: 0;
    content: "\f104";
    font-family: ionicons;
    font-size: var(--font-size-icon-md);
    position: absolute;
    color: var(--text-color);
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    top: 7px;
    z-index: 3;
}

.rs-container .rs-scale {
    display: flex;
}

.rs-container .rs-scale span::before {
    background-color: var(--range-bg);
    height: 14px;
    width: 2.90px;
}

.rs-container .rs-scale span:first-child:before {
    left: 2px;
}

.rs-container .rs-scale span:last-child:before {
    left: -2px;
}

.rs-container .rs-scale span ins {
    color: var(--text-color);
    font-family: "font-semi-bold";
    font-size: 16px;
    margin-top: 28px;
}

.settings .setting {
    transform-origin: left center;
    transition: scale 0.2s ease-in-out;
}

.settings .setting.active {
    scale: 1.05 !important;
}

.price-range-container {
    overflow: hidden;
}

/* ------------------------------ */
/* ENDING: INPUT RANGE STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: SIDE-BY-SIDE STYLES */
/* ------------------------------ */

.row[class*=" side-by-side"] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 5rem auto !important;
}

.side-by-side-reverse:nth-child(odd) {
    flex-direction: row-reverse;
}

.side-by-side:nth-child(even) {
    flex-direction: row-reverse;
}

.side-by-side-reverse > *:first-child,
.side-by-side > *:first-child {
    justify-content: flex-start;
}

.side-by-side-reverse > *:last-child,
.side-by-side > *:last-child {
    justify-content: flex-end;
}

.side-by-side-reverse:nth-child(odd) > *:first-child,
.side-by-side:nth-child(even) > *:first-child {
    justify-content: flex-end;
}

.side-by-side-reverse:nth-child(odd) > *:last-child
.side-by-side:nth-child(even) > *:last-child {
    justify-content: flex-start;
}

.side-by-side-reverse:last-child,
.side-by-side:last-child {
    margin-bottom: unset !important;
}

.row[class*="side-by-side"] > * {
    display: flex;
}

.row[class*="side-by-side"].xs {
    margin: 0 auto 2rem auto !important;
}

.row[class*="side-by-side"].sm {
    margin: 0 auto 3rem auto !important;
}

.row[class*="side-by-side"].md {
    margin: 0 auto 4rem auto !important;
}

.row[class*="side-by-side"].lg {
    margin: 0 auto 5rem auto !important;
}

.row[class*="side-by-side"].xl {
    margin: 0 auto 6rem auto !important;
}

/* ------------------------------ */
/* ENDING: SIDE-BY-SIDE STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: FEATURES */
/* ------------------------------ */

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10.5px;
}

.features-wrapper > .feature {
    width: max-content;
    border: 1.5px solid var(--primary-color);
    padding: 11px 18px 13px 18px;
    font-family: "font-semi-bold";
    letter-spacing: 0.05em;
    font-size: var(--font-size-xs);
    transition: color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    cursor: default;
}

.features-wrapper > .feature:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.f-side-by-side .icon-wrapper ion-icon {
    font-size: var(--font-size-icon-md);
}

.f-column .icon-wrapper > *,
.f-side-by-side .text-wrapper > * {
    line-height: normal;
}

.f-column .icon-wrapper ion-icon {
    font-size: var(--font-size-icon-lg);
}

.f-column .bg-pink-light > * {
    color: #fff;
}

.features .feature p {
    margin: unset;
}

.features .feature {
    padding: 2.3rem;
}

/* ------------------------------ */
/* ENDING: FEATURES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: SELECT2 STYLES */
/* ------------------------------ */

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown,
.select2-container--default .select2-selection--single {
    border-color: var(--border-color) !important;
    font-size: var(--font-size-md) !important;
    border-radius: var(--border-radius) !important;
    background-color: var(--bs-body-bg);
}

.select2-container--default .select2-selection--single {
    min-height: 33.55px !important;
}

.select2-dropdown {
    padding: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    margin-right: 4.68px;
    line-height: unset !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 100% !important;
    display: flex !important;
    align-items: center;
    right: 8.6px !important;
    color: var(--text-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    all: unset !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" color="%2344507B" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down"><path d="m6 9 6 6 6-6"/></svg>');
    height: max-content;
    transition: transform 0.3s ease;
}

.select2-container--default .select2-selection--single[aria-expanded="true"] .select2-selection__arrow:after {
    transform: rotate(180deg);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary-color) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-results__option {
    margin-bottom: 0.2rem !important;
    border-radius: var(--border-radius);
    padding: 8px !important;
}

.select2-container--default .select2-results__option--selected {
    background-color: var(--border-color) !important;
}

.select2-results__option:last-child {
    margin-bottom: unset !important;
}

.select2-search--dropdown {
    padding: unset !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--secondary-theme-color-color) !important;
}

.select2-dropdown,
.select2-container--default .select2-selection--single {
    background-color: var(--primary-theme-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-color) !important;
}

.select2 .selection,
.select2 .select2-selection {
    height: 100% !important;
}

.input-in-line .select2 .select2-selection {
    border-left: unset !important;
}

.input-in-line .select2-container--open {
    border: 1px solid var(--border-color);
}

.input-in-line .select2-container--open {
    border: unset !important;
}

.input-in-line .select2-container--open .select2-selection {
    border-left: unset;
    border-bottom: unset !important;
}

/* ------------------------------ */
/* ENDING: SELECT2 STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: FORM STYLES */
/* ------------------------------ */

.form-control {
	padding: .5rem .84rem;
	border-color: var(--border-color);
}

.input-in-line {
    display: flex;
    align-items: stretch;
}

.input-in-line select {
    width: 100%;
    min-width: 80px;
    max-width: max-content;
    border-left: unset;
}

.input-in-line select:focus {
    border-color: var(--border-color) !important;
}

.select2 .selection,
.select2 .select2-selection {
    height: 100% !important;
}

.input-in-line .select2 .select2-selection {
    border-left: unset !important;
}

.input-in-line .select2-container--open {
    border: 1px solid var(--border-color);
}

.input-in-line .select2-container--open {
    border: unset !important;
}

.input-in-line .select2-container--open .select2-selection {
    border-left: unset;
    border-bottom: unset !important;
}

.input-in-line.lg input {
    padding: 0.6rem;
}

.domain-wrapper {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
}

/* ------------------------------ */
/* ENDING: FORM STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: BUTTONS STYLES */
/* ------------------------------ */

.btn {
    --bs-btn-border-radius: calc(var(--border-radius) + 2px);
    --bs-btn-color: var(--text-color);
    font-family: "font-medium";
    font-size: var(--font-size-md);
    transition: background-color 0.2s ease-in-out;
    text-transform: capitalize;
    text-align: center;
    text-wrap: nowrap;
}
 
 .btn-primary {
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-color-hover);
    --bs-btn-hover-border-color: var(--primary-color-hover);
    --bs-btn-active-bg: var(--primary-color-active);
    --bs-btn-active-border-color: var(--primary-color-active);
}
 
 .btn-primary,
 .btn-primary * {
    color: #fff;
}

.btn-outline-primary {
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--primary-color);
	--bs-btn-hover-border-color: var(--primary-color);
	--bs-btn-active-bg: var(--primary-color-active);
	--bs-btn-active-border-color: var(--primary-color-active);
}
 
.btn-light {
	--bs-btn-bg: var(--primary-theme-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--primary-color);
	--bs-btn-hover-border-color: var(--primary-color);
	--bs-btn-active-bg: var(--primary-color-active);
	--bs-btn-active-border-color: var(--primary-color-active);
}
 
 .btn-light.active {
    background-color: var(--primary-theme-color);
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color);
}
 
 .btn-light.active:hover {
    background-color: var(--primary-color-hover);
}
 
 .btn-light.active {
    --bs-btn-hover-border-color: var(--primary-color-hover);
}
 
 .btn-light:active *,
 .btn-light:hover * {
    color: #fff;
}
 
 .btn-white {
	--bs-btn-bg: var(--primary-theme-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--secondary-color);
	--bs-btn-hover-border-color: var(--secondary-color);
	--bs-btn-active-bg: var(--primary-color-active);
	--bs-btn-active-border-color: var(--primary-color-active);
}

.btn-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.btn-group > .btn {
	border-radius: var(--border-radius) !important;
	text-wrap: wrap;
}

.btn-arrow {
	gap: 1rem;
}

.btn-arrow .lucide {
	position: relative;
	transition: left 0.2s ease-in-out;
	top: 0.1rem;
}

.btn-arrow:hover .lucide {
	left: 0.3rem;
}

.card-header-tabs {
	margin-bottom: unset;
}

.tab-content>.active {
	display: flex;
}

/* ------------------------------ */
/* ENDING: BUTTONS STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: PRICE STYLES */
/* ------------------------------ */

.worth {
    display: flex;
    align-items: flex-end;
    font-family: "font-medium";
}

.price {
    display: flex;
    align-items: flex-end;
}

.price > span {
    font-family: "font-medium";
    position: relative;
    bottom: 6px;
}

.price > span:nth-child(2) {
    font-family: "font-semi-bold";
    font-size: calc(var(--font-size-xxl) + 0.3rem);
    margin: 0 6px 0 6px;
    bottom: 0;
}

.price-boxes ion-icon[name*="checkmark"] {
    color: #00b090;
}


.price-boxes ion-icon[name*="close"] {
    color: #fc5185;
}

.price-boxes .btn-primary {
    padding: 0.6rem;
}

.price-boxes .price-box {
    padding: 2rem;
}

.price-boxes *:not([class*="btn"]) {
    color: var(--text-color);
}

/* ------------------------------ */
/* ENDING: PRICE STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: TABLE STYLES */
/* ------------------------------ */

.table {
    font-size: var(--font-size-sm);
}

.table span {
    font-size: var(--font-size-sm);
}

.table * {
    font-family: "font-regular";
}

.table *:not(strong) {
    font-weight: normal;
}

.pls-table {
    background-color: var(--primary-theme-color);
}

.pls-table .table {
    margin: unset;
}

.pls-table .pls-table-foot,
.pls-table .pls-table-head,
.pls-table .table>:not(caption)>*>* {
    --content-padding: calc(var(--padding) - 8px);
    padding: var(--content-padding);
}

.pls-table thead > tr > th {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

.pls-table .table .btn {
    padding: .4rem;
}

.pls-table .pls-table-action {
    width: max-content;
    position: relative;
}

.pls-table .pls-table-search {
    height: max-content;
    background-color: var(--primary-theme-color);
    transition: opacity 0.1s ease-in-out;
}

.pls-table .pls-table-search input[type="search"] {
    width: 100%;
    border: unset;
    outline: none;
    display: none;
    color: var(--text-color);
}

.pls-table .pls-table-search input[type="search"]::placeholder {
    color: var(--text-color);
    font-family: "font-regular";
    font-size: var(--font-size-xs);
}

.pls-table .pls-table-search.collapsing {
    opacity: 0;
}

.pls-table .pls-table-search.active {
    width: 100%;
    position: absolute;
    left: 0;
}

.pls-table .pls-table-search.active > form,
.pls-table .pls-table-search.active button:last-child,
.pls-table .pls-table-search.active input[type="search"] {
    display: flex !important;
}

.table-invoice .table-amount {
    width: 80px;
}

table tbody td {
    word-break: break-all;
}

/* ------------------------------ */
/* ENDING: TABLE STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: TABLE PRICE */
/* ------------------------------ */

.price-table th {
    font-family: "font-medium";
    font-size: var(--font-size-lg);
	color: var(--text-color);
}

.price-table th[scope="row"] {
	font-size: var(--font-size-md);
}

.price-table td {
    font-size: var(--font-size-sm);
}

.price-table tr > * {
    padding: 1rem !important;
}

.price-table tr > *:not(th[scope="row"]) {
    text-align: center;
}

/* ------------------------------ */
/* ENDING: TABLE PRICE */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: BOXES STYLES */
/* ------------------------------ */

.boxes {
    --bs-gutter-y: var(--content-padding);
    --bs-gutter-x: var(--content-padding);
}

.boxes .box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--content-padding);
    background-color: var(--primary-theme-color);
	background-color: unset;
    justify-content: start;
}

.boxes-toggle .box {
	width: 100%;
	min-width: 260px;
	padding: calc(var(--content-padding) * 1.1);
	border-bottom: 1.6px solid var(--border-color);
}

.boxes-toggle .box.active {
	border-color: var(--primary-color-active);
}

/* ------------------------------ */
/* ENDING: BOXES STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: ACCORDION STYLES */
/* ------------------------------ */

.accordion .accordion-item {
    background-color: transparent;
    border: unset;
} 

.accordion .accordion-item .accordion-body,
.accordion .accordion-button {
    background-color: var(--primary-theme-color);
    color: var(--text-color);
    box-shadow: unset;
}

.accordion .accordion-button {
    font-family: "font-medium";
    font-size: var(--font-size-lg);
}

.accordion .accordion-item .accordion-body {
    font-family: "font-regular";
    font-size: var(--font-size-md);
}

.accordion-separated .accordion-button[aria-expanded="true"] {
    border-color: var(--primary-color) !important;
}

.accordion-separated .accordion-button::after {
    all: unset;
}

.accordion-button {
	cursor: pointer;
    --bs-accordion-btn-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="%23374F56" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down"><path d="m6 9 6 6 6-6"/></svg>');
    --bs-accordion-btn-active-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="%23374F56" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down"><path d="m6 9 6 6 6-6"/></svg>');
}

.accordion-button:not(.collapsed) {
    color: var(--text-color);
    background-color: unset;
}

/* ------------------------------ */
/* ENDING: ACCORDION STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: CAROUSEL STYLES */
/* ------------------------------ */

.carousel {
	display: flex;
	flex-direction: column;
	gap: 28.8px;
}

.carousel-item {
	min-height: 344px;
}

.carousel-indicators {
	margin-bottom: unset;
	position: relative;
}

.carousel-indicators [data-bs-target] {
	width: 10.4px;
	height: 10.4px;
	background-color: var(--primary-color);
	border-radius: 100%;
	margin-right: 10px;
    margin-left: 10px;
}

/* ------------------------------ */
/* ENDING: CAROUSEL STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: HEADER STYLES */
/* ------------------------------ */

header .header-main {
	padding: 0.8rem 0;
}

header .header-main .navbar {
	--bs-navbar-nav-link-padding-x: 1.18rem;
	--bs-nav-link-font-size: var(--font-size-lg);
	--bs-nav-link-color: var(--text-color);
	font-family: 'font-medium';
}

header .header-main .navbar-nav {
	--bs-nav-link-color: var(--text-color);
	--bs-nav-link-hover-color: var(--primary-color-hover);
	--bs-nav-link-active-color: var(--primary-color-active);
	--bs-navbar-active-color: var(--secondary-color);
}

.header-main .navbar .dropdown-menu {
	--bs-dropdown-bg: var(--secondary-color);
	--bs-dropdown-color: unset;
	--bs-dropdown-link-color: #fff;
    --bs-dropdown-link-active-bg: var(--primary-color);
    --bs-dropdown-padding-y: 0.6rem;
    --bs-dropdown-min-width: max-content;
    --bs-dropdown-spacer: 0.42rem;
}

.header-main .navbar .dropdown-menu .dropdown-item {
    font-family: "font-medium";
    font-size: var(--font-size-md);
    padding: 8px 18px;
	transition: unset;
}

header .header-main .dropdown-toggle::after {
    border: unset;
    vertical-align: middle;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14.8" height="14.8" viewBox="0 0 24 24" fill="none" stroke="%23374F56" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down"><path d="m6 9 6 6 6-6"/></svg>');
    transition: transform 0.3s ease-in-out, vertical-align 0.3s ease-in-out;;
    transform: rotate(0deg);
    cursor: pointer;
    margin-left: 0.44em;
    display: inline-block;
    position: relative;
}

header .header-main .dropdown-toggle.active::after,
header .header-main .dropdown-toggle:hover::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14.8" height="14.8" viewBox="0 0 24 24" fill="none" stroke="%23757394" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down"><path d="m6 9 6 6 6-6"/></svg>');
}

header .header-main .dropdown-toggle[aria-expanded="true"]::after,
header .header-main .dropdown-toggle.active::after,
header .header-main .dropdown-toggle:active::after,
header .header-main .dropdown-toggle:focus::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14.8" height="14.8" viewBox="0 0 24 24" fill="none" stroke="%231E2B2F" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down"><path d="m6 9 6 6 6-6"/></svg>');
}

header .header-main .dropdown-toggle[aria-expanded="true"] {
    color: var(--text-color);
}

header .header-main .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-lang .image-wrapper {
    width: 18px;
    border-radius: 100%;
    overflow: hidden;
}

.dropdown-lang .dropdown-item strong {
	color: white;
}

.dropdown-lang .dropdown-item:focus strong,
.dropdown-lang .dropdown-item:active strong,
.dropdown-lang .dropdown-item:hover strong {
	color: var(--text-color);
}

.navbar-collapse {
	flex-basis: 0;
}

.navbar-toggler {
	display: none;
}

body.navbar-expanded header .header-main .navbar {
	display: flex;
}

/* ------------------------------ */
/* ENDING: HEADER STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: CONTRACT STYLES */
/* ------------------------------ */

.contract .contract-sidebar {
	border: 1px solid var(--primary-color);
	border-radius: var(--border-radius);
	padding: var(--padding);
}

.contract .contract-sidebar li a.active {
	color: var(--secondary-color) !important;
}

/* ------------------------------ */
/* ENDING: CONTRACT STYLES */
/* ------------------------------ */

/* ------------------------------ */
/* STARTING: RESPONSIVE STYLES */
/* ------------------------------ */

@media (max-width: 992px) {
	header .header-main .content {
		flex-wrap: wrap;
	}
	header .header-main .navbar {
		display: none;
	}
	header .header-main .navbar-toggler {
		display: flex;
	}
}

@media (max-width: 768px) {
	.box-info .content {
		max-width: 100%;
		position: relative;
	}
}

@media (max-width: 540px) {
	:root {
		--font-size-xl: calc(var(--font-size-xxs) * 1.58);
		--font-size-xxl: calc(var(--font-size-xxs) * 1.44);
	}
	.input-in-line {
        flex-direction: column;
        gap: 6px;
    }
    .input-in-line > * {
		min-width: 100% !important;
        width: 100% !important;
    }
    .input-in-line select {
        border: 1px solid var(--border-color) !important;
    }
}

/* ------------------------------ */
/* ENDING: RESPONSIVE STYLES */
/* ------------------------------ */