﻿:root {
	--primary: #ffdd33;
	--white: #ffffff;
	--white-80: rgba(255, 255, 255, 0.8);
	--white-40: rgba(255, 255, 255, 0.4);
	--white-10: rgba(255, 255, 255, 0.1);
	--white-6: rgba(255, 255, 255, 0.06);
	--grey: #656565;
	--stroke: #333333;
	--dark-grey: #1c1c1e;
	--sidebar: #262728;
	--background: #202021;
	--black-40: rgba(0, 0, 0, 0.4);
	--red: #ff3333;
	--green: #33ff66;
	--title-1-font-family: Inter-SemiBold, sans-serif;
	--title-1-font-size: 32px;
	--title-1-line-height: 38px;
	--title-1-font-weight: 600;
	--title-1-font-style: normal;
	--headline-font-family: Inter-Medium, sans-serif;
	--headline-font-size: 18px;
	--headline-line-height: 24px;
	--headline-font-weight: 500;
	--body-medium-font-family: Inter-Medium, sans-serif;
	--body-medium-font-size: 16px;
	--body-medium-line-height: 22px;
	--body-medium-font-weight: 500;
	--body-medium-font-style: normal;
	--body-font-family: Inter-Regular, sans-serif;
	--body-font-size: 16px;
	--body-line-height: 22px;
	--body-font-weight: 400;
	--body-font-style: normal;
	--avatar-default-font-family: Rubik-Medium, sans-serif;
	--avatar-default-font-size: 26px;
	--avatar-default-line-height: 22px;
	--avatar-default-font-weight: 500;
	--avatar-default-font-style: normal;
	--tab-shadow-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
	--sidebar-shadow-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.4);
	--shadow-and-blur-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.12);
	--shadow-and-blur-backdrop-filter: blur(40px);
}

::-webkit-scrollbar {
	width: 0px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: transparent;
}

* {
	scrollbar-width: thin;
	scrollbar-color: rgba(0,0,0,0) transparent;
}

html {
	overflow-y: scroll;
	font-size: 14px;
	background: #202021;
	font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
}

body {
	background: transparent;
}

a {
	text-decoration: none !important;
}

.main-content {
	position: relative;
	flex: 1;
}

.home-block-container {
	display: flex;
	text-align: center;
	color: var(--grey);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.home-block-container [name="information-circle-outline"] {
	flex-shrink: 0;
	width: 192px;
	height: 192px;
	position: relative;
	overflow: visible;
}

.home-block-container .icon-arrow-svg {
	transform: translate(-129.49px, 0px);
}

.abs {
	position: absolute;
}

.flex {
	flex: 1;
}

.width {
	flex: none !important;
	width: 302px !important;
}

/*Style Login*/
.login-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.login-container .container-icon {
	display: flex;
	width: 90px;
	height: 90px;
	margin: auto;
	border-radius: 15px;
	background: var(--black-40);
	justify-content: center;
	align-items: center;
	animation: swing 2s infinite alternate ease-in-out;
	color: var(--white-10);
	font-size: 50px;
	margin-bottom: 30px;
}

.login-container .main-login .header-login-container h1 {
	width: 350px;
	color: var(--white);
	font-size: 30px;
	line-height: 1.75rem;
	font-weight: var(--title-1-font-weight);
}

.login-container .main-login .header-login-container p {
	color: var(--white-40);
	margin-bottom: 20px;
}

.login-container .main-login .new-row {
	margin-bottom: 15px;
}

.login-container .main-login .new-row span {
	color: var(--white-40);
}

.login-container .main-login .new-row .field {
	margin-top: 5px;
}

.login-container .main-login .new-row input {
	width: 100%;
	height: 40px;
	border-radius: 8px;
	background: var(--sidebar);
	border: none;
	outline: none;
	color: var(--white);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	padding: 4px 15px;
}

.login-container .main-login .new-row input::placeholder {
	color: var(--grey);
}

.login-container .main-login button {
	background: var(--primary);
	color: #000;
	border: none;
	width: 100%;
	height: 40px;
	margin-top: 20px;
	border-radius: 8px;
	opacity: 1;
	transition: all .3s;
}

.login-container .main-login button:hover {
	opacity: .7;
}
/*Style Login*/

/*Style Profile*/
.main-container .sidebar .user-profile {
	padding: 0px 4px 0px 4px;
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: center;
	justify-content: flex-start;
	align-self: stretch;
	flex-shrink: 0;
	position: relative;
}

.main-container .sidebar .user-profile .user-avatar {
	background: #ffdd33;
	border-radius: 50%;
	display: flex;
	padding: 2px 0 0 1.5px;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: relative;
}

.main-container .sidebar .user-profile .user-avatar #avatar-name {
	font-family: var(--avatar-default-font-family);
	font-size: var(--avatar-default-font-size);
	line-height: var(--avatar-default-line-height);
	font-weight: var(--avatar-default-font-weight);
}

.main-container .sidebar .user-profile .user-name {
	color: var(--white);
	font-family: var(--headline-font-family);
	font-size: var(--headline-font-size);
	line-height: var(--headline-line-height);
	font-weight: var(--headline-font-weight);
}

.main-container .sidebar .user-profile .user-role {
	color: var(--white-40);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: var(--body-font-weight);
}

.main-container .sidebar .user-profile [name="play"],
.main-container .sidebar .user-profile [name="radio-button-on"] {
	margin-left: auto;
	color: var(--primary);
	font-size: 26px;
	opacity: 1;
	transition: all .3s;
	cursor: pointer;
}

.main-container .sidebar .user-profile [name="radio-button-on"] {
	color: var(--red);
}

.main-container .sidebar .user-profile [name="play"]:hover,
.main-container .sidebar .user-profile [name="radio-button-on"]:hover {
	opacity: .6;
}
/*Style Profile*/

/*Style Body*/
.body-container {
	color: var(--grey);
	padding: 60px 71px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.body-container h1 {
	color: var(--white);
	text-align: left;
	font-family: var(--title-1-font-family);
	font-size: var(--title-1-font-size);
	line-height: var(--title-1-line-height);
	letter-spacing: var(--title-1-letter-spacing);
	font-weight: var(--title-1-font-weight);
}

.body-container .header-container {
	display: flex;
	gap: 20px;
	align-self: stretch;
	position: relative;
}

.body-container .block-btn {
	background: var(--sidebar);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--stroke);
	border-width: 1px;
	display: flex;
	gap: 2px;
}

.body-container .block-btn button {
	background: transparent;
	border: none;
	margin: 2px;
	padding: 7px 14px;
	align-items: center;
	justify-content: center;
	width: 200px;
	color: var(--white-40);
	font-size: var(--body-font-size);
	font-family: var(--body-font-family);
	line-height: var(--body-line-height);
}

.body-container .block-btn button.active {
	background: var(--white-6);
	border-radius: 8px;
	border-style: solid;
	border-color: var(--white-6);
	border-width: 1px;
	box-shadow: var(--tab-shadow-box-shadow);
	color: var(--white);
}

.body-container .right-side {
	display: flex;
	gap: 20px;
	align-items: center;
	flex: 1;
}

.body-container .search-wrapper {
	background: var(--dark-grey);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--stroke);
	border-width: 1px;
	padding: 8px 14px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
}

.body-container .search-wrapper ion-icon {
	width: 20px;
	height: 20px;
	color: var(--white);
}

.body-container .search-wrapper input {
	border: none;
	outline: none;
	width: 100%;
	background: transparent;
	color: var(--white-40);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
}

.body-container .right-side .btn-create {
	background: var(--primary);
	border-radius: 10px;
	border: none;
	padding: 10px 14px;
	display: flex;
	gap: 8px;
	align-items: center;
	color: var(--background);
	font-family: var(--body-medium-font-family);
	position: relative;
	transition: background 0.25s ease;
}

.body-container .right-side .btn-create:hover {
	background: #bea526;
}

.body-container .right-side .btn-create [name="add-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	aspect-ratio: 1;
}

.body-container .right-side .btn-create span {
	color: var(--background);
	font-size: var(--body-medium-font-size);
	font-weight: var(--body-medium-font-weight);
}

.body-container table {
	width: 100%;
	border-radius: 10px;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #333;
	background: #1c1c1e;
	overflow: hidden;
	color: #fff;
	font-family: "Inter", sans-serif;
}

.body-container table thead th {
	background: #262728;
	color: rgba(255,255,255,.4);
	padding: 10px 14px;
	border-bottom: 1px solid #333;
	text-align: left;
	font-weight: 400;
	font-size: var(--body-font-size);
}

.body-container table td {
	padding: 10px 14px;
	border-bottom: 1px solid #333;
	vertical-align: middle;
	font-size: var(--body-font-size);
	cursor: pointer;
}

.body-container table .row-flex {
	display: flex;
	align-items: center;
	gap: 10px;
}

.body-container table .avatar-client,
.body-container table .avatar-employee {
	width: 25px;
	height: 25px;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-family: "Rubik", sans-serif;
}

.body-container table .avatar-client {
	background: #eff0f2;
	color: #1c1c1e;
}

.body-container table .avatar-employee {
	background: #ffdd33;
	color: #000;
}

.body-container table [name="ellipsis-horizontal"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
	color: var(--grey);
}

.body-container .btn-back {
	display: flex;
	gap: 10px;
	align-items: center;
	cursor: pointer;
}

.body-container .btn-back [name="chevron-back-outline"] {
	width: 30px;
	height: 30px;
	color: var(--white);
}

.body-container .btn-back span {
	color: var(--white);
	font-family: var(--title-1-font-family);
	font-size: var(--title-1-font-size);
	line-height: var(--title-1-line-height);
	font-weight: var(--title-1-font-weight);
}

.body-container table .actions-start {
	background: var(--primary);
	text-align: center;
	border-radius: 8px;
	padding: 3px 0;
	color: var(--bs-body-color);
	transition: .3s;
	opacity: .9;
	cursor: pointer;
}

.body-container table .actions-stop {
	background: var(--red);
	text-align: center;
	border-radius: 8px;
	padding: 3px 0;
	color: var(--white);
	transition: .3s;
	opacity: .9;
	cursor: pointer;
}

.body-container table .actions-stop:hover {
	opacity: .6;
}

.body-container .select-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.body-container .select-block span {
	color: var(--white);
	font-family: var(--body-medium-font-family);
	line-height: var(--body-medium-line-height);
}

.body-container .select-block .choice-container {
	display: flex;
	gap: 20px;
}

.body-container .select-block .choice-container .btn-choice {
	background: var(--dark-grey);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--stroke);
	border-width: 1px;
	padding: 16px;
	display: flex;
	gap: 10px;
	align-items: center;
	width: 419px;
	cursor: pointer;
	text-align: left;
}

.body-container .select-block .choice-container .btn-choice.active {
	border-style: solid;
	border-color: var(--primary);
	border-width: 1px;
}

.body-container .select-block .choice-container .btn-choice ion-icon {
	color: var(--white);
	flex-shrink: 0;
	width: 60px;
	height: 60px;
}

.body-container .select-block .choice-container .btn-choice .choice {
	border-radius: 50%;
	border-style: solid;
	border-color: var(--stroke);
	border-width: 1px;
	padding: 4px;
	width: 20px;
	height: 20px;
}

.body-container .select-block .choice-container .btn-choice.active > .choice {
	border-style: solid;
	border-color: var(--primary);
	border-width: 1px;
}

.body-container .select-block .choice-container .btn-choice.active > .choice .ellipse {
	background: var(--primary);
	border-radius: 50%;
	width: 10px;
	height: 10px;
}

.body-container .select-block .choice-container .btn-choice .choice-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
}

.body-container .select-block .choice-container .btn-choice .choice-info .title {
	color: var(--white);
}

.body-container .select-block .choice-container .btn-choice .choice-info .description {
	color: var(--white-40);
}

.body-container form .new-row {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: flex-start;
	justify-content: flex-start;
	align-self: stretch;
	margin-bottom: 30px;
}

.body-container form .new-row .field-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 419px;
}

.body-container form .new-row .field-block span,
.body-container form .new-row .custom-select span {
	color: var(--white-80);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
}

.body-container form .new-row .field-block .field {
	background: var(--dark-grey);
	border-radius: 10px;
	border: 1px solid var(--stroke);
	padding: 8px 14px;
	display: flex;
}

.body-container form .new-row .field-block .field input {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	color: var(--white);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
}

.body-container form .new-row .field-block .field textarea {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	color: var(--white);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
}

.body-container form .new-row .field-block .field input::placeholder {
	color: var(--white-40);
}

.body-container form .new-row .field-block .field .datetime-input.empty::-webkit-datetime-edit {
	color: var(--white-40);
}

.body-container form .new-row .field-block .field .datetime-input.filled::-webkit-datetime-edit {
	color: var(--white);
}

.body-container form .new-row .field-block .field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
	filter: invert(0.5);
	opacity: 0.6;
}

.body-container .custom-select {
	position: relative;
	width: 419px;
	font-family: "Inter", sans-serif;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.body-container .select-display {
	background: #1c1c1e;
	border: 1px solid #333;
	border-radius: 10px;
	padding: 9px 14px;
	display: flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
	color: var(--white-40);
}

.body-container .select-display span {
	color: var(--white-40) !important;
}

.body-container .select-display .selected {
	color: var(--white) !important;
}

.body-container .select-display .icon,
.body-container .select-display .icon-open {
	width: 22px;
	height: 22px;
	pointer-events: none;
	position: absolute;
	right: 14px;
	transition: 0.25s;
}

.body-container .select-display .icon-open {
	transform: rotate(180deg);
}

.body-container .select-dropdown {
	top: calc(100% + 6px);
	width: 100%;
	background: #1c1c1e;
	border: 1px solid #333;
	border-radius: 10px;
	padding: 0px;
	list-style: none;
	margin: 0;
	overflow: hidden;
}

.body-container .select-dropdown li {
	padding: 10px 14px;
	margin: 0;
	color: white;
	cursor: pointer;
	transition: 0.15s;
	display: flex;
	gap: 8px;
	align-items: center;
}

.body-container .select-dropdown li:hover {
	background: var(--white-10);
}

.body-container .custom-select .avatar-client,
.body-container .custom-select .avatar-employee {
	width: 25px;
	height: 25px;
	border-radius: 6px;
	display: flex;
	padding-top: 3px;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-family: "Rubik", sans-serif;
}

.body-container .custom-select .avatar-client {
	background: #eff0f2;
	color: #1c1c1e;
}

.body-container .avatar-employee {
	background: #ffdd33;
	color: #000;
}

.body-container .select-dropdown li .phone {
	color: var(--white-40);
	margin-left: auto;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: var(--body-font-weight);
}

.body-container .select-dropdown li .type {
	color: var(--white-40);
	margin-left: auto;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: var(--body-font-weight);
}

.body-container .select-dropdown .search-list {
	background: var(--dark-grey);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--stroke);
	border-width: 1px;
	padding: 8px 14px;
	margin: 10px 10px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
	align-self: stretch;
	flex-shrink: 0;
	position: relative;
}

.body-container .select-dropdown .search-list [name="search-outline"] {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
	overflow: visible;
	aspect-ratio: 1;
}

.body-container .select-dropdown .search-list input {
	border: none;
	outline: none;
	background: transparent;
	width: 100%;
	color: var(--white);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
}

.body-container .select-dropdown .search-list input::placeholder {
	color: var(--white-40);
}

.body-container form .separator {
	margin-top: -1px;
	border-style: solid;
	border-color: var(--stroke);
	border-width: 1px 0 0 0;
	align-self: stretch;
	flex-shrink: 0;
	height: 0px;
	position: relative;
	margin-bottom: 30px;
}

.body-container form .lower-block-btn {
	display: flex;
	gap: 10px;
}

.body-container form .lower-block-btn .btn-cancel {
	background: var(--white-6);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--white-10);
	border-width: 1px;
	padding: 8px 14px 8px 14px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	justify-content: center;
	flex: 1;
	position: relative;
	transition: 0.25s;
}

.body-container form .lower-block-btn .btn-cancel:hover {
	background: rgb(100 100 100 / 6%);
}

.body-container form .btn-cancel span {
	color: var(--white);
	font-family: var(--body-medium-font-family);
	font-size: var(--body-medium-font-size);
	line-height: var(--body-medium-line-height);
	font-weight: var(--body-medium-font-weight);
}

.body-container .lower-block-btn .btn-submit {
	background: var(--primary);
	border-radius: 10px;
	opacity: 1;
	padding: 8px 14px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	justify-content: center;
	flex: 1;
	border: none;
	transition: 0.25s;
}

.body-container .lower-block-btn .btn-submit:hover {
	background: #bea526;
}

.body-container .lower-block-btn .btn-submit span {
	color: var(--background);
	text-align: left;
	font-family: var(--body-medium-font-family);
	font-size: var(--body-medium-font-size);
	line-height: var(--body-medium-line-height);
	font-weight: var(--body-medium-font-weight);
}

.body-container .lower-block-btn .btn-submit.inactive {
	opacity: 0.6;
}

.body-container .right-side .btn-actions {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
	position: relative;
	margin-left: auto;
	margin-right: 0;
}

.body-container .right-side .btn-actions .btn-give {
	background: var(--white-6);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--white-10);
	border-width: 1px;
	padding: 8px 14px;
	display: flex;
	gap: 8px;
	align-items: center;
	transition: background 0.25s ease;
	height: 44px;
}

.body-container .right-side .btn-actions .btn-give:hover {
	background: var(--white-4);
}

.body-container .right-side .btn-actions .btn-give [name="swap-horizontal-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	aspect-ratio: 1;
	color: var(--white);
}

.body-container .right-side .btn-actions .btn-give span {
	color: var(--white);
	font-family: var(--body-medium-font-family);
	font-size: var(--body-medium-font-size);
	line-height: var(--body-medium-line-height);
	font-weight: var(--body-medium-font-weight);
}

.body-container .item-container {
	flex: 1;
	border-style: solid;
	border-color: var(--stroke);
	border-width: 0px 0px 1px 0px;
	padding: 0px 0px 16px 0px;
	display: flex;
	flex-direction: row;
	gap: 16px;
	align-items: center;
	justify-content: flex-start;
	align-self: stretch;
	flex-shrink: 0;
	position: relative;
	margin-bottom: 15px;
}

.body-container .item-container .item-steppers {
	background: var(--white-10);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--white-6);
	border-width: 1px;
	padding: 4px 10px 4px 10px;
	display: flex;
	flex-direction: row;
	gap: 6px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: 38px;
	position: relative;
}

.body-container .item-container .item-steppers [name="remove-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	color: var(--white);
	cursor: pointer;
}

.body-container .item-container .item-steppers .item-count {
	color: var(--white-40);
	text-align: left;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: var(--body-font-weight);
}

.body-container .item-container .item-steppers .item-count.highlight {
	color: var(--primary);
}

.body-container .item-container .item-steppers [name="add-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	color: var(--white);
	cursor: pointer;
}

.body-container .item-container .item-name,
.body-container .item-container .item-quantity {
	color: var(--white);
	text-align: left;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: var(--body-font-weight);
	position: relative;
}

.body-container .item-container .item-quantity {
	color: var(--white-40);
}

.body-container .item-container .item-steppers .input-wrapper,
.steppers .input-wrapper {
	position: relative;
	display: inline-block;
}

.body-container .item-container .item-steppers .mirror,
.steppers .mirror {
	visibility: hidden;
	position: absolute;
	white-space: pre;
	font: inherit;
	padding: 2px 6px;
}

.body-container .item-container .item-steppers .item-count,
.steppers .item-count {
	text-align: center;
	font: inherit;
	padding: 2px 6px;
	min-width: 20px;
	box-sizing: content-box;
	background: transparent;
	border: none;
	outline: none;
	text-align: center !important;
}

.body-container .item-container .item-steppers input[type=number]::-webkit-outer-spin-button,
.body-container .item-container .item-steppers input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.body-container .item-container .item-steppers input[type=number] {
	-moz-appearance: textfield;
}

.body-container .btn-show {
	background: var(--white-6);
	border-radius: 6px;
	border-style: solid;
	border-color: var(--white-10);
	border-width: 1px;
	padding: 2px 5px;
	display: flex;
	align-items: center;
	transition: background 0.25s ease;
	color: var(--white);
}

.body-container .btn-show:hover {
	background: var(--white-4);
}

.body-container .btn-generate {
	background: var(--primary);
	border-radius: 10px;
	border: none;
	padding: 8px 14px;
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
	color: var(--background);
	font-family: var(--body-medium-font-family);
	position: relative;
	transition: background 0.25s ease;
	opacity: .8;
}

.body-container .btn-generate:hover {
	background: rgb(190, 165, 38);
}
	
.btn-generate [name="shuffle-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	cursor: pointer;
}

.inventory-container .btn-add-inventory {
	background: var(--white-6);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--white-10);
	border-width: 1px;
	padding: 8px 14px 8px 14px;
	margin-bottom: 30px;
	display: flex;
	flex-direction: row;
	color: var(--white);
	gap: 8px;
	align-items: center;
	justify-content: center;
	flex: 1;
	position: relative;
	cursor: pointer;
	transition: 0.25s;
}

.inventory-container .btn-add-inventory [name="add-outline"] {
	font-size: 25px;
}

.inventory-container .btn-add-inventory:hover {
	background: rgb(100 100 100 / 6%);
}

.inventory-container .title {
	margin-bottom: 8px;
	color: var(--white-80);
}

.inventory-container .main {
    display: flex;
    align-items: start;
    gap: 10px;
	margin-bottom: 30px;
}

.inventory-container .steppers {
	background: var(--white-10, rgba(255, 255, 255, 0.1));
	border-radius: 10px;
	border-style: solid;
	border-color: var(--white-6, rgba(255, 255, 255, 0.06));
	border-width: 1px;
	padding: 4px 10px 4px 10px;
	display: flex;
	flex-direction: row;
	gap: 6px;
	height: 40px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.inventory-container .steppers [name="remove-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	color: var(--white);
	cursor: pointer;
}

.inventory-container .steppers .item-count {
	color: var(--white-40);
	text-align: left;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: var(--body-font-weight);
}

.inventory-container .steppers .item-count.highlight {
	color: var(--primary) !important;
}

.inventory-container .steppers [name="add-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	color: var(--white);
	cursor: pointer;
}

.inventory-container .steppers input[type=number]::-webkit-outer-spin-button,
.inventory-container .steppers input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.inventory-container .steppers input[type=number] {
	-moz-appearance: textfield;
}

.inventory-container .btn-item-del {
	display: flex;
	background: var(--white-6);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--white-10);
	border-width: 1px;
	align-items: center;
	padding: 0 6px;
	height: 40px;
	color: var(--white);
	cursor: pointer;
	transition: 0.25s;
}

.inventory-container .btn-item-del [name="close-outline"] {
	font-size: 29px;
}

.inventory-container .btn-item-del:hover {
	background: rgb(100 100 100 / 6%);
}

.status-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	--sf-indicator-size: 8px;
	--sf-indicator-green: #0bbf0b;
	--sf-indicator-red: #c51b1b;
	--sf-indicator-orange: #db8719;
	margin: 10px;
}

.status-indicator .status-dot {
	width: var(--sf-indicator-size);
	height: var(--sf-indicator-size);
	border-radius: 50%;
	position: relative;
}

.status-indicator .status-dot::before,
.status-indicator .status-dot::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: sf-indicator-pulse 2s infinite linear;
	opacity: 0.3;
}

.status-indicator .status-dot::after {
	animation-delay: 1s;
}

@keyframes sf-indicator-pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}

	100% {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}

.status-green {
	background-color: var(--sf-indicator-green);
}

.status-red {
	background-color: var(--sf-indicator-red);
}
/*Style Body*/

/*Drop menu style*/
.dropdown-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: transparent;
}

.dropdown-menu {
	position: fixed;
	background: var(--white-10);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--white-10);
	border-width: 1px;
	padding: 0;
	display: block;
	overflow: hidden;
	backdrop-filter: var(--shadow-and-blur-backdrop-filter);
	z-index: 999;
}

.dropdown-item {
	border-style: solid;
	border-color: var(--white-6, rgba(255, 255, 255, 0.06));
	border-width: 0px 0px 1px 0px;
	padding: 8px 14px 8px 14px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
	align-self: stretch;
	flex-shrink: 0;
	cursor: pointer;
	transition: background 0.25s ease;
}

.dropdown-item:hover {
	background: var(--white-10);
}

.dropdown-item [name="create"], [name="trash"] {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
	overflow: visible;
	aspect-ratio: 1;
}

.dropdown-item [name="create"] {
	color: var(--white);
}

.dropdown-item span {
	color: var(--white);
	text-align: left;
	font-family: var(--body-font-family);
}

.dropdown-item.danger {
	color: var(--red);
	border: none;
}

.dropdown-item.danger span {
	color: var(--red);
}
/*Drop menu style*/

/*Style for the modal window*/
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	overflow-y: auto;
}

.modal-overlay .modal-content {
	width: 400px;
	background: var(--white-10);
	border-radius: 20px;
	border-style: solid;
	border-color: var(--white-6);
	border-width: 1px;
	padding: 40px;
	flex-direction: column;
	box-shadow: var(--shadow-and-blur-box-shadow);
	backdrop-filter: var(--shadow-and-blur-backdrop-filter);
	overflow-y: auto;
}

.modal-overlay .modal-content h1 {
	color: var(--white);
	text-align: center;
	font-family: var(--title-1-font-family);
	letter-spacing: var(--title-1-letter-spacing);
	font-weight: var(--title-1-font-weight);
}

.modal-overlay .modal-content h2 {
	color: var(--white);
	text-align: left;
	font-family: var(--title-1-font-family);
	font-size: 26px;
	letter-spacing: var(--title-1-letter-spacing);
	font-weight: var(--title-1-font-weight);
	margin-bottom: 20px;
}

.modal-overlay .modal-content p {
	color: var(--white-40);
	text-align: center;
	font-family: var(--body-font-family);
	line-height: var(--body-line-height);
	padding-bottom: 5px;
}

.modal-overlay .modal-content .modal-info {
	border-style: solid;
	border-color: var(--white-10);
	border-width: 1px;
	border-radius: 10px;
	padding: 15px 20px;
	margin-bottom: 10px;
}

.modal-overlay .modal-content .modal-info p {
	text-align: left;
	margin: 0;
	padding: 0;
}

.modal-overlay .modal-content .modal-info span {
	color: var(--white);
	font-size: 17px;
	text-align: left;
}

.modal-overlay .modal-content .modal-btn {
	display: flex;
	gap: 16px;
}

.modal-overlay .modal-content .modal-btn .close-modal-delete {
	background: var(--white-6);
	border-radius: 10px;
	border-style: solid;
	color: var(--white);
	border-color: var(--white-10);
	border-width: 1px;
	padding: 8px 14px 8px 14px;
	justify-content: center;
	flex: 1;
	transition: background 0.25s ease;
}

.modal-overlay .modal-content .modal-btn .close-modal-delete:hover {
	background: rgb(100 100 100 / 6%);
}

.modal-overlay .modal-content .modal-btn .modal-delete-btn {
	background: var(--red);
	color: var(--white);
	border-radius: 10px;
	border: none;
	padding: 8px 14px 8px 14px;
	display: flex;
	justify-content: center;
	flex: 1;
	transition: background 0.25s ease;
}

.modal-overlay .modal-content .modal-btn .modal-delete-btn:hover {
	background: #c32121;
}

.modal-overlay .modal-content .modal-btn .modal-action {
	background: var(--primary);
	color: var(--bs-body-color);
	border-radius: 10px;
	border: none;
	padding: 8px 14px 8px 14px;
	display: flex;
	justify-content: center;
	flex: 1;
	transition: all 0.25s;
	opacity: 1;
}

.modal-overlay .modal-content .modal-btn .modal-action:hover {
	opacity: .7;
}
/*Style for the modal window*/

/*Style Error*/
.error-message {
	color: var(--white-40);
	text-align: center;
	padding-bottom: 10px;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: var(--body-font-weight);
}

.error-message::after {
	content: "\a ☹️";
	color: var(--white);
}
/*Style Error*/

/*Style Notification*/
.notification-container {
	z-index: 999;
	background: var(--background);
	border-radius: 10px;
	border: 1px solid var(--stroke);
	padding: 16px;
	display: flex;
	gap: 16px;
	align-items: center;
	box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
	transform: translateX(100%);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.notification-container.show {
	transform: translateX(0);
	opacity: 1;
}

.notification-container .notification-main {
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: flex-start;
	justify-content: flex-start;
	flex: 1;
	position: relative;
}

.notification-container .notification-main [name="checkmark-circle-outline"],
.notification-container .notification-main [name="close-circle-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	aspect-ratio: 1;
}

.notification-container .error {
	color: var(--red);
}

.notification-container .no-error {
	color: var(--green);
}

.notification-container .notification-main span {
	color: var(--white);
}

.notification-container [name="close-outline"] {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	overflow: visible;
	aspect-ratio: 1;
	color: var(--white-40);
	cursor: pointer;
}
/*Style Notification*/

/*Style 404*/
.page-container-404 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	text-align: center;
}

.page-container-404 .main-content .container-icon {
	display: flex;
	width: 120px;
	height: 120px;
	margin: auto;
	border-radius: 15px;
	background: var(--black-40);
	justify-content: center;
	align-items: center;
	animation: swing 2s infinite alternate ease-in-out;
	color: var(--white-10);
	font-size: 50px;
	margin-bottom: 30px;
}

.page-container-404 .main-content h1 {
	color: var(--white);
}

.page-container-404 .main-content p {
	color: var(--white-40);
	margin-bottom: 30px;
}

.page-container-404 .main-content a {
	border-radius: 10px;
	border: none;
	padding: 10px 20px;
	background: var(--white);
	color: var(--background);
	transition: all 0.3s ease;
}

.page-container-404 .main-content a:hover {
	background: var(--white-40);
}

@keyframes swing {
	0% {
		transform: rotate(-5deg);
	}

	50% {
		transform: rotate(5deg);
	}

	100% {
		transform: rotate(-5deg);
	}
}
/*Style 404*/

/*Style Toast*/
.toast-container {
	display: flex;
	justify-content: center;
	width: 350px;
	bottom: 24px;
}

.toast-error {
	width: 300px;
	padding: 10px 0 10px 14px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	background: #171717;
	color: #fafafa;
	border: 1px solid #262626;
	border-radius: 10px;
	transform: translateY(calc(var(--index) * -10px));
	z-index: calc(100 - var(--index));
	animation: toast-in 0.25s ease;
}

.toast-error [name="close-circle-outline"] {
	font-size: 18px;
	color: var(--red);
}

@keyframes toast-in {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*Style Toast*/

/*Media*/
@media (min-width: 1200px) {
	.body-container table tr:last-child td {
		border-bottom: none !important;
	}

	.notification-container {
		position: absolute;
		max-width: 310px;
		top: 0;
		right: 0;
		margin: 16px;
	}
}
@media (max-width: 1200px) {
	.main-container .sidebar .user-profile {
		padding: 15px;
		background: var(--sidebar);
		border-radius: 15px;
	}

	.main-content {
		width: 100%;
		padding: 0 20px;
	}

	.body-container {
		padding: 0;
		margin-top: 10px;
		gap: 10px;
	}

	.body-container .block-btn button {
		flex: 1;
	}

	.body-container .header-container {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.body-container .right-side {
		flex-direction: column;
		gap: 10px;
		align-items: stretch;
	}

	.body-container .right-side .btn-create {
		order: 1;
		width: 100%;
		justify-content: center;
	}

	.body-container .right-side .search-wrapper {
		order: 2;
		width: 100%;
	}

	.width {
		flex: 1 !important;
		width: 100% !important;
	}

	.body-container .select-dropdown {
		position: relative;
	}

	.body-container .right-side .btn-actions {
		display: block;
		margin-left: 0;
	}

	.body-container .right-side .btn-actions .btn-create {
		margin-top: 10px;
	}

	.body-container table {
		background: transparent;
		border: none;
	}

	.body-container tr {
		border: 1px solid var(--stroke);
	}

	.body-container table thead {
		display: none;
	}

	.body-container table tr {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"itemname actions"
			"client actions"
			"clienttype clienttype"
			"address address"
			"area area"
			"date date"
			"status status"
			"employee employee";
		background: var(--white-6);
		border-radius: 10px;
		overflow: hidden;
		margin-bottom: 12px;
	}

	.body-container table td {
		padding: 16px;
	}

	.body-container table .client {
		grid-area: client;
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.body-container table .itemname {
		grid-area: itemname;
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.body-container table .client span {
		margin-top: -19px;
	}

	.body-container table .phone {
		grid-area: client;
		color: rgba(255,255,255,.4);
		margin-left: 50px;
		margin-top: 20px;
	}

	.body-container table .quantity {
		grid-area: itemname;
		color: rgba(255,255,255,.4);
		margin-top: 20px;
		border: none;
	}

	.body-container table .actions {
		grid-area: actions;
		display: flex;
		justify-content: flex-end;
		align-items: flex-start;
		margin-top: 8px;
	}

	.body-container table .actions .actions-stop,
	.body-container table .actions .actions-start{
		padding: 3px 10px;
	}

	.body-container table .clienttype {
		grid-area: clienttype;
		display: flex;
		justify-content: space-between;
	}

	.body-container table .clienttype::before {
		content: attr(data-label);
		color: rgba(255,255,255,.4);
	}

	.body-container table .address {
		grid-area: address;
		display: flex;
		justify-content: space-between;
	}

	.body-container table .address::before {
		content: attr(data-label);
		color: rgba(255,255,255,.4);
	}

	.body-container table .area {
		grid-area: area;
		display: flex;
		justify-content: space-between;
	}

	.body-container table .area::before {
		content: attr(data-label);
		color: rgba(255,255,255,.4);
	}

	.body-container table .datetime {
		grid-area: date;
		display: flex;
		justify-content: space-between;
	}

	.body-container table .datetime::before {
		content: attr(data-label);
		color: rgba(255,255,255,.4);
	}

	.body-container table .status {
		grid-area: status;
		display: flex;
		justify-content: space-between;
	}

	.body-container table .status::before {
		content: attr(data-label);
		color: rgba(255,255,255,.4);
	}

	.body-container table .employee {
		grid-area: employee;
		display: flex;
		justify-content: space-between;
		border-bottom: none !important;
	}

	.body-container table .employee::before {
		content: attr(data-label);
		color: rgba(255,255,255,.4);
	}

	.body-container table .avatar-client {
		width: 40px;
		height: 40px;
		border-radius: 50%;
	}

	.avatar-s {
		width: 40px !important;
		height: 40px !important;
		border-radius: 50% !important;
	}

	.body-container table [name="ellipsis-horizontal"] {
		border-radius: 50%;
		border: 2px solid var(--grey);
		padding: 2px
	}

	.body-container .select-block .choice-container {
		display: grid;
		gap: 10px;
	}

	.body-container .select-block .choice-container button {
		width: 100% !important;
	}

	.body-container form .new-row {
		display: block;
		margin-bottom: 0;
	}

	.body-container .custom-select {
		width: 100%;
		margin-bottom: 15px;
	}

	.body-container form .new-row .field-block {
		width: 100%;
		margin-bottom: 15px;
	}

	.body-container form .separator {
		margin-top: 35px;
	}

	.notification-container {
		position: fixed;
		max-width: 100%;
		right: 20px;
		left: 20px;
	}

	.toast-container {
		bottom: 0;
	}

	body.modal-overlay {
		overflow: hidden;
	}

	.modal-overlay .modal-content {
		max-height: 73vh;
	}
}
/*Media*/