/*------------------- ANIMATIONS ----------------*/
@keyframes horizontal-shaking {
	0% {
		transform: translateX(0)
	}
	25% {
		transform: translateX(2px)
	}
	50% {
		transform: translateX(-2px)
	}
	75% {
		transform: translateX(2px)
	}
	100% {
		transform: translateX(0)
	}
}

@keyframes ghostload {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -200% 0;
	}
}

/*-----------------SHORT CLASSES--------------*/
.gray-text{
	color: lightslategray;
}
.number-display {
	font-family: monospace;
}
.collapsed{
	height: 0px;
	overflow: hidden;
	display: none !important;
}
.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.gap20 {
	gap: 20px;
}

.gap10 {
	gap: 10px;
}

.gap5 {
	gap: 5px;
}

.j-between {
	justify-content: space-between;
}

.j-center {
	justify-content: center;
}

.j-end {
	justify-content: flex-end;
}

.a-center {
	align-items: center;
}
.a-top {
	align-items: start;
}

.padding20 {
	padding: 20px;
}

.padding15 {
	padding: 15px;
}
.padding10 {
	padding: 10px;
}

.padding5 {
	padding: 10px;
}
.paddingLR20{
	padding-left: 20px;
	padding-right: 20px;
}
.paddingLR10{
	padding-left: 10px;
	padding-right: 10px;
}
.paddingLR15{
	padding-left: 15px;
	padding-right: 15px;
}
.paddingLR5{
	padding-left: 5px;
	padding-right: 5px;
}

.radius5 {
	border-radius: 5px !important;
}

.red-font {
	color: red;

}

.green-font {
	color: green;
}

.margin0 {
	margin: 0;
}

.box-shadow{
	box-shadow: 10px 10px 5px #8080800a;
}
@media only screen and (max-width: 440px){
	.mobile-flex-row {
		display: flex;
		flex-direction: row;
	}

	.mobile-flex-col {
		display: flex;
		flex-direction: column;
	}

	.mobile-flex-wrap {
		flex-wrap: wrap;
	}

	.mobile-gap20 {
		gap: 20px;
	}

	.mobile-gap10 {
		gap: 10px;
	}

	.mobile-gap5 {
		gap: 5px;
	}

	.mobile-j-between {
		justify-content: space-between;
	}

	.mobile-j-center {
		justify-content: center;
	}

	.mobile-j-end {
		justify-content: flex-end;
	}

	.mobile-a-center {
		align-items: center;
	}
	.mobile-a-top {
		align-items: start;
	}
}

/*------------------- BUTTONS ----------------*/
.btn-type-one {
	border: none;
	outline: none;
	padding: 5px 15px;
	border-radius: 5px !important;
	background: var(--menuColor);
	color: white;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-family: "Outfit", sans-serif;
}

.btn-type-one:disabled {
	background: var(--borderGray);
}

.btn-type-one.gray {
	background: var(--borderGray);
	color: var(--fontColor1);
}

.btn-type-one.gray:disabled {
	background: var(--borderGray);
}

.btn-type-two {
	border: none;
	outline: none;
	padding: 5px 25px;
	border-radius: 5px !important;
	background: var(--borderGray);
	color: var(--fontColor1);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 2rem;
	font-family: "Outfit", sans-serif;
}

.btn-type-two:disabled {
	background: var(--borderGray);
}

.btn-type-two.blue {
	background: var(--menuColor);
	color: white;
}
.btn-type-two.white {
	background:white;
	color: var(--fontColor1);
}

.btn-type-two.blue:disabled {
	background: var(--borderGray);
}

.text-only-btn {
	background: none;
	border: none;
	outline: none;
}

.text-only-btn:hover {
	color: var(--mainBlue);
}

.reset-login.btn-yellow>span{
	background-color: #ffb848;
}
/*------------------GHOST LOADING--------------*/

.ghost-loading {
	background: radial-gradient(
		circle,
		#FFFFFF 0%,
		#bdbdbd 100%
	);
	background-size: 200% auto;
	animation: ghostload 2s linear infinite;
	border: 1px solid var(--borderGray);
	height: 35.42px;
	border-radius: 5px !important;
}

/*---------------------scroll bar------------------*/
.oly-scroll::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0);
}

.oly-scroll::-webkit-scrollbar-thumb {
	background-color: var(--darkBlue);
	border-radius: 10px;
	width: 5px;
}

.oly-scroll > div:not(.ignore-width) {
	max-width: 95%;
}

.sortable {
	cursor: grab;
}

/*---------------------WARNINGS/ALERT------------------*/
.admin-alert-green, .admin-alert-red {
	position: absolute;
	z-index: 30000;
}

.admin-alert-green p, .admin-alert-red p {
	max-width: 300px;
}

.admin-alert-green p {
	background: var(--successGreen);
	border: 1px solid var(--successBorder);
	color: var(--successText);
	padding: 10px 30px 10px 30px;
	border-radius: 5px !important;
	font-weight: 600;
	font-size: 1.5rem;
	position: fixed;
	right: 20px;
	top: 120px;
	opacity: 1;
	transition: all 1s;
	z-index: 30000;
}

.admin-alert-red p {
	background: var(--warningRed);
	border: 1px solid var(--warningBorder);
	padding: 10px 30px 10px 30px;
	border-radius: 5px !important;
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--warningText);
	animation: horizontal-shaking .25s 2;
	position: fixed;
	right: 20px;
	top: 120px;
	opacity: 1;
	transition: all 1s;
	z-index: 30000;

}

.admin-alert-green.done p, .admin-alert-red.done p {
	opacity: 0;
}
@media only screen and (max-width: 440px){
	.admin-alert-green, .admin-alert-red{
		position: fixed;
		top: 0;
		height:0px;
		width: 100vw;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.admin-alert-green p, .admin-alert-red p{
		position: fixed;
		top: 10px;
		right: unset;
	}

}


/*---------------------------- INPUT ------------------------*/
.input-required {
	outline: 2px solid var(--warningBorder);
}

.custom-search-options li {
	list-style-type: none;
	cursor: pointer;
	margin: 0;
	padding: 5px 10px 5px 10px;
}

.custom-search-options li:hover {
	background-color: #d2d2d2;
	border-radius: 5px !important;
}
.select-option-unavailable{
	pointer-events: none;
	cursor: crosshair;
	opacity: .5;
}
.custom-search-options {
	position: absolute;
	background: white;
	width: 449px;
	margin-top: 33px;
	max-height: 180px;
	padding: 5px 10px 10px 10px;
	border-bottom-right-radius: 10px !important;
	border-bottom-left-radius: 10px !important;
	border: 1px solid #e1e1e1;
	overflow-y: scroll;
	z-index: 5;
}

.custom-search-options::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0);
}

.custom-search-options::-webkit-scrollbar-thumb {
	background-color: var(--darkBlue);
	border-radius: 10px;
	width: 5px;
}

.prevent-input-typing {
	caret-color: transparent;
}

.op-custom-input {
	border: 1px solid var(--borderGray);
	background: white;
	padding: 5px 10px;
	border-radius: 5px !important;
}
.op-custom-input:focus-visible{
	outline: none;
}

div .op-custom-input.required::after {
	content: "Input required";
	color: red;
	font-size: 12px;
	margin-left: 10px;
	display: inline-block;
}

/*---------------------------- MODAL ------------------------*/
.custom-modal-container {
	z-index: 30;
	position: fixed;
}

.custom-modal-background {
	position: fixed;
	background: rgba(128, 128, 128, 0.45);
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.custom-modal-body {
	background: white;
	border-radius: 20px !important;
}
.company-loading-modal{
	z-index: 20000;
	position: fixed;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	background: #ffffff57;
	backdrop-filter: blur(2px);
}
.company-loading-modal svg{
	height: 150px;
	width: 150px;
}
.company-loading-modal #spinner{
	animation: step-spin 1.5s ease-in-out infinite;
}

@keyframes step-spin {
	30%{
		transform: rotate(0deg);
	}
	99%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(360deg);
	}

}

.user-alerts-modal{
	z-index: 1000;
	position: fixed;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	background: #ffffff57;
	backdrop-filter: blur(2px);
}

.user-alerts-modal img {
	width: 100%;
	min-height: 400px;
	object-fit: cover;
}
.alert-container{
	position: relative;
	background: #2d435f;
	background: var(--darkBlue);
	color: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 5px 5px 20px #00000042;
	width: 600px;
}
.user-alerts-modal p:not(:has(img)):not(:empty) {
	padding: 20px 40px;
	margin: 0;
}

/* here you can put your own css to customize and override the theme */
a span.label {
	text-decoration: none;
}

.actions a {
	margin-left: 10px;
}

.modal .portlet.box .row {
	margin: 0;
}

div #where_to_drop {
	width: 50% !important;
}

.ui-autocomplete-loading {
	background: url('/assets/img/loading-spinner-blue.gif') no-repeat right center
}

.page-header-fixed .search-wrapper {
	/*padding-top: 18px;*/
}

.nav > li > a {
	text-transform: capitalize;
	color: white;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
}

.nav > li > a:hover, .nav > li > a:focus {
	background-color: var(--toggleBlue);
}

.dropdown svg {
	margin-left: 5px;
	transition: all .3s ease;
}

.dropdown.open .fa-angle-down {
	transform: rotate(180deg);

}

.dropdown-menu {
	background-color: white;
	border: 1px solid #c5c5c5;
	border-top: none;
	transition: all .3s ease;
}

.dropdown.dropdown-user.open > .dropdown-menu {
	opacity: 1;
	transform: translateY(0px);
	transition: all .3s ease;
	animation: slideDown 0.3s ease forwards;
}

.dropdown-notification > .dropdown-menu, .user-profile > .dropdown-menu {
	padding: 20px;
}

.dropdown-menu > .account-number > h4 {
	font-size: 15px;
	margin: 10px 0 0 0;
}

.dropdown-menu > .user {
	margin-bottom: 20px;
}

.dropdown-menu > .dropdown-item > a {
	color: var(--fontColor1);
}

.dropdown-menu > .dropdown-item > a > svg {
	margin: 0 5px 0 0;
}

.dropdown-menu > .dropdown-item > a:hover {
	text-decoration: none;
}

.dropdown-menu > .account-number > p {
	padding: 0;
	margin: 0;
}

.dropdown-notification > .dropdown-menu li > a {
	padding: 0;
}

.important-phone-numbers {
	padding: 20px 20px 0 20px;
}

.contact-container {
	margin-bottom: 20px;
	color: #04242c;
}

.contact-container h4 {
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: 16px;
}

.contact-container p {
	margin: 0;
	padding: 0;
	color: black;
}

.contact-number {
	font-weight: 600;
	color: #0c4e95 !important;
	font-size: 1.5rem;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
	background-color: rgba(255, 255, 255, 0);
}

.page-sidebar-menu.page-sidebar-menu-closed > li > a > span > .fa-arrow-down {
	display: none;
}

.actions > .btn-group > .green.btn {
	background-color: rgba(255, 255, 255, 0);
}

.svg-inline--fa.fa-w-6 {
	width: 18px;
}

.row > .sw-theme-arrows {
	border: none;
}

.row.filter-bar {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.breadcrumb {
	border-radius: 5px !important;
}

#smartwizard > .nav {
	border-bottom: none;
}

#codeigniter_profiler {
	display: none;
}


/*----------------------CUSTOM SIDEBAR MODIFICATIONS--------------------*/
.page-sidebar .page-sidebar-menu > li.active > a {
	border: none;
	border-radius: 5px !important;
}

.page-sidebar .page-sidebar-menu > li > a {
	border: none;
}

.page-sidebar .page-sidebar-menu > li {
	padding: 0 5px 5px 5px;
}

.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li {
	padding: 0
}

.page-sidebar .page-sidebar-menu > li.open > a {
	border-radius: 5px !important;
}

/*---------------------CUSTOM CREAM BUILDER----------------------*/
#custom-cream-builder > .modal-dialog {
	display: flex;
	justify-content: center;
	width: 60vw;
}

#custom-cream-builder .modal-content {
	border-radius: 10px !important;
	width: 870px;
}

#custom-cream-builder ul {
	list-style: none;
}

#custom-cream-builder .modal-body {
	padding: 0 30px 10px 30px;
	color: var(--fontColor1);
}

#custom-cream-builder .form-group {
	margin-bottom: 8px;
}

.cream-builder-visualizer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 370px;
	margin-bottom: 10px;
}

.cream-builder-visualizer > .ingredients-selector-container {
	width: 500px;
	height: 300px;
	min-width: 350px;
	display: flex;
	flex-direction: column;
}

.ingredient-selector > div {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 500px;
	align-items: center;
}

.ingredients-selector-container > .ingredient-selector > div > .select2-container .select2-selection {
	width: 120px;
	border: none;
	background-color: var(--mainBlue);
	border-radius: 5px !important;
}

.cream-builder-visualizer > .chart-container {
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.custom-cream-chart {
	width: 100% !important;
	z-index: 3;
}

#custom-cream-builder label {
	font-weight: 700;
	margin: 0;
}

.input-group .ingredient-amount-options {
	width: 120px;

}

.ingredient-selector input[type="number"] {
	width: 120px;
	margin-right: 5px;
}

.ingredient-selector #grams_amount {
	border: none;
	font-size: 3rem;
	font-weight: 700;
}

#grams_amount.search-input-custom {
	width: 70px;
	margin: 0;
	padding: 6px 0 6px 0;
	cursor: pointer;
}

.cream-builder-button-container {
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
}

.cream-builder-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: none;
	border: none;
	height: 25px;
	width: 25px;
	margin-right: 5px;
	transition: all .25s;
}

.cream-builder-button:hover {
	background-color: #d9d9d9;
	border-radius: 50% !important;
}

.cream-builder-button i {
	font-size: 20px;
}

.amount-selector {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.chart-container .chart-concentration-summary {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.chart-container .chart-concentration-summary h4,
.chart-container .chart-concentration-summary h2 {
	margin: 0;
}

.chart-container .chart-concentration-summary h2 {
	font-weight: 700;
}

.cream-builder-alert {
	position: absolute;
	padding: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
}

.cream-builder-alert p {
	background: #ffc1c1;
	border: 1px solid #f7afaf;
	padding: 10px 30px 10px 30px;
	border-radius: 5px !important;
	font-weight: 600;
	font-size: 1.5rem;
	color: #8f0000;
	animation: horizontal-shaking .25s 2
}

.application-summary-container {
	border-top: 1px solid #dcdcdc;
	padding: 10px 0 0 0;
}

.section-header {
	margin-bottom: 10px;
	font-weight: 400;
}

.application-summary {
	display: flex;
	flex-direction: row;
	gap: 10px;
	/*background: rgb(232, 232, 232);*/
	align-items: center;
	padding: 10px;
	border-radius: 5px !important;
	margin-bottom: 10px;
}

.application-summary input {
	font-size: 1.5rem;
	font-weight: 800;
	padding: 0;
	text-align: center;
	border: none;
	cursor: pointer;
	height: 22px;
	bottom: 1px;
	border-radius: 5px !important;
}

.application-summary p {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
}

.application-summary .custom-search-options {
	margin-top: 21px;
	overflow-x: hidden;
	max-height: fit-content;
}

.application-summary .custom-search-options li {
	width: fit-content;
}

.application-summary-container .days-of-use-container {
	display: flex;
	gap: 10px;
	flex-direction: row;
	position: absolute;
	right: 40px;
}

.select-container-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: space-between;
}

#containerType_options li {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	margin-bottom: 5px;
	align-items: center;
}

#containerType_options li p {
	margin: 0;
}

#containerType_options li .name {
	width: 80px;
	font-weight: 600;
}

#containerType_options li .price {
	text-align: right;
	width: 50px;
}

#containerType_options li .capacity {
	text-align: left;
	width: 50px;
	margin-left: -25px;
}

.fee-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 25px;
}

.fee-summary h4 {
	margin-left: 10px;
}

.patient-button-group {
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: center;
}

.patient-button-group .btn-group {
	display: flex;
	justify-content: center;
	align-items: center;
}

.patient-button-group .btn-group label {
	width: 150px;
	border-radius: 30px !important;
	transition: all .25s;
	scale: 1.01;
	box-shadow: 5px 5px 10px #00000024;
	color: rgba(21, 29, 40, 0.98);
	background: #dddddd;
	border: 1px solid #c3c3c3;
}

.patient-button-group .btn.btn-primary.active {
	background: var(--menuColor);
	scale: 1;
	box-shadow: none;
	color: white;
	border: none;
}

.products-selector-container {
	display: flex;
	flex-direction: row;
}

.products-selector-container .my-customs-container {
	width: 50%;
	margin-left: 20px;
	margin-bottom: 20px;
}

.products-selector-container .select2-container {
	width: 350px !important;
}

.products-selector-container textarea#des, .products-selector-container textarea#doc_note {
	width: 350px;
	max-width: 350px;
}

.my-customs-container {
	display: flex;
	flex-direction: column;
	align-items: center;

}

.my-customs-container .btn {
	background: var(--menuColor);
	color: white;
	margin-bottom: 10px;
	height: 28px;
	display: flex;
	align-items: center;
}

.user-custom-products-list {
	background: var(--backgroundGray);
	min-height: 20%;
	width: 80%;
	border: 1px solid var(--borderGray);
}

.user-custom-products-list header {
	display: flex;
	justify-content: center;
	background: white;
	border-bottom: 1px solid var(--borderGray);
	color: var(--fontColor1);
}

.base-selector-container {
	display: flex;
	justify-content: space-between;
}

.cream-base-selector {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.bud-summary-container {
	color: #d33f3f;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

/*-----------------------CUSTOM CREAM BUILDER SETTINGS PAGE----------------------*/

.custom-cream-builder-settings {
	border: 1px solid var(--borderGray);
	box-shadow: 10px 10px 20px #dddddd;
	border-radius: 10px !important;
	color: var(--fontColor1);
}

.custom-cream-builder-settings .settings-body {
	padding: 20px;
}

.custom-cream-builder-settings header h1 {
	margin-top: 0;
	background: var(--menuColor);
	color: white;
	font-size: 2.2rem;
	padding: 10px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.custom-cream-builder-settings #dfu_frequency, .custom-cream-builder-settings #dfu_route {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}

.custom-cream-builder-settings .click-to-edit {
	display: flex;
	flex-direction: row;
	background: var(--backgroundGray);
	padding: 5px;
	border-radius: 5px !important;
	font-size: 1.5rem;
	width: fit-content;
	scale: 1;
	transition: scale .1s
}

.custom-cream-builder-settings .click-to-edit:hover {
	scale: 1.01;
	box-shadow: 3px 3px 4px #00000012;
}

.custom-cream-builder-settings .click-to-edit input {
	border: none;
	transition: all .5s;
}

.custom-cream-builder-settings .edit-ingredient input {
	width: 90%;
}

.custom-cream-builder-settings .edit-base input {
	width: 70%;
}

.custom-cream-builder-settings .edit-ingredient .new-ingredient:hover {
	background: var(--backgroundGray);
	border-radius: 5px !important;
}

.custom-cream-builder-settings .edit-ingredient, .custom-cream-builder-settings .edit-base {
	width: 100%;
	background: white;
	border: 1px solid var(--borderGray);
	display: flex;
	justify-content: space-between;
}

.custom-cream-builder-settings input:hover {
	cursor: pointer;
	background: rgb(255, 255, 255);
	border-radius: 5px !important;
}

.custom-cream-builder-settings input:focus-visible {
	outline: 1px solid #858585;
}

.custom-cream-builder-settings .edit-base input:not([disabled]) {
	background: var(--backgroundGray);
	border-radius: 5px !important;
}

.custom-cream-builder-settings .edit-ingredient input:not([disabled]) {
	background: var(--backgroundGray);
	border-radius: 5px !important;
}

.custom-cream-builder-settings .edit-base input:focus-visible {
	border: none;
	background: var(--backgroundGray);
	outline: none;
	border-radius: 5px !important;
}

.custom-cream-builder-settings .click-to-edit p {
	padding: 0;
	margin: 0;
}

.custom-cream-builder-settings .click-to-edit button {
	background: none;
	border: none;
}

.custom-cream-builder-settings .add-button {
	background: var(--backgroundGray);
	outline: none;
	display: flex;
	height: 33px;
	width: 67px;
	gap: 5px;
	padding: 0 10px 0 10px;
	justify-content: center;
	align-items: center;
	border-radius: 20px !important;
	color: var(--fontColor1);
	transition: all .5s;
	background: #dedede;
	border: 1px solid var(--borderGray);
}

.custom-cream-builder-settings .add-button.save-button {
	background: var(--menuColor);
	color: white;
	border: none;
	outline: none;
}

.custom-cream-builder-settings .ingredients-display .add-ingredient-option:hover {
	background: #ffffff;
}

.custom-cream-builder-settings .add-button.save-button:hover {
	background: var(--mainBlue);
	border: none;
}

.custom-cream-builder-settings .add-button:hover {
	background: white;
	border: 1px solid var(--borderGray);
}

.custom-cream-builder-settings .cream-builder-settings-group {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.custom-cream-builder-settings .flex-row {
	display: flex;
	flex-direction: row;
}

.custom-cream-builder-settings .flex-col {
	display: flex;
	flex-direction: column;
}

.custom-cream-builder-settings .ingredients-display, .custom-cream-builder-settings .bases-display {
	background: var(--backgroundGray);
	border: 1px solid var(--borderGray);
	min-height: 500px;
	width: 50%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	border-radius: 10px !important;
}

.custom-cream-builder-settings #add-new-category {
	background: var(--menuColor);
	color: white;
	border-radius: 5px !important;
}

.custom-cream-builder-settings #add-new-category:hover {
	background: rgba(7, 106, 115, 0.83);
}

.custom-cream-builder-settings .ingredients-container::-webkit-scrollbar {
	width: 5px;
}

.custom-cream-builder-settings .ingredients-container::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0);
}

.custom-cream-builder-settings .ingredients-container::-webkit-scrollbar-thumb {
	background-color: var(--darkBlue);
	border-radius: 10px;
	width: 5px;
}

.bill-to-patient .item-add-cart,
.bill-to-patient .btn-add-cart {
	display: none;
}

.product-dfu-container .options-container .options-checkbox-container {
	height: 60vh;
	background: rgba(211, 211, 211, 0.21);
	padding: 5px;
	border-radius: 10px !important;
}

.product-dfu-container .dfu-frequency-options {
	height: 60vh;
	overflow-y: scroll;
}

.edit-dfu-button {
	width: 230px;
	background-color: var(--darkBlue);
	color: white;
	border-radius: 20px !important;
	text-align: center;
	cursor: pointer;
}

.edit-dfu-button::placeholder {
	color: white;
	font-weight: 500;
	letter-spacing: 2px;
	text-align: center;
}
.rx-address-form div{
	width: 400px;
}

.rx-address-form label{
	font-weight: 600;
	width: 350px;
	text-align: left;
}
.address-text-only{
	cursor: default;
	padding-left: 10px;
	width: 350px;
	border: none;
	border-bottom: 1px solid #d3d3d3;
	outline: none;
	font-size: 16px;
	height: 32px;
	margin-bottom: 20px;
}

/*----------------------- Documentation - API ----------------------*/
.api-container {
	display: flex;
	flex-direction: row;
	max-width: 1400px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 2rem;
	padding-left: 2rem;
	gap: 2rem;
	justify-content: center;
}

.api-container .api-content {
	width: 100%;
	max-width: 716px;
	display: flex;
	flex-direction: column;
}

.api-container .left-nav {
	width: 240px;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 10px;
	position: sticky;
	height: 100%;
	top: 80px;
}

.api-container .right-nav {
	width: 300px;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	display: none;
	flex-direction: column;
	align-content: center;
	flex-wrap: wrap;
	gap: 10px;
	position: sticky;
	top: 80px;
	height: 100%;
}

.api-container .api-content .api-footer-nav {
	display: flex;
	justify-content: space-between;
	padding-top: 3rem;
}

.api-content_on-page-nav .api-section table.api-table {
	WIDTH: 100%;
	table-layout: auto;
	text-align: start;
	margin-top: 2em;
	margin-bottom: 2em;
	font-size: .875em;
	border-collapse: collapse;
	overflow-x: auto;
	display: block;
	max-height: 600px;
}

.api-table td#label_values {
	min-width: 300px;
	/*white-space: nowrap;*/
}

table.api-table thead {
	position: relative;
	border-bottom: 1px solid #d4d4d8;
}

table.api-table tr {
	border-bottom: 1px solid #e4e4e7;
}

.api-table th {
	font-weight: 600;
	vertical-align: bottom;
	padding-bottom: 16px;
	font-size: 14px;
	min-width: 100px;
}

.api-table td {
	padding: 8px;
	font-size: 14px;
}

.api-table td#label_field {
	white-space: pre;
}

.api-container .section.on-page_container {
	padding: 2px 0 16px 0;
	margin-left: 2px;
}

.api-container .section.on-page_container .on-page_nav .on-page_nav-item {
	font-size: 14px;
	font-weight: 500;
}

.api-container .section.on-page_container .on-page_nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.api-container .section.on-page_container .on-page_nav .on-page_nav-item.tabbed {
	padding-left: 16px;
}

.api-container .right-nav h3 {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}

.api-container .section.getting-started,
.api-container .section.api-calls {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 8px;
}

.api-container .left-nav h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}

.on-page_nav-item .on-page_link.link,
.getting-started_container .getting-started_link.link {
	text-decoration: none;
	color: #3F3F46;
	font-size: 14px;
}

.api-container a.link:hover {
	color: #00A8B3;
	text-decoration: underline;
}

.api-container .api-content_on-page-nav li::marker {
	color: #D4D4D8;
}

.api-content .api-content_on-page-nav li {
	padding: 8px 0 8px 6px;
	font-size: 14px;
}

.api-content_on-page-nav p {
	LINE-HEIGHT: 24px;
	font-size: 14px;
}

.api-content .api-footer-nav a {
	text-decoration: none;
	color: #000;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 4px;
	font-weight: 500;
	padding: 8px 12px;
	border: 1px solid #E4E4E7;
	border-radius: 6px;
	transition: .2s background-color ease-in-out;
}

.api-content .api-footer-nav a:hover {
	background-color: #F4F4F5;
}

.api-content .api-footer-nav svg {
	width: 1.1rem;
	height: 1.1rem;
	display: flex;
}

.badge-get {
	color: #17c653;
	background-color: #eafff1;
	border-color: rgba(23, 198, 83, .2);
}

.api-badge {
	padding: 2px 4px;
	border-radius: 6px !important;
	font-weight: 600;
	font-family: monospace;
}

.api-badge.badge-post {
	background-color: #D4F5E7;
	color: #008060;
	border: 1px solid #008060;
}

.api-badge.badge-get {
	background-color: #EDECFF;
	color: #4b3df7;
	border: 1px solid #4b3df7;
}

.api-badge.badge-put {
	background-color: #F0F8AD;
	color: #6E752C;
	border: 1px solid #6E752C;
}

.api-badge.badge-del {
	background-color: #FEE9E8;
	color: #b92409;
	border: 1px solid #b92409;
}


.api-container .api-table code {
	border-radius: 6px !important;
	font-size: 100%;
	border: 1px solid #00A8B3;
	line-height: normal;
	font-weight: 500;
	display: inline-flex;
	width: max-content;
	background-color: #d5fcff;
	color: #00A8B3;
	padding: 4px 6px;
	box-shadow: unset;
	font-size: 14px;
}

.api-content pre {
	border-radius: 6px !important;
}

.api-content .page-header p {
	font-size: 14px;
}

@media (min-width: 1280px) {
	.api-container .right-nav {
		display: flex;
	}
}

.payment-form-container .op-custom-input{
	width: 250px;
}
/* --------------------------DASHBOARD--------------------------*/
.banner-carousel{
	width: 100%;
	display: -webkit-box;
	overflow: hidden;
	/*margin-bottom: 30px;*/
}
.banner-carousel .announcement-container {
	width: 100%;
	border-radius: 20px !important;
	overflow: hidden;
}
.banner-carousel .announcement-container figure{
	width: 100%;
}
.banner-carousel .announcement-container figure img{
	height: 100%;
	width: 100%;
	aspect-ratio: 16 / 3.5;
}
.banner-carousel-buttons{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 30px;
	gap: 10px;
}
.carousel-button{
	width: 5px;
	height: 5px;
	outline: none;
	border: none;
	background-color: var(--backgroundGray);
}
.carousel-button.selected{
	border: none;
	outline: none;
	background-color: var(--mainBlue);
}
#frm_announcement-edit .input-group{
	width: 100% !important;
}
.action-url-input{
	width: 100% !important;
}
.dashboard-page-container .update-announcements-container{
	border: 1px solid #b8b8b838;
	padding: 20px 19px 0 20px;
	margin-bottom: 30px;
	border-radius: 20px !important;
	color: white;
	background: var(--darkBlue);
}
.dashboard-page-container .update-announcements-container.policies{
	background: white;
	color: var(--darkBlue);
}
.update-announcements-container h3{
	font-size: 30px;
	font-weight: 700;
}
.dashboard-page-container .update-announcements-container .update-announcement{
	margin-bottom: 20px;
}
.dashboard-page-container .update-announcements-container p{
	margin: 0;
	font-size: 15px;
	font-weight: 100;
}

.dashboard-page-container .update-announcements-container h4{
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	color: white;
}
.dashboard-page-container .update-announcements-container.policies h4{
	color: var(--darkBlue);
}
.dashboard-page-container .update-announcements-container h3{
	margin: 0 0 13px 0;
	font-weight: 200;
	font-size: 20px;
	color: var(--darkBlue);
}
.update-announcement-btn {
	background: #ffffff;
	padding: 5px 20px;
	border-radius: 10px !important;
	font-size: 13px;
	text-align: center;
	width: 100%;
	font-weight: 600;
	color: var(--darkBlue);
	text-transform: capitalize;
	transition: .25s all;
}
.update-announcement-btn:focus, .update-announcement-btn:hover {
	color: var(--darkBlue);
	text-decoration: none;
	scale: 1.02;
}
.dashboard-tools-container{
	background: white;
	outline: 10px solid white;
	color: var(--darkBlue);
	position: sticky;
	top: 88px;
	z-index: 3;
	margin-top: -20px;
	margin-bottom: 10px;
}
.dashboard-tools-container label{
	font-weight: 600;
}
.dashboard-tools-container input[type="checkbox"]{
	font-weight: 600;
}
.dashboard-content-list .table-body{
	margin-bottom: 20px;
}
.dashboard-content-list .table-header {
	background: #ffffff;
	box-shadow: 10px 10px 20px #eeeeee;
	border: 1px solid #e0e0e0;
	padding: 5px;
	border-radius: 32px !important;
	margin-bottom: 10px;
}
.dashboard-content-list .table-header h3 {
	cursor: pointer;
}
.dashboard-content-list .table-header i {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px;
	border-radius: 40px;
	height: 20px;
	width: 20px;
	background: var(--darkBlue);
	margin-right: 3px;
	color: white;
}
.dashboard-content-list .content-container{
	border: 1px solid lightgrey;
	padding: 10px;
	width: 49.6%;
	background: #d3d3d300;
	box-shadow: 5px 5px 10px #e7e7e7;
}
.content-container.expired{
	color: lightgrey;
}
.content-container.expired img{
	opacity: .7;
}

.content-container.disabled{
	border-left: 5px solid #c2af3c;
}
.content-container.active{
	border-left: 5px solid #5fa25c;
}
.content-container.hide-expired, .content-container.hide-disabled, .content-container.hide-everyone{
	display: none;
}

.dashboard-content-list figure, .dashboard-content-list img{
	width: 100%;
}

.dashboard-content-list .display-content{
 	width: 100%;
}
.dashboard-section-headers{
	font-weight: 600;
	color: var(--darkBlue);
	margin: 5px;
}
.how-to-videos-container {
	display: -webkit-inline-box;
	overflow: hidden;
	width: 100%;
	margin-bottom: 30px;
	gap: 10px;
}
.how-to-videos-container .video-group{
	display: flex;
	width: 100%;
	gap: 10px;

	--offsetAmount: 0;
	transform: translateX(calc((var(--offsetAmount) * -100%) - (var(--offsetAmount) * 10px)));
	transition: all 1s;
}
.how-to-videos-container .video-container{
	width: 25%;
}
.how-to-videos-container .media{
	border-radius: 10px !important;
	margin-bottom: 10px;
}
.how-to-videos-container p{
	margin: 0 10px 0 10px;
}
.how-to-videos-container strong{
	color: var(--darkBlue);
	font-weight: 400;
}

/*Sidebar Revised*/
/*.sidebar-icon {*/
/*	width: 36px !important;*/
/*	height: 36px !important;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	!* fill: #8796a1; *!*/
/*	!* color: #8796a1; *!*/
/*	border-radius: 4px;*/
/*	!* flex-shrink: 0; *!*/
/*	padding: 0 8px;*/
/*	margin: 0 16px 0 8px;*/
/*	position: relative;*/
/*}*/

.sidebar-title_wrapper {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: space-between;
}

.sidebar-title_item {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #192024;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: block;
}

/*@media (min-width: 992px) {*/
/*	.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li .sidebar-title_wrapper {*/
/*		display: none !important;*/
/*	}*/
/*}*/

.page-sidebar .page-sidebar-menu .sidebar-title {
	display: flex !important;
	align-items: center;
}

/*.sidebar-title > svg {*/
/*	width: 36px !important;*/
/*	height: 36px !important;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	!*fill: #8796a1;*!*/
/*	!*color: #8796a1;*!*/
/*	border-radius: 4px;*/
/*	flex-shrink: 0;*/
/*	padding: 0 8px;*/
/*	margin: 0 16px 0 8px;*/
/*}*/

/*@media (min-width: 992px) {*/
/*	.page-sidebar-closed .page-sidebar {*/
/*		width: 69px !important;*/
/*		padding: 8px;*/
/*	}*/
/*}*/

/*@media (min-width: 992px) {*/
/*	.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed {*/
/*		width: unset !important;*/
/*	}*/
/*}*/

/* 9.16.24 Patient Team Forms */
.step-status__bar-container {
	background-color: #EBEBEB;
	border-radius: 8px !important;
	height: 6px;
	margin-bottom: 5px;
	width: 100%;
	overflow: hidden;
}

.progress--wrapper {
	display: flex;
	gap: 8px;
	width: 100%;
	justify-content: space-between;
	flex-direction: row;
}

.step--wrapper {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

.form--field__wrapper {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form--field__row {
	display: inline-flex;
	gap: 22px;
	width: 100%;
}

.form--field__row .form--field {
	width: inherit;
}

.form--field__label-wrapper {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	transition-duration: .2s;
	transition-property: all;
	transition-timing-function: ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 1;
	top: 4px;
	transform: translateY(.21428571428571427em);
	max-width: calc(100% - 1.8571428571428572em);
	left: calc(1rem + 1px);
}

.form--field__wrapper.filled .form--field__label-wrapper {
	transform: translateY(0);
	opacity: 1;
}

.form--field__wrapper.filled .form--field__input-wrapper {
	border-color: #d2d2d2;
}

.form--field__wrapper .form--field__input-wrapper:hover {
	border-color: #d2d2d2;
}

.form--field__label {
	font-size: 12px;
	color: #EBEBEB;
}

.form--field__label-text {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: block;
	color: #707070;
	font-size: 10px;
}


.form--field__input-wrapper {

	/*box-shadow: 0 0 0 1px #C93662;*/
	border-color: #EBEBEB;
	border-width: 1px;
	border-style: solid;
	border-radius: 6px !important;
	background-color: #fff;
	color: inherit;
	z-index: 0;
	transition-timing-function: ease-in-out;
	transition-property: all;
	transition-duration: .2s;
	cursor: text;
	position: relative;
}

.form--field__wrapper.filled .form--field__input-wrapper:has(.form--field__input:active),
.form--field__wrapper.filled .form--field__input-wrapper:has(.form--field__input:focus-within) {
	border-color: var(--mainBlue);
	/*box-shadow: 0 0 2px 1px #00a8b34d, 0 0 0 .25px var(--mainBlue);*/
	box-shadow: 0 0 0 1px var(--mainBlue);
}

.form--field__wrapper .form--field__input-wrapper:has(.form--field__input:active),
.form--field__wrapper .form--field__input-wrapper:has(.form--field__input:focus-within) {
	border-color: var(--mainBlue);
	/*box-shadow: 0 0 2px 1px #00a8b34d, 0 0 0 .25px var(--mainBlue);*/
	box-shadow: 0 0 0 1px var(--mainBlue);
}

.form--field__wrapper.error .form--field__input-wrapper {
	border-color: #C93662 !important;
	box-shadow: 0 0 0 1px #C93662 !important;
}

.form--field__input-wrapper .form--field__input {
	position: relative;
	width: 100%;
	padding: 7px 7px;
	-webkit-tap-highlight-color: transparent;
	letter-spacing: inherit;
	line-height: inherit;
	text-decoration: inherit;
	text-overflow: ellipsis;
	z-index: 1;
	outline: transparent solid 0;
	border-color: transparent;
	border-radius: inherit !important;
	transition: padding .1s ease-in-out;
}

/*.form--field__input-wrapper .form--field__input:focus-visible {*/
/*	border: unset;*/
/*	outline: unset;*/
/*}*/

.form--field__wrapper.filled .form--field__input-wrapper .form--field__input {
	padding-bottom: 2px !important;
	padding-top: 14px !important;
}

.form--field__label-text .red {
	color: #C93662;
}

.error-message {
	color: #C93662 !important;
	margin: unset;
}

.form--field__wrapper.error {
	color: #C93662;
}

.error {
	color: red;
}
/*New or Existing Options*/

.option--wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #00A8B3;
	border-radius: 6px !important;
	background-color: #00a8b30a;
	color: #00A8B3;
}

.options-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 22px;
}

.patient-form-options {
	display: flex;
	flex-direction: row;
}

/* Wesley Table */
.wesley-table__filter-wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.wesley-actions.left,
.wesley-actions.right {
	display: flex;
	gap: 8px;
	flex-direction: row;
	align-items: center;
}

.wesley-actions.left {
	width: 100%;
}


.wesley-table {
	width: 100%;
	font-size: 14px;
}

.wesley-table__wrapper {
	border-width: 1px;
	border-radius: 6px !important;
	border-color: rgb(228, 228, 231);
	border-style: solid;
}

.wesley-table__thead-tr {
	border-bottom: 1px solid;
	border-color: rgb(228, 228, 231);
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

th.wesley-table__tr-th {
	height: 40px;
	padding-left: .5rem;
	padding-right: .5rem;
	text-align: left;
	vertical-align: middle;
	font-weight: 600;
	color: hsl(240 3.8% 46.1%);
}

/* Wesley Table Footer & Nav */
.wesley-table__footer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
}

.wesley-table__footer .actions-right {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}


.wesley-table__footer .actions-right .per-page__action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.per-page__action button {
	outline: unset;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 8px;
	border-radius: 6px !important;
	border: 1px solid #ABB1BA;
	background: #fff;
}

.page-nav__arrows {
	display: flex;
	gap: 4px;
}

.page-nav__arrows button {
	outline: unset;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 8px;
	border-radius: 6px !important;
	border: 1px solid #ABB1BA;
	background: #fff;
}

.wesley-table__tbody-tr > td {
	padding: .5rem;
	vertical-align: middle;
}

.wesley-table__tbody-tr {
	border-bottom: 1px solid rgb(228, 228, 231);
}

.wesley-table__tbody-tr:last-child {
	border-bottom: unset;
}

.wesley-table__options-action {
	display: flex;
	height: 32px;
	width: 32px;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	border-radius: 6px !important;
	padding: 0;
	font-weight: 500;
	/*background-color: #F4F4F5;*/
	color: #000;
	outline: unset;
	border: unset;
}

svg.svg-icon {
	width: 16px;
	height: 16px;
}

.wesley-table__order-id {
	color: #3597D8;
	font-weight: 500;
}

.wesley-table__btn-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.wesley-table__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: unset;
	justify-content: center;
	height: 30px;
	white-space: nowrap;
	padding-left: .75rem;
	padding-right: .75rem;
	border-radius: 6px !important;
	/*border: 1px solid rgb(228, 228, 231);*/
	cursor: pointer;
}

.wesley-table__btn:hover {
	background-color: #efefef;
}

.dropdown-menu.right {
	right: 0;
	left: auto;
}

.dropdown-menu.left {
	left: 0;
	right: auto;
}

.dropdown-menu.right.wesley-dropdown {
	border-color: rgb(228, 228, 231);
	padding: 4px;
	margin-top: 6px;
	border: 1px solid rgb(228, 228, 231);
	border-radius: 6px !important;
	outline: unset;
	box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}

#wesley-dropdown-menu {
	cursor: auto;
}

.wesley-dropdown--menu-title {
	display: flex;
	justify-content: flex-start;
	font-weight: 500;
	padding: 6px 8px;
	color: #8C8D8F;
}

.wesley-dropdown--filter-item {
	padding: 8px;
	display: flex;
	justify-content: space-between;
	gap: 8px;
}

.wesley-dropdown--filter-item:last-child {
	margin-bottom: 8px;
}

.wesley-dropdown--separator {
	height: 1px;
	border-bottom: 1px solid #F4F4F5;
	margin-bottom: 4px;
}

.wesley-table__thead tr {
	background-color: #F9FAFB;
}

.wesley-table__tbody tr:nth-child(even) {
	background-color: #F9FAFB;
}

.wesley-dropdown .wesley-dropdown--menu-item {
	padding: 6px 8px;
	border-radius: 4px !important;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
	cursor: default;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.wesley-dropdown .wesley-dropdown--menu-item:hover {
	background-color: #F4F4F5;
}

wesley-dropdown--filter-item {
	padding: 8px;
}

.dropdown-toggle.wesley-table__options-action:hover {
	background-color: #F4F4F5;
}

.wesley-table__options-action.dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wesley-table__options-action.dropdown-toggle > .svg-icon {
	margin-left: unset;
}

.wesley--badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 8px !important;
	font-size: 12px;
	font-weight: 600;
	background-color: #F0F0F0;
	color: #616161;
	gap: 4px;
}

.wesley--badge.badge--toneSuccess {
	background-color: #D5EBFF;
	color: #003A5A;
}

.wesley--badge.badge--toneSuccess {
	background-color: #AFFEBF;
	color: #014B40;
}

.wesley--badge.badge--toneAttention {
	background-color: #FFEB78;
	color: #4F4700;
}

.wesley--badge.badge--toneWarning {
	background-color: #FFD6A4;
	color: #5E4200;
}

.wesley--badge.badge--toneCritical {
	background-color: #FED1D7;
	color: #8E0B21;
}

.input--wrapper {
	height: 40px;
	width: 100%;
	border: 1px solid #ABB1BA;
	border-radius: 6px !important;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 8px;
}

.button--wrapper {
	display: flex;
	height: 40px;
	border: 1px solid #ABB1BA;
	border-radius: 6px !important;
	align-items: center;
}

.button-item--wrapper {
	position: relative;
	padding: 0 16px;
	display: flex;
	height: 100%;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	cursor: pointer;
	font-size: 14px;
	user-select: none;
}

.button-item--wrapper .dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
}

.button-item--wrapper:not(:last-child) {
	border-right: 1px solid #ABB1BA;
}

.input--wrapper > input,
.input--wrapper > input:focus-visible {
	border: unset;
	outline: unset;
	width: 100%;
	height: 100%;
	font-size: 14px;
}

.input--wrapper > .svg-icon {
	height: 24px;
	width: 24px;
	fill: #ABB1BA;
}

.add-filter__action {
	padding: 4px;
	width: max-content;
	cursor: pointer;
}

.add-filter__action-wrapper {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--mainBlue);
	font-weight: 500;
	padding: 6px 8px;
	border-radius: 6px !important;
}

.filter-item-wrapper {
	display: flex;
	gap: 8px;
	justify-content: space-between;
	width: 100%;
	position: relative;
}

.filter-item-wrapper div.filter-item__option.disabled {
	background-color: #FBFBFB;
	color: #8C8D8F;
	border-color: #D4D4D6;
}

.filter-item-wrapper div.filter-item__option {
	height: 40px;
	border: 1px solid #ABB1BA;
	border-radius: 6px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	white-space: nowrap;
	padding: 6px 8px;
	cursor: pointer;
}

.filter-item-wrapper div.filter-item__option span {
	width: 120px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.wesley-dropdown--filter-item .remove-filter__option {
	display: flex;
	align-items: center;
}

.wesley-dropdown--filter-item .remove-filter__option svg {
	width: 20px;
	height: 20px;
	color: #8C8D8F;
	fill: #8C8D8F;
}

.wesley-dropdown--filter-item .remove-filter__option:hover svg {
	width: 20px;
	height: 20px;
	color: #000;
	fill: #000;
}


.checkbox-menu--wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Checkbox */
.Wes--Checkbox {
	align-items: flex-start;
	/*display: inline-flex;*/
	position: relative;
	width: 18px;
	height: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	cursor: pointer;
}

.Wes--Checkbox-input {
	cursor: pointer;
	flex-shrink: 0;
	height: 18px;
	margin-right: 10px;
	opacity: 0;
	width: 18px
}

.Wes--Checkbox--active .Checkbox-overlay {
	background: #00A8B3;
}

.Wes--Checkbox--active .Checkbox-overlay:after {
	border-color: #fff;
}

.Wes--Checkbox--center {
	align-items: center
}

.Wes--Checkbox--center .Checkbox-overlay {
	bottom: 0;
	margin: auto
}

.Wes--Checkbox--indeterminate .Checkbox-overlay {
	align-items: center;
	background: #fff;
	display: flex;
	justify-content: center
}

.Wes--Checkbox--indeterminate .Checkbox-overlay:after {
	background: #000;
	border: none;
	content: "";
	height: 2px;
	position: static;
	transform: rotate(0);
	width: 10px
}

.Wes--Checkbox:hover .Checkbox-overlay {
	border: 2px solid #00A8B3;
}

.Checkbox-overlay {
	background: #fff;
	border: 2px solid #8F9092;
	border-radius: 2px !important;
	height: 18px;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: background, border .2s ease-out;
	width: 18px
}

.Checkbox-overlay:after {
	background: transparent;
	border: solid transparent;
	border-width: 0 2px 2px 0;
	content: "";
	height: 9px;
	left: 5px;
	position: absolute;
	top: 2px;
	transform: rotate(45deg);
	transition: border-color .2s ease-out;
	width: 5px
}

.Wes--Checkbox-label {
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	text-overflow: ellipsis
}

/* Switch */
.section-content.SwitchContainer {
	margin-bottom: 16px;
}

.section-content.SwitchContainer label.SwitchLabelContainer {
	display: flex;
	user-select: none;
	margin-bottom: 16px;
	width: max-content;
}

.SwitchContainer .switch {
	position: relative;
	margin: unset;
	outline: 0;
	width: 2.5em;
	height: 1.5em;
	border: 2px solid #C4D5DF;
	border-radius: 1em !important;
	background: 0 0;
	background-color: #C4D5DF;
	background-size: 100%;
	background-image: none;
	background-position: center;
	background-repeat: no-repeat;
	transition: background .25s, border-color .25s;
	cursor: pointer;
	flex-shrink: 0;
}

.SwitchContainer label.checked .switch {
	background-color: var(--mainBlue);
	border-color: var(--mainBlue);
}

.SwitchContainer .switch:not(:last-child) {
	margin-right: 1em;
}

.SwitchContainer .indicator {
	position: absolute;
	width: calc(1.5em - 4px);
	height: calc(1.5em - 4px);
	border-radius: calc(.75em - 2px) !important;
	background: #fff;
	left: 0;
	transition: transform .25s;
}

.SwitchContainer label.checked .indicator {
	transform: translate(calc(2.5em - calc(1.5em - 4px) - 4px));
}

.SwitchContainer .toggle-label {
	display: flex;
	flex-direction: column;
}

.SwitchContainer label input.SwitchCheckbox {
	position: absolute;
	left: 0;
	opacity: 0;
	z-index: -1;
}

.SwitchContainer .toggle-label .SwitchLabel {
	font-weight: 600;
}

.SwitchContainer .toggle-label .SwitchDescription {
	font-weight: 400;
}

.SwitchContainer .SwitchLabel-FormContainer {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.SwitchContainer .SwitchLabelContainer .SwitchLabel-FormContainer .form--field__row {
	display: none;
}

.SwitchContainer .SwitchLabelContainer.checked .SwitchLabel-FormContainer .form--field__row {
	display: flex;
}

.SwitchContainer .SwitchLabelContainer.checked .SwitchLabel-FormContainer .form--field__row,
.SwitchContainer .SwitchLabelContainer .SwitchLabel-FormContainer .form--field__row {
	max-width: 300px;
	width: 300px;
	text-overflow: ellipsis;
}

/* Clipboard */
.clipboard-container {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.clipboard-container .clipboard-item {
	border: 1px solid #d2d2d2;
	border-radius: 6px !important;
	position: relative;
	min-width: 175px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: all .3s ease-in-out;
}

.clipboard-container .clipboard-item:hover {
	border-color: var(--mainBlue);
	box-shadow: 0 0 0 1px var(--mainBlue);
}

.clipboard-item .prescription_id,
.clipboard-item .script_filled,
.clipboard-item .vendor_order_id,
.clipboard-item .clipboard-order_id,
.clipboard-item .created_date,
.clipboard-item .order_status,
.clipboard-item .entered_by,
.clipboard-item .complete_by,
.clipboard-item .ship_date,
.clipboard-item .canceled_by,
.clipboard-item .canceled_date {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 2px 6px;
	position: relative;
	width: 100%;
}

.clipboard-item .columns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	padding: 0 6px;
	position: relative;
	width: 100%;
}

.clipboard-item .columns .clipboard-text {
	padding: 14px 0 0 0;
}

.clipboard-item .columns .clipboard-text:nth-child(n+3) {
	padding: 0 !important;
}

.clipboard-item .script_filled {
	margin-bottom: 0;
	margin-top: 4px;
	padding-top: 0;
	padding-bottom: 0;
}

button.clipboard_btn,
button.pharmacy_system_btn {
	outline: none;
	border: none;
	padding: 0;
	margin: 0;
	max-width: 32px;
	min-width: 32px;
	height: 32px;
	border-radius: 6px !important;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #076A73;
	color: #fff;
	fill: #fff;
	transition: background-color .3s ease-in-out;
}

button.clipboard_btn:hover,
button.pharmacy_system_btn:hover {
	background-color: #00A8B3;
}

span.clipboard-title {
	font-weight: 600;
	font-size: 10px;
	position: absolute;
	pointer-events: none;
	transition-duration: .2s;
	transition-property: all;
	transition-timing-function: ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 1;
	top: 4px;
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	left: calc(1rem + 1px);
	transform: translateY(0);
	opacity: 1;
}

span.clipboard-text {
	position: relative;
	width: 100%;
	padding: 7px 7px;
	-webkit-tap-highlight-color: transparent;
	letter-spacing: inherit;
	line-height: inherit;
	text-decoration: inherit;
	text-overflow: ellipsis;
	z-index: 1;
	outline: transparent solid 0;
	border-color: transparent;
	border-radius: inherit !important;
	transition: padding .1s ease-in-out;
	padding-bottom: 2px !important;
	padding-top: 14px !important;
	max-width: 120px;
	overflow: hidden;
}

span.clipboard-button {
	float: right;
	padding: 7px 7px;
	overflow: hidden;
	color: var(--menuColor);
}

span.clipboard-button.toggled {
	color: var(--toggleBlue);
}

.clipboard-item.full .clipboard-text {
	max-width: unset;
}

.disabled-ordering-notification{
	margin-bottom: 20px;
}

/* Horizontal Tabs */
.tabs--container {
	display: flex;
	height: max-content;
	gap: 16px;
	margin: 24px 32px;
}

.tabs--sidebar {
	width: 200px;
	background-color: #fff;
	padding: 8px 0;
	border-radius: 6px;
	border: 1px solid #E6E8E9;
	box-shadow: rgba(26, 26, 26, 0.07) 0px 1px 0px 0px;
	height: fit-content;
}

.tabs--sidebar ul,
.tabs--topbar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tabs--sidebar ul li,
.tabs--topbar ul li {
	padding: 10px;
	cursor: pointer;
	color: #1c2733;
	font-family: 'Nunito Sans';
	font-weight: 600;
	font-size: 14px;
}

.tabs--sidebar ul li {
	border-left: 3px solid transparent;
}

.tabs--sidebar ul li.active {
	background-color: #F3F3F3;
	border-left: 3px solid #00A8B3;
	font-weight: 700;
}

.tabs--sidebar ul li:hover {
	background-color: #F3F3F3;
}

.tabs--content {
	flex: 1;
	padding: 20px;
	background-color: #fff;
	border-radius: 6px;
	border: 1px solid #E6E8E9;
	box-shadow: rgba(26, 26, 26, 0.07) 0px 1px 0px 0px;
	height: fit-content;
}

.tab--content {
	display: none;
}

.tab--content.active {
	display: block;
}

.tab--content h2 {
	font-weight: 600;
	font-size: 22px;
	margin: 0;
	margin-bottom: 16px;
	font-family: 'Nunito Sans';
}

.tabs--container .separator hr {
	border-color: #E6E8E9;
	margin: 8px 0;
}

.tab--content ul {
	padding: 0;
}

.tab--content li {
	list-style: none;
	padding: 8px 0;
	border-bottom: 1px solid #E6E8E9;
	display: flex;
}

.tab--content li:last-child {
	border-bottom: unset;
}

.wes--badge.wes--badge-success {
	padding: 2px 6px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 10px;
	font-family: 'nunito sans';
	margin-left: 4px;
	text-transform: uppercase;
}

.wes--badge-success {
	background-color: #AFFEBF;
	color: #1B6652;
}

.tabs--topbar .tabs--topbar-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow-x: auto;
}

.tabs--topbar ul li.tab-link {
	white-space: nowrap;
	border-bottom: 3px solid transparent;
}

.tabs--topbar ul li.tab-link.active {
	white-space: nowrap;
	border-bottom: 3px solid #00A8B3;

}
.dashboard-header {
	padding: 10px;
	border: 1px solid var(--borderGray);
	border-radius: 10px !important;
	color: var(--darkBlue);
}
.dashboard-header > div {
	width: 100%;
	padding: 0px 20px;
	height: 50px;
}
.dashboard-header > div:not(:last-child) {
	border-right: 1px solid var(--borderGray);
}

.dashboard-header div b{
	font-weight: 600;
}
.status-card-container{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.status-card{
	border-radius: 10px !important;
	flex-basis: calc(25% - 8px);
	position: relative;
	overflow: hidden;
	transition: all 0.7s ease;
}
.status-card .gradient{
	position: absolute;
	height: 100%;
	width: 100%;
}
.status-card .content{
	padding: 20px;
	height: 100%;
	width: 100%;
}
.status-card h3{
	margin: 0;
	font-weight: 400;
}
.status-card .content{
	min-height: 250px;
	transition: all .7s ease;
}
.status-card .content p{
	font-size: 20px;
}
.status-card .content h4{
	font-size: 30px;
}
.status-card .content .percent-bar-container{

}
.status-card .content .percent-bar{
	height: 10px;
	width: 100%;
	background: #dbdbdb;
	border-radius: 20px !important;
	overflow: hidden;
}
.status-card .content .orders-container{
	height: 0;
	overflow: hidden;
}
.status-card .content .percent-bar .percent{
	height: 100%;
	background: black;
	border-radius: 20px !important;
}
.status-card.expanded .content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80vw;
	max-width: 1000px;
	height: 80vh;
	z-index: 100;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	background-color: white;
	transition: all 0.3s ease;
	border-radius: 10px;
	cursor: default;
}
.status-card.expanded .content p{
	font-size: 16px;
	margin-bottom: 0;
}
.status-card.expanded .content .orders-container{
	height: 80%;
	/*background: var(--backgroundGray);*/
	/*border: 1px solid var(--borderGray);*/
	overflow-y: auto;
	overflow-x: hidden;
	border-radius: 5px;
	padding: 10px 10px 10px 0;

}
.orders-container label{
	font-weight: 700;
	color: var(--darkBlue);
}

.status-card.expanded .content .orders-container .orders-container-row{
	border: 1px solid var(--borderGray);
	background: white;
	border-left: 5px solid gray;
	padding: 5px 20px;
	display: flex;
	justify-content: space-between;
	/*background: white;*/
	width: 100% !important;
	transition: all .5s ease;
	border-radius: 5px;
}

.status-card.expanded .content .orders-container .orders-container-row:hover{
	border-left: 5px solid var(--borderGray);
	scale: 1.01;
}

.status-card .toggle-status-card{
	z-index: 1;
	cursor: pointer;
}
.dashboard-header .date-picker-container #select-date{
	width: 20px;
	height: 30px;
	border: none;
}

#output-table .table > tbody > tr > th,
#output-table .table > tbody > tr > td {
	white-space: nowrap;
}

.modal-content .payment-container label.error {
	margin-bottom: 16px;
}

.modal-content .payment-container .form-group.error {
	margin-bottom: 8px;
}

table#confirmation_table tr th {
	padding: 0 8px;
	white-space: nowrap;
}

table#confirmation_table tr th:first-child,
table#confirmation_table tr td:first-child {
	padding-left: 0;
}

table#confirmation_table tr td {
	padding: 0 8px;
}
.rationale-modal-container {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	z-index: 9997;
	background: rgba(128, 128, 128, 0.64);
}

.rationale-modal-container .body {
	margin-top: 100px;
	width: 400px;
	background: white;
	padding: 20px;
	border-radius: 10px !important;
	box-shadow: 10px 9px 13px 0px rgb(0 0 0 / 25%);
}

.rationale-modal-container .body h3 {
	margin-top: 0;
}

.rationale-modal-container button,
#cancel_script .custom-checkbox,
#cancel_order .custom-checkbox {
	border: none;
	outline: none;
	padding: 5px 15px;
	border-radius: 5px !important;
}

.rationale-modal-container .accept-control-product {
	background: var(--menuColor);
	color: white;
}

.rationale-modal-container .custom-checkbox,
#cancel_script .custom-checkbox,
#cancel_order .custom-checkbox {
	height: 20px;
	min-width: 20px !important;
	margin-right: 10px;
	padding: 0;
	border: 1px solid gray;
}


.weather-delay-modal-container {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	z-index: 9997;
	background: rgba(128, 128, 128, 0.64);
}

.weather-delay-modal-container .body {
	margin-top: 100px;
	width: 400px;
	background: white;
	padding: 20px;
	border-radius: 10px !important;
	box-shadow: 10px 9px 13px 0px rgb(0 0 0 / 25%);
}

.weather-delay-modal-container .body h3 {
	margin-top: 0;
}

.weather-delay-modal-container button {
	border: none;
	outline: none;
	padding: 5px 15px;
	border-radius: 5px !important;
}

.weather-delay-modal-container .accept-weather-delay {
	background: var(--menuColor);
	color: white;
}

.weather-delay-modal-container .custom-checkbox {
	height: 20px;
	min-width: 20px !important;
	margin-right: 10px;
	padding: 0;
	border: 1px solid gray;
}

.table tbody tr.active td,
.table tbody tr.active th {
	background-color: #08c !important;
}

.modal-fullscreen{
	width: 100%;
	height: 100%;
	margin: 0;
	top: 0;
	left: 0;
}

.view-controls {
	display: flex;
	flex-direction: row;
	align-items: center;
	white-space: nowrap;
	margin: 0 16px;
	gap: 8px;
	justify-content: space-between;
}

.view_tech-controls {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.view-controls_left {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-direction: row;
}

.view-controls_right {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-direction: row;
}

@media (max-width: 1280px) {
	.view-controls {
		flex-direction: column;
	}
}

.assigned-technician-label label {
	font-weight: 600;
	font-size: 10px;
}

/* Printer Page */
.PrinterPage-Container {
	margin: 0 32px;
}

.PageHeader-Container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ActionBtn-Container {
	padding: 8px 16px;
	border: 1px solid #D2D2D2;
	border-radius: 6px;
	width: max-content;
	box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 0px -1px rgba(0, 0, 0, .1);
}

.PrinterActions {
	display: flex;
	gap: 8px;
}

.PrinterItem-Header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.PrinterItem {
	display: flex;
	flex-direction: column;
	padding: 32px;
	margin: 32px;
	border: 1px solid #D2D2D2;
	border-radius: 6px;
	box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
}

.PrinterItem-Header-Left {
	display: flex;
	gap: 16px;
	align-items: center;
}

.PrinterItem-Content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.PrinterItem-Section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 32px;
}

.PrinterItem-Content-Left {
	width: 100%;
}

.PrinterItem-Content-Right {
	width: 100%;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background-color: #FAFAFC;

}

.PrinterHost-Container,
.PrinterLocation-Container {
	display: flex;
	justify-content: space-between;
	padding: 12px;
	background-color: #FAFAFC;
	border-radius: 6px;
	color: #212B37;
}

.PrinterContent-Right span {
	font-weight: 700;
}

.PrinterItem-Badge-Container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding: 4px 12px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
}

.PrinterItem-Badge-Container.Success {
	background-color: #ECFDF6;
	color: #489070;
	fill: #489070;
}

.PrinterItem-Badge-Container.Fail {
	background-color: #fdecec;
	color: #d92d2d;
	fill: #d92d2d;
}

.PrintStatus-EmptyQueue span {
	color: #8D8D8D;
}

.PrinterName-Label {
	font-size: 18px;
	font-weight: 600;
	color: #212B37;
}

.ActionBtn-Label {
	font-weight: 600;
	/*font-size: 12px;*/
	color: #212B37;
}

.ActionBtn-Container a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: #212B37;
}

.PrintStatus-EmptyQueue div {
	color: #8D8D8D;
}

.PrinterContent-PrintStatus {
	width: 100%;
	margin: 16px;
}

.PrintStatus-PrintQueue {
	background-color: #F2F4F6;
	color: #212B37;
	padding: 12px;
	border-radius: 6px;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.ActionBtn-Container.disabled {
	border-color: #ebebeb;
}

.ActionBtn-Container.disabled a {
	color: #8D8D8D;
}

.ActionBtn-Container.disabled .ActionBtn-Label {
	color: #8D8D8D;
}

#edit-printer-form > .modal-body,
#test-printer-form > .modal-body,
#add-printer-form > .modal-body {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	width: 100%;
}

/* Print Sched */
/* Hours container */
.hours-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px 0;
}

/* Hours heading */
.hours-heading {
	font-size: 28px;
	font-weight: 500;
	color: #333333;
	margin-bottom: 40px;
}

/* Day row */
.day-row {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	flex-wrap: wrap;
	gap: 8px;
}

/* Day checkbox and label */
.day-checkbox {
	position: relative;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #cccccc;
	border-radius: 4px;
	outline: none;
	cursor: pointer;
}

.day-checkbox:checked {
	background-color: #4285f4;
	border-color: #4285f4;
}

.day-checkbox:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.day-label {
	width: 120px;
	font-size: 16px;
	color: #333333;
	font-weight: 400;
	margin-bottom: unset;
}

/* Time inputs */
.time-input {
	width: 250px;
	height: 48px;
	padding: 0 15px;
	font-size: 16px;
	color: #666666;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin: 0 10px;
}

.time-input:focus {
	outline: none;
	border-color: #4285f4;
	background-color: #ffffff;
}

/* Active time inputs (when day is checked) */
.time-input.active {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
}

/* To text */
.to-text {
	margin: 0 10px;
	font-size: 16px;
	color: #666666;
}

#smartwizard .nav-item .nav-link{
	height: fit-content;
	border-radius: 10px;
	padding: 5px;
}
#smartwizard .nav-item .nav-link:hover{
	background: var(--darkBlue);
	color: white;
}
#smartwizard .nav-item .nav-link:active:hover{
	background: var(--darkBlue);
	color: white;
}
#smartwizard > h3:first-child {
	/* Your styles here */
	margin: 0;
}
#smartwizard .nav{
	z-index: 30;
	background: white;
	margin-top: 10px;
	border-top: 10px solid white;
	border-bottom: 10px solid white;
}
#smartwizard .toolbar.toolbar-top{
	position: sticky;
	top: 100px;
}

#smartwizard .tab-content{
	height: fit-content!important;
}

.copy-pricing-container label{
	font-family: var(--Font1);
	margin: 0;

}
.printer-bot_page {
	background: white;
	height: 100vh;
	padding: 40px;
	box-sizing: border-box;
}

.totals-row {
	display: flex;
	justify-content: space-between;
	padding: 15px 20px;
	border-bottom: 1px solid #e9ecef;
	font-weight: 600;
}

/* Timeline Custom CSS */
.wes-timeline_container {
	max-width: 100%;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	background-color: #f5f5f5;
	margin: 20px 0;
}

.wes-timeline_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #e5e5e5;
}

.wes-timeline_title {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: #333;
}

.wes-timeline_toggle {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wes-timeline_checkbox {
	margin-right: 8px;
}

.wes-timeline_label {
	font-size: 14px;
	color: #555;
	margin-bottom: unset;
}

.wes-timeline_comment-form {
	display: flex;
	padding: 16px 20px;
	border-bottom: 1px solid #f5f5f5;
}

.wes-timeline_avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: var(--mainBlue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	flex-shrink: 0;
	z-index: 1;
	margin-left: 1px;
}

.wes-timeline_initials {
	color: white;
	font-size: 14px;
	font-weight: 500;
}

.wes-timeline_input-container {
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.wes-timeline_input {
	width: 100%;
	min-height: 36px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 14px;
	resize: none;
}

.wes-timeline_actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wes-timeline_attach-btn {
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	padding: 4px;
}

.wes-timeline_icon-attach:before {
	content: "📎";
}

.wes-timeline_post-btn {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 6px 12px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
}

.wes-timeline_post-btn:hover {
	background-color: #eee;
}

.wes-timeline_notice {
	padding: 8px 20px;
	font-size: 12px;
	color: #999;
	text-align: right;
	border-bottom: 1px solid #e5e5e5;
}

.wes-timeline_date-header {
	font-size: 12px;
	font-weight: 600;
	color: #999;
	padding: 16px 0 8px 44px;
	position: relative;
}

/* Update the timeline line styling to ensure it reaches the last dot */
.wes-timeline_events {
	padding: 0 20px;
	position: relative;
	background-color: #f5f5f5;
}

.wes-timeline_events > *:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #e5e5e5;
	z-index: 0;
}

.wes-timeline_events > *:last-child::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 0;
	bottom: 0;
	width: 2px;
	height: 20px;
	background-color: #e5e5e5;
	z-index: 0;
}

.wes-timeline_event {
	display: flex;
	align-items: flex-start;
	padding: 12px 0;
	position: relative;
	margin-left: 0;
}

/* Remove the individual line segments from events */
.wes-timeline_event:after {
	display: none;
}

.wes-timeline_event:last-child:after {
	display: none;
}

.wes-timeline_content {
	flex-grow: 1;
}

.wes-timeline_message {
	font-size: 14px;
	color: #333;
	margin-bottom: 4px;
}

.wes-timeline_time {
	font-size: 12px;
	color: #999;
}

.wes-timeline_event-dot {
	padding-left: 44px;
}

.wes-timeline_dot {
	position: absolute;
	left: 12px;
	top: 16px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--mainBlue);
	z-index: 1;
}

.wes-timeline_dot.new {
	background-color: inherit;

	&:before {
		content: "";
		position: relative;
		display: block;
		width: 250%;
		height: 250%;
		box-sizing: border-box;
		margin-left: -75%;
		margin-top: -75%;
		border-radius: 45px;
		background-color: inherit;
		animation: timelinePulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
	}

	&:after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 100%;
		height: 100%;
		background-color: inherit;
		border-radius: 50px;
		animation: timelineCircle 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
	}
}

@keyframes timelinePulse {
	0% {
		transform: scale(0.33);
	}
	80%,
	100% {
		opacity: 0;
	}
}

@keyframes timelineCircle {
	0% {
		transform: scale(0.8);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.8);
	}
}


.wes-timeline_dot.dot--cancel {
	background-color: #d14141;
}

.wes-timeline_dot.dot--delivered {
	background-color: #02b449;
}

.wes-timeline_dot.dot--refund {
	background-color: #02b449;
}

.wes-timeline_dot-light {
	background-color: #ccc;
}

.wes-timeline_user {
	color: #777;
}

.wes-timeline_event:hover {
	background-color: #fff;
	border-radius: 6px;
}

.wes-timeline_event:hover::before {
	content: unset;

}

div.dtsp-searchPanes {
	background-color: #f8fafc;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 16px;
	margin-bottom: 16px;
}

div.dtsp-searchPane {
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	margin: 8px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

div.dtsp-searchPane:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


div.dtsp-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1a202c;
	padding: 12px;
	background-color: #edf2f7;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}


div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody {
	max-height: 200px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #a0aec0 #edf2f7;
}

div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody::-webkit-scrollbar {
	width: 8px;
}

div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody::-webkit-scrollbar-thumb {
	background-color: #a0aec0;
	border-radius: 4px;
}

div.dtsp-searchPane table.dataTable tbody tr {
	cursor: pointer;
	transition: background-color 0.2s ease;
}

div.dtsp-searchPane table.dataTable tbody tr:hover {
	background-color: #e2e8f0;
	transform: scale(1.02);

}


div.dtsp-searchPane table.dataTable tbody tr.selected {
	background-color: #3182ce;
	color: #ffffff;
}

button.dtsp-clearAll {
	background-color: #e53e3e;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	font-weight: 500;
	transition: background-color 0.2s ease;
}

button.dtsp-clearAll:hover {
	background-color: #c53030;
}


button.dtsp-collapseButton {
	background-color: #4a5568;
	color: #ffffff;
	border-radius: 4px;
	padding: 12px;
	margin: 4px;
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	position: relative;
}


button.dtsp-collapseButton i,
button.dtsp-collapseButton svg {
	font-size: 1.5rem;
	color: #3182ce;
	transition: transform 0.2s ease, color 0.2s ease, filter 0.2s ease;
	vertical-align: middle;
	margin-right: 8px;
}


button.dtsp-collapseButton:hover i,
button.dtsp-collapseButton:hover svg {
	transform: scale(1.2) rotate(5deg);
	color: #2b6cb0;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

button.dtsp-collapseButton:focus i,
button.dtsp-collapseButton:focus svg {
	outline: 2px solid #3182ce;
	outline-offset: 2px;
}


button.dtsp-collapseButton[aria-expanded="true"] i,
button.dtsp-collapseButton[aria-expanded="true"] svg {
	color: #2f855a;
}


button.dtsp-showAll {
	background-color: #48bb78;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	font-weight: 500;
	transition: background-color 0.2s ease;
}

button.dtsp-showAll:hover {
	background-color: #38a169;
}


button.dtsp-collapseAll {
	background-color: #4a5568;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	transition: background-color 0.2s ease, transform 0.2s ease;
	position: relative;
}


button.dtsp-collapseAll:active {
	transform: scale(0.95);
}


@media (max-width: 768px) {
	div.dtsp-searchPanes {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	div.dtsp-searchPane {
		width: 100%;
		max-width: 400px;
	}
}

div.dtsp-searchPane table.dataTable tbody tr:focus {
	outline: 2px solid #3182ce;
	outline-offset: 2px;
}

button.dtsp-clearAll:focus,
button.dtsp-collapseButton:focus,
button.dtsp-showAll:focus,
button.dtsp-collapseAll:focus {
	outline: 2px solid #3182ce;
	outline-offset: 2px;
}


button.dtsp-collapseButton:hover::after {
	content: 'Expand Filters';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #2d3748;
	color: #ffffff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.9rem;
	z-index: 10;
}


button.dtsp-showAll:hover::after {
	content: 'Show All Filters';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #2d3748;
	color: #ffffff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.9rem;
	z-index: 10;
}


button.dtsp-collapseAll:hover::after {
	content: 'Collapse All Filters';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #2d3748;
	color: #ffffff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.9rem;
	z-index: 10;
}
