
.login-page {
	height: 100vh;
	background-image: url('../images/login-cover.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.login-page main {
	padding: 4% 6% 6%;
	min-height: 650px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	overflow: hidden;
}

.login-page .image-wrap {
	text-align: center;
}
.login-page .image-wrap img {
	width: 200px;
}
.login-page .image-wrap.diini img {
	width: 230px;
}
.login-page .image-wrap.galad img {
	width: 150px;
}
.login-page .image-wrap.baraf img {
	width: 230px;
}
.login-page .image-wrap.shariff img {
	width: 150px;
}
.login-page .big-text {
	margin: 20px 0 0;
	font-size: 22px;
	text-align: center;
}
.login-page .welcome-guide {
	font-size: 15px;
	text-align: center;
}

.login-page .the-form {
	margin-top: 26px;
	width: 400px;
}
.login-page .credential {
	background-color: #eeeeee;
	border: 1px solid #cccccc;
	border-radius: 3px;
	overflow: hidden;
	position: relative;

	display: flex;
	justify-content: space-between;
	align-items: center;
}
.login-page .credential.password {
	margin-top: 12px;
}
.login-page .credential .login-text {
	width: 88%;
	height: 38px;
	padding: 0 12px;
	background-color: transparent;
	background-color: #ffffff;
	border: none;
	border-right: 1px solid #cccccc;
	font-size: 15px;
}
.login-page .credential .login-text:focus {
	background-color: var(--form_element_focus_bgcolor);
	box-shadow: 0 0 0 2px var(--form_element_focus_border) inset;
	border-radius: 3px 0 0 3px;
}
.login-page .credential .icon {
	font-size: 16px;
	width: 12%;
	text-align: center;
}
.login-page .credential .show-password {
	cursor: pointer;
	position: absolute;
	right: 15%;
	display: none;
}
.login-page .credential .show-password.show {
	display: inline-block;
}
.login-page .credential .show-password::after {
	content: '\f070';
	font-family: 'Font Awesome 6 Pro';
}
.login-page .credential .show-password.reveal::after {
	content: '\f06e';
}

.login-page .checkbox-wrap {
	margin-top: 12px;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
}
.login-page .checkbox-wrap input {
	appearance: none;
	color: inherit;
	cursor: pointer;
}
.login-page .checkbox-wrap input::before {
	display: inline-block;
	content: "";
	width: 32px;
	height: 32px;
	background-color: #eeeeee;
	outline: 1px solid #cccccc;
	border-radius: 3px;
}
.login-page .checkbox-wrap input:checked::after {
	position: absolute;
	left: 0;
	width: 32px;
	line-height: 32px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	font-size: 18px;
}
.login-page .checkbox-wrap .checkbox-label {
	margin-left: 10px;
}

.login-page .the-form .buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.login-page .the-form .submit-btn {
	display: block;
	width: 100%;
	margin-top: 12px;

	padding: 8px 16px;
	font-family: var(--font_family_medium);
	cursor: pointer;
	color: #ffffff;
	background-color: var(--login_btn_bg);
	border-radius: 4px;
	border: none;

	display: flex;
	justify-content: space-between;
	align-items: center;
}
.login-page .the-form .submit-btn.processing .icon::before {
	content: "\f110";
}
.login-page .the-form .submit-btn.processing .icon {
	animation: spinner 1s linear infinite;
	font-size: 1.1em;
}
.login-page .the-form .submit-btn:hover {
	background-color: var(--login_btn_hover_bg);
}
.login-page .the-form .submit-btn:focus {
	background-color: var(--login_btn_hover_bg);
	box-shadow: 0 0 0 2px rgba(130, 204, 223, 0.5);
}

.login-page .error {
	margin: 10px 0 0;
	background-color: rgba(255, 0, 0, 0.1);
	padding: 4px 10px;
	border-radius: 3px;
}
.login-page .error.show {
	display: block;
}





.app-wrap {
    display: flex;
    justify-content: space-between;
}
.app-wrap .sidebar {
	min-height: 100vh;
	width: 16%;
	background-color: var(--sidebar);
	z-index: 1000;
	transition: all 0.3s ease;
	position: relative;
}
.sidebar-toggle {
	width: 72px;
	height: 50px;
	align-self: flex-start;
	color: white;
	background-color: var(--sidebar);
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 98998989;
	display: none;
}
.app-wrap .middlebar {
    width: calc(100% - 16%);
    transition: all 0.3s ease;
}

.sidebar .sidebar-logo {
	padding: 15px 24px 5px;
	background-color: rgba(0, 0, 0, 0.1);
	position: relative;
}
.sidebar .sidebar-logo img {
	width: 150px;
}
.sidebar .sidebar-logo.shariff img {
	width: 180px;
}


.sidebar .menus {
	margin-top: 6%;
	list-style: none;
}
.sidebar .menus > li {
	font-size: 0.85rem;
	padding: 9px 24px;
	color: #ffffff;
	cursor: pointer;
}
.sidebar .menus > li:hover {
	background-color: var(--sidebar_hover_bg);
}
.sidebar .menus > li.active {
	background-color: var(--sidebar_active_bg);
}
.sidebar .menus > li.has-sub .link-wrap::after {
	position: absolute;
	right: 24px;
	font-size: 16px;
	content: "\2b";
	font-family: 'Font Awesome 6 Pro';
}
.sidebar .menus > li.has-sub.active .link-wrap::after {
	content: "\f068";
}
.sidebar .menus > li a {
	display: block;
	color: #ffffff;
	text-decoration: none;
}
.sidebar .menus .link-wrap {
	display: flex;
	align-items: center;
}
.sidebar .menus > li .icon {
	width: 30px;
}
.sidebar .menus > li .text i {
	display: inline-block;
	margin-left: 10px;
	width: 20px;
	height: 20px;
	text-align: center;
	font-size: 13px;
	font-style: normal;
	background-color: #d65fff;
	border: 1px solid #f3d1ff;
	border-radius: 99cm;
}
.sidebar .menus > li ul {
	list-style: none;
	padding: 6px 30px 0;
	display: none;
}
.sidebar .menus > li.has-sub.active ul {
	display: block;
}
.sidebar .menus > li ul li a {
	padding: 3px 0;
}
.sidebar .menus > li ul li a:hover {
	text-decoration: underline;
}
.sidebar .menus > li ul li.active a {
	text-decoration: underline;
}
.sidebar .menus .divider {
	margin: 10px 24px;
	height: 1px;
	border-top: 1px dotted rgba(255, 255, 255, 0.3);
}
.sidebar footer {
	width: 80%;
	margin: 0 10%;
	position: absolute;
	bottom: 40px;
	padding: 14px 10px;
	text-align: center;
	font-size: 14px;
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.6);
	background-color: var(--sidebar_footer_bg);
}
.sidebar footer p {
	font-size: 0.95em;
}

.middlebar .top-controls {
	position: fixed;
	z-index: 100;
	width: 84%;
	top: 0;
}
.middlebar .top-controls .top-bar {
	padding: 0 1.8%;
	height: 50px;
	background-color: #4d4d4d;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.middlebar .top-controls .current-section {
	font-family: var(--font_family_medium);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	color: #cacaca;
	flex-grow: 1;
}

.middlebar .top-controls .logged-user {
	flex-basis: 8%;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
}

.middlebar .top-controls .logged-user > .photo {
	margin-right: 4px;
	width: 34px;
	height: 34px;
	border: 2px solid #aaaaaa;
	border-radius: 99em;
}
.middlebar .top-controls .logged-user img {
	border-radius: 99em;
}

.middlebar .top-controls .logged-user .drop-down {
	position: absolute;
	right: 1%;
	width: 400px;
	top: 56px;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	box-shadow: 0 5px 15px -5px rgba(0,0,0,0.3);
	border-radius: 4px;
	overflow: hidden;
	cursor: auto;
	z-index: 1000;
	display: none;
}
.middlebar .top-controls .logged-user .drop-down:after {
	content: '';
	display: block;
	position: absolute;
	right: 7%;
	width: 0;
	height: 0;
	border-style: solid;
}
.middlebar .top-controls .logged-user .drop-down:after {
	top: -22px;
	border-color: transparent transparent #eeeeee transparent;
	border-width: 11px;
}
.middlebar .top-controls .logged-user .drop-down .row {
	padding: 2% 5%;
	border-bottom: 1px solid #cccccc;
	font-size: 0.95em;
	display: flex;
	justify-content: space-between;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons {
	padding: 3% 5%;
	align-items: center;
	background-color: #f7f7f7;
	border-bottom: none;
}
.middlebar .top-controls .logged-user .drop-down .row.title {
	background-color: #eeeeee;
}
.middlebar .top-controls .logged-user .drop-down .row .photo {
	flex-basis: 80px;
	height: 80px;
	position: relative;
}
.middlebar .top-controls .logged-user .drop-down .row .links {
	margin-top: 5px;
	min-width: 0;
	flex-basis: calc(100% - 100px);
}
.middlebar .top-controls .logged-user .drop-down .photo img {
	width: 100%;
	height: 100%;
	border-radius: 99em;
	border: 1px solid #999999;
}
.middlebar .top-controls .logged-user .drop-down .overlay {
	position: absolute;
	width: 100%;
	height: 0;
	bottom: 0;
	text-align: center;
	overflow: hidden;
	border-radius: 99em;
}
.middlebar .top-controls .logged-user .drop-down .row .photo:hover .overlay {
	height: 100%;
	/*background-color: #168ca2;*/
	background-color: var(--link_color);
	cursor: pointer;
}
.middlebar .top-controls .logged-user .drop-down .overlay span {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 0.9em;
	color: #ffffff;
	transform: translate(-50%, -50%);
}
.middlebar .top-controls .logged-user .drop-down .overlay span i {
	display: block;
	margin-bottom: 3px;
	font-weight: 500;
}
.middlebar .top-controls .logged-user .drop-down .row .links p {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	text-align: left;
}
.middlebar .top-controls .logged-user .drop-down .row .links .name {
	font-weight: 600;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons .change-pass {
	color: var(--link_color);
	font-size: 0.95em;
	cursor: pointer;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons .change-pass span {
	position: relative;
	left: 10px;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons .logout {
	flex-basis: 35%;
	padding: 2% 0;
	text-align: center;
	text-decoration: none;
	background-color: #ffffff;
	border: 1px solid #dcdcdc;
	border-radius: 4px;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons .logout::before {
	content: '\f011';
	font-family: 'Font Awesome 6 Pro';
	margin-right: 8px;
}


.middlebar .app-content {
	padding: 0 1.5%;
	margin-top: 70px;
}


.dashboard .dash-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.dashboard .dash-row .dash-col.top-left {
	flex-basis: 40%;
}
.dashboard .dash-row .dash-col.running-revenue {
	flex-basis: 35%;
}
.dashboard .dash-row .dash-col.top-5 {
	flex-basis: 25%;
}
.dashboard .dash-row .dash-col.users-activity {
	flex-basis: 39.3%;
}
.dashboard .dash-row .dash-col.latest-trans {
	flex-basis: 60%;
}

.dashboard .dash-row .total-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.dashboard .dash-row .dash-card {
	padding: 1.5rem;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}
.dashboard .dash-row .dash-card.flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.dashboard .dash-row .dash-card.total-shipment {
	flex-basis: 50%;
}
.dashboard .dash-row .dash-card.ongoing-freight {
	flex-basis: 50%;
}
.dashboard .dash-row .dash-card.ship-over-time {
	margin-top: 1rem;
}

.dashboard .dash-row .dash-card.total-shipment {
    color: #ffffff;
	background-color: #23b3a5;
	border-color: #23b3a5;
}
.dashboard .dash-row .dash-card.ongoing-freight {
    color: #ffffff;
	background-color: #4ba6ca;
	border-color: #4ba6ca;
}
.dashboard .dash-row .dash-card.no-p {
    padding: 0;
}

.dashboard .dash-row .dash-card .card-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}
.dashboard .dash-row .dash-card .card-header.items-center {
	align-items: center;
}
.dashboard .dash-row .dash-card .text-wrapper .title {
	font-size: 0.86rem;
}
.dashboard .dash-row .dash-card .title-only {
	font-size: 1.1rem;
}
.dashboard .dash-row .dash-card .text-wrapper .number {
	font-size: 1.2rem;
}
.dashboard .dash-row .dash-card .icon-box {
    padding: 0.5rem;
	background-color: rgba(0, 0, 0, 0.15);
	border-radius: 8px;
}

.dashboard .dash-row .drop-box {
	min-width: 8rem;
	height: 32px;
	padding-left: 8px;
	color: #666666;
	font-size: 0.84rem;
	background-color: #ffffff;
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;

	-webkit-padding-end: 22px !important;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 1px;
}
.dashboard .dash-row .drop-box:focus {
	border-color: #dcdcdc;
	background-color: var(--form_element_focus_bgcolor);
	box-shadow: 0 0 0 2px var(--form_element_focus_border);
}

.dashboard .dash-row .list-header {
	padding: 0.6rem 1.5rem;
	background-color: #e5e5e5;
}
.dashboard .dash-row .list-header .title {
	font-size: 1rem;
}

.dashboard .dash-row .data-list {
	height: 20rem;
	overflow-y: scroll;
}
.dashboard .dash-row .data-list .not-found {
	display: block;
	margin-top: 1rem;
	text-align: center;
	color: #aaaaaa;
	font-size: 0.9rem;
}
.dashboard .dash-row .data-list .data-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 0.4rem 1.5rem;
	font-size: 0.86rem;
	border-bottom: 1px solid #dfdfdf;
}
.dashboard .dash-row .data-list .data-row.header {
	padding: 0.6rem 1.5rem;
	font-family: var(--font_family_semibold);
	background-color: #f7f7f7;
}
.dashboard .dash-row .data-list .data-row .column {
	padding-right: 16px;
	font-size: 0.86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
}
.dashboard .dash-row .data-list .data-row .column.bold {
	font-weight: 600;
}

.dashboard .dash-row .data-list .data-row .top-5-name {
	width: 40%;
}
.dashboard .dash-row .data-list .data-row .top-5-value {
	width: 40%;
}
.dashboard .dash-row .data-list .data-row .top-5-percentage {
	width: 20%;
}

.dashboard .dash-row .data-list .data-row .dlvryorder-date {
	width: 14%;
}
.dashboard .dash-row .data-list .data-row .dlvryorder-origin {
	width: 28%;
}
.dashboard .dash-row .data-list .data-row .dlvryorder-destination {
	width: 28%;
}
.dashboard .dash-row .data-list .data-row .dlvryorder-total {
	width: 16%;
}
.dashboard .dash-row .data-list .data-row .dlvryorder-status {
	width: 14%;
}
.dashboard .dash-row .data-list .data-row .badge {
	display: inline-block;
	padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    background-color: #dfdfdf;
    border-radius: 4px;
}
.dashboard .dash-row .data-list .data-row .badge.paid-no {
    color: #ff0000;
	background-color: #ffe3e3;
}
.dashboard .dash-row .data-list .data-row .badge.paid-yes {
	color: #36b21b;
	background-color: #eef7ec;
}
.dashboard .dash-row .data-list .data-row .badge.paid-free {
    color: #b324ec;
	background-color: #f6e6ff;
}

.dashboard .dash-row .users-activity .not-found {
	display: block;
	margin-top: 1.5rem;
}
.dashboard .dash-row .users-activity .user {
	margin: 0.8rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.dashboard .dash-row .users-activity .user .image {
	flex-basis: 3rem;
	height: 3rem;
}
.dashboard .dash-row .users-activity .user .image img {
	width: 100%;
	border-radius: 100cm;
}
.dashboard .dash-row .users-activity .user .details {
	flex-basis: calc(100% - 4rem);
	font-size: 0.86rem;
}
.dashboard .dash-row .users-activity .user .details .top-info {
	display: flex;
	gap: 0.5rem;
}
.dashboard .dash-row .users-activity .user .details .name {
	font-weight: 600;
	max-width: 98px;
	text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
}
.dashboard .dash-row .users-activity .user .details .time {
	color: #999999;
}

.unknown {
	padding: 3% 2%;
	min-height: 260px;
	font-size: 0.94em;
	background: #fff url('../images/oops.png') 94% 25px no-repeat;
	border: 1px dotted #cccccc;
	border-radius: 4px;
}
.unknown h3 {
	font-size: 1.3em;
	margin-bottom: 1%;
}
.unknown ul {
	margin: 0.5% 3%;
}
.unknown p,
.unknown ul li {
	line-height: 22px;
}
.unknown p.last-p {
	margin-top: 20px;
}


.workplace .load-page {
	padding: 2%;
	background-color: #ffffff;
	border: 1px dotted #bbbbbb;
	border-radius: 4px;
	overflow: hidden;
}
.workplace .load-page .header-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}
.workplace .load-page .header-bar .list-title {
	padding-left: 8px;
	font-size: 1em;
}
.workplace .load-page .header-bar .controls {
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
}
.workplace .load-page .header-bar .controls .filter-bar {
	flex-basis: 72%;
	display: flex;
	justify-content: flex-end;
}
.workplace .load-page .header-bar .controls .link-btn {
	margin-left: 12px;
	padding: 7px 18px;
	font-family: var(--font_family_medium);
	font-size: 0.9em;
	text-decoration: none;
	color: #ffffff;
	background-color: var(--page_add_btn_bg);
	border-radius: 3px;
	cursor: pointer;
}
.workplace .load-page .header-bar .controls .link-btn::before {
	content: '\2b';
	font-family: 'Font Awesome 6 Pro';
	margin-right: 7px;
}
.workplace .load-page .header-bar .controls .link-btn:hover {
	background-color: var(--page_add_btn_hover_bg);
}


.workplace .load-page .filter-bar .search-by {
	width: 100px;
	margin-left: 14px;
	padding: 5px 14px;
	font-size: 0.9em;
	background-color: var(--input_bg);
	border: 1px solid #c5c5c5;
	border-right: none;
	border-radius: 3px 0 0 3px;

	-webkit-padding-end: 22px !important;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 4px;
}
.workplace .load-page .filter-bar .search-by.user-page {
	width: 140px;
}
.workplace .load-page .filter-bar .search-by.client-page {
	width: 150px;
}
.workplace .load-page .filter-bar .search-by.delivery-page {
	width: 160px;
}
.workplace .load-page .filter-bar .search-by.payment-page {
	width: 180px;
}

.workplace .load-page .filter-bar .text-field {
	width: 45%;
	padding: 0 10px;
	border: 1px solid #c5c5c5;
	border-radius: 0 3px 3px 0;
	position: relative;
}
.workplace .load-page .filter-bar .text-field input {
	width: 100%;
	height: 100%;
	font-size: 0.9em;
	background-color: transparent;
	border: none;
}
.workplace .load-page .filter-bar .text-field.highlight {
	border-color: #ff0000;
}
.workplace .load-page .filter-bar .text-field.highlight input::placeholder {
	color: #ff0000;
}

.workplace .load-page .filter-bar .text-field .clickable {
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	height: 100%;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
}
.workplace .load-page .filter-bar .text-field .clickable:hover {
	font-weight: 600;
	background-color: #eeeeee;
}
.workplace .load-page .filter-bar .filter {
	position: relative;
	align-self: center;
	color: var(--page_filter);
	font-family: var(--font_family_medium);
	cursor: pointer;
}
.workplace .load-page .filter-bar .filter summary {
	list-style: none;
	font-size: 0.92em;
}
.workplace .load-page .filter-bar details summary:after {
	content: "\f107";
	font-family: "Font Awesome 6 Pro";
	margin-left: 8px;
}
.workplace .load-page .filter-bar details[open] summary:after {
	content: "\f106";
}
.workplace .load-page .filter-bar .filter .list {
	left: 0;
	position: absolute;
	top: 30px;
	left: -40%;
	min-width: 200px;
	color: var(--font_color);
	background-color: #ffffff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	border: 1px solid #dddddd;
	z-index: 800;
}
.workplace .load-page .filter-bar .filter .list:before, 
.workplace .load-page .filter-bar .filter .list:after {
	content: '';
	display: block;
	position: absolute;
	left: 20%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px;
}
.workplace .load-page .filter-bar .filter .list:after {
	top: -22px;
	border-color: transparent transparent #ffffff transparent;
}
.workplace .load-page .filter-bar .filter .list:before {
	top: -23px;
	border-color: transparent transparent #dddddd transparent;
}
.workplace .load-page .filter-bar .filter .list li {
	border-bottom: 1px solid #dddddd;
	font-family: var(--font_family);
	font-size: 0.9em;
	padding: 8px 16px;
	list-style: none;
	cursor: pointer;
}
.workplace .load-page .filter-bar .filter .list li:nth-last-child(1) {
	border-bottom: none;
}
.workplace .load-page .filter-bar .filter .list li.chosen, 
.workplace .load-page .filter-bar .filter .list li:hover {
	background-color: #f5f5f5;
}

.workplace .load-page .header-bar .filter-data-entry {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.workplace .load-page .header-bar .filter-data-entry .elements {
	display: flex;
}
.workplace .load-page .header-bar .filter-data-entry .export-btns {
	display: flex; 
	gap: 0 8px;
}

.workplace .load-page .header-bar .filter-data-entry .elements .date-input {
	width: 130px;
	height: 32px;
	padding: 0 12px;
    color: #666666;
    font-size: 0.85em;
    background-color: #f5f5f5;
    border: 1px solid var(--form_element_border);
    border-radius: 4px 0 0 4px;
    outline: none;
}
.workplace .load-page .header-bar .filter-data-entry .elements .date-input.end {
	border-radius: 0 4px 4px 0;
}
.workplace .load-page .header-bar .filter-data-entry .elements .date-between {
	display: inline-flex;
	align-items: center;

	padding: 0 10px;
	font-size: 0.85em;
	color: #777777;
	border-top: 1px solid var(--form_element_border);
	border-bottom: 1px solid var(--form_element_border);
}
.workplace .load-page .header-bar .filter-data-entry .elements .drop-box-filter {
	margin-left: 8px;
	width: 120px;
	padding: 0 10px;
	font-size: 0.85em;

	background-color: #f5f5f5;
	border: 1px solid var(--form_element_border);
	border-radius: 4px;

	-webkit-padding-end: 22px !important;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 2px;
}
.workplace .load-page .header-bar .filter-data-entry .elements .drop-box-filter.notaries {
	width: 200px;
}
.workplace .load-page .header-bar .filter-data-entry .elements .filter-button {
	margin-left: 8px;
	padding: 0 18px;
	font-size: 0.92em;
	text-decoration: none;
	color: #ffffff;
	background-color: #99835c;
	border: 1px solid #887452;
	border-radius: 4px;
	cursor: pointer;
}
.workplace .load-page .header-bar .filter-data-entry .elements .filter-button::before {
	font-family: 'Font Awesome 6 Pro';
	content: '\f0b0';
	margin-right: 8px;
}

.workplace .load-page .header-bar .filter-data-entry .export-btns .btn {
    padding: 0 12px;
    line-height: 30px;
    font-size: 0.9em;
    text-align: center;
    color: #949494;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    align-content: center;
}
.workplace .load-page .header-bar .filter-data-entry .export-btns .btn.print {
	padding: 0 20px;
}
.workplace .load-page .header-bar .filter-data-entry .export-btns .btn.print::before {
	font-family: 'Font Awesome 6 Pro';
	content: "\2399";
	margin-right: 8px;
}
.workplace .load-page .header-bar .filter-data-entry .export-btns .btn.excel::before {
	font-family: 'Font Awesome 6 Pro';
	content: "\f019";
}

.workplace .load-page .filter-bar .suggestation-box {
	position: absolute;
	left: 0px;
	top: 36px;
	width: 100%;
	max-height: 200px;
	background-color: #ffffff;
	outline: 1px solid #bbbbbb;
	box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	display: none;
}
.workplace .load-page .filter-bar .suggestation-box.show {
	display: inline-block;
}
.workplace .load-page .filter-bar .suggestation-box .fetching {
	padding: 10px 12px;
	display: flex;
	align-items: center;
	font-size: 13px;
}
.workplace .load-page .filter-bar .suggestation-box .fetching span {
	margin-left: 10px;
}
.workplace .load-page .filter-bar .suggestation-box .not-found {
	padding: 10px 12px;
	font-size: 13px;
}
.workplace .load-page .filter-bar .suggestation-box a {
	display: block;
	color: #666666;
	text-decoration: none;
	cursor: pointer;
}
.workplace .load-page .filter-bar .suggestation-box .suggest-option {
	padding: 8px 12px;
	font-size: 13px;
}
.workplace .load-page .filter-bar .suggestation-box a:nth-child(even) .suggest-option {
	background-color: rgba(233, 233, 233, 0.5);
}
.workplace .load-page .filter-bar .suggestation-box .suggest-option p {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .load-page .filter-bar .suggestation-box .suggest-option p span {
	font-weight: 600;
}
.workplace .load-page .filter-bar .suggestation-box .suggest-option p span::after {
	content: ' ';
}

.workplace .load-page .bottom-filters {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 14px;
}
.workplace .load-page .bottom-filters .filter-cave {
	width: 8rem;
}
.workplace .load-page .bottom-filters .filter-cave.destination {
	width: 20rem;
	display: flex;
	justify-content: space-between;
}


.workplace .load-page .bottom-filters .input-text,
.workplace .load-page .bottom-filters .drop-box {
	width: 100%;
	height: 31px;
	padding-left: 8px;
	color: #666666;
	font-size: 0.84rem;
	background-color: #f5f5f5;
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;
}
.workplace .load-page .bottom-filters .drop-box {
	width: calc(50% - 0.25rem);
}

.workplace .load-page .bottom-filters .drop-box {
	-webkit-padding-end: 22px !important;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 1px;
}
.workplace .load-page .bottom-filters .input-text:not([readonly]):focus,
.workplace .load-page .bottom-filters .drop-box:not([readonly]):focus, 
.workplace .load-page .bottom-filters .input-text.datepicker:focus {
	background-color: var(--form_element_focus_bgcolor);
	box-shadow: 0 0 0 2px var(--form_element_focus_border);
}
.workplace .load-page .bottom-filters .filter-btn {
	height: 31px;
	padding: 0 10px;
	font-size: 0.84rem;
	background-color: #c6f0d8;
	border: 1px solid #b4e1c7;
	border-radius: 3px;
	outline: none;
	cursor: pointer;
}


.workplace .load-page .dynamic-area {
	position: relative;
	z-index: 99;
}
.workplace .load-page .dynamic-area .overlay {
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 999;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 100px;
	border: 1px solid #c5c5c5;
	border-radius: 4px;
	color: #777777;
	display: none;
}
.workplace .load-page .dynamic-area .overlay.show {
	display: block;
}
.workplace .load-page .dynamic-area .overlay .process {
	position: absolute;
	font-style: normal;
	margin-left: -24px;
	animation: spinner 1s linear infinite;
}
.workplace .load-page .dynamic-area .overlay .process::before {
	content: '\e1d4';
	font-family: "Font Awesome 6 Pro";
}


.workplace .load-page .dynamic-area .list-data {
	min-height: 260px;
	max-height: 586px;
	position: relative;
	padding-bottom: 14px;

	overflow: auto;
	border: 1px solid #c5c5c5;
	border-radius: 4px;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar {
	width: 10px;
	border: 1px solid #cccccc;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-track {
	background-color: #eeeeee;
	border-radius: 0 3px 0 3px;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-thumb {
	background-color: #bbbbbb; 
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-corner {
	background-color: #eeeeee;
	border-radius: 0 0 3px 0;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-button {
	display: none;
}


.workplace .load-page .dynamic-area .list-data .styled-table {
	table-layout: fixed;
    border-collapse: collapse;
    border-radius: 4px;
}
.workplace .load-page .dynamic-area .list-data .styled-table tr:nth-child(even) {
	background-color: #f5f5f5;
}
.workplace .load-page .dynamic-area .list-data .styled-table th, 
.workplace .load-page .dynamic-area .list-data .styled-table td {
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: rgb(223, 227, 235);
	min-width: 90px;
	text-align: left;
	padding: 0 20px 0 16px;
}
.workplace .load-page .dynamic-area .list-data .styled-table th:first-child, 
.workplace .load-page .dynamic-area .list-data .styled-table td:first-child {
	border-left-width: 0;
}
.workplace .load-page .dynamic-area .list-data .styled-table th {
	height: 34px;
	text-transform: uppercase;
	font-family: var(--font_family_semibold);
	font-size: 13px;
	font-weight: 500;
	color: var(--page_td_text);
	background-color: var(--page_td_bg);
	border-color: var(--page_td_border);
}
.workplace .load-page .dynamic-area .list-data .styled-table td {
	height: 34px;
	font-size: 13.5px;
}
.workplace .load-page .dynamic-area .list-data .styled-table .styled-column {
	display: flex;
	align-items: center;
	min-width: 0;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div {
	max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div.flex {
	display: flex;
	align-items: center;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div .account-status.inactive {
	margin-right: 8px;
    height: 12px;
    width: 12px;
    display: inline-block;
    background-color: #ff4141;
    border-radius: 99em;
}
.workplace .load-page .dynamic-area .list-data .styled-table .inner-sorter {
	margin-left: 40px;
	display: none;
}
.workplace .load-page .dynamic-area .list-data .styled-table .inner-sorter::before {
	content: '\f0dc';
	font-family: "Font Awesome 6 Pro";
}


.workplace .load-page .dynamic-area .list-data .styled-table .btn {
	margin-right: 10px;
	color: #666666;
	text-decoration: none;
	cursor: pointer;
	opacity: 0.8;
}
.workplace .load-page .dynamic-area .list-data .styled-table .btn.view-with-title::before {
	content: '\1f441';
	font-family: "Font Awesome 6 Pro";
	margin-right: 8px;
}
.workplace .load-page .dynamic-area .list-data .styled-table .btn.approve {
	color: #b324ec;
}
.workplace .load-page .dynamic-area .list-data .styled-table .btn:hover {
	opacity: 1;
	color: var(--page_view_btn_hover);
	font-weight: 600;
}
.workplace .load-page .dynamic-area .list-data .styled-table .btn.delete:hover {
	color: #ff3636;
}
.workplace .load-page .dynamic-area .list-data .styled-table .btn.delete::before {
	content: '\f2ed';
	font-family: "Font Awesome 6 Pro";
	margin-right: 8px;
}

.workplace .load-page .dynamic-area .list-data .buttons .truncate-div {
	width: 70px;
}

.workplace .load-page .dynamic-area .list-data .styled-table .empty-cell {
	height: 160px;
	min-width: 1434px;
	text-align: center;
	border: none;
	color: #888888;
}

.workplace .load-page .dynamic-area .list-data .column.user-name {
	width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.user-full-name {
	width: 240px;
}
.workplace .load-page .dynamic-area .list-data .column.user-state {
	width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.user-role {
	width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.user-dashboard {
	width: 220px;
}
.workplace .load-page .dynamic-area .list-data .column.user-last-login {
	width: 220px;
}
.workplace .load-page .dynamic-area .list-data .column.user-status {
	width: 200px;
}


.workplace .load-page .dynamic-area .list-data .column.client-name .truncate-div {
	width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.client-phone .truncate-div {
	width: 140px;
}
.workplace .load-page .dynamic-area .list-data .column.client-email .truncate-div {
	width: 140px;
}
.workplace .load-page .dynamic-area .list-data .column.client-company-name .truncate-div {
	width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.client-status .truncate-div {
	width: 100px;
}
.workplace .load-page .dynamic-area .list-data .column.client-address .truncate-div {
	width: 240px;
}
.workplace .load-page .dynamic-area .list-data .column.client-balance .truncate-div {
	width: 180px;
}


.workplace .load-page .dynamic-area .list-data .column.dlvry-serial .truncate-div {
	width: 80px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-date .truncate-div {
	width: 90px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-flight .truncate-div {
	width: 90px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-flight-date .truncate-div {
	width: 120px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-sender .truncate-div {
	width: 180px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-receiver .truncate-div {
	width: 180px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-origin .truncate-div {
	width: 180px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-destination .truncate-div {
	width: 180px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-total .truncate-div {
	width: 100px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-balance .truncate-div {
	width: 100px;
}
.workplace .load-page .dynamic-area .list-data .column.dlvry-airline .truncate-div {
	width: 120px;
}

.workplace .load-page .dynamic-area .list-data .column.payment-register-date .truncate-div {
	width: 100px;
}
.workplace .load-page .dynamic-area .list-data .column.payment-rv-number .truncate-div {
	width: 140px;
}
.workplace .load-page .dynamic-area .list-data .column.payment-amount-paid .truncate-div {
	width: 120px;
}
.workplace .load-page .dynamic-area .list-data .column.payment-in-words .truncate-div {
	width: 280px;
}
.workplace .load-page .dynamic-area .list-data .column.payment-ship-number .truncate-div {
	width: 230px;
}
.workplace .load-page .dynamic-area .list-data .column.payment-extra-notes .truncate-div {
	width: 320px;
}


.workplace .load-page .dynamic-area .bottom-bar {
	margin-top: 20px;
	padding: 13px 20px;
	border: 1px solid #cbcbcb;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
}
.workplace .load-page .bottom-bar .pagination {
	flex-basis: 50%;
	display: flex;
}

.workplace .load-page .bottom-bar .pagination .page {
	position: relative;
	margin-right: 3px;
	min-width: 30px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	border: 1px solid #c5c5c5;
	border-radius: 3px;
}
.workplace .load-page .bottom-bar .pagination .page.active {
	color: #6c8286;
    background-color: #e6f7fa;
    border-color: #b5cdd2;
}
.workplace .load-page .bottom-bar .pagination .page a {
	display: block;
	text-decoration: none;
	color: #999999;
	cursor: pointer;
}

.workplace .load-page .bottom-bar .per-page {
	display: flex;
	flex-basis: 70%;
	justify-content: flex-end;
	align-items: center;
	font-size: 0.92em;
}
.workplace .load-page .bottom-bar .per-page p {
	margin: 0 14px;
}
.workplace .load-page .bottom-bar .per-page select {
	width: 100px;
	padding: 6px 12px;
	background-color: var(--input_bg);
	border: 1px solid #c5c5c5;
	border-radius: 3px;
	-webkit-padding-end: 22px !important;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 4px;
}

.workplace .load-page .bottom-bar .per-page input {
	width: 8%;
	padding: 6px;
	background-color: var(--input_bg);
	border: 1px solid #c5c5c5;
	border-radius: 3px;
}
.workplace .load-page .bottom-bar .per-page button {
	margin-left: 10px;
	padding: 5px 9px;
	color: #ffffff;
    background-color: var(--page_perpage_btn_bg);
    border: 1px solid var(--page_perpage_btn_bg);
	border-radius: 3px;
	cursor: pointer;
}





.workplace .the-form {
	display: none;
	width: 80%;
}
.workplace .the-form.delivery-order {
	width: 100%;
}
.workplace .the-form.show {
	display: block;
}
.workplace .the-form.delivery-order .form-contents {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.workplace .the-form .side {
	width: 22%;
}
.workplace .the-form .main-area {
	width: 78%;
}
.workplace .the-form .form-buttons {
	margin-top: 1rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
}

.workplace .the-form .form-buttons .btn-submit, 
.workplace .the-form .form-buttons .btn-cancel {
	padding: 0.4rem 1rem;
	text-align: center;
	font-size: 0.9rem;
	border-radius: 4px;
	cursor: pointer;
}
.workplace .the-form .form-buttons .btn-submit {
	color: #ffffff;
	background-color: var(--submit_btn_bg);
	border: 1px solid var(--submit_btn_bg);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.workplace .the-form .form-buttons .btn-submit:hover, 
.workplace .the-form .form-buttons .btn-submit:focus {
	box-shadow: 0 0 0 2px #ffffff, 0 0 1px 3px var(--submit_btn_bg);
}
.workplace .the-form .form-buttons .btn-submit:disabled {
	background-color: #cfcfcf;
    border-color: #bdbdbd;
    color: #444444;
	opacity: 0.5;
	cursor: not-allowed;
}
.workplace .the-form .form-buttons .btn-cancel {
	color: #999999;
	border: 1px solid #bbb;
	
}
.workplace .the-form .form-buttons .btn-cancel:hover {
	background-color: #f5f5f5;
	outline: none;
}

.workplace .the-form .form-buttons span {
}
.workplace .the-form .form-buttons .loading {
	margin-left: 2rem;
	font-size: 1.1em;
	animation: spinner 1s linear infinite;
	display: none;
}
.workplace .the-form .form-buttons .loading.show {
	display: inline-block;
}
.workplace .the-form .form-buttons .loading {
	
}

.workplace .the-form .form-section-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.workplace .the-form .form-section {
	padding-top: 10px;
	background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
}
.workplace .the-form .form-section.next {
	margin-top: 1rem;
}
.workplace .the-form .form-section.delivery-client {
	flex-basis: 50%;
}

.workplace .the-form .form-section .tab-title {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 0 1.5rem;
    border-bottom: 1px solid #dddddd;
}
.workplace .the-form .form-section .tab-title h3 {
	padding: 4px 3px;
	display: inline-block;
	font-size: 0.9rem;
	font-family: var(--font_family_medium);
	font-weight: 500;
    color: var(--tab_title);
    color: #909090;
    border-bottom: 2px solid var(--tab_title);
    border-color: #9b9b9b;
}
.workplace .the-form .form-section .tab-title .btn {
	cursor: pointer;
}
.workplace .the-form .form-section .tab-title .btn input {
	width: 0;
}
.workplace .the-form .form-section .tab-title .btn span {
	opacity: 0.6;
}
.workplace .the-form .form-section .tab-title .btn input:checked ~ span {
	opacity: 1;
	font-weight: 600;
	color: var(--tab_title_btn_checked);
}
.workplace .the-form .form-section .tab-title .btn span::before {
	font-family: 'Font Awesome 6 Pro';
	content: '\e5c5';
}
.workplace .the-form .form-section .tab-title .btn.old span::before {
	content: '\e5c5';
}

.workplace .the-form .form-section .tab-content {
	padding: 0.8rem 1.5rem 2rem;
}
.workplace .the-form .form-section .tab-content.flex {
	display: flex;
	justify-content: space-between;
}
.workplace .the-form .form-section .tab-content.hide {
	display: none;
}
.workplace .the-form .form-section .form-divider {
	margin: 1rem 0;
	border-top: 1px dashed #dedede;
}
.workplace .the-form .form-section .tab-content .part {
	flex-basis: 48%;
}
.workplace .the-form .form-section .tab-content .divider {
	flex-basis: 1px;
	background-color: #dddddd;
}
.workplace .the-form .form-section .tab-content .form-row {
	margin: 0.5rem 0;
	width: 100%;
}
.workplace .the-form .form-section .tab-content .form-row:last-child {
	margin-bottom: 0;
}

.workplace .the-form .form-contents .form-row.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.workplace .the-form .form-contents .form-row.items-center {
	align-items: center;
}
.workplace .the-form .form-section .tab-content .form-row .form-label {
	flex-basis: 11rem;
	line-height: 26px;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .the-form .form-section .tab-content .form-row .form-controls {
	flex-basis: calc(100% - 11rem);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.workplace .the-form .form-section .tab-content .form-row .form-controls.stretch {
	align-items: stretch;
}
.workplace .the-form .form-section .tab-content .form-row .form-controls.second {
	margin-top: 0.3rem;
}
.workplace .the-form .form-section .tab-content .form-row .form-controls.pos-relative {
	position: relative;
}
.workplace .the-form .side.form-section .tab-content .form-row .form-label {
	flex-basis: 10rem;
}
.workplace .the-form .form-label.only-tab-mob {
	display: none;
}
.workplace .the-form .side.form-section .tab-content .form-row .form-controls {
	flex-basis: calc(100% - 10rem);
}
.workplace .the-form .form-section .tab-content .form-row .required {
	color: #777777;
	margin-left: 3px;
}
.workplace .the-form .form-section .tab-content .form-row .required.hide {
	display: none;
}

.workplace .the-form .form-section .tab-content .form-row .row-value {
	background-color: red;
}

.workplace .the-form .form-section .hint {
	display: inline-block;
	position: relative;
	font-size: 16px;
	cursor: pointer;
	margin-left: 4px;
	text-decoration: none;
}
.workplace .the-form .form-section .hint::before {
	content: "\f05a";
	font-family: 'Font Awesome 6 Pro';
	font-weight: 600;
	color: #c4b294;
}

.workplace .the-form .input-text,
.workplace .the-form .drop-box,
.workplace .the-form .text-area {
	flex: 1 0 0%;
	height: 32px;
	padding-left: 8px;
	color: #666666;
	font-size: 0.84rem;
	background-color: #f5f5f5;
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;
}

.workplace .the-form .drop-box {
	-webkit-padding-end: 22px !important;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 1px;
}
.workplace .the-form .text-area {
	height: auto;
	padding: 8px 8px;
	line-height: 18px;
	resize: none;
	resize: vertical;
}

.workplace .the-form .input-text.highlight,
.workplace .the-form .drop-box.highlight,
.workplace .the-form .text-area.highlight {
	border-color: #ff0000;
}

.workplace .the-form .input-text:focus,
.workplace .the-form .drop-box:focus,
.workplace .the-form .text-area:focus {
	border-color: #dcdcdc;
}

.workplace .the-form .input-text:not([readonly]):focus,
.workplace .the-form .drop-box:not([readonly]):focus,
.workplace .the-form .text-area:not([readonly]):focus, 
.workplace .the-form .input-text.datepicker:focus {
	background-color: var(--form_element_focus_bgcolor);
	box-shadow: 0 0 0 2px var(--form_element_focus_border);
}

.workplace .the-form .input-group .input-text {
	border-radius: 0;
}
.workplace .the-form .input-group .input-text:first-child {
	border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.workplace .the-form .input-group .input-text:last-child {
	border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.workplace .the-form .search-button {
    display: inline-block;
    padding: 0 1rem;
    font-size: 0.84rem;
    cursor: pointer;
    background-color: var(--form_search_btn_bg);
    border: 1px solid var(--form_search_btn_border);
    border-radius: 4px;
}

.workplace .the-form .form-section .record .value .loading {
	margin-left: 8px;
	color: #ac7a1e;
	animation: spinner 1s linear infinite;
	display: none;
}
.workplace .the-form .form-section .record .value .loading.show {
	display: inline-block;
}

.workplace .the-form .error {
	margin-top: 0;
	width: 100%;
}

.radio-input-wrapper {
	display: flex;
	gap: 1rem;
}

.radio-input-wrapper .input-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.radio-input-wrapper .input-radio input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.radio-input-wrapper .input-radio .input-box {
    width: 1rem;
    height: 1rem;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 100cm;
    overflow: hidden;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}
.radio-input-wrapper .input-radio:hover .input-box {
    border-color: var(--input_radio_check_line);
    box-shadow: 0 0 0 2px var(--input_radio_hover_shadow);
}
.radio-input-wrapper .input-radio input:checked ~ .input-box {
    border-color: var(--input_radio_check_line);
    box-shadow: none;
}
.radio-input-wrapper .input-radio input:checked ~ .input-box .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--input_radio_dot);
    border-radius: 100%;
}
.radio-input-wrapper .input-radio .input-label {
	font-size: 13px;
    cursor: pointer;
}

.workplace .the-form .group-checkboxes {
	display: flex;
	background-color: #ffffff;
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	overflow: hidden;
}
.workplace .the-form .group-checkboxes label {
	cursor: pointer;
	display: flex;
}
.workplace .the-form .group-checkboxes .icon {
	width: 2rem;
	height: 32px;
	line-height: 32px;
	text-align: center;
	color: #777777;
	background-color: #ffffff;
}
.workplace .the-form .group-checkboxes .text {
	height: 30px;
	line-height: 30px;
	text-align: center;
	padding: 0 0.8rem;
	font-size: 0.9rem;
	color: #777777;
	background-color: #ffffff;
}
.workplace .the-form .group-checkboxes input:checked ~ .icon, 
.workplace .the-form .group-checkboxes input:checked ~ .text {
	background-color: var(--group_checkbox_bg);
}
.workplace .the-form .group-checkboxes label input {
	appearance: none;
}

.workplace .the-form.add-user .form-section .tab-content .part.left {
	flex-basis: 44%;
}
.workplace .the-form.add-user .form-section .tab-content .part.right {
	flex-basis: 54%;
}

.workplace .the-form .user-grants-wrapper {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.workplace .the-form .user-grants-wrapper .user-grant {
	padding: 46px 24px 30px;
	background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.workplace .the-form .user-grants-wrapper .user-grant.left {
	flex-basis: calc(65% - 1rem);
}
.workplace .the-form .user-grants-wrapper .user-grant.right {
	flex-basis: 35%;
}
.workplace .the-form .user-grants-wrapper .sticky-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 8px 24px;
	font-size: 13.5px;
	background-color: #f8f8f8;
	border-bottom: 1px solid #dddddd;
}
.workplace .the-form .user-grants-wrapper .sticky-header label {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.workplace .the-form .user-grants-wrapper .sticky-header label input {
	appearance: none;
}
.workplace .the-form .user-grants-wrapper .sticky-header label input::before {
	position: absolute;
	top: 0;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
	cursor: pointer;
}
.workplace .the-form .user-grants-wrapper .sticky-header label input:checked::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.workplace .the-form .user-grants-wrapper .sticky-header label span {
	margin-left: 28px;
}

.workplace .the-form .user-grants-wrapper .grant-row {
    display: flex;
    align-items: center;
    margin: 16px 0;
    font-size: 13px;
}
.workplace .the-form .user-grants-wrapper .grant-row .grant-label {
    flex-basis: 11rem;
    font-family: var(--font_family_medium);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
.workplace .the-form .user-grants-wrapper .grant-row .grant-values {
	flex-grow: 1;
	display: flex;
}
.workplace .the-form .user-grants-wrapper .grant-row .grant-values .single-grant {
	flex-basis: 25%;
}
.workplace .the-form .user-grants-wrapper .grant-row label {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	cursor: pointer;
	position: relative;
}
.workplace .the-form .user-grants-wrapper .grant-row label input {
	appearance: none;
}
.workplace .the-form .user-grants-wrapper .grant-row label input::before {
	position: absolute;
	top: 0;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
}
.workplace .the-form .user-grants-wrapper .grant-row label input:checked::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.workplace .the-form .user-grants-wrapper .grant-row label span {
	margin-left: 28px;
	height: 20px;
}

.workplace .the-form.client .loc-country {
	width: 50%;
}
.workplace .the-form.client .loc-state {
	width: 50%;
}
.workplace .the-form.client .client-balance {
	flex: initial;
	width: 50%;
}

.workplace .the-form.delivery-order .input-text.hide {
	display: none;
}
.workplace .the-form.delivery-order .sender-country, 
.workplace .the-form.delivery-order .sender-state {
	max-width: 49.2%;
}
.workplace .the-form.delivery-order .receiver-country, 
.workplace .the-form.delivery-order .receiver-state {
	max-width: 49.2%;
}

.workplace .the-form.delivery-order .client-search-by {
	max-width: 40%;
}
.workplace .the-form.delivery-order .client-search-input {
	max-width: 60%;
}

.workplace .the-form .suggestation-box {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-height: 200px;
	background-color: #ffffff;
	outline: 1px solid #bbbbbb;
	box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	display: none;
}
.workplace .the-form .suggestation-box.show {
	display: inline-block;
}
.workplace .the-form .suggestation-box .fetching {
	padding: 10px 12px;
	display: flex;
	align-items: center;
	font-size: 13px;
}
.workplace .the-form .suggestation-box .fetching span {
	margin-left: 10px;
}
.workplace .the-form .suggestation-box .not-found {
	padding: 10px 12px;
	font-size: 13px;
}
.workplace .the-form .suggestation-box a {
	display: block;
	color: #666666;
	text-decoration: none;
	cursor: pointer;
}
.workplace .the-form .suggestation-box .suggest-option {
	padding: 8px 12px;
	font-size: 13px;
}
.workplace .the-form .suggestation-box a:nth-child(even) .suggest-option {
	background-color: rgba(233, 233, 233, 0.5);
}
.workplace .the-form .suggestation-box .suggest-option p {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .the-form .suggestation-box .suggest-option p span {
	font-weight: 600;
}
.workplace .the-form .suggestation-box .suggest-option p span::after {
	content: ' ';
}

.workplace .the-form.delivery-order .search-result {
    font-size: 13px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    display: none;
}
.workplace .the-form.delivery-order .search-result.show {
	display: block;
}
.workplace .the-form.delivery-order .search-result .result-row {
    padding: 0.4rem 0.6rem;
	display: flex;
	gap: 1rem;
}
.workplace .the-form.delivery-order .search-result .result-row:nth-child(even) {
	background-color: #f5f5f5;
}
.workplace .the-form.delivery-order .search-result .result-row .label {
	flex-basis: 6rem;
	color: #888888;
}

.workplace .the-form.delivery-order .tab-content.items-summary {
	justify-content: flex-start;
	gap: 2rem;
}
.workplace .the-form.delivery-order .summary-col.total {
	flex-basis: 35%;
}
.workplace .the-form.delivery-order .summary-col.equivalent {
	flex-basis: 30%;
}

.workplace .the-form.delivery-order .delivery-list {
	max-height: 11rem;
	padding: 0 2px;
	overflow-y: auto;
	border-bottom: 1px solid #cbd6e2;
}
.workplace .the-form.delivery-order .delivery-list .list-row {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.workplace .the-form.delivery-order .delivery-list.highlight .list-row {
	border-color: #ff0000;
}
.workplace .the-form.delivery-order .delivery-list .list-row.header {
	font-size: 0.9rem;
	font-family: var(--font_family_medium);
}
.workplace .the-form.delivery-order .delivery-list .list-row > div {
	padding-right: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.workplace .the-form.delivery-order .delivery-list .list-row > div.flex {
}

.workplace .the-form.delivery-order .delivery-list .list-row .only-tab-mob {
	display: none;
	font-size: 0.9rem;
	font-family: var(--font_family_medium);
}
.workplace .the-form.delivery-order .delivery-list .list-row .item-desc {
	width: 35%;
}
.workplace .the-form.delivery-order .delivery-list .list-row .item-weight {
	width: 15%;
}
.workplace .the-form.delivery-order .delivery-list .list-row .item-qty {
	width: 12%;
}
.workplace .the-form.delivery-order .delivery-list .list-row .item-rate {
	width: 12%;
}
.workplace .the-form.delivery-order .delivery-list .list-row .item-total {
	width: 12%;
}
.workplace .the-form.delivery-order .delivery-list .list-row .item-action {
	width: 12%;
}
.workplace .the-form.delivery-order .delivery-list .list-row .input-text, 
.workplace .the-form.delivery-order .delivery-list .list-row .drop-box {
	width: 100%;
	flex: initial;
}

.workplace .the-form.delivery-order .delivery-list .list-row .remove-btn {
	font-size: 0.8rem;
	text-decoration: none;
	cursor: pointer;
}
.workplace .the-form.delivery-order .delivery-list .list-row .remove-btn::before {
	font-family: 'Font Awesome 6 Pro';
	content: '\f2ed';
	margin-right: 6px;
}

.workplace .the-form.delivery-order .items-summary .input-text {
	width: 100%;
}

.workplace .the-form .list-btm-bar {
	margin-top: 1rem;
}
.workplace .the-form.delivery-order .error.err-on-list {
	margin-bottom: 1rem;
}
.workplace .the-form .add-new-item {
	display: inline-block;
	padding: 0.4rem 1rem;
	font-size: 0.84rem;
	cursor: pointer;
	background-color: var(--add_list_item_bg);
	border: 1px solid var(--add_list_item_border);
	border-radius: 4px;
}




.workplace .show-page {
	font-size: 15px;
	min-height: 70vh;
}
.workplace .show-page .view-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;

	padding: 10px 16px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
    border-radius: 4px;
}
.workplace .show-page .view-header h3 {
	flex-basis: 70%;
	font-size: 1.05em;
	font-family: var(--font_family_medium);
	font-weight: 500;
}
.workplace .show-page .view-header .cmd-wrapper {
	flex-basis: 30%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0 16px;
}
.workplace .show-page .view-header .cmd-wrapper .navigation {
	display: flex;
}
.workplace .show-page .view-header .cmd-wrapper .navigation a {
	font-size: 13px;
	height: 30px;
	line-height: 30px;
	padding: 0 12px;
	text-decoration: none;
	border: 1px solid #bbbbbb;
	cursor: pointer;
}
.workplace .show-page .view-header .cmd-wrapper .navigation a.to-list {
	color: #555555;
	font-size: 14px;
	line-height: 28px;
	text-transform: uppercase;
	background-color: var(--view_to_list_nav_bg);
	border: 1px solid #bbbbbb;
}
.workplace .show-page .view-header .cmd-wrapper .navigation .nav.count-0 {
	color: #dddddd;
	border-color: #dddddd;
	cursor: default !important;
}
.workplace .show-page .view-header .cmd-wrapper .navigation a.back {
	border-right-width: 0;
	border-radius: 3px 0 0 3px;
}
.workplace .show-page .view-header .cmd-wrapper .navigation a.forward {
	border-left-width: 0;
	border-radius: 0 3px 3px 0;
}
.workplace .show-page .view-header .cmd-wrapper .navigation a.forward.aato {
	border-left-width: 1px;
}

.workplace .show-page .view-header .cmd-wrapper .buttons {
	position: relative;
}
.workplace .show-page .view-header .cmd-wrapper .merge-btn {
	text-decoration: none;
	cursor: pointer;
	font-size: 0.9rem;
	color: var(--link_color);
	background-color: transparent;
	border: none;
}
.workplace .show-page .view-header .cmd-wrapper .merge-btn::before {
	font-family: 'Font Awesome 6 Pro';
	content: '\e526';
	font-weight: 600;
	margin-right: 6px;
}

.workplace .show-page .view-header .cmd-wrapper .print {
	text-decoration: none;
	cursor: pointer;
	font-size: 0.9rem;
}
.workplace .show-page .view-header .cmd-wrapper .print::before {
	font-family: 'Font Awesome 6 Pro';
	content: '\f02f';
	font-weight: 600;
	margin-right: 6px;
}
.workplace .show-page .view-header .cmd-wrapper .buttons .label {
	display: flex;
	align-items: center;
	gap: 0 10px;
	height: 30px;
	line-height: 30px;
	padding: 0 12px;
	background-color: #12aac7;
	border-radius: 3px;
	cursor: pointer;
}
.workplace .show-page .view-header .cmd-wrapper .buttons .label span {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #ffffff;
}
.workplace .show-page .view-header .cmd-wrapper .buttons .label .arrow-icon {
	color: #ffffff;
	border-left: 1px solid #ffffff82;
	padding-left: 10px;
}

.workplace .show-page .view-header .cmd-wrapper .dropdown-actions {
	position: absolute;
	min-width: 5rem;
	min-width: 10rem;
	right: 0;
	top: 38px;
	z-index: 9999;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	box-shadow: 0 5px 15px -5px rgba(0,0,0,0.3);
	border-radius: 4px;
	overflow: hidden;
	cursor: auto;
	display: none;
}
.workplace .show-page .view-header .cmd-wrapper .dropdown-actions .action {
	display: flex;
	align-items: center;
	padding: 0.2rem 0.8rem;
	color: #666666;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
}
.workplace .show-page .view-header .cmd-wrapper .dropdown-actions .action:first-child {
	margin-top: 6px;
}
.workplace .show-page .view-header .cmd-wrapper .dropdown-actions .action:last-child {
	margin-bottom: 6px;
}
.workplace .show-page .view-header .cmd-wrapper .dropdown-actions .action .icon {
	width: 20px;
	color: #18a4be;
}
.workplace .show-page .view-header .cmd-wrapper .dropdown-actions .divider {
	margin: 8px 0;
	height: 1px;
	background-color: #cccccc;
}

.workplace .show-page .show-content {
	margin-top: 1rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.workplace .show-page .show-card {
	background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    position: relative;
}
.workplace .show-page .show-card.next {
	margin-top: 1rem;
}
.workplace .show-page .show-card .card-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 1.2rem;
	font-size: 0.9rem;
	background-color: #f5f5f5;
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.workplace .show-page .show-card .card-title .items-num {
	flex-grow: 1;
	margin-left: 10px;
	font-style: normal;
	font-size: 14px;
}

.workplace .show-page .show-card .card-title .card-btns {
	display: flex;
	gap: 1rem;
}
.workplace .show-page .show-card .card-title .edit {
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
}
.workplace .show-page .show-card .card-title .edit::before {
	font-family: "Font Awesome 6 Pro";
	content: '\f044';
}

.workplace .show-page .show-card .card-title .swap {
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
}
.workplace .show-page .show-card .card-title .swap::before {
	font-family: "Font Awesome 6 Pro";
	content: '\e609';
}

.workplace .show-page .show-card .card-title:hover .edit {
    display: inline-block;
}
.workplace .show-page .show-card .card-title .add-btn {
    color: var(--view_add_btn);
    cursor: pointer;
}
.workplace .show-page .show-card .card-title .add-btn::before {
    font-family: "Font Awesome 6 Pro";
    content: "\2b";
    margin-right: 6px;
}
.workplace .show-page .show-card .card-title .add-btn span {
    font-size: 14px;
}

.workplace .show-page .show-card .card-content {
	padding: 3.5rem 1.2rem 1.5rem;
}
.workplace .show-page .show-card .card-content.flex {
	display: flex;
    justify-content: space-between;
}
.workplace .show-page .show-card .card-content.no-title {
	padding: 1.5rem 1.2rem;
}
.workplace .show-page .badge {
	display: inline-block;
	margin-top: 0.2rem;
	padding: 0.2rem 0.6rem;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #dfdfdf;
    border-radius: 4px;
}
.workplace .show-page .badge.orange {
	color: #ffffff;
    background-color: #e97e14;
}
.workplace .show-page .badge.green {
    color: #ffffff;
    background-color: #34d37b;
}


.workplace .show-page .show-card .show-divider {
	margin: 1rem 0;
	border-top: 1px dashed #dedede;
}
.workplace .show-page .show-card .card-content .part {
	flex-basis: 48%;
}
.workplace .show-page .show-card .card-content .divider {
	flex-basis: 1px;
	background-color: #dddddd;
}

.workplace .show-page .client-info {
	flex-basis: 70%;
}
.workplace .show-page .client-activity {
	flex-basis: 30%;
}

.workplace .show-page .show-card.delivery-info {
	flex-basis: 22%;
	padding-bottom: 2rem;
}
.workplace .show-page .main-area {
	flex-basis: 78%;
}
.workplace .show-page .main-area .section-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.workplace .show-page .main-area .section-wrapper .delivery-client {
	flex-basis: 50%;
}
.workplace .show-page .delivery-items {
	margin-top: 0.6rem;
}
.workplace .show-page .delivery-summary {
	margin-top: 0.6rem;
}
.workplace .show-page .show-card.references {
	margin-top: 0.6rem;
}
.workplace .show-page .show-card.references .card-content {
	min-height: 12rem;
}

.workplace .show-page.view-payment .payment-details {
	flex-basis: 50%;
}
.workplace .show-page.view-payment .payment-delivery {
	flex-basis: 50%;
}

.workplace .show-page .show-content .wrapper-with-img {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.workplace .show-page .show-content .img-wrapper {
    display: flex;
    flex-basis: 7rem;
    padding: 0.3rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
	overflow: hidden;
}

.workplace .show-page .show-content .row-view {
	margin-bottom: 0.8rem;
}
.workplace .show-page .show-content .row-view.flex {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.5rem;
}
.workplace .show-page .show-content .row-view:last-child {
	margin-bottom: 0;
}
.workplace .show-page .show-content .row-view .label {
	font-size: 0.84rem;
}
.workplace .show-page .show-content .row-view .value {
	font-family: var(--font_family_medium);
	font-size: 0.84rem;
}

.workplace .show-page .show-content .row-view.flex .label {
	flex-basis: 10rem;
}
.workplace .show-page .show-content .row-view.flex .value {
	flex-grow: 1;
}

.workplace .show-page .show-user {
    display: flex;
    justify-content: space-between;
}
.workplace .show-page .show-user .tab-section {
	padding-top: 10px;
	padding-bottom: 40px;
	background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
}
.workplace .show-page .show-user .tab-section.left {
	flex-basis: 24%;
}
.workplace .show-page .show-user .tab-section.right {
	flex-basis: 75%;
}
.workplace .show-page .show-user .tab-section .tab-title {
    border-bottom: 1px solid #dddddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.workplace .show-page .show-user .tab-section .tab-title h3 {
	margin: 0 24px;
	padding: 4px 6px;
	display: inline-block;
    font-size: 0.9rem;
    font-family: var(--font_family_medium);
    font-weight: 500;
    color: var(--tab_title);
    border-bottom: 2px solid var(--tab_title);
}
.workplace .show-page .show-user .tab-section .tab-title .edit {
	flex-grow: 1;
	color: #777777;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	display: none;
}
.workplace .show-page .show-user .tab-section .tab-title .edit::before {
	content: '\f303';
	font-weight: 600;
	font-family: "Font Awesome 6 Pro";
	margin-right: 6px;
}
.workplace .show-page .show-user .tab-section:hover .tab-title .edit {
    display: inline-block;
}

.workplace .show-page .show-user .tab-section .tab-title .commands {
	margin: 0 24px;
	display: flex;
	align-items: center;
}
.workplace .show-page .show-user .tab-section .tab-title .navigations {
	margin-top: -10px;
	margin-left: 24px;
	display: flex;
}
.workplace .show-page .show-user .tab-section .tab-title .navigations a {
	font-size: 13px;
	color: #777777;
	height: 28px;
	line-height: 28px;
	padding: 0 12px;
	text-decoration: none;
	border: 1px solid #bbbbbb;
	cursor: pointer;
}
.workplace .show-page .show-user .tab-section .tab-title .navigations a.to-list {
	color: #555555;
	font-size: 14px;
	text-transform: uppercase;
	background-color: var(--view_to_list_nav_bg);
}
.workplace .show-page .show-user .tab-section .tab-title .navigations .nav.count-0 {
	color: #dddddd;
	border-color: #dddddd;
	cursor: default !important;
}
.workplace .show-page .show-user .tab-section .tab-title .navigations a.back {
	border-right-width: 0;
	border-radius: 4px 0 0 4px;
}
.workplace .show-page .show-user .tab-section .tab-title .navigations a.forward {
	border-left-width: 0;
	border-radius: 0 4px 4px 0;
}

.workplace .show-page .show-user .tab-section .tab-content {
	padding: 14px 24px 20px;
}
.workplace .show-page .show-user .tab-section .tab-content .row-details {
	margin: 8px 0;
	position: relative;
}
.workplace .show-page .show-user .tab-section .tab-content .row-details .label {
	font-size: 0.9rem;
	font-family: var(--font_family_semibold);
}
.workplace .show-page .show-user .tab-section .tab-content .row-details .value {
	position: relative;
	margin-top: 2px;
}

.workplace .show-page .show-user .tab-section .tab-content .row-details .value.status span {
	padding: 2px 8px;
	font-size: 13px;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 0.5px;
	background-color: #e97e14;
	border-radius: 4px;
}
.workplace .show-page .show-user .tab-section .tab-content .row-details .value.status.active span {
	background-color: #34d37b;
}
.workplace .show-page .show-user .tab-section .tab-content .row-details .edit {
	margin-left: 10px;
	color: #777777;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	display: none;
}
.workplace .show-page .show-user .tab-section .tab-content .row-details .edit.far-right {
	position: absolute;
	right: 10px;
}
.workplace .show-page .show-user .tab-section:hover .tab-content .row-details .edit {
	display: inline-block;
}
.workplace .show-page .show-user .tab-section .tab-content .row-details .img-value {
	width: 50%;
	margin: 4px 0 16px;
	display: flex;
	position: relative;
	background-color: #f5f5f5;
	outline: 1px solid #cccccc;
	border-radius: 4px;
	overflow: hidden;
}

.workplace .show-page .line {
	display: block;
	margin: 20px auto;
	height: 1px;
	border-bottom: 1px solid #dddddd;
}

.workplace .show-page .user-grants {
	margin: 10px 0;
}
.workplace .show-page .user-grants .grant-row {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px dashed #dddddd;
    font-size: 0.9rem;
}
.workplace .show-page .user-grants .grant-row .grant-label {
	flex-basis: 22%;
	padding: 10px 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.workplace .show-page .user-grants .grant-row .grant-values {
	flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}
.workplace .show-page .user-grants .grant-row.report .grant-values {
	flex-grow: 1;
    display: block;
    margin-bottom: 14px;
}
.workplace .show-page .user-grants .grant label {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 220px;
	margin: 10px 0;
	margin-right: 30px;
}
.workplace .show-page .user-grants .grant-row.report .grant-values .grant label {
	width: auto;
}

.workplace .show-page .user-grants .grant label .checkbox::after {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	line-height: 1.2rem;
	text-align: center;
	content: "\f00d";
	font-family: 'Font Awesome 6 Pro';
	background-color: #ffdbdb;
	border: 1px solid #ffaaaa;
	border-radius: 3px;
}
.workplace .show-page .user-grants .grant label .checkbox.yes::after {
	content: "\f00c";
	color: var(--view_check_color);
	background-color: var(--view_check_bgcolor);
	border-color: var(--view_check_border);
}
.workplace .show-page .user-grants .grant label .text {
	margin-left: 8px;
}


.workplace .show-page.view-delivery-order .delivery-list {
	margin-bottom: 20px;
	border-top: 1px solid var(--view_td_border);
	border-bottom: 1px solid var(--view_td_border);
	overflow: hidden;
}
.workplace .show-page.view-delivery-order .nothing-to-display {
	margin: 10px 0;
	font-size: 0.86rem;
	color: #888888;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row {
	display: flex;
	flex-wrap: wrap;
	padding: 8px 12px;
	font-size: 13.5px;
	border-top: 1px solid var(--view_td_border);
}
.workplace .show-page.view-delivery-order .delivery-list .list-row:nth-child(odd) {
	background-color: #f7f7f7;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row.list-header {
	font-family: var(--font_family_medium);
	background-color: var(--view_td_bg);
	border-top: none;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row > div {
	padding-right: 10px;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row .sno {
	width: 6%;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row .item-desc {
	width: 43%;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row .item-qty {
	width: 10%;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row .item-rate {
	width: 14%;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row .item-total {
	width: 16%;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row .item-action {
	width: 10%;
}
.workplace .show-page.view-delivery-order .delivery-list .only-mob {
	display: none;
}

.workplace .show-page.view-delivery-order .delivery-list .list-row .btn {
	margin-right: 10px;
	cursor: pointer;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row .btn::before {
	font-family: 'Font Awesome 6 Pro';
	content: '\f303';
	color: #666666;
}
.workplace .show-page.view-delivery-order .delivery-list .list-row .btn.delete::before {
	content: '\f2ed';
}

.workplace .show-page.view-delivery-order .card-content .brief-wrapper {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

.workplace .show-page.view-delivery-order .card-content .brief {
	margin-bottom: 20px;
	width: 42%;
	border: 1px solid #cbd6e2;
	border-radius: 4px;
	overflow: hidden;
}
.workplace .show-page.view-delivery-order .card-content .brief-row {
	border-top: 1px solid #cbd6e2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 8px 10px;
	font-size: 13.5px;
}
.workplace .show-page.view-delivery-order .card-content .brief-row:first-child {
	border-top: none;
}
.workplace .show-page.view-delivery-order .card-content .brief-row:nth-child(even) {
	background-color: #f7f7f7;
}
.workplace .show-page.view-delivery-order .card-content .brief-row.balance {
	align-items: flex-start;
}
.workplace .show-page.view-delivery-order .card-content .brief-row .label {
	width: 34%;
}
.workplace .show-page.view-delivery-order .card-content .brief-row .value {
	flex-grow: 1;
	font-family: var(--font_family_medium);
}
.workplace .show-page.view-delivery-order .card-content .brief-row .value.flex {
	display: flex;
}
.workplace .show-page.view-delivery-order .card-content .brief-row.extra-charges .value span {
	width: 58%;
}
.workplace .show-page.view-delivery-order .card-content .brief-row.balance .label {
	line-height: 28px;
}
.workplace .show-page.view-delivery-order .card-content .brief-row.balance .value span {
	font-size: 24px;
	line-height: 28px;
	display: block;
}

.workplace .show-page.view-delivery-order .card-content .brief-row .edit-btn {
	margin-right: 24px;
	color: #666666;
	cursor: pointer;
}
.workplace .show-page.view-delivery-order .card-content .brief-row:hover .edit-btn {
	display: inline-block;
}
.workplace .show-page.view-delivery-order .card-content .brief-row .edit-btn::before {
	font-family: "Font Awesome 6 Pro";
	content: "\f303";
}

.workplace .show-page.view-delivery-order .card-content .brief-row .value .pay-link {
	display: inline-block;
	margin: 10px 0;
	padding: 5px 14px;
	font-size: 14px;
	font-family: var(--font_family);
	cursor: pointer;
	background-color: #ffffff;
	outline: 1px solid #cbd6e2;
	border-radius: 3px;
}
.workplace .show-page.view-delivery-order .card-content .brief-row .value .pay-link:hover, 
.workplace .show-page.view-delivery-order .card-content .brief-row .value .pay-link:hover {
	outline-width: 2px;
}

.workplace .show-page .row-view .new-blank-link {
    display: inline-block;
    margin: 2px 0;
    text-decoration: none;
}
.workplace .show-page .row-view .new-blank-link::after {
    font-family: 'Font Awesome 6 Pro';
    content: '\f35d';
    margin-left: 10px;
}


.workplace .setting-page {
	display: flex;
	align-items: flex-start;
}
.workplace .setting-page .menu-bar {
	flex-basis: 18rem;
	border: 1px solid #d1d1d1;
	border-right-width: 0;
	border-radius: 4px 0 0 4px;
}
.workplace .setting-page .canvas-area {
	flex-basis: 70%;
	min-height: 30rem;
	padding: 1.2rem 2rem;
	background-color: #ffffff;
	border: 1px solid #d1d1d1;
	border-radius: 0 4px 4px 4px;
}

.workplace .setting-page .menu-bar .list {
	list-style: none;
}
.workplace .setting-page .menu-bar .list li {
	background-color: #f5f5f5;
	border-bottom: 1px solid #d5d5d5;
	border-radius: 4px 0 0;
	position: relative;
}
.workplace .setting-page .menu-bar .list li:last-child {
	border-bottom-width: 0;
	border-radius: 0 0 0 4px;
}
.workplace .setting-page .menu-bar .list li.active {
	background-color: #ffffff;
}
.workplace .setting-page .menu-bar .list li.active a {
	color: var(--link_color);
}
.workplace .setting-page .menu-bar .list li.active a::after {
	position: absolute;
	content: '';
	top: 0;
	right: -5px;
	background-color: #ffffff;
	height: 100%;
	width: 10px;
}
.workplace .setting-page .menu-bar .list a {
	display: block;
	padding: 0.6rem 1rem;
	font-size: 0.86rem;
	color: #666666;
	text-decoration: none;
}

.workplace .setting-page .inside-unknown {
	padding: 1rem 0;
}
.workplace .setting-page .inside-unknown h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.workplace .setting-page .inside-unknown ul {
	margin: 10px 34px;
}
.workplace .setting-page .inside-unknown p,
.workplace .setting-page .inside-unknown ul li {
	line-height: 1.5;
	font-size: 0.86rem;
	width: 80%;
}
.workplace .setting-page .inside-unknown .last-pg {
	margin-top: 1rem;
}

.workplace .setting-page .canvas-area .header-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.workplace .setting-page .canvas-area .header-bar.items-end {
	align-items: flex-end;
}
.workplace .setting-page .canvas-area .header-bar .title {
    font-size: 1rem;
}
.workplace .setting-page .canvas-area .header-bar .link-btn {
	display: inline-block;
    padding: 6px 18px;
    font-family: var(--font_family_medium);
    font-size: 0.84rem;
    text-decoration: none;
    border: 1px solid var(--page_add_btn_border);
    border-radius: 4px;
    cursor: pointer;
}

.workplace .setting-page .canvas-area .input-text,
.workplace .setting-page .canvas-area .drop-box {
	padding-left: 8px;
	width: 260px;
	height: 32px;
	color: #666666;
	font-size: 0.9rem;
	background-color: #f5f5f5;
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 98%;
	background-position-y: 2px;
}
.workplace .setting-page .canvas-area .drop-box.country {
	margin-top: 0.5rem;
}

.workplace .setting-page .canvas-area .setting-list {
	margin: 1rem 0 2rem;
	flex-basis: 100%;
}
.workplace .setting-page .canvas-area .setting-list .sub-title {
	padding-right: 15px;
	font-size: 14px;
	font-family: var(--font_family_medium);
	text-transform: uppercase;
	background-color: var(--page_td_bg);
    border: 1px solid var(--page_td_border);
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-wrap: wrap;
}
.workplace .setting-page .canvas-area .setting-list .setting-data {
	min-height: 400px;
	max-height: 650px;
	padding-bottom: 1rem;
	border: 1px solid #d7d7d7;
	border-top: none;
	overflow-y: scroll;
}
.workplace .setting-page .canvas-area .setting-list .table-row {
	border-bottom: 1px solid #e4e4db;
	display: flex;
	flex-wrap: wrap;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .table-row:nth-child(even) {
	background-color: #f7f7f7;
}
.workplace .setting-page .canvas-area .setting-list .cave {
	padding: 0 14px;
	height: 32px;
	line-height: 32px;
	font-size: 13px;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
	border-left: 1px solid #c5c5c5;
}
.workplace .setting-page .canvas-area .setting-list .cave.serial {
	flex-basis: 6%;
	border-left: none;
}
.workplace .setting-page .canvas-area .setting-list .cave.buttons {
	flex-basis: 10%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .table-row .btn {
	margin-right: 6px;
	font-weight: 500;
	opacity: 0.4;
	cursor: pointer;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .table-row:hover .btn {
	opacity: 1;
}
.workplace .setting-page .canvas-area .setting-list .not-found {
	padding: 2rem 0;
	min-height: 10rem;
	text-align: center;
	font-size: 0.9rem;
	color: #999999;
	border: 1px solid #d7d7d7;
	border-radius: 4px;
}

.workplace .setting-page .canvas-area .setting-list.countries .cave.country-name {
	flex-basis: 35%;
}
.workplace .setting-page .canvas-area .setting-list.countries .cave.country-phone {
	flex-basis: 15%;
}
.workplace .setting-page .canvas-area .setting-list.countries .cave.country-status {
	flex-basis: 20%;
}

.workplace .setting-page .canvas-area .setting-list.cities .cave.city-name {
	flex-basis: 44%;
}
.workplace .setting-page .canvas-area .setting-list.cities .cave.city-status {
	flex-basis: 28%;
}

.workplace .setting-page .canvas-area .setting-list.airlines .cave.airline-name {
	flex-basis: 60%;
}

.workplace .setting-page .canvas-area .setting-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 30px;
	border-bottom: 1px solid #dddddd;
	margin-bottom: 30px;
}
.workplace .setting-page .canvas-area .setting-row:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 10px;
}
.workplace .setting-page .canvas-area .setting-row .row-label {
	flex-basis: 30%;
}
.workplace .setting-page .canvas-area .setting-row .row-value {
	flex-basis: 70%;
	position: relative;
}
.workplace .setting-page .canvas-area .setting-row .row-value.flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.workplace .setting-page .canvas-area .setting-row .row-label h3 {
	font-size: 14px;
	color: #424242;
	font-family: var(--font_family_medium);
}
.workplace .setting-page .canvas-area .setting-row .row-label p {
	font-size: 14px;
	line-height: 24px;
	color: #888888;
}
.workplace .setting-page .canvas-area .setting-row .row-value .edit-link {
	position: absolute;
	right: 0;
	text-decoration: none;
	cursor: pointer;
}
.workplace .setting-page .canvas-area .setting-row .row-value .edit-link::before {
	font-family: "Font Awesome 6 Pro";
	content: '\f044';
}

.workplace .setting-page .canvas-area .setting-row .logo-wrapper {
	flex-basis: 25%;
	padding: 10px 14px;
	border: 1px solid #dddddd;
	border-radius: 10px;
	display: flex;
}
.workplace .setting-page .canvas-area .setting-row .links {
	margin-left: 20px;
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
}
.workplace .setting-page .canvas-area .setting-row .replace-link {
	display: inline-block;
	outline: 1px solid #dddddd;
	padding: 6px 16px;
	font-size: 14px;
	border-radius: 4px;
	cursor: pointer;
}
.workplace .setting-page .canvas-area .setting-row .replace-link:hover,
.workplace .setting-page .canvas-area .setting-row .replace-link:focus {
	outline-width: 2px;
}
.workplace .setting-page .canvas-area .setting-row .remove-link {
	display: inline-block;
	padding: 6px 16px;
	font-family: var(--font_family_medium);
	font-size: 14px;
	color: #d00000;
	background-color: #ffd1d1;
	border-radius: 4px;
	cursor: pointer;
}
.workplace .setting-page .canvas-area .setting-row .remove-link:hover,
.workplace .setting-page .canvas-area .setting-row .remove-link:focus {
	outline: 1px solid #d00000;
}

.workplace .setting-page .canvas-area .setting-row .inner-title {
	font-size: 14px;
	color: #424242;
	font-family: var(--font_family_medium);
}
.workplace .setting-page .canvas-area .setting-row .inner-value {
	font-size: 14px;
	color: #5f5f5f;
	margin-bottom: 14px;
}



.workplace .my-profile {
	padding: 30px 32px;
	background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.workplace .my-profile .left {
	width: 280px;
}
.workplace .my-profile .right {
	width: calc(100% - 340px);
	margin-left: 25px;
}
.workplace .my-profile .left .img-holder {
	position: relative;
	height: 280px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.workplace .my-profile .left .img-holder .progress-bar {
	background: none repeat scroll 0 0 #e0e0e0;
	padding: 6px 0;
	top: 45%;
	position: absolute;
	width: 100%;
	display: none;
}
.workplace .my-profile .left .img-holder .progress-bar .bar {
	height: 15px;
}
.workplace .my-profile .left .img-holder .progress-bar .percent {
	display: inline-block;
	width: 100%;
	position: absolute;
	text-align: center;
	top: 2px;
}
.workplace .my-profile .left .img-holder .img-change {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: var(--page_add_btn_bg);
	height: 36px;
	display: flex;
	align-items: center;
}
.workplace .my-profile .left .img-holder .img-change input[type="file"] {
	position: absolute;
	width: 100%;
	height: 44px;
	opacity: 0;
	cursor: pointer;
}
.workplace .my-profile .left .img-holder .img-change span {
	width: 100%;
	color: #ffffff;
	text-align: center;
	font-size: 0.85rem;
}
.workplace .my-profile .right .record {
	display: flex;
	padding: 8px 12px;
	font-size: 14px;
	border-radius: 4px;
}
.workplace .my-profile .right .record.top-down {
	margin-top: 20px;
}
.workplace .my-profile .right .record:nth-child(odd) {
	background-color: #f7f7f7;
}
.workplace .my-profile .right .record .label-part {
	flex-basis: 26%;
}
.workplace .my-profile .right .record .value-part {
	font-family: var(--font_family_medium);
	flex-grow: 1;
}
.workplace .my-profile .right .record .value-part.flex {
	display: flex;
	justify-content: space-between;
}
.workplace .my-profile .right .record .value-part .edit-btn::before {
    font-family: "Font Awesome 6 Pro";
    content: '\f044';
    cursor: pointer;
}
.workplace .my-profile .right .record .value-part .status {
	display: inline-block;
	padding: 2px 12px;
	border-radius: 4px;
	background-color: #cccccc;
}
.workplace .my-profile .right .record .value-part .status.active {
	background-color: #66ff85;
}
.workplace .my-profile .right .record .value-part .status.inactive {
	background-color: #ff9600;
}




.workplace .report-page {
	display: flex;
}
.workplace .report-page .selectors {
	flex-basis: 22%;
	padding: 3.5rem 1.5rem 1.5rem;
	background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px 0 0 4px;
    position: relative;
	min-height: 30rem;
}
.workplace .report-page .filters {
	flex-basis: 70%;
	padding: 1.2rem 1.5rem;
	background-color: #ffffff;
    border: 1px solid #dddddd;
    border-left-width: 0;
    border-radius: 0 4px 4px 0;
    overflow: hidden;
}
.workplace .report-page .selectors header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 1.5rem;
	font-size: 0.9rem;
	background-color: #dddddd;
}
.workplace .report-page .selectors ul {
	list-style: none;
}
.workplace .report-page .selectors ul li {
	display: flex;
	align-items: center;
	margin-bottom: 0.8rem;
}
.workplace .report-page .selectors ul li input[type=radio] {
	position: absolute;
	visibility: hidden;
}
.workplace .report-page .selectors ul li .text {
	position: relative;
	padding: 0 1rem 0 1.8rem;
	font-size: 0.84rem;
	z-index: 9;
	cursor: pointer;
}
.workplace .report-page .selectors ul li .check {
	position: absolute;
	border: 2px solid #aaaaaa;
	border-radius: 100%;
	height: 1rem;
	width: 1rem;
	z-index: 1;
}
.workplace .report-page .selectors ul li .check::before {
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 0.4rem;
	width: 0.4rem;
	top: 0.19rem;
	left: 0.15rem;
}
.workplace .report-page .selectors input[type=radio]:checked ~ .check {
	border-color: var(--report_checked_text)
}
.workplace .report-page .selectors input[type=radio]:checked ~ .check::before {
	background-color: var(--report_checked_text)
}
.workplace .report-page .selectors input[type=radio]:checked ~ .text {
	font-family: var(--font_family_medium);
	color: var(--report_checked_text);
}

.workplace .report-page .filters .filter {
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
	position: relative;
	display: none;
}
.workplace .report-page .filters .filter.show {
	display: flex;
}
.workplace .report-page .filters .filter .label {
	flex-basis: 12rem;
	line-height: 32px;
	font-size: 0.84rem;
}
.workplace .report-page .filters .filter .filter-controls {
	flex-basis: calc(90% - 12rem);
	display: flex;
	gap: 0.5rem;
}
.workplace .report-page .filters .filter .filter-controls .filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
}
.workplace .report-page .filters .filter .filter-controls .filter-row:nth-child(n+2) {
	margin-top: 10px;
}
.workplace .report-page .filters .filter .input-text,
.workplace .report-page .filters .filter .drop-box {
	height: 32px;
	font-size: 0.84rem;
	padding-left: 8px;
    background-color: #f5f5f5;
    border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;
}
.workplace .report-page .filters .filter .input-text[type="month"] {
	-webkit-padding-end: 8px;
}
.workplace .report-page .filters .filter .drop-box {
	-webkit-padding-end: 22px;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 98%;
	background-position-y: 2px;
}
.workplace .report-page .filters .filter .input-text.highlight,
.workplace .report-page .filters .filter .drop-box.highlight {
    border-color: #ff0000;
}

.workplace .report-page .filters .filter .input-text:focus,
.workplace .report-page .filters .filter .drop-box:focus {
	background-color: var(--form_element_focus_bgcolor);
	box-shadow: 0 0 0 2px var(--form_element_focus_border);
	border-color: var(--form_element_border);
}

.workplace .report-page .filters .filter .text-with-suggest {
	position: relative;
}
.workplace .report-page .filters .search-btn {
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    color: var(--report_search_btn);
    background-color: var(--report_search_btn_bg);
    border: 1px solid var(--report_search_btn_border);
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}
.workplace .report-page .filters .search-btn::after {
	font-family: 'Font Awesome 6 Pro';
	content: '\f002';
}

.workplace .report-page .filters .suggestion-box {
	position: absolute;
	left: 1px;
	top: 35px;
	width: 99%;
	max-height: 200px;
	background-color: #ffffff;
	outline: 1px solid #bbbbbb;
	box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	display: none;
}
.workplace .report-page .filters .suggestion-box.show {
	display: inline-block;
}
.workplace .report-page .filters .suggestion-box .fetching {
	padding: 10px 12px;
	display: flex;
	align-items: center;
	font-size: 13px;
}
.workplace .report-page .filters .suggestion-box .fetching span {
	margin-left: 10px;
}
.workplace .report-page .filters .suggestion-box .not-found {
	padding: 10px 12px;
	font-size: 13px;
}
.workplace .report-page .filters .suggestion-box a {
	display: block;
	color: #666666;
	cursor: pointer;
}
.workplace .report-page .filters .suggestion-box .suggest-option {
	padding: 8px 12px;
	font-size: 13px;
}
.workplace .report-page .filters .suggestion-box a:nth-child(even) .suggest-option {
	background-color: rgba(233, 233, 233, 0.1);
}
.workplace .report-page .filters .suggestion-box .suggest-option p {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .report-page .filters .suggestion-box .suggest-option p span {
	font-weight: 600;
}
.workplace .report-page .filters .suggestion-box .suggest-option p span::after {
	content: ' ';
}

.workplace .report-page .filters .filter .flight-num {
	width: 220px;
}
.workplace .report-page .filters .filter .flight-date {
	width: 220px;
}

.workplace .report-page .filters .filter .client-type {
	width: 220px;
}
.workplace .report-page .filters .filter .client-country {
	width: 220px;
}
.workplace .report-page .filters .filter .client-country-state {
	width: 180px;
}
.workplace .report-page .filters .filter .search-client-by {
	width: 160px;
}
.workplace .report-page .filters .filter .search-client-text {
	width: 310px;
}

.workplace .report-page .filters .filter .dlvry-airline {
	width: 220px;
}
.workplace .report-page .filters .filter .airway-bill-no {
	width: 110px;
}
.workplace .report-page .filters .filter .destination-mark {
	width: 140px;
}
.workplace .report-page .filters .filter .sender-country {
	width: 220px;
}
.workplace .report-page .filters .filter .sender-state {
	width: 180px;
}
.workplace .report-page .filters .filter .receiver-country {
	width: 220px;
}
.workplace .report-page .filters .filter .receiver-state {
	width: 180px;
}
.workplace .report-page .filters .filter .dlvry-paid-status {
	width: 220px;
}


.workplace .report-page .filters .filter .start-date {
	width: 220px;
}
.workplace .report-page .filters .filter .end-date {
	width: 180px;
}

.workplace .report-page .buttons {
	margin-left: 12rem;
	margin-top: 1rem;
	font-size: 0.84rem;
}
.workplace .report-page .buttons .btn-display {
	width: 220px;
	height: 34px;
    color: #ffffff;
    background-color: var(--report_btn_bg);
    border: 1px solid var(--report_btn_bg);
    border-radius: 4px;
	outline: none;
    cursor: pointer;
}
.workplace .report-page .buttons .btn-display:focus {
    box-shadow: 0 0 0 2px #ffffff, 0 0 1px 3px var(--report_btn_bg);
}
.workplace .report-page .buttons .btn-display:disabled {
	color: #666666;
	background-color: #dddddd;
	border-color: #dddddd;
}
.workplace .report-page .buttons .process {
	margin-left: 8px;
	display: none;
}
.workplace .report-page .buttons .process i {
	margin-right: 10px;
	font-size: 1.1rem;
	animation: spinner 1s linear infinite;
}
.workplace .report-page .error {
	margin-bottom: 15px;
}


.workplace .report-view {
	padding: 30px 30px 40px;
	min-height: 85vh;
	font-size: 0.94em;

	background-color: #ffffff;
	border: 1px dotted #bbbbbb;
	border-radius: 4px;
}
.workplace .report-view .report-header {
	position: relative;
}
.workplace .report-view .report-header .titles {
	text-align: center;
}
.workplace .report-view .report-header .btns {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
.workplace .report-view .report-header .titles .report-name {
	font-size: 18px;
	line-height: 30px;
}
.workplace .report-view .report-header .titles .filter {
	margin-top: 0;
	font-size: 14px;
	font-weight: 500;
	color: #777777;
}
.workplace .report-view .report-header .btns .link {
	margin-left: 8px;
	padding: 8px 10px;
	color: #ffffff;
    background-color: var(--report_print_btn_bg);
    border: 1px solid var(--report_print_btn_border);
	text-decoration: none;
	border-radius: 3px;
	cursor: pointer;
}
.workplace .report-view .report-header .btns .back-btn {
	margin-left: 8px;
	padding: 4px 20px;
	text-align: center;
	color: #666666;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid #aaaaaa;
	border-radius: 3px;
}
.workplace .report-view .report-header .btns .back-btn::before {
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
	content: "\f060";
	margin-right: 8px;
}

.workplace .report-view .report-data {
    min-height: 280px;
    max-height: 600px;
    position: relative;
    margin-top: 1rem;
    padding-bottom: 14px;
    overflow: auto;
    border: 1px solid #c5c5c5;
    border-radius: 4px;
}
.workplace .report-view .report-table {
	table-layout: fixed;
    border-collapse: collapse;
    border-radius: 4px;
}
.workplace .report-view .report-table tr:nth-child(even) {
	background-color: #f5f5f5;
}
.workplace .report-view .report-table th, 
.workplace .report-view .report-table td {
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: rgb(223, 227, 235);
	min-width: 50px;
	text-align: left;
	padding: 0 16px 0 10px;
}
.workplace .report-view .report-table th:first-child, 
.workplace .report-view .report-table td:first-child {
	border-left-width: 0;
}
.workplace .report-view .report-table th {
	height: 36px;
	text-transform: uppercase;
	font-family: var(--font_family_semibold);
	font-size: 13px;
	font-weight: 500;
	color: #555555;
	background-color: #ececec;
	border-color: #c5c5c5;
}
.workplace .report-view .report-table td {
	height: 36px;
	font-size: 13.5px;
}
.workplace .report-view .report-table .truncate-div {
	max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.workplace .report-view .report-table  .empty-cell {
	height: 100px;
	text-align: center;
	border: none;
	color: #888888;
}

.workplace .report-view .cave.daily-s-n .truncate-div {
	min-width: 30px;
}
.workplace .report-view .cave.daily-date .truncate-div {
	min-width: 100px; 
}
.workplace .report-view .cave.daily-serial .truncate-div {
	min-width: 90px;
}
.workplace .report-view .cave.daily-airway .truncate-div {
	min-width: 80px;
}
.workplace .report-view .cave.daily-mark .truncate-div {
	min-width: 80px;
}
.workplace .report-view .cave.daily-sender .truncate-div {
	min-width: 200px;
}
.workplace .report-view .cave.daily-receiver .truncate-div {
	min-width: 200px;
}
.workplace .report-view .cave.daily-kg .truncate-div {
	min-width: 80px;
}
.workplace .report-view .cave.daily-rate .truncate-div {
	min-width: 80px;
}
.workplace .report-view .cave.daily-extra .truncate-div {
	min-width: 90px;
}
.workplace .report-view .cave.daily-total .truncate-div {
	min-width: 90px;
}
.workplace .report-view .cave.daily-paid .truncate-div {
	min-width: 90px;
}
.workplace .report-view .cave.daily-balance .truncate-div {
	min-width: 100px;
}

.workplace .report-view .cave.client-s-n {
	min-width: 50px;
}
.workplace .report-view .cave.client-type {
	min-width: 160px;
}
.workplace .report-view .cave.client-name {
	min-width: 250px;
}
.workplace .report-view .cave.client-country-state {
	min-width: 150px;
}
.workplace .report-view .cave.client-address {
	min-width: 200px;
}
.workplace .report-view .cave.client-phone {
	min-width: 150px;
}
.workplace .report-view .cave.client-email {
	min-width: 150px;
}
.workplace .report-view .cave.client-balance {
	min-width: 150px;
}
.workplace .report-view .cave.client-status {
	min-width: 150px;
}

.workplace .report-view .cave.activity-s-n {
	min-width: 50px;
}
.workplace .report-view .cave.activity-date {
	min-width: 200px;
}
.workplace .report-view .cave.activity-ref {
	min-width: 300px;
}
.workplace .report-view .cave.activity-details {
	min-width: 410px;
}
.workplace .report-view .cave.activity-in {
	min-width: 150px;
}
.workplace .report-view .cave.activity-out {
	min-width: 150px;
}
.workplace .report-view .cave.activity-balance {
	min-width: 250px;
}

.workplace .report-view .cave.due-client-name {
	min-width: 300px;
}
.workplace .report-view .cave.due-client-contact {
	min-width: 380px;
}

.workplace .report-view .cave.dlvry-s-n {
	min-width: 50px;
}
.workplace .report-view .cave.dlvry-date {
	min-width: 120px;
}
.workplace .report-view .cave.dlvry-serial {
	min-width: 150px;
}
.workplace .report-view .cave.dlvry-airline {
	min-width: 150px;
}
.workplace .report-view .cave.dlvry-airway {
	min-width: 120px;
}
.workplace .report-view .cave.dlvry-mark {
	min-width: 100px;
}
.workplace .report-view .cave.dlvry-sender {
	min-width: 280px;
}
.workplace .report-view .cave.dlvry-receiver {
	min-width: 280px;
}
.workplace .report-view .cave.dlvry-total {
	min-width: 130px;
}
.workplace .report-view .cave.dlvry-balance {
	min-width: 130px;
}

.workplace .report-view .cave.receipt-s-n {
	min-width: 50px;
}
.workplace .report-view .cave.receipt-date {
	min-width: 150px;
}
.workplace .report-view .cave.receipt-rv {
	min-width: 200px;
}
.workplace .report-view .cave.receipt-amount {
	min-width: 150px;
}
.workplace .report-view .cave.receipt-client {
	min-width: 350px;
}
.workplace .report-view .cave.receipt-paid-for {
	min-width: 250px;
}
.workplace .report-view .cave.receipt-notes {
	min-width: 350px;
}

.workplace .report-view .report-summary {
	margin-top: 15px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.workplace .report-view .report-summary .summary-cave {
	border: 1px solid #c5c5c5;
	border-left-width: 0;
	overflow: hidden;
}
.workplace .report-view .report-summary .summary-cave:first-child {
	border-radius: 4px 0 0 4px;
	border-left-width: 1px;
}
.workplace .report-view .report-summary .summary-cave:last-child {
	border-radius: 0 4px 4px 0;
}
.workplace .report-view .report-summary .summary-cave .record {
	padding: 6px 14px;
    font-size: 13px;
}
.workplace .report-view .report-summary .summary-cave .record.title {
	background-color: #ececec;
	text-transform: uppercase;
	font-weight: 600;
}




.frame-popup-center {
	font-size: 0.95em;
	height: 100vh;
}
.frame-popup-center .unknown {
	padding: 3% 4%;
	min-height: 100vh;
	background: none;
	background-color: #ffffff;
	border: none;
}
.frame-popup-center .unknown h3 {
	margin-bottom: 2%;
}
.frame-popup-center .unknown p,
.frame-popup-center .unknown ul {
	width: 95%;
	margin-bottom: 2%;
	line-height: 20px;
}
.frame-popup-center .unknown ul {
	padding-left: 10px;
}

.frame-popup-center header {
	padding: 9px 20px;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
    background-color: var(--popup_header_bg);
	border-bottom: 1px solid #cccccc;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.frame-popup-center header .check-all {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	cursor: pointer;
	position: relative;
}
.frame-popup-center header .check-all input {
	appearance: none;
}
.frame-popup-center header .check-all input::before {
	position: absolute;
	top: 0;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
}
.frame-popup-center header .check-all input:checked::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.frame-popup-center header .check-all span {
	margin-left: 26px;
	height: 20px;
}

.frame-popup-center header .btn {
	cursor: pointer;
}
.frame-popup-center header .btn input {
	width: 0;
}
.frame-popup-center header .btn span {
	opacity: 0.6;
}
.frame-popup-center header .btn input:checked ~ span {
	opacity: 1;
	font-weight: 600;
	color: var(--tab_title_btn_checked);
}
.frame-popup-center header .btn span::before {
	font-family: 'Font Awesome 6 Pro';
	content: '\e5c5';
	font-weight: 500;
}
.frame-popup-center header .btn input:checked ~ span::before {
	font-weight: 600;
}

.frame-popup-center .content {
	padding: 15px 20px 20px;
	height: calc(100vh - 40px);
	color: var(--font_color);
	background-color: #ffffff;
}
.frame-popup-center .content.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.frame-popup-center .content .record-state.new {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.frame-popup-center .content .content-sect {
	flex-basis: 49%;
}
.frame-popup-center .content .content-sect.right {
	border-left: 1px solid #c5c5c5;
	padding-left: 20px;
}

.frame-popup-center .content .frame-container {
    display: flex;
    justify-content: space-between;
}

.frame-popup-center .content .frame-row {
	margin-bottom: 10px;
}
.frame-popup-center .content .frame-row.flex {
	display: flex;
	justify-content: space-between;
}
.frame-popup-center .content .frame-row.hide {
	display: none;
}
.frame-popup-center .content .frame-row.half {
    width: 50%;
}

.frame-popup-center .content .frame-row.flex .column {
	flex-basis: 49%;
}
.frame-popup-center .content .frame-row .label-part {
	line-height: 26px;
    font-size: 0.92em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.frame-popup-center .content .frame-row .label-part .required.hide {
	display: none;
}
.frame-popup-center .content .frame-row .label-part span {
	color: #777777;
    margin-left: 3px;
}
.frame-popup-center .content .frame-row .value-part {
	position: relative;
}
.frame-popup-center .content .frame-row .value-part.second {
	margin-top: 0.5rem;
}
.frame-popup-center .content .frame-row .value-part.flex {
	display: flex;
}



.frame-popup-center .content .input-text,
.frame-popup-center .content .drop-box,
.frame-popup-center .content .text-area {
	padding-left: 8px;
	height: 32px;
	color: #666666;
	font-size: 0.92em;
	background-color: #f5f5f5;
    border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;
}
.frame-popup-center .content .drop-box {
	-webkit-padding-end: 22px !important;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='32' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 2px;
}
.frame-popup-center .content .text-area {
	height: auto;
	padding: 8px 8px;
	line-height: 18px;
	resize: none;
	resize: vertical;
}
.frame-popup-center .content .input-text.highlight,
.frame-popup-center .content .drop-box.highlight,
.frame-popup-center .content .text-area.highlight {
	border-color: #ff0000;
}
.frame-popup-center .content .input-text:not([readonly]):focus,
.frame-popup-center .content .drop-box:not([readonly]):focus,
.frame-popup-center .content .text-area:not([readonly]):focus {
	background-color: var(--form_element_focus_bgcolor);
	box-shadow: 0 0 0 2px var(--form_element_focus_border);
	border-color: var(--form_element_border);
}

.frame-popup-center .content .input-group .input-text {
	border-radius: 0;
}
.frame-popup-center .content .input-group .input-text:first-child {
	border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.frame-popup-center .content .input-group .input-text:last-child {
	border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.frame-popup-center .content .error {
	margin: 8px 0 10px;
}
.frame-popup-center .content .error.show {
	display: block;
}

.frame-popup-center .content.edit-user .username {
	width: 98%;
}
.frame-popup-center .content.edit-user .user-first-name {
	width: 98%;
}
.frame-popup-center .content.edit-user .user-last-name {
	width: 96%;
}
.frame-popup-center .content.edit-user .country-state {
	width: 98%;
}
.frame-popup-center .content.edit-user .dashboard {
	width: 98%;
}
.frame-popup-center .content.edit-user .user-role {
	width: 96%;
}

.frame-popup-center .content.edit-user .user-password {
	width: 96%;
}
.frame-popup-center .content.edit-user .user-status {
	width: 98%;
}
.frame-popup-center .content.change-password .old-password {
	width: 98%;
}
.frame-popup-center .content.change-password .new-password {
	width: 98%;
}
.frame-popup-center .content.change-password .confirm-password {
	width: 98%;
}

.frame-popup-center .content.edit-user .grant-row {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px dashed #dddddd;
    font-size: 0.9rem;
}
.frame-popup-center .content.edit-user .grant-row .grant-label {
	flex-basis: 25%;
	padding: 10px 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
.frame-popup-center .content.edit-user .grant-row .grant-values {
	flex-basis: 75%;
	display: flex;
	flex-wrap: wrap;
}
.frame-popup-center .content.edit-user .grant-row .grant-values .single-grant.full-w {
	flex-basis: 100%;
}
.frame-popup-center .content.edit-user .grant-row label {
	width: 150px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	cursor: pointer;
	position: relative;
	margin: 10px 0;
	margin-right: 30px;
}
.frame-popup-center .content.edit-user .grant-row .grant-values .single-grant.full-w label {
	width: 100%;
}
.frame-popup-center .content.edit-user .grant-row label input {
	appearance: none;
}
.frame-popup-center .content.edit-user .grant-row label input::before {
	position: absolute;
	top: 0;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
}
.frame-popup-center .content.edit-user .grant-row label input:checked::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.frame-popup-center .content.edit-user .grant-row label span {
	margin-left: 30px;
	height: 20px;
}

.frame-popup-center .content .merge-hint {
	line-height: 20px;
    font-size: 0.92em;
	margin-bottom: 1rem;
}
.frame-popup-center .content.edit-client .new-client {
	width: 100%;
}

.frame-popup-center .content.edit-delivery .register-date {
	width: 50%;
}
.frame-popup-center .content.edit-delivery .amount-currency {
	width: 50%;
}
.frame-popup-center .content.edit-delivery .airline {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .flight-num {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .flight-departure-date {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .airway-bill-no {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .destination-mark {
	width: 98%;
}

.frame-popup-center .content.edit-delivery .client-type {
	width: 60%;
}
.frame-popup-center .content.edit-delivery .client-business-name {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .client-personal-name {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .client-country {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .client-state {
	width: 68%;
}
.frame-popup-center .content.edit-delivery .client-address {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .client-phone {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .client-email {
	width: 98%;
}

.frame-popup-center .content.edit-delivery .item-desc {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .item-weight {
	width: 98%;
}
.frame-popup-center .content.edit-delivery .item-qty {
	width: 90%;
}
.frame-popup-center .content.edit-delivery .item-rate {
	width: 96%;
}
.frame-popup-center .content.edit-delivery .item-total {
	width: 90%;
}

.frame-popup-center .content.edit-delivery .extra-charges {
	width: 98%;
}

.frame-popup-center .content.edit-delivery .receipt-date {
	width: 50%;
}
.frame-popup-center .content.edit-delivery .amount-paid {
	width: 50%;
}
.frame-popup-center .content.edit-delivery .in-words {
	width: 98%;
	height: 70px;
}
.frame-popup-center .content.edit-delivery .extra-notes {
	width: 98%;
	height: 70px;
}

.frame-popup-center .content .record-state.hide {
	display: none;
}
.frame-popup-center .content .search-button {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 0.84rem;
    cursor: pointer;
    background-color: var(--form_search_btn_bg);
    border: 1px solid var(--form_search_btn_border);
    border-radius: 4px;
}
.frame-popup-center .content .search-wrapper {
	display: flex;
	gap: 0.5rem;
}
.frame-popup-center .content .suggestation-box {
	position: absolute;
	left: 0;
	top: 33px;
	width: 100%;
	max-height: 200px;
	background-color: #ffffff;
	outline: 1px solid #bbbbbb;
	box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	display: none;
}
.frame-popup-center .content .suggestation-box.show {
	display: inline-block;
}
.frame-popup-center .content .suggestation-box .fetching {
	padding: 10px 12px;
	display: flex;
	align-items: center;
	font-size: 13px;
}
.frame-popup-center .content .suggestation-box .fetching span {
	margin-left: 10px;
}
.frame-popup-center .content .suggestation-box .not-found {
	padding: 10px 12px;
	font-size: 13px;
}
.frame-popup-center .content .suggestation-box a {
	display: block;
	color: #666666;
	text-decoration: none;
	cursor: pointer;
}
.frame-popup-center .content .suggestation-box .suggest-option {
	padding: 8px 12px;
	font-size: 13px;
}
.frame-popup-center .content .suggestation-box a:nth-child(even) .suggest-option {
	background-color: rgba(233, 233, 233, 0.5);
}
.frame-popup-center .content .suggestation-box .suggest-option p {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.frame-popup-center .content .suggestation-box .suggest-option p span {
	font-weight: 600;
}
.frame-popup-center .content .suggestation-box .suggest-option p span::after {
	content: ' ';
}
.frame-popup-center .content .search-result {
	margin: 1rem 0 2rem;
    font-size: 13px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    display: none;
}
.frame-popup-center .content .search-result.show {
	display: block;
}
.frame-popup-center .content .search-result .result-row {
    padding: 0.4rem 0.6rem;
	display: flex;
	gap: 1rem;
}
.frame-popup-center .content .search-result .result-row:nth-child(even) {
	background-color: #f5f5f5;
}
.frame-popup-center .content .search-result .result-row .label {
	flex-basis: 6rem;
	color: #888888;
}


.frame-popup-center .content.settings .country-name {
	width: 98%;
}
.frame-popup-center .content.settings .country-phone-code {
	width: 60%;
}
.frame-popup-center .content.settings .city-name {
	width: 98%;
}

.frame-popup-center .content.settings .airline {
	width: 98%;
}
.frame-popup-center .content.settings .status {
	width: 60%;
}
.frame-popup-center .content.settings .input-file.company-logo + label span {
    width: 240px;
}
.frame-popup-center .content.settings .base-currency {
	width: 60%;
}
.frame-popup-center .content.settings .dvrynum-prefix {
	width: 47%;
}
.frame-popup-center .content.settings .dvrynum-serial {
	width: 94%;
}
.frame-popup-center .content.settings .leading-zeros {
	width: 94%;
}
.frame-popup-center .content.settings .dvrynum-suffix {
	width: 47%;
}
.frame-popup-center .content.settings .pdf-phone {
	width: 98%;
}
.frame-popup-center .content.settings .pdf-email {
	width: 98%;
}
.frame-popup-center .content.settings .pdf-address {
	width: 98%;
	height: 80px;
}
.frame-popup-center .content.settings .pdf-footer-text {
	width: 98%;
	height: 80px;
}

.frame-popup-center .group-checkboxes {
	display: flex;
	background-color: #ffffff;
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	overflow: hidden;
}
.frame-popup-center .group-checkboxes label {
	cursor: pointer;
	display: flex;
}
.frame-popup-center .group-checkboxes .icon {
	width: 2rem;
	height: 31px;
	line-height: 31px;
	text-align: center;
	color: #777777;
	background-color: #ffffff;
}
.frame-popup-center .group-checkboxes .text {
	height: 30px;
	line-height: 30px;
	text-align: center;
	padding: 0 0.8rem;
	font-size: 0.9rem;
	color: #777777;
	background-color: #ffffff;
}
.frame-popup-center .group-checkboxes input:checked ~ .icon, 
.frame-popup-center .group-checkboxes input:checked ~ .text {
	background-color: var(--group_checkbox_bg);
}
.frame-popup-center .group-checkboxes label input {
	appearance: none;
}

.frame-popup-center .content.swap-client .input-text, 
.frame-popup-center .content.swap-client .drop-box, 
.frame-popup-center .content.swap-client .text-area {
    width: 100%;
}

.frame-popup-center .content.swap-client .client-search-by {
	width: 40%;
}
.frame-popup-center .content.swap-client .client-search-input {
	width: 60%;
}

.frame-popup-center .content .frame-row.button-bar {
	margin: 10px 0 0;
	padding-top: 20px;
	display: flex;
}
.frame-popup-center .content .frame-row.after-content {
	display: block;
	width: 100%;
	border-top: 1px solid #c5c5c5;
}
.frame-popup-center .content .frame-row .btn-submit {
	padding: 6px 30px;
	font-size: 0.95em;
	border-radius: 4px;
	cursor: pointer;
	color: #ffffff;
	background-color: var(--popup_submit_btn_bg);
	border: 1px solid var(--popup_submit_btn_bg);
}
.frame-popup-center .content .frame-row .btn-submit:focus {
    box-shadow: 0 0 0 2px #ffffff, 0 0 1px 3px var(--popup_submit_btn_bg);
}
.frame-popup-center .content .frame-row .btn-submit:disabled {
	background-color: #cfcfcf;
    border-color: #bdbdbd;
    color: #444444;
	opacity: 0.5;
	cursor: not-allowed;
}
.frame-popup-center .content .frame-row .btn-submit .loading {
	margin-left: 6px;
	font-size: 1.1em;
	display: none;
}
.frame-popup-center .content .frame-row .btn-submit .loading.show {
	display: inline-block;
}
.frame-popup-center .content .frame-row .btn-submit i {
	animation: spinner 1s linear infinite;
}




@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}