﻿/*======================================================================================*/
/*																						*/
/*									Variables overrides									*/
/*																						*/
/*======================================================================================*/

:root {
	/* Font */
	--ct-body-font-family: var(--ct-font-sans-serif);
	--base-font-size: 16px;
	--fw-3: 300;
	--fw-4: 400;
	--fw-5: 500;
	--fw-6: 600;
	--fw-7: 700;
	/* Colors */
	--text-link-color: #0083E9;
	--ct-body-bg: #FFFFFF;
	--ct-body-color: #121212;
	--ct-menu-bg: #FCFCFC !important;
	--white: #FFFFFF;
	--btn-primary-bg: #FAFDFF;
	--btn-primary-accent-bg: #f7fcff;
	--btn-primary-accent-bg-hover: #1498FF;
	--btn-primary-border: #0083E9;
	--btn-primary-border-hover: #1D9CFF;
	--btn-primary-text-color: #0083E9;
	--btn-primary-text-color-hover: #0070C7;
	--btn-primary-accent-bg-danger: #FF4C4C;
	--btn-primary-accent-bg-danger-hover: #FF5D5D;
	--btn-negative-bg: #AAA;
	--btn-negative-bg-hover: #B3B3B3;
	--btn-negative-text-color: #FFF;
	--btn-negative-bg: #FFF;
	--btn-negative-border: #AAA;
	--btn-negative-border-hover: #808080;
	--btn-negative-bg-hover: #FFF;
	--btn-negative-text-color: #808080;
	--btn-negative-text-color-hover: #555;
	--bg-current: rgba(222, 226, 230, .4);
	--extra-light-bg: #FAFBFB;
	--discount-color: #00A991;
	--discount-color-accent: #00BAA0;
	--discount-color-hover: #00CBAE;
	--tab-active: #004982;
	--tab-disabled: #CCC;
	--tab-selected: #121212;
	--bg-extralight-accent: rgba(222, 226, 230, .3);
	--bg-extralight: rgba(0,0,0,.01);
	--border-extra-light: rgba(0,0,0,.05);
	--bg-extralight-hover: rgba(0,0,0, 0);
	--border-extra-light-hover: rgba(0,0,0,.2);
	--border-light: #D8DAE5;
	--bg-accent-light: #FAFBF3;
	/* Placeholders */
	--placeholder-color: #A1A9B1;
	/* Nav TopBar */
	--ct-topbar-item-hover-color: #1498FF !important;
	--ct-topbar-item-color: #003A68 !important;
	--ct-link-color: #003A68 !important;
	--ct-link-hover-color: #003A68 !important;
	/* Logo */
	--ct-logo-lg-height: 42px;
	--ct-logo-sm-height: 42px;
	/* HR */
	--hr-light: #DEE2E6;
	--hr-middle-light: #D8DAE5;
	/* Radius */
	--general-radius: 4px;
	--br-2: 2px;
	--br-3: 3px;
	--br-6: 6px;
	/* Sidebar Nav colors */
	--sidebar-link-color: #003A68;
	/* Form */
	--input-border-active: #B2B5B8;
	--input-border-focused: #A0A4A8;
	--outline-input-focus: 2px solid rgba(0, 131, 233, .1);
	/* Typography */
	--note: #999;
	/* Tables */
	--table-border: 1px solid #B2B5B8;
	--table-border-color: #B2B5B8;
	--table-td-border: 1px solid #DEE2E6;
	--table-th-bg: #FCFCFC;
	--table-th: #999;
	--table-tr-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	--product-table-border: #CCC;
	--product-table-td-details: #646667;
	--product-table-td-data: #707070;
	--product-td-input-bg: #E5F4FF;
	/* Status */
	--status-pending: #646667;
	--status-completed: #00A991;
	--status-error: #FF4547;
	--status-error-border: rgba(255,76,76,.5);
	--status-smallnote: #646667;
	--status-partial-completed: #EE2A00;
	--alert: #FFDC4A;
	/* Pagination */
	--pagination-border-color: #B2B5B8;
	--pagination-border-color-disabled: #red;
	/* Disabled */
	--disabled-border: #C8CBCF;
	--disabled-bg: #FFF;
	--disabled-color: #B6BABF;
	/* Modals */
	--modal-padding: 20px;
	--modal-padding-header: 10px 20px;
	--modal-padding-footer: 20px 16px 25px 16px;
	--modal-header-bg: #FCFCFC;
	--modal-title-size: 19px;
	--modal-title-color: #121212;
	--modal-title-weight: 700;
	/* Transition */
	--default-transition: all .2s ease-out;
	/* Scroll */
	--scrollbar-color: #CCC;
}





/*======================================================================================*/
/*																						*/
/*									Elements overrides									*/
/*																						*/
/*======================================================================================*/




/*——————————————————————————————————————————————————————*/
/*	Loading message										*/
/*——————————————————————————————————————————————————————*/

.loading-message {
	font-size: 14px;
	display: inline-flex;
	margin-top: 40px;
	margin-left: 15px;
	color: dimgrey;
}

	.loading-message:after {
		overflow: hidden;
		display: inline-block;
		position: relative;
		top: -1px;
		left: 2px;
		-webkit-animation: ellipsis steps(4,end) 1000ms infinite;
		animation: ellipsis steps(4,end) 1000ms infinite;
		content: "_";
		width: 0;
	}

@keyframes ellipsis {
	to {
		width: 3em;
	}
}

@-webkit-keyframes ellipsis {
	to {
		width: 3em;
	}
}




/*——————————————————————————————————————————————————————*/
/*	General settings									*/
/*——————————————————————————————————————————————————————*/


/* Scrollbar */
::-webkit-scrollbar {
	width: auto;
}

::-webkit-scrollbar-track {
	background: transparent !important;
}

::-webkit-scrollbar-thumb {
	border: 6px solid rgba(0, 0, 0, 0);
	background-clip: padding-box;
	border-radius: 9999px;
	background-color: #b0b0b0;
}


.col-auto-fixed-width {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}

::selection {
	color: #121212;
	background: rgba(0,0,0,.1);
}

/* Spin remove input field number Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Spin remove input field number Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

.content-page {
	min-height: 100vh !important;
	display: flex;
	flex-direction: column;
	padding-bottom: 0;
	background: var(--white) !important;
}

html, body {
	font-family: 'Inter', sans-serif;
	color: var(--ct-body-color);
}

a {
	text-decoration: none;
}

p a, p a:hover, h4 a, h4 a:hover {
	color: var(--text-link-color);
}


/* Prevent horizontal stack when modal open */
.modal-open {
	padding-right: 0 !important;
}

html {
	overflow-y: scroll !important;
}

.body-content {
	margin-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.navbar-custom {
	width: calc(100% - 260px);
	position: fixed;
	box-shadow: none !important
}




/*——————————————————————————————————————————————————————*/
/*	Placeholder											*/
/*——————————————————————————————————————————————————————*/

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: var(--placeholder-color) !important;
}

::-moz-placeholder { /* Firefox 19+ */
	color: var(--placeholder-color) !important;
}

:-ms-input-placeholder { /* IE 10+ */
	color: var(--placeholder-color) !important;
}

:-moz-placeholder { /* Firefox 18- */
	color: var(--placeholder-color) !important;
}





/*——————————————————————————————————————————————————————*/
/*	Search results										*/
/*——————————————————————————————————————————————————————*/

.search-results a .card {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--white);
	transition: all .2s ease-in-out;
	overflow: hidden;
}

.search-results a:hover .card {
	box-shadow: 0 2.8px 2.2px rgba(0,0,0,0.02);
	background: var(--bg-current);
}

.search-results .card {
	box-shadow: none;
	border: 1px solid var(--border-light);
}

	.search-results .card img {
		max-width: 65%;
		height: auto;
		display: block;
		margin: 0 auto;
		mix-blend-mode: multiply;
	}

	.search-results .card .card-footer {
		text-align: center;
		padding-bottom: 0;
		border-top: 1px solid var(--border-light);
		padding: 10px !important;
	}

		.search-results .card .card-footer small {
			color: var(--note);
			font-size: 12px;
			font-weight: var(--fw-3);
			display: block;
		}

		.search-results .card .card-footer label {
			font-size: 15px;
			font-weight: var(--fw-7) !important;
			color: var(--ct-body-color) !important;
			cursor: pointer !important;
		}





/*——————————————————————————————————————————————————————*/
/*	Login												*/
/*——————————————————————————————————————————————————————*/

.content-page-login {
	margin-left: 0 !important;
	min-height: calc(100vh - 70px);
	padding-bottom: 0;
}

	.content-page-login .bg-img {
		content: ' ';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		opacity: .025;
		background-image: url('saas/images/svg/world-dot.svg');
		background-repeat: no-repeat;
		background-position: 50% 0;
		background-size: cover;
		z-index: -1;
	}

	.content-page-login .centered-container {
		padding: 6% 0;
		max-width: 320px;
		margin: 0 auto;
	}

	.content-page-login .logo {
		min-width: 100%;
		height: auto;
		padding: 0;
		display: flex;
		justify-content: center;
	}





/*——————————————————————————————————————————————————————*/
/*	Cols												*/
/*——————————————————————————————————————————————————————*/

.col-custom-product {
	position: relative;
	max-width: calc(100% - 330px);
}

	.col-custom-product .box {
		margin-bottom: 30px;
		background: var(--white);
	}





/*——————————————————————————————————————————————————————*/
/*	Lists												*/
/*——————————————————————————————————————————————————————*/

ul.data-list {
	padding: 0;
}

	ul.data-list li {
		list-style: none;
		line-height: 1.6;
	}

		ul.data-list li a {
			color: var(--btn-primary-text-color);
		}

			ul.data-list li a:hover, ul.data-list li a:focus {
				color: var(--btn-primary-text-color-hover);
			}





/*——————————————————————————————————————————————————————*/
/*	Typography											*/
/*——————————————————————————————————————————————————————*/

p {
	line-height: 1.5;
}

h2.page-title {
	font-size: 25px;
	margin-top: 8px;
}





/*——————————————————————————————————————————————————————*/
/*	Active links										*/
/*——————————————————————————————————————————————————————*/

a, a i.mdi, button {
	transition: all .2s ease-in-out !important;
}

	li.dropdown a.nav-link.dropdown-toggle, button.button-toggle-menu {
		color: var(--sidebar-link-color) !important;
		background: transparent;
	}

		li.dropdown a.nav-link.dropdown-toggle:hover,
		button.button-toggle-menu:hover,
		.btn-icon:hover, .btn-icon:focus {
			opacity: .5;
		}





/*——————————————————————————————————————————————————————*/
/*	Modals												*/
/*——————————————————————————————————————————————————————*/

.modal {
	padding-right: 0 !important;
}

.modal-content {
	box-shadow: 0 30px 40px 0 rgba(0,0,0,.5);
	border-radius: var(--br-6) !important;
}

	.modal-content .modal-header {
		padding: var(--modal-padding-header);
		background-color: var(--modal-header-bg);
	}

		.modal-content .modal-header h3 {
			font-size: var(--modal-title-size);
			color: var(--modal-title-color);
			font-weight: var(--modal-title-weight);
		}

			.modal-content .modal-header h3 small {
				display: block;
				text-transform: uppercase;
				font-weight: var(--fw-5);
				color: var(--note);
				padding-top: 5px;
				font-size: 10px;
			}

				.modal-content .modal-header h3 small.error {
					color: var(--status-error);
				}

.modal-header .btn-close {
	margin-right: -5px;
}

.modal-content .modal-header h3 {
	font-size: var(--modal-title-size);
	color: var(--modal-title-color);
	font-weight: var(--modal-title-weight);
}

.modal-content .modal-body {
	padding: var(--modal-padding);
}

	.modal-content .modal-body .box {
		margin-bottom: 20px;
		background: var(--white);
	}

.modal-footer {
	padding: var(--modal-padding-footer);
	border: 0;
	justify-content: flex-end !important;
}

	.modal-footer button {
		min-height: 37px;
	}

.modal.fade .modal-dialog {
	transition: transform 0.2s ease-out;
}

.modal-image .modal-body {
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
}

	.modal-image .modal-body img {
		object-fit: contain;
		border-radius: var(--br-6) !important;
	}

	.modal-image .modal-body > div {
		position: absolute;
		top: 20px;
		right: 20px;
		border-radius: 50%;
		background-color: rgba(0,0,0,.25);
	}

	.modal-image .modal-body button.btn-close {
		padding: 15px;
		filter: brightness(100);
	}





/*——————————————————————————————————————————————————————*/
/*	Bootstrap text truncate override					*/
/*——————————————————————————————————————————————————————*/

.dl-horizontal dt {
	white-space: normal;
}





/*——————————————————————————————————————————————————————*/
/*	Logo												*/
/*——————————————————————————————————————————————————————*/

.logo-lg, logo-sm {
	text-align: left;
	padding: 0 22px;
}

.logo span.logo-lg, .logo span.logo-sm {
	border-bottom: 1px solid var(--hr-light);
}





/*——————————————————————————————————————————————————————*/
/*	Topbar												*/
/*——————————————————————————————————————————————————————*/

.topbar.container-fluid {
	background: var(--ct-menu-bg);
	border-bottom: 1px solid var(--hr-light);
	min-height: 70.5px;
}

	.topbar.container-fluid h2 {
		padding-left: 18px;
	}

.topbar-menu .dropdown .nav-user {
	background: var(--ct-menu-bg) !important;
	border: 0 none;
}

ul.topbar-menu li a {
	font-size: 15px;
	font-weight: var(--fw-5);
	padding: 8px 12px;
	border-radius: var(--general-radius);
	display: flex;
}

	ul.topbar-menu li a img.icon {
		height: 18px;
		width: auto;
	}

	ul.topbar-menu li a:hover {
		background-color: var(--bg-current);
	}

ul.topbar-menu li:last-child {
	margin-left: 0;
	margin-right: 0;
	margin-right: 0;
}





/*——————————————————————————————————————————————————————*/
/*	Sidebar												*/
/*——————————————————————————————————————————————————————*/

.leftside-menu {
	background: var(--ct-menu-bg);
	border-right: 1px solid var(--hr-light);
	box-shadow: none;
}

	.leftside-menu a {
		padding: 0;
	}

	.leftside-menu .countdown {
		position: relative;
		height: 70.5px;
		border-bottom: 0 none !important;
		padding: 14px 20px 12px 80px;
		background: var(--alert);
		overflow: hidden;
	}

		.leftside-menu .countdown::after {
			background-image: url("saas/images/icons/timer-edit-outline.svg");
			background-repeat: no-repeat;
			position: absolute;
			top: 13px;
			left: 21px;
			width: 46px;
			height: 46px;
			content: '';
			opacity: .1;
		}

		.leftside-menu .countdown label {
			display: flex;
			color: #443A02;
			font-size: 12px;
			font-weight: var(--fw-4);
			text-shadow: 0 1px 1px rgba(255,255,255,.1);
		}

		.leftside-menu .countdown .time {
			color: #332C02;
			font-weight: var(--fw-7);
			font-size: 18px !important;
			text-shadow: 0 1px 1px rgba(255,255,255,.1);
		}





/*——————————————————————————————————————————————————————*/
/*	Sidebar Nav											*/
/*——————————————————————————————————————————————————————*/

ul.side-nav {
	padding: 15px;
}

	ul.side-nav li.side-nav-item > a,
	ul.side-nav li.side-nav-item > a:hover,
	ul.side-nav li.side-nav-item > a:focus,
	ul.side-nav li.side-nav-item > a:active {
		color: var(--sidebar-link-color);
	}

ul.side-nav-second-level {
	padding-left: 0;
}

.side-nav-forth-level .side-nav-item .side-nav-link,
.side-nav-forth-level .side-nav-item a,
.side-nav-forth-level li .side-nav-link,
.side-nav-forth-level li a,
.side-nav-second-level .side-nav-item .side-nav-link,
.side-nav-second-level .side-nav-item a,
.side-nav-second-level li .side-nav-link,
.side-nav-second-level li a,
.side-nav-third-level .side-nav-item .side-nav-link,
.side-nav-third-level .side-nav-item a,
.side-nav-third-level li .side-nav-link,
.side-nav-third-level li a {
	color: var(--sidebar-link-color);
	padding-top: 9px;
	padding-bottom: 10px;
	margin-bottom: 1px;
	padding-left: 15px;
	font-weight: var(--fw-5);
}

	.side-nav .side-nav-item a:hover,
	.side-nav .side-nav-item a:focus,
	.side-nav .side-nav-item a:active,
	.side-nav-second-level li a:hover,
	.side-nav-second-level li a:focus,
	.side-nav-second-level li a:active {
		color: var(--sidebar-link-color);
		background-color: var(--bg-current);
		border-radius: var(--general-radius);
	}

.side-nav-item a.side-nav-link,
.side-nav-item .side-nav-link {
	padding-top: 9px;
	padding-bottom: 8px;
	padding-left: 14px;
	margin-bottom: 9px;
	font-size: 15px;
	font-weight: var(--fw-6);
}

.side-nav .menu-arrow {
	-webkit-transform: translate(-50%,-50%) rotate(-90deg);
	transform: translate(-50%,-50%) rotate(-90deg);
}

.side-nav-item .menu-arrow {
	font-weight: var(--fw-4);
	top: 22px;
	right: 0;
	vertical-align: top;
	font-size: 15px;
	color: var(--input-border-active);
}

.selected-item {
	background-color: var(--bg-current);
	border-radius: var(--general-radius);
}

html[data-sidenav-size=full]:not([data-layout=topnav]) .navbar-custom {
	margin-left: 0;
	box-shadow: none !important;
	width: 100%;
}

html[data-sidenav-size=condensed]:not([data-layout=topnav]) .wrapper .navbar-custom {
	z-index: 1005;
	margin-left: 0;
	box-shadow: none !important;
	width: 100%;
}

html[data-sidenav-size=condensed]:not([data-layout=topnav]) .wrapper .leftside-menu {
	display: none !important;
}

html[data-sidenav-size=condensed] .content-page {
	margin-left: 0 !important;
}

/* Active link */
.side-nav .menuitem-active .menuitem-active .active {
	color: var(--sidebar-link-color);
	font-weight: var(--fw-5);
	background: var(--bg-current);
	border-radius: var(--general-radius);
}

.side-nav .menuitem-active > a {
	color: var(--sidebar-link-color);
	font-weight: var(--fw-6);
	border-radius: var(--general-radius);
}





/*——————————————————————————————————————————————————————*/
/*	Buttons												*/
/*——————————————————————————————————————————————————————*/

.btn, .btn-primary,
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
	color: var(--btn-primary-text-color);
	background-color: var(--white);
	border: 1px solid var(--btn-primary-border);
	box-shadow: none !important;
	border-radius: var(--general-radius);
}

	.btn:hover, .btn-primary:hover {
		background-color: var(--btn-primary-bg);
		color: var(--btn-primary-text-color) !important;
		border-color: var(--btn-primary-text-color);
		box-shadow: none !important;
	}

/* Edit button */
.btn-edit {
	border: 1px solid var(--text-link-color) !important;
	border-radius: var(--br-2) !important;
	color: var(--text-link-color) !important;
	text-transform: initial !important;
	font-weight: var(--fw-5) !important;
	font-size: 10px !important;
	padding: 5px 2px 4px 2px !important;
	display: flex !important;
	justify-content: center;
}

	.btn-edit:hover {
		color: var(--white) !important;
		background-color: var(--text-link-color) !important;
	}

/* Delete button */
.btn-delete {
	border: 1px solid var(--status-error) !important;
	border-radius: var(--br-2) !important;
	color: var(--status-error) !important;
	text-transform: initial !important;
	font-weight: var(--fw-5) !important;
	font-size: 10px !important;
	padding: 5px 2px 4px 2px !important;
	display: flex !important;
	justify-content: center;
}

	.btn-delete:hover {
		color: var(--white) !important;
		background-color: var(--status-error) !important;
	}

/* Accent button */
.btn-primary-accent {
	background-color: var(--btn-primary-accent-bg);
	box-shadow: none !important;
	color: var(--btn-primary-accent-bg-hover);
	border-radius: var(--general-radius);
}

	.btn-primary-accent:hover,
	.btn-primary-accent:focus,
	.btn-primary-accent:focus-within,
	.btn-primary-accent:focus-visible,
	.btn-primary-accent:active,
	.dx-button-default .dx-button-content:hover,
	.dx-button-default .dx-button-content:focus,
	.dx-button-default .dx-button-content:focus-within,
	.dx-button-default .dx-button-content:focus-visible,
	.dx-button-default .dx-button-content:active {
		background-color: var(--btn-primary-accent-bg-hover) !important;
		color: var(--white) !important;
		border-color: var(--btn-primary-accent-bg-hover) !important;
	}

	.btn-primary-accent a {
		color: var(--white);
	}

.dx-button-default .dx-button-content {
	background-color: var(--btn-primary-accent-bg);
	box-shadow: none !important;
	color: var(--btn-primary-accent-bg-hover);
	border-radius: var(--general-radius);
}

/* Accent danger button */
.btn-primary-accent-danger {
	border: 0 none;
	background-color: var(--btn-primary-accent-bg-danger);
	box-shadow: none !important;
	color: var(--white);
	border-radius: var(--general-radius);
}

	.btn-primary-accent-danger:hover,
	.btn-primary-accent-danger:focus,
	.btn-primary-accent-danger:focus-within,
	.btn-primary-accent-danger:focus-visible,
	.btn-primary-accent-danger:active {
		background-color: var(--btn-primary-accent-bg-danger-hover) !important;
		color: var(--white) !important;
		border: 0 none !important;
	}

	.btn-primary-accent-danger a {
		color: var(--white);
	}

/* Negative button */
.btn-negative {
	color: var(--btn-negative-text-color);
	background-color: var(--btn-negative-bg);
	border: 1px solid var(--btn-negative-border) !important;
	box-shadow: none !important;
	border-radius: var(--general-radius);
}

	.btn-negative:hover,
	.btn-negative:focus,
	.btn-negative:focus-visible,
	.btn-negative:focus-within,
	.btn-negative:active {
		color: var(--btn-negative-text-color-hover) !important;
		background-color: var(--btn-negative-bg-hover) !important;
		border: 1px solid var(--btn-negative-border-hover) !important;
		box-shadow: none !important;
	}

.dx-button-normal .dx-button-content {
	background-color: var(--btn-negative-bg);
	box-shadow: none !important;
	color: var(--btn-negative-border);
	border-radius: var(--general-radius);
}

/* Icon button */
.btn-icon, .btn-icon:hover, .btn-icon:focus, .btn-icon:active, btn-icon:focus-visible {
	background: transparent !important;
	box-shadow: none !important;
	border: 0 none !important;
	width: 36px;
}

/* Disabled button */
.btn[disabled], a.btn.disabled {
	pointer-events: none;
	background: var(--disabled-bg);
	border: 1px solid var(--disabled-border);
	color: var(--disabled-color);
}

a.disabled img {
	filter: saturate(0);
	opacity: .5;
}






/*——————————————————————————————————————————————————————*/
/*	Dropdown											*/
/*——————————————————————————————————————————————————————*/

.dropdown-menu-animated.show {
	top: 80% !important;
}

.dropdown-menu {
	min-width: 40px !important;
	max-width: 320px !important;
	padding: 5px;
}

li.dropdown a.img-active-area {
	max-width: 54px;
	max-width: 25px;
	display: flex;
	justify-content: center;
}

li.dropdown a.dropdown-item {
	padding: 5px 12px 7px 12px !important;
	margin-bottom: 1px;
}

.profile-dropdown span {
	color: var(--sidebar-link-color) !important;
}





/*——————————————————————————————————————————————————————*/
/*	Search												*/
/*——————————————————————————————————————————————————————*/

input[type="search"]::-webkit-search-cancel-button {
	display: none !important;
}

input[type="search"] {
	color: var(--ct-body-color) !important;
}

form .input-group span {
	color: var(--note) !important;
}





/*——————————————————————————————————————————————————————*/
/*	Input group											*/
/*——————————————————————————————————————————————————————*/

.input-group {
	border: 1px solid var(--input-border-active);
	border-radius: var(--general-radius);
	background: var(--white) !important;
}

	.input-group:focus,
	.input-group:focus-within {
		border: 1px solid var(--input-border-focused);
	}





/*——————————————————————————————————————————————————————*/
/*	HR													*/
/*——————————————————————————————————————————————————————*/

hr {
	border: 0;
	opacity: 1 !important;
}

	hr.hr-light {
		border-top: 1px solid var(--hr-light);
	}





/*——————————————————————————————————————————————————————*/
/*	Footer												*/
/*——————————————————————————————————————————————————————*/

footer {
	margin-top: auto;
	font-size: 12px;
	color: var(--note);
	padding: 0 20px;
	margin-bottom: 15px;
}





/*——————————————————————————————————————————————————————*/
/*	Generic Box											*/
/*——————————————————————————————————————————————————————*/

.box {
	border: var(--table-border);
	border-radius: var(--br-6);
}

	.box .contents {
		padding-bottom: 6px;
	}

		.box .contents:not(:last-of-type) {
			border-bottom: var(--table-border);
		}

	.box .header {
		display: flex;
		justify-content: space-between;
		margin-bottom: 15px;
		padding: 20px 20px 0 20px;
	}

		.box .header h4 {
			margin: 0;
			font-size: 17px;
			font-weight: var(--fw-7);
		}

		.box .header .btn {
			padding: 4px 10px 3px 10px;
			text-transform: uppercase;
			font-size: 11px;
			font-weight: var(--fw-4);
			border-radius: var(--br-2);
		}

	.box .body {
		display: flex;
		flex-wrap: wrap;
		gap: 0 40px;
		padding: 0 20px;
	}

		.box .body label {
			display: block !important;
			color: var(--note);
			font-size: 12px;
			font-weight: var(--fw-3);
		}





/*——————————————————————————————————————————————————————*/
/*	Box Extra Offers									*/
/*——————————————————————————————————————————————————————*/

.box-extra-offer {
	position: relative;
	margin: 12px 0 4px 0 !important;
}

	.box-extra-offer span {
		font-size: 10px !important;
		user-select: none;
		text-transform: uppercase;
		font-weight: var(--fw-7);
		border: 1px dashed var(--discount-color-accent);
		box-shadow: 3px 3px 0 rgba(0,0,0,.06);
		color: var(--discount-color-accent);
		border-radius: 2px;
		position: relative;
		display: inline-flex;
		top: -10px;
		padding: 4px 3px 3px 13px;
		width: 92px;
		font-style: italic;
	}

	.box-extra-offer::after {
		background-image: url(saas/images/icons/stars-icon.svg);
		background-repeat: no-repeat;
		position: absolute;
		top: -6px;
		left: -7px;
		background-size: 16px 16px;
		display: inline-block;
		width: 16px;
		height: 16px;
		content: '';
		background-color: var(--white);
		border-radius: 50%;
		padding: 6px !important;
	}





/*——————————————————————————————————————————————————————*/
/*	Box Collection & Products							*/
/*——————————————————————————————————————————————————————*/

.box .product-name {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 6px 15px 4px 15px;
	border-bottom: 1px solid var(--border-light);
	background: var(--bg-extralight);
	border-top-left-radius: var(--br-6);
	border-top-right-radius: var(--br-6);
}

.box .product-contents {
	padding: 20px 16px 20px 16px;
}

	.box .product-contents > div:not(:last-child) {
		margin-bottom: 10px;
	}

	.box .product-contents > div > label,
	.box .product-contents > label {
		display: flex;
		color: var(--note);
		font-size: 12px;
		font-weight: var(--fw-3);
	}

	.box .product-contents > div > div:not(.preface, .product-description) {
		font-size: 15px;
		font-weight: var(--fw-7);
	}

	.box .product-contents .item-code {
		background: var(--ct-body-color);
		padding: 1px 5px;
		border-radius: var(--br-2);
		margin-top: 3px;
		color: var(--white);
		display: inline-flex;
		overflow-wrap: break-word;
	}

		.box .product-contents .item-code::selection {
			background: #E5E5E5;
		}

		.box .product-contents .item-code::-moz-selection {
			background: #E5E5E5;
		}

/* Equal height columns */
.box .equal-height-columns {
	height: 100%;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	padding: 0;
	overflow-x: auto;
	scrollbar-color: var(--scrollbar-color) transparent !important;
}

	.box .equal-height-columns .col {
		border-right: 1px solid var(--border-light);
	}

		.box .equal-height-columns .col.x-scroll {
			min-width: 400px;
		}

		.box .equal-height-columns .col:last-of-type {
			border-right: 0 none;
		}

		.box .equal-height-columns .col.col-fixed-01 {
			max-width: 120px;
		}

			.box .equal-height-columns .col.col-fixed-01 .original-price {
				font-weight: var(--fw-5) !important;
				color: var(--ct-body-color);
			}

			.box .equal-height-columns .col.col-fixed-01 .discount-amount {
				font-weight: var(--fw-6);
				color: var(--discount-color);
			}

		.box .equal-height-columns .col.col-fixed-02 {
			max-width: 150px;
		}

	.box .equal-height-columns .preface,
	.box .equal-height-columns .product-description {
		color: var(--ct-body-color);
		font-size: 13px;
		line-height: 1.5;
	}

	.box .equal-height-columns .preface {
		padding-top: 1px;
	}

	.box .equal-height-columns a,
	.box .equal-height-columns a:hover,
	.box .equal-height-columns a:focus,
	.box .equal-height-columns a:focus-visible,
	.box .equal-height-columns a:focus-within {
		display: inline-block;
		font-size: 10px;
		font-weight: var(--fw-6);
		text-transform: uppercase;
		margin: 10px 0;
		border: 0 none;
		background: none;
		padding: 0;
	}

	.box .equal-height-columns .product-description {
		display: none;
	}





/*——————————————————————————————————————————————————————*/
/*	Table (Products contents table)						*/
/*——————————————————————————————————————————————————————*/

.product-contents form .input-filled {
	background-color: var(--product-td-input-bg) !important;
}

.product-contents form input[type="text"],
.product-contents form input[type="number"] {
	width: 100%;
	height: 100%;
	border: 1px solid rgba(0,0,0,0);
	text-align: center;
	background-color: var(--white);
	font-weight: var(--fw-5);
	color: var(--ct-body-color);
	position: absolute;
	left: 0;
	cursor: pointer;
	outline: none;
	transition: all .2s ease-out;
}

.product-contents form tbody tr:last-child td:last-child {
	border-bottom-right-radius: var(--br-3) !important;
}

.product-contents form tr:last-child td:last-child input[type="text"],
.product-contents form tr:last-child td:last-child input[type="number"] {
	border-bottom-right-radius: var(--br-3) !important;
}

.product-contents form input[type="number"]:hover,
.product-contents form input[type="number"]:focus-visible,
.product-contents form input[type="text"]:hover,
.product-contents form input[type="number"]:focus-visible {
	box-shadow: 0 0 12px rgba(0,0,0,0.05) inset;
	border-color: var(--text-link-color);
}

.product-contents form input[type="number"].input-filled,
.product-contents form input[type="text"].input-filled {
	border: 1px solid rgba(0,0,0,0);
	transition: all .2s ease-out;
}

	.product-contents form input[type="number"].input-filled:hover,
	.product-contents form input[type="number"].input-filled:focus-visible,
	.product-contents form input[type="text"].input-filled:hover,
	.product-contents form input[type="text"].input-filled:focus-visible {
		box-shadow: none;
		border-color: var(--text-link-color);
	}

.product-contents table.product-table {
	border-collapse: separate;
	border-spacing: 0;
	cursor: default;
	border: 1px solid var(--product-table-border);
	border-radius: var(--br-3);
	margin-bottom: 0;
}

	.product-contents table.product-table tr th {
		vertical-align: top;
		overflow-wrap: anywhere;
		border: 0 none;
	}

	.product-contents table.product-table tr td:last-child {
		border-right: 0;
	}

	.product-contents table.product-table tr:last-child td {
		border-bottom: 0;
	}

	.product-contents table.product-table thead tr td {
		border-bottom: 1px solid var(--product-table-border) !important;
	}

	.product-contents table.product-table tr td {
		vertical-align: baseline;
		overflow-wrap: anywhere;
		border: 0 none;
		border-right: 1px solid var(--product-table-border);
		border-bottom: 1px solid var(--product-table-border);
		text-align: center;
	}

	.product-contents table.product-table tr th,
	.product-contents table.product-table tr td {
		padding: 10px !important;
	}

	.product-contents table.product-table tr th {
		color: #646667;
		font-weight: var(--fw-7);
		font-size: 12px;
		text-align: left;
		border-right: 1px solid var(--product-table-border);
		border-bottom: 1px solid var(--product-table-border);
	}

		.product-contents table.product-table tr th:first-child {
			border-top-right-radius: 0;
		}

		.product-contents table.product-table tr th:last-child {
			border-right: 0;
		}

	.product-contents table.product-table tr td.size {
		color: var(--product-table-td-data);
		text-align: center;
		font-size: 12px !important;
		width: 60px;
	}

	.product-contents table.product-table tr td.color {
		color: var(--product-table-td-data);
		text-align: left;
		font-size: 13px;
		width: 100px !important;
	}

	.product-contents table.product-table tr td.input {
		width: 60px !important;
		padding: 0 !important;
		margin: 0 !important;
		position: relative;
	}

	.product-contents table.product-table tr td > div {
		display: flex !important;
		justify-content: space-between;
	}

	.product-contents table.product-table tbody td {
		transition: all .2s ease-in-out;
	}

		.product-contents table.product-table tbody td:hover:not(.color) {
			background-color: var(--product-td-input-bg) !important;
		}

		.product-contents table.product-table tbody td img.product-thumb {
			border: 2px solid var(--white);
			background: var(--white);
			outline: 1px solid rgba(0,0,0,.1);
			filter: brightness(.98);
			width: 20px;
			height: 20px;
			border-radius: var(--br-3);
			overflow: hidden;
			object-fit: contain;
			transition: all .2s ease-in-out;
			margin-left: 6px;
		}

		.product-contents table.product-table tbody td a {
			margin: 0 !important;
			padding: 0 !important;
		}

		.product-contents table.product-table tbody td img.product-thumb:hover {
			filter: brightness(1);
		}

	.product-contents table.product-table tbody tr td.note {
		text-align: left !important;
		padding: 10px 12px !important;
		background: var(--extra-light-bg) !important;
		border-bottom-left-radius: var(--br-3);
		border-bottom-right-radius: var(--br-3);
		font-size: 11px;
	}

		.product-contents table.product-table tbody tr td.note > span {
			margin-right: 0;
		}

.box hr.full-separator {
	border-top: 1px solid var(--hr-middle-light);
	position: relative;
	left: -12px;
	width: calc(100% + 24px);
	margin: 0;
	padding: 0;
}

	.box hr.full-separator:last-child {
		display: none;
	}




/*——————————————————————————————————————————————————————*/
/*	Order summary details								*/
/*——————————————————————————————————————————————————————*/

.product-contents table.product-table.product-table-summary {
	pointer-events: none !important;
}

	.product-contents table.product-table.product-table-summary td:not(:empty, .color, .size, label) {
		font-weight: var(--fw-6);
		font-size: 14px;
		background-color: var(--bg-extralight-accent) !important;
	}

	.product-contents table.product-table.product-table-summary tbody tr:last-of-type td:last-of-type:not(:empty, .color, .size, label) {
		border-bottom-right-radius: var(--br-3);
	}

.product-contents.product-summary-prices, .product-contents.product-summary-prices div label {
	display: block;
	text-align: right;
}

	.product-contents.product-summary-prices .original-price {
		font-weight: var(--fw-5) !important;
		color: var(--ct-body-color);
		font-size: 14px;
	}

	.product-contents.product-summary-prices div > div.discount-amount {
		font-weight: var(--fw-6);
		color: var(--discount-color);
	}

	.product-contents.product-summary-prices div > div.total-after-discount {
		font-weight: var(--fw-7);
		color: var(--ct-body-color);
	}





/*——————————————————————————————————————————————————————*/
/*	Box Welcome											*/
/*——————————————————————————————————————————————————————*/
.box-info-icon {
	border-radius: var(--br-6);
	border: 1px solid var(--border-light);
	background: var(--white);
	padding: calc(3px + 2ex + 3px);
	display: flex;
	font-weight: var(--fw-5);
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 25px;
	font-size: calc(0.6rem + .4vw);
	line-height: calc(3px + 2ex + 3px);
	position: relative;
	overflow: hidden;
	align-items: center;
}

	.box-info-icon > img {
		width: calc(2rem + .5vw);
	}

	.box-info-icon a.btn {
		position: relative;
		z-index: 1 !important;
	}

		.box-info-icon a.btn > span {
			position: relative;
			right: -5px;
		}

	.box-info-icon .bg-img {
		position: absolute;
		top: -460px;
		left: -20px;
		opacity: .075;
	}





/*——————————————————————————————————————————————————————*/
/*	Box Promo											*/
/*——————————————————————————————————————————————————————*/

.box-promo-img {
	display: flex;
	border-radius: var(--br-6);
	background: var(--extra-light-bg);
	overflow: hidden;
	box-shadow: rgba(1, 1, 1, 0.2) 0px 0px 0px 0.02em inset;
	margin-bottom: 20px;
}

	.box-promo-img > img {
		object-fit: cover;
		width: 40%;
		max-height: 40%;
	}

	.box-promo-img .contents {
		padding: 30px 30px 0 30px;
	}

		.box-promo-img .contents > img {
			width: auto;
			height: calc(2rem + .4vw);
			margin-bottom: 20px;
		}

		.box-promo-img .contents p {
			font-size: calc(0.65rem + .4vw);
			line-height: calc(3px + 2ex + 3px);
			font-weight: var(--fw-5);
		}

		.box-promo-img .contents a {
			padding: 10px 0 25px 0;
			color: var(--note);
			font-size: calc(0.6rem + .1vw);
			font-weight: var(--fw-5);
			text-transform: uppercase;
			display: inline-block;
		}

			.box-promo-img .contents a:hover {
				color: var(--ct-body-color);
			}

			.box-promo-img .contents a > i {
				display: inline-block;
				font-size: calc(0.8rem + .1vw);
				position: relative;
				top: 1px;
				left: 3px;
			}

			.box-promo-img .contents a:hover > i {
				transform: translateX(4px) !important;
			}





/*——————————————————————————————————————————————————————*/
/*	Alert / Help										*/
/*——————————————————————————————————————————————————————*/

.alert-notice {
	border-left: 4px solid var(--alert);
	padding-left: 25px;
}

	.alert-notice h3 {
		position: relative;
		top: -2px;
	}

	.alert-notice a.btn > span {
		position: relative;
		right: -5px;
	}





/*——————————————————————————————————————————————————————*/
/*	Box Order Summary									*/
/*——————————————————————————————————————————————————————*/

.box-order-summary {
	min-width: 300px;
	position: relative;
	margin-bottom: 30px;
	border: 1px solid var(--input-border-active);
	background: var(--white);
	border-radius: var(--br-6);
	padding: 15px 25px;
	margin-left: 30px;
	box-shadow: 0 20px 30px rgba(0,0,0,.1);
	max-width: calc(100vw - 340px);
}

	.box-order-summary.disabled {
		background: rgba(0,0,0,.01);
		opacity: .5;
	}

.fixed-top-right {
	position: fixed;
	right: 30px;
}

.box-order-summary h4 {
	display: flex;
	justify-content: space-between;
}

.box-order-summary ul {
	margin: 0;
	padding: 0;
}

	.box-order-summary ul li {
		list-style: none;
		display: flex;
		justify-content: space-between;
		border-bottom: 1px solid var(--hr-light);
		line-height: 2.5;
	}

		.box-order-summary ul li:first-child {
			padding: 10px 0;
		}

		.box-order-summary ul li:last-of-type {
			border-bottom: 0 none;
		}

		.box-order-summary ul li:nth-last-child(2) {
			border-bottom: 0 none;
		}

		.box-order-summary ul li .btn {
			margin: 20px 0 5px 0;
		}

			.box-order-summary ul li .btn:first-of-type {
				margin-right: 15px;
			}

.box-order-summary span.discount-amount {
	font-weight: var(--fw-6);
	color: var(--discount-color);
}

.box-order-summary span.total-after-discount {
	font-weight: var(--fw-7);
}





/*——————————————————————————————————————————————————————*/
/*	Box Order Summary Details							*/
/*——————————————————————————————————————————————————————*/

.box-order-summary-details {
	border: 0;
	background: var(--white);
	box-shadow: none;
	margin-left: 0;
	padding: 0;
}

	.box-order-summary-details .header {
		border-top-left-radius: var(--br-6);
		border-top-right-radius: var(--br-6);
		background: var(--bg-accent-light);
		padding: 0;
		margin-bottom: 0;
		border-bottom: 1px solid var(--hr-middle-light);
	}

		.box-order-summary-details .header h4 {
			display: flex;
			justify-content: space-between;
			padding: 10px 4px;
		}

	.box-order-summary-details ul {
		margin: 0;
		padding: 0 4px;
	}

		.box-order-summary-details ul li {
			list-style: none;
			display: flex;
			justify-content: space-between;
			line-height: 2.5;
			padding: 4px 0 0 0;
			border-bottom: 1px solid var(--hr-middle-light) !important;
		}

			.box-order-summary-details ul li:last-of-type {
				border-bottom: 0 none !important;
				padding: 4px 0 2px 0;
			}





/*——————————————————————————————————————————————————————*/
/*	Typography											*/
/*——————————————————————————————————————————————————————*/

h2 img.icon {
	width: calc(0.75rem + 1vw);
	height: auto;
	position: relative;
	top: -3px;
	left: 2px;
}

h3.emphasis-line {
	background-image: url("saas/images/icons/yellow-line.svg");
	background-repeat: no-repeat;
	/*background-position-y: 32px;*/
	background-position-y: 80%;
	padding-bottom: 30px;
}





/*——————————————————————————————————————————————————————*/
/*	Navigation Tab										*/
/*——————————————————————————————————————————————————————*/

ul.tabnav {
	margin-bottom: 40px;
}

	ul.tabnav.nav-underline li.nav-item a.nav-link.active {
		color: var(--tab-selected);
		border-bottom: 0.1rem solid var(--tab-selected);
	}

	ul.tabnav.nav-underline li.nav-item a.nav-link {
		color: var(--tab-active);
		font-weight: var(--fw-5);
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 6px;
		font-size: 16px;
		border-bottom: 0.1rem solid var(--ct-body-bg);
	}

	ul.tabnav.nav-underline li.nav-item {
		padding-right: 20px;
	}





/*——————————————————————————————————————————————————————*/
/*	Form												*/
/*——————————————————————————————————————————————————————*/

form label {
	color: var(--note);
	font-size: 12px;
	font-weight: var(--fw-3);
}

form .form-label {
	margin-bottom: 2px;
}

form .form-control {
	border-color: var(--input-border-active);
	outline: 2px solid rgba(0,0,0,0);
	transition: all .2s ease-in-out;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-radius: var(--general-radius);
}

	form .form-control:hover {
		border-color: var(--note);
	}

	form .form-control:focus, form .form-control:focus-visible, form .form-control:focus-within {
		border-color: var(--note);
		outline: var(--outline-input-focus);
	}

	/* Error */
	form .form-control.error {
		border-color: var(--status-error-border);
		outline: 2px solid var(--status-error-border);
		transition: all .2s ease-in-out;
		margin-bottom: 10px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	form .form-control:focus.error, form .form-control:focus-visible.error, form .form-control:focus-within.error {
		border-color: var(--status-error-border);
		outline: 2px solid rgba(0,0,0,0);
	}

.app-search form .form-control {
	padding-left: 15px;
	padding-right: 0;
	background: var(--white) !important;
	margin-bottom: 0;
	border-radius: var(--general-radius);
}

/* Checkbox */
form .form-check-input {
	display: inline-flex;
}

.form-check-input[type=radio] {
	min-width: 18px;
	min-height: 18px;
	margin-left: 15px;
	margin-top: 17px;
}

form .form-check-input:not(checked) {
	border: 1px solid var(--note);
}

form .form-check-input:checked[type=radio] {
	background-image: none !important;
	background-color: var(--btn-primary-accent-bg);
	border-color: var(--btn-primary-accent-bg);
}

form .form-check-input:active {
	-webkit-filter: brightness(100%);
	filter: brightness(100%);
}

form label.form-check-label {
	color: var(--ct-body-color);
	font-size: 100%;
	cursor: pointer;
	padding: 15px 12px;
}

form .bg-extra-light:hover,
form .bg-extra-light:focus,
form .bg-extra-light:focus-visible,
form .bg-extra-light:focus-within {
	background: var(--bg-extralight-hover);
}

form .border-extra-light:hover,
form .border-extra-light:focus,
form .border-extra-light:focus-visible,
form .border-extra-light:focus-within {
	border: 1px solid var(--border-extra-light-hover);
}


/* Radio Button */
form .form-check-input:checked[type=radio] {
	background-image: none !important;
	background-color: var(--btn-primary-text-color);
	border-color: var(--btn-primary-text-color);
}

form .form-check {
	margin-bottom: 10px;
	border: 1px solid var(--input-border-active);
	border-radius: var(--general-radius);
	padding-left: 0;
	transition: var(--default-transition);
}

	form .form-check:hover {
		border-color: var(--btn-negative-border-hover) !important;
		background: var(--bg-extralight);
	}

form label.form-check-label {
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
}

form .form-check label.form-check-label span {
	display: block;
	width: 100%;
	font-size: 13px;
}

	form .form-check label.form-check-label span > label {
		width: 120px;
	}

.form-check-input[type=radio] {
	min-width: 18px;
	min-height: 18px;
	margin-left: 15px;
	margin-top: 12px;
}


/* Select */
form .form-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238B96A0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	color: var(--ct-body-color);
	background-position-x: calc(100% - 8px);
}

/* File upload */
.uploadFile {
	overflow: hidden;
	position: relative;
	resize: none;
}

	.uploadFile [type="file"] {
		cursor: pointer !important;
		display: block;
		opacity: 0;
		position: absolute;
		top: 0;
		z-index: 1;
	}

	.uploadFile .filename {
		color: var(--placeholder-color);
	}





/*——————————————————————————————————————————————————————*/
/*	Table (Generic page table)							*/
/*——————————————————————————————————————————————————————*/
table.rounded-table {
	border-collapse: separate;
	border-spacing: 0;
	cursor: default;
}

	table.rounded-table tr th {
		border-top: var(--table-border);
		vertical-align: top;
		overflow-wrap: anywhere;
	}

	table.rounded-table tr:last-child td {
		border-bottom: var(--table-border);
	}

	table.rounded-table tr td {
		border-bottom: var(--table-border);
		vertical-align: baseline;
		overflow-wrap: anywhere;
		word-wrap: normal;
	}

	table.rounded-table tr th,
	table.rounded-table tr td {
		border-right: 0;
		border-bottom: var(--table-td-border);
		padding: .7rem 1rem !important;
	}

		table.rounded-table tr th:first-child,
		table.rounded-table tr td:first-child {
			border-left: var(--table-border) !important;
		}

		table.rounded-table tr th:last-child,
		table.rounded-table tr td:last-child {
			border-right: var(--table-border) !important;
		}

	table.rounded-table tr th {
		background: var(--table-th-bg) !important;
		color: var(--table-th);
		font-weight: var(--fw-4);
		font-size: 16px;
		text-align: left;
	}

		table.rounded-table tr th.text-right,
		table.rounded-table tr td.text-right {
			text-align: right;
		}

	table.rounded-table tr td.status-pending {
		color: var(--status-pending);
	}

	table.rounded-table tr td.status-error {
		color: var(--status-error);
	}

	table.rounded-table tr td.status-completed {
		color: var(--status-completed);
	}

	table.rounded-table tr td.status-partial-completed,
	table.rounded-table tr td.status-partial-completed a {
		color: var(--status-partial-completed);
	}

	table.rounded-table tr td.status-smallnote {
		color: var(--status-smallnote);
	}

	table.rounded-table tr td > span {
		display: block;
		color: var(--status-smallnote);
		font-size: 13px;
		margin: 3px 0 7px 0;
	}

	table.rounded-table tr:first-child th:first-child {
		border-top-left-radius: var(--br-6);
	}

	table.rounded-table tr:first-child th:last-child {
		border-top-right-radius: var(--br-6);
	}

	table.rounded-table tr:last-child td:first-child {
		border-bottom-left-radius: var(--br-6);
	}

	table.rounded-table tr:last-child td:last-child {
		border-bottom-right-radius: var(--br-6);
	}

	table.rounded-table tr:last-child {
		border-bottom-left-radius: var(--br-6);
		border-bottom-right-radius: var(--br-6);
	}

	table.rounded-table tr {
		transition: all .2s ease-in-out;
	}

		table.rounded-table tr:hover {
			box-shadow: var(--table-tr-shadow);
			overflow: hidden;
		}

		table.rounded-table tr td a {
			display: inlilne-flex !important;
			align-items: center;
			justify-content: center;
			transition: all .2s ease-in-out;
		}

			table.rounded-table tr td a > img {
				border-radius: 50%;
				transition: all .2s ease-in-out;
			}

			table.rounded-table tr td a:hover > img {
				box-shadow: rgba(28, 28, 28, 0.25) 0px 4px 8px -2px, rgba(28, 28, 28, 0.08) 0px 0px 0px 1px;
			}





/*——————————————————————————————————————————————————————*/
/*	Pagination											*/
/*——————————————————————————————————————————————————————*/

.pagination {
	--ct-pagination-color: var(--sidebar-link-color);
	--ct-pagination-bg: var(--white);
	--ct-pagination-border-color: var(--hr-light);
	--ct-pagination-border-radius: var(--general-radius);
	--ct-pagination-hover-color: var(--ct-dark);
	--ct-pagination-hover-bg: var(--bg-current);
	--ct-pagination-hover-border-color: var(--bg-current);
	--ct-pagination-focus-color: var(--ct-body-color);
	--ct-pagination-focus-bg: var(--bg-current);
	--ct-pagination-focus-box-shadow: none;
	--ct-pagination-active-bg: var(--bg-current);
	--ct-pagination-active-border-color: var(--bg-current);
	--ct-pagination-disabled-color: #CCC;
}

	.pagination .page-link {
		font-size: 14px !important;
		border-radius: 4px;
		margin-right: 5px;
	}

		.pagination .page-link:hover {
			z-index: 0 !important;
		}

	.pagination .page-item:not(:first-child) .page-link {
		margin-left: 0;
	}

.active > .page-link, .page-link.active {
	z-index: 0 !important;
	color: rgba(0,0,0,.4);
	background-color: var(--bg-current);
	border-color: var(--bg-current);
}





/*——————————————————————————————————————————————————————*/
/*	Utilities											*/
/*——————————————————————————————————————————————————————*/

.text-alert {
	color: var(--status-partial-completed) !important;
}

	.text-alert > span.mdi {
		padding-right: 5px;
	}

.flip-horizontally {
	transform: scaleX(-1);
}

.upper-text {
	text-transform: uppercase !important;
}

.note {
	color: var(--note);
}

.mr-0 {
	margin-right: 0 !important;
}

.mr-30 {
	margin-right: 30px;
}

.mr-40 {
	margin-right: 40px;
}

.mr-50 {
	margin-right: 50px;
}

.mr-60 {
	margin-right: 60px;
}

.mb-05 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mt-0 {
	margin-top: 0;
}

.mt-03 {
	margin-top: 3px;
}

.mt-05 {
	margin-top: 5px;
}

.mt-10 {
	margin-top: 10px !important;
}

.mt-80 {
	margin-top: 80px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-105 {
	margin-top: 105px;
}

.mt-110 {
	margin-top: 110px;
}

.mt-120 {
	margin-top: 120px;
}

.mt-130 {
	margin-top: 130px;
}

.fw-3 {
	font-weight: var(--fw-3) !important;
}

.fw-4 {
	font-weight: var(--fw-4) !important;
}

.fw-5 {
	font-weight: var(--fw-5) !important;
}

.fw-6 {
	font-weight: var(--fw-6) !important;
}

.fw-7 {
	font-weight: var(--fw-7) !important;
}

.br-default {
	border-radius: var(--general-radius);
}

.br-2 {
	border-radius: var(--br-2);
}

.br-3 {
	border-radius: var(--br-3);
}

.br-4 {
	border-radius: var(--br-6);
}

.align-right {
	display: flex;
	justify-content: flex-end !important;
}

.zero-padding-side {
	padding-left: 0;
	padding-right: 0;
}

.bg-extra-light {
	background: var(--bg-extralight);
	transition: all .2s ease-in-out;
}

.bg-edit-order {
	background-color: #F5F5F5 !important;
}

.border-extra-light {
	border: 1px solid var(--border-extra-light);
}

.data-extra-light {
	background: var(--bg-extralight);
	border: 1px solid var(--border-extra-light);
	color: var(--note);
	border-radius: var(--general-radius);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	padding: 0 20px;
	min-height: 37px;
	display: flex;
	align-items: center;
	width: 100%;
	margin-right: 10px;
}

.above-position {
	position: relative;
	z-index: 1 !important;
}

.no-events {
	pointer-events: none !important;
}

.no-shadow {
	box-shadow: none !important;
}

.no-border {
	border: 0 none !important;
}

.min-h300 {
	min-height: 300px;
}





/*======================================================================================*/
/*																						*/
/*									Media queries overrides								*/
/*																						*/
/*======================================================================================*/

@media (max-width: 767.98px) {
	.navbar-custom {
		padding: 0;
	}
}


@media (min-width: 992px) {
	.container, .container-lg, .container-md, .container-sm {
		min-width: 100%;
		max-width: 100%;
	}

	.modal-xl {
		--ct-modal-width: calc(80vw - 1vw);
		padding-left: 17px !important;
		margin-top: 20px;
	}
}


@media (min-width: 768px) {
	.container, .container-md, .container-sm {
		min-width: 100%;
		max-width: 100%;
	}
}


@media (max-width: 767px) {

	.logo-lg img {
		height: 32px;
	}

	.logo span.logo-lg {
		border-bottom: 0 none;
		border-right: 1px solid var(--hr-light);
	}

	.side-nav {
		border-right: 1px solid var(--hr-light);
	}

	html[data-sidenav-size=full]:not([data-layout=topnav]) .button-close-fullsidebar {
		display: block;
		background-color: var(--white);
		border-radius: 50%;
		width: 31px;
		height: 31px;
		top: 20px;
		right: 16px;
	}

	.ri-close-fill {
		top: -20px;
		position: absolute;
		left: 6px;
		font-weight: var(--fw-4);
		color: var(--btn-primary-text-color);
	}
}


@media (min-width: 576px) {
	.container, .container-sm {
		min-width: 100%;
		max-width: 100%;
	}

	.modal-xl {
		--ct-modal-width: calc(100vw - 1vw);
		padding-right: 5px !important;
		padding-left: 5px !important;
		margin-top: 5px;
	}
}


@media (max-width: 575.98px) {

	:root {
		--bg-extralight: var(--white);
	}

	.navbar-custom .dropdown .dropdown-menu {
		left: unset !important;
		right: 10px !important;
	}

	.box-info-icon {
		display: none;
	}

	.box-promo-img > img {
		display: none;
	}

	.box-info-icon img {
		display: none;
	}

	.modal-xl {
		--ct-modal-width: calc(100vw - 1vw);
		padding-right: 5px !important;
		padding-left: 5px !important;
	}

	.modal-footer {
		background-color: var(--modal-header-bg);
		border-top: 1px solid var(--ct-modal-header-border-color);
		position: relative;
		z-index: 1;
	}

	.d-flex > .w-100 {
		display: none;
	}

	.box-order-summary {
		margin-left: 0 !important;
		min-width: calc(100vw - 63px);
	}

}


@media (min-width: 1200px) {
	.modal-xl {
		--ct-modal-width: calc(80vw - 1vw);
		padding-left: 17px !important;
		margin-top: 20px;
	}
}


@media (max-width: 1200px) {

	.fixed-top-right {
		position: relative;
		width: calc(100vw - 35px) !important;
	}

	.box-order-summary {
		box-shadow: none;
		position: relative;
	}

	.col-custom-product {
		position: relative;
		min-width: 100%;
	}
}


@media (max-width: 1199px) {

	.fixed-top-right {
		position: relative;
		width: calc(100vw - 295px);
	}
}
