
:root{
	--white-color:#fff;
	--black-color: #000;
	
	--dark-color-1: rgb(17, 24, 39);
	--dark-color-2: rgb(55, 65, 81);
	--dark-color-3: #6b7280;
	
	--gray-color-300: rgb(209, 213, 219);
	--gray-color-100: rgb(243, 244, 246);
	--gray-color-200: rgb(229, 231, 235);
	--gray-color-400: #6b72800d;
	--gray-color-500: rgb(107, 114, 128);
	--gray-color-600: rgb(75, 85, 99);
	
	--light-color-1: rgb(22, 163, 74);
	--light-color-2: rgb(34, 197, 94);
	
	--red-color: #ff0000;
	
	--tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
}

.dashboard-page .charts-wrap{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
	margin-top:25px;
}
.dashboard-page .charts-wrap .chart-wrap{
	width:100%;
	max-width:calc(100% / 3 - (40px / 3));
	box-shadow:0 2px 3px rgba(0,0,0,.04);
	background:var(--white-color);
	padding:15px;
	border-radius:0.25rem;
	box-sizing:border-box;
	border:1px solid #eff5f6;
}
.dashboard-page .charts-wrap .chart-wrap .title{
	font-weight:700;
	font-size:18px;
	line-height:26px;
	padding:0 !important;
	margin-bottom:25px;
}
.dashboard-page .notifications-list{
	margin-top:25px;
	display: flex;
	flex-direction: column;
	box-shadow:0 2px 3px rgba(0,0,0,.04);
	background:var(--white-color);
	padding:15px;
	border-radius:0.25rem;
	box-sizing:border-box;
	border:1px solid #eff5f6;
}
.dashboard-page .notifications-list .title{
	font-weight:700;
	font-size:18px;
	line-height:26px;
	padding:0 !important;
	margin-bottom:25px;
}
.dashboard-page .notifications-list ul{
	display: flex;
	flex-wrap: wrap;
	gap:10px;
	max-height: 400px;
	overflow-y: auto;
}
.dashboard-page .notifications-list ul li.new{
	background:red;
}
.dashboard-page .notifications-list ul li{
	display: flex;
	flex-direction: column;
	gap:4px;
	background:var(--light-color-2);
	border-radius: 10px;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
}
.dashboard-page .notifications-list ul li .message{
	color:#fff;
	font-size: 16px;
}
.dashboard-page .notifications-list ul li .author{
	color:yellow;
	font-weight: 700;
}
.dashboard-page .notifications-list ul li .author span,
.dashboard-page .notifications-list ul li .author a{
	text-decoration: underline;
	text-transform: uppercase;
	color:yellow;
}

/* Login Page */

.admin-login-page{
	position:relative;
	min-height:100vh;
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	box-sizing: border-box;
	margin:0;
	.login-form{
		max-width:432px;
		box-sizing:border-box;
		@media(max-width:575px){
			padding: 20px;
		}
	}
}
.admin-login-page .login-form:before{
	content:'';
    position: absolute;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    height: 1px;
    top:0;
    transform:translateY(-0.5px);
    width: 66.666667%;
    background-image: linear-gradient(to right,var(--tw-gradient-stops));
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-to: rgba(229, 231, 235, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgb(74 222 128 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), #4ade80, var(--tw-gradient-to);
    --tw-gradient-to: #e5e7eb;
}
.admin-login-page .login-form #site-name{
	padding:0;
	overflow:hidden;
}
.admin-login-page .login-form #site-name #logo img{
	width:100%;
	max-width:100px;	
}
.admin-login-page .login-form .form-login-wrap{
	position:initial;
	margin-top:24px;
}
.admin-login-page .login-form .form-login-wrap .field{
	margin:8px 0 0px;
}
.admin-login-page .submit-btn{
	height:36px;
}

/* Pages */

#main .sidebar{
	max-width:320px;
	max-height:100vh;
	position:sticky;
	top:0px;
	transition:all 400ms ease-in-out;
}
#main .sidebar.small{
	max-width:85px;
}
#main .sidebar.small .logo{
	display:none;
}
#main .sidebar .logo img{
	height:50px;
}
#main .sidebar.small  nav #menu > li > a img{
	display:block;
}
#main .sidebar.small nav #menu > li > a{
	justify-content:center;
}
#main .sidebar.small nav #menu > li > a span{
	display:none;	
}
#main .sidebar.small nav #menu > li ul li a{
	justify-content:center;
}
#main .sidebar.small nav #menu > li ul li a span{
	display:none;	
}
#main .sidebar.small .header-wrap{
	justify-content:center;
}
#main .sidebar .header-wrap .toggle-sidebar svg.small{
	display:none;	
}
#main .sidebar.small .header-wrap .toggle-sidebar svg.small{
	display:block;
}
#main .sidebar.small .header-wrap .toggle-sidebar svg.expand{
	display:none;
}
#main .sidebar nav #menu{
	height:unset;
	display:flex;
	flex-direction:column;
	padding:0 10px;
	position:relative;
	gap:10px;
	box-sizing:border-box;
	width:100%;
	margin:0;
}
#main .sidebar .header-wrap{
	padding:5px 1rem;
	height:67px;
}
#main .sidebar nav #menu > li{
	float:unset;
	width:100%;
	height:unset;
	margin:0;
	border-bottom:1px solid var(--gray-color-200);
}
#main .sidebar nav #menu > li:hover > a{
	background:var(--light-color-1);
	color:var(--white-color);
}
#main .sidebar nav #menu > li > a{
	font-weight:700;
	padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    gap: 0.75rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    font-size:14px;
    background:transparent;
    height:unset;
    border:0;
    color:var(--gray-color-600);
    text-shadow:unset;
    transition-duration: 75ms;
    text-transform:uppercase;
	letter-spacing: .05em;
	font-family: 'Roboto', sans-serif !important;
	line-height:20px;
	white-space:nowrap;
}
#main .sidebar nav #menu > li > a{
	margin-bottom:5px;
}
#main .sidebar nav #menu > li > a img{
	display:none;
	position:initial;
}
#main .sidebar nav #menu > li ul{
	position:initial;
	opacity:1;
	visibility:initial;
	display:block;
	background:transparent;
	margin-bottom:15px;
	width:100% !important;
}
#main .sidebar nav #menu > li ul li{
	height:unset;
}
#main .sidebar nav #menu > li ul li a{
	background:transparent;
	color:var(--dark-color-1) !important;
	border:0;
	display:flex;
	gap: 0.75rem;
	font-weight:600;
    justify-content: flex-start;
    align-items: center;
    display: flex !important;
    font-size:14px;
    line-height:16px;
	color:var(--gray-color-600);
	padding:5px 12px;
    transition-duration: 75ms;
	border-radius: 0.5rem;
	text-shadow:unset;
	font-family: 'Roboto', sans-serif !important;
	white-space:nowrap;
}
#main .sidebar nav #menu > li ul li a:hover{
	background:var(--gray-color-300);
}
#main .sidebar nav #menu > li ul li a img{
	position:initial;
}
#main .sidebar:not(.small) nav #menu > li ul li a img{
	display:none;
}
#main .sidebar nav #menu > li > a img{
	display:none;
}
#main .main-content{
	flex:1;
}
#main .main-content #header{
	margin:0;
	height:67px;
	position:sticky;
	top:0;
}
#main .main-content #header #flags{
	position:initial;
}
#main .main-content #header #auth{
	all: unset !important;
	position:relative !important;
}
#main .main-content #header #auth .dropdown{
	right:0;
	left:unset;
	opacity:0;
	visibility:hidden;
	transition:all 400ms ease-in-out;
	padding-top:10px;
	top:130%;
}
#main .main-content #header #auth:hover .dropdown{
	opacity:1;
	top:100%;
	visibility:initial;
}
#main .main-content #header #auth .dropdown ul  li a:hover span{
	color:var(--white-color);
}
#main .main-content #header #auth .dropdown ul  li a:hover svg{
	fill:var(--white-color);
}
#main .main-content #header #languageDiv #flags{
	gap:6px;
}
#main .main-content #header #languageDiv #flags a{
	padding:5px 7px;
	border-radius:5px;
}
#main .main-content #header #languageDiv #flags a.imgLimbaAct{
	background:var(--light-color-1);
	color:var(--white-color);
}
#main .main-content #content{
	margin:0;
	background:transparent;
	box-shadow:unset;
	border:0;
	padding:0 32px;
}
#main #footer{
	margin:0;
	text-align:center;
	padding:10px 15px;
	color:var(--dark-color-1);
	font-family: 'Roboto', sans-serif !important;
	flex:1;
	display:flex;
	align-items:flex-end;
	justify-content:center;
}

.font{
	font-family: 'Roboto', sans-serif !important;
}
body{
	font-family: 'Roboto', sans-serif !important;
}

/* Common */

[type=text], [type=email], [type=url], [type=password], [type=number], [type=date], [type=datetime-local], [type=month], [type=search], [type=tel], [type=time], [type=week], [multiple], textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color:var(--white-color);
    border-color: var(--dark-color-3);
    border-width: 1px;
    border-radius: 0;
    border-style:solid;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 29px;
    --tw-shadow: 0 0 var(--black-color);
}
[type=text]:focus, [type=email]:focus, [type=url]:focus, [type=password]:focus, [type=number]:focus, [type=date]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=week]:focus, [multiple]:focus, textarea:focus, select:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty, );
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
    border-color: #2563eb;
}

/* Positions */

.initial{
	position:initial;
}
.relative{
	position:relative;
}
.absolute{
	position:absolute;
}

/* Text colors */

.text-primary-500 {
    color:var(--light-color-2);
}
.text-gray-700 {
    color: var(--dark-color-2);
}
.text-gray-900 {
    color: var(--dark-color-1);
}
.text-gray-600 {
    color: var(--gray-color-600);
}
.text-gray-500 {
    color: var(--gray-color-500);
}
.text-white {
    color:var(--white-color);
}
.text-red{
	color:var(--red-color);
}
.hover-text-white:hover {
    color: var(--white-color);
}
.hover-text-primary-500:hover {
    color: var(--light-color-2);
}
.focus-underline:focus{
	text-decoration:underline;
}

/* Line Height */

.leading-4 {
    line-height: 16px;
}

/* Font weight */

.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}

/* Font size */
.text-xs {
    font-size: 12px;
    line-height: 16px;
}

.text-sm {
    font-size: 14px;
    line-height: 16px;
}
.text-md {
    font-size: 16px;
    line-height: 20px;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Align */

.text-center {
    text-align: center;
}

/* Spacing */

.p-0{
	padding:0;
}
.p-8 {
    padding: 2rem;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.m-0{
	margin:0;
}
.ml-4 {
    margin-left: 1rem;
}
.p-1 {
    padding: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
.mr-2 {
    margin-right: 0.5rem;
}
.mb-4{
	margin-bottom:15px;	
}
.mt-4{
	margin-bottom:15px;	
}
.mt-6{
	margin-top:30px;	
}
.pb-2{
	padding-bottom:10px;
}

/* Min Height */
.min-h-screen {
    min-height: 100vh;
}

/* Background */

.bg-primary-600 {
    background:var(--light-color-1);
}
.bg-dark-100 {
    background:var(--dark-color-1);
}
.bg-gray-200 {
    background-color: var(--gray-color-200);
}
.bg-gray-100 {
   background:var(--gray-color-100);
}
.bg-white {
    background-color: var(--white-color);
}
.bg-transparent{
	background:transparent;
}
.hover-bg-primary-500:hover {
    background:var(--light-color-2);
}

.tracking-tight {
    letter-spacing: -.025em;
}


/* Transitions */

.transition {
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
.transition-colors {
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.duration-75 {
    transition-duration: 75ms;
}

/* Border */

.border-b {
    border-width:0 0 1px;
}
.border-t {
    border-width:1px 0 0;
}
.border {
    border-width: 1px;
}
.border-0{
	border-width:0;
}
.border-solid{
	border-style:solid;
}
.border-transparent {
    border-color: transparent;
}
.border-gray-300 {
    border-color:var(--gray-color-300);
}
.border-gray-200 {
    border-color: var(--gray-color-200);
}
.border-gray-100 {
    border-color: var(--gray-color-200);
}

/* Radius */

.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-2xl {
    border-radius: 1rem;
}
.rounded-xl {
    border-radius: 0.75rem;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-md {
    border-radius: 0.375rem;
}

/* Width height  */

.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.h-full-screen{
	height:100vh;
}
.h-16 {
    height: 4rem;
}
.w-10 {
    width: 2.5rem;
}
.h-10 {
    height: 2.5rem;
}
.max-w-14 {
    max-width: 14rem;
}
.w-14{
	width: 14rem;
}
.w-5 {
    width: 1.25rem;
}
.h-5 {
    height: 1.25rem;
}
.h-12 {
    height: 3rem;
}

/* Display */

.block {
    display: block;
}

/* Shadow */

.shadow-sm{
	box-shadow:0 1px 2px 0 rgba(0, 0, 0,.05);
}
.shadow-2xl{
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
}
.shadow{
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.focus-ring-primary-500:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: var(--light-color-2);
}
.focus-border-primary-500:focus {
    border-color: var(--light-color-2);
}
input:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill {
    animation-duration: 50000s;
    animation-name: livewireautofill;
}
.flex{
	display:flex;
	flex-wrap:wrap;
}
.flex-col{
	flex-direction:column;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-start{
	justify-content:flex-start;
}
.justify-end{
	justify-content:flex-end;
}
.justify-between{
	justify-content:space-between;
}
.items-center {
    align-items: center;
}
.inline-flex {
    display: inline-flex;
}
.flex-row{
	flex-direction:row;
	flex-wrap:unset;
}
.flex-shrink-0, .shrink-0 {
    flex-shrink: 0;
}
.flex-1 {
    flex: 1 1 0%;
}
.hidden{
	display:none;	
}
.gap-6 {
    gap: 1.5rem;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-4{
	gap:1rem;
}
.gap-y-6 {
    row-gap: 1.5rem;
}
.mt-4{
	margin-top:16px;
}
.cursor-pointer{
	cursor:pointer;
}
.z-10 {
    z-index: 10;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.sticky {
    position: sticky;
}
.top-0 {
    top: 0px;
}

.overflow-x-clip {
    overflow-x: clip;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-y-auto {
    overflow-y: auto;
}
.overflow-x-hidden {
    overflow-x: hidden;
}
.border-box{
	box-sizing:border-box;	
}
.ring-1 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
}
.ring-black-5 {
    --tw-ring-color: rgb(0 0 0 / .05);
}

/* Grid */
.grid {
    display: grid;
}
.col-span-1 {
    grid-column: span 1 / span 1;
}

.backdrop-blur-xl {
    --tw-backdrop-blur: blur(24px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
@media (min-width: 1024px){
	.lg-border-r {
	    border-right-width: 1px;
	    border-right-style:solid;
	}
	.lg-px-4 {
	    padding-left: 1rem;
	    padding-right: 1rem;
	}
	.lg-px-8 {
	    padding-left: 2rem;
	    padding-right: 2rem;
	}
	.lg-flex {
	    display: flex;
	}
	.lg-ml-3 {
	    margin-left: 0.75rem;
	}
	.lg-gap-8 {
	    gap: 2rem;
	}
	.lg-grid-cols-2 {
	    grid-template-columns: repeat(2,minmax(0,1fr));
	}
}
@media (min-width: 768px){
	.md-px-6 {
	    padding-left: 1.5rem;
	    padding-right: 1.5rem;
	}
}
@media (min-width: 640px){
	.sm-px-4 {
	    padding-left: 1rem;
	    padding-right: 1rem;
	}
	.sm-py-4 {
	    padding-top: 1rem;
	    padding-bottom: 1rem;
	}
	.sm-text-xl {
	    font-size: 1.25rem;
	    line-height: 1.75rem;
	}
}
@keyframes livewireautofill{
	0% {}
} 

/* Scrollbar */

::-webkit-scrollbar {
  width: 5px;
}
 
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
::-webkit-scrollbar-thumb {
  background-color: var(--light-color-1);
}

/* Modules */

#list_customers_container, 
#list_discount_codes_container, 
#modul-main-container, 
#list_products_new_container, 
#list_customers2_container,
#list_customers3_container,
#list_pricealert_container,
#list_orders_container,
#list_orders4_container,
#list_ordersen_container,
#list_ordersemag_container,
#list_precomenzi_container,
#list_precomenzi2_container,
#list_orders2_container,
#list_discount_container,
#list_ordersc_container,
#list_ordersc2_container,
#list_coduri_container,
#list_coduri2_container,
#list_products2_container,
#list_filters_container,
#list_variations_container,
#list_brands_container,
#list_comenturi_container, 
#list_recenzii_container,
#list_video_container, 
#list_slide2_container,
#list_foto_container, 
#list_slide_container,
#list_pages_container,
#list_news_container,
#list_background_container,
#list_tags_container,
#list_newsletter_emails_container,
#list_brand3_container,
#list_brands2_container,
#list_dpd2_container,
#list_config_container,
#list_payment_methods_container,
#list_defines_container,
#list_shipping_methods_container,
#list_dpd_container,
#list_econt_container,
#list_standard_container,
#list_tari_container,
#list_currencies_container,
#list_admins_container,
#list_sms_container,
#list_admins_logs_container,
#list_emails_container{
	margin: 0;
    background: transparent;
    box-shadow: unset;
    border: 0;
    padding: 0 5px;
    display:flex;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:10px;
}
 #list_customers_container > h2,
 #list_admins_logs_container > h2,
 #list_sms_container > h2,
 #list_emails_container > h2,
 #list_admins_container > h2,
 #list_currencies_container > h2,
 #list_tari_container > h2,
 #list_standard_container > h2,
 #list_econt_container > h2,
 #list_dpd_container > h2,
 #list_shipping_methods_container > h2,
 #list_defines_container > h2,
 #list_payment_methods_container > h2,
 #list_config_container > h2,
 #list_pages_container > h2, 
 #list_brand3_container > h2,
 #list_brands2_container > h2,
 #list_dpd2_container > h2,
 #list_newsletter_emails_container > h2,
 #list_tags_container > h2,
 #list_background_container > h2,
 #list_news_container > h2,
 #list_discount_codes_container > h2, 
 #modul-main-container > h2, 
 #list_products_new_container > h2, 
 #list_customers2_container > h2, 
 #list_customers3_container > h2,
 #list_pricealert_container > h2,
 #list_orders_container > h2,
 #list_orders4_container > h2,
 #list_ordersen_container > h2,
 #list_ordersemag_container > h2,
 #list_precomenzi_container > h2,
 #list_precomenzi2_container > h2,
 #list_orders2_container > h2,
 #list_discount_container > h2,
 #list_ordersc_container > h2,
 #list_ordersc2_container > h2,
 #list_coduri_container > h2,
 #list_coduri2_container > h2,
 #list_products2_container > h2,
 #list_filters_container > h2,
 #list_variations_container > h2,
 #list_brands_container > h2,
 #list_comenturi_container > h2,
 #list_recenzii_container > h2,
 #list_video_container > h2,
 #list_slide2_container > h2,
 #list_foto_container > h2,
 #list_slide_container > h2{
    letter-spacing: -.025em;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
	 padding-bottom:0;
}
.settings-form{
	width:100%;
}
#list_products_new_container .module_menu{
	flex:unset;
	width:100%;
	justify-content:flex-start;
}
.nss_grid {
	border:0;
	overflow-y:unset;
	width:100%;
}
.nss_grid > table{
	overflow:hidden;
}
.nss_grid table{
	--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
    background:var(--white-color);
    border:1px solid var(--gray-color-300);
    border-radius:0.75rem;
    padding-top:40px;
}
.nss_grid table thead{
	background:var(--gray-color-400);
}
.nss_grid table thead th{
	border:0;	
	background:unset;
	padding:0.5rem 2px;
	font-size:12px;
	font-weight:500;
	color:var(--gray-color-600);
	border-bottom:1px solid var(--gray-color-200);
	white-space:unset;
	vertical-align:unset;
}
.nss_grid table thead th a{
	color:var(--gray-color-600);
	font-size:12px;
	font-weight:500;
	height:unset;
}
.nss_grid table thead th input[type="checkbox"]{
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
    color:var(--light-color-1);
    border-color:var(--gray-color-300);
    border-radius: 0.25rem;
    height: 1rem;
    width: 1rem;
    background:var(--white-color);
}
.nss_grid table thead th input{
	vertical-align:middle;
}
.nss_grid table thead tr:first-child th{
	border-top:1px solid var(--gray-color-200);
}
.nss_grid table thead tr.filters th{
	padding:5px 2px;
}
.nss_grid table thead tr.filters th input, .nss_grid table thead tr.filters th select{
	--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
    transition-duration: 75ms;
    outline: 2px solid transparent;
    outline-offset: 2px;
    border:1px solid var(--gray-color-300);
    border-radius: 0.5rem;
    padding:0 10px;
    box-sizing:border-box;
    height:32px;
}
.nss_grid table thead tr.filters th input:focus, .nss_grid table thead tr.filters th select:focus{
    --tw-ring-color: var(--light-color-2);
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
}
.nss_grid table tbody{
	border-top:1px solid var(--gray-color-200);
} 
.nss_grid table tbody td table{
	box-shadow:unset;
	padding-top:0;
	border-radius:0;	
	border:0;
}
.nss_grid table tbody td table tr th{
	background:var(--white-color);
	border:0;
	border-bottom:1px solid var(--gray-color-200);
}
.nss_grid table tbody td table tr th.th-foot-left{
	display:none;
}
.nss_grid table tbody td{
	background:var(--white-color);
	border:0;
	padding:0.5rem 2px;
}
.nss_grid table tbody tr td{
	border-bottom:1px solid var(--gray-color-200);
}
.nss_grid table tbody tr .pagination-th-wrap table tbody tr th .pag{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	font-weight:600;
	color:var(--dark-color-2);
	padding:0;
}
.nss_grid table tbody tr .pagination-th-wrap table tbody tr th .pag input{
	width:auto;
}
.nss_grid table th{
	text-align:center !important;
}
.nss_grid table tr.selected td{
	background:var(--gray-color-200);
	border-color:var(--white-color);
}
.modul-main-layout{
	display:flex;
	flex-direction:column;
	width:100%;
}
.modul-main-layout #nss_list_record{
	width:100%;
	background:var(--white-color);
	box-sizing:border-box;
	border-top:30px solid var(--gray-color-200);
	border-radius:7px;
}
.th-wrap-pagination{
	padding:0;
}
.table-pagination{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:10px;
	padding:5px 10px;
}
.table-pagination .counts{
	width:calc(50% - 5px);
	text-align:left;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight:500;
    color:var(--dark-color-1);
}
.table-pagination .pagination{
	flex:1;
	display:flex;
	align-items:Center;
	justify-content:flex-end;
	gap:10px;
}
input[type="text"], input[type="email"], input[type="number"], input[type="password"], input[type="input"], select{
	border:1px solid rgb(209 213 219) !important;
	border-radius: 0.5rem !important;
	padding:4px 12px !important;
    font-size: 13px !important;
    height:unset !important;
    width:100%;
    line-height:24px !important;
    box-sizing:border-box;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="input"]:focus, select:focus{
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
    --tw-ring-inset: inset;
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity));
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity));
}
textarea{
	border:1px solid rgb(209 213 219) !important;
	border-radius: 0.5rem !important;
	padding:4px 12px !important;
    font-size: 13px !important;
    height:unset !important;
    width:100%;
    line-height:24px !important;
    box-sizing:border-box;
}
textarea:focus{
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
    --tw-ring-inset: inset;
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity));
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity));
}
input[type="checkbox"]{
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05) !important;
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow) !important;
    border-color:rgb(209, 213, 219) !important;
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
    color:rgb(22, 163, 74) !important;
	width:unset !important;
	height:unset !important;
	opacity:0.5;
}
input[type="checkbox"]:checked{
	opacity:1;
}

.module_menu{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	flex-wrap:wrap;
	gap:10px;
	flex:1;
}
.module_menu li{
	float:none;
	background-image: unset !important;
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
    outline: 2px solid transparent;
    outline-offset: 2px;
    color:var(--white-color);
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background:var(--light-color-1);
    margin:0;
    width:unset;
    border-radius: 0.5rem;
    font-family: 'Roboto', sans-serif !important;
	height:28px;
	display:flex;
	align-items:center;
	justify-content:center;
	transition-property: color,background-color,border-color,text-decoration-color,fill,stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
.module_menu li:hover{
    background:var(--light-color-2);
}
.module_menu li.delete{
	background:var(--red-color);
}
.module_menu li.delete:hover{
    background:var(--light-color-2);
}
.module_menu li.edit{
	background:var(--gray-color-500);
}
.module_menu li.edit:hover{
    background:var(--light-color-2);
}
.module_menu li.config{
	background:var(--gray-color-600);
}
.module_menu li.config:hover{
    background:var(--light-color-2);
}
.th_action a.edit, td a.edit{
	color:var(--white-color);
	background:#79a736 !important;
	padding:0 15px !important;
	height:30px;
	vertical-align:middle;
	border-radius:5px;
	margin:0 5px;
}
.th_action a.photos, td a.photos{
	color:var(--white-color);
	background:#79a736 !important;
	padding:0 15px !important;
	height:30px;
	vertical-align:middle;
	border-radius:5px;
	margin:0 5px;
	align-items: center;
}
.th_action a.view, td a.view{
	color:var(--white-color);
	background:#325d88;
	padding:0 15px !important;
	height:30px;
	border-radius:5px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	vertical-align:middle;
}
.th_action a.view_orders, td a.view_orders, .th_action button.view_orders, td button.view_orders{
	color:var(--white-color);
	background:#29abe0;
	padding:0 15px !important;
	height:30px;
	border-radius:5px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	vertical-align:middle;
	border:0;
	outline:none;
	width:100%;
}
.th_action a.stock_history, td a.stock_history, .th_action button.stock_history, td button.stock_history{
	color:var(--white-color);
	background:#121210;
	padding:0 15px !important;
	height:30px;
	border-radius:5px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	vertical-align:middle;
	border:0;
	outline:none;
	width:100%;
}
.th_action a.view svg, td a.view svg{
	width:17px;
	height:17px;
	fill:#fff;
}
.th_action a.delete, td a.delete{
	background:var(--red-color) !important;
	color:#fff;
	padding:0 15px !important;
	height:30px;
	vertical-align:middle;
	border-radius:5px;
}
td a.action.full{
	width:100%;
	box-sizing:border-box;
}
td a.action, .th_action a.action, th a.delete{
	padding-left:10px;
	text-decoration: none;
}
td a.action:hover, .th_action a.action:hover{
	text-decoration:underline;	
}
.th_action a.edit, td a.edit,.th_action a.delete, td a.delete{
	background:unset;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:4px;
	text-decoration:none;
	font-weight:700;
	font-size:13px;
}
.th_action a.edit svg, td a.edit svg, .th_action a.delete svg, td a.delete svg{
	width:16px;
	height:16px;
	fill:currentColor;
}
.nss_grid table tbody tr td{
	text-align:left;
	padding:0 10px;
}
.delete-filters{
	background:unset !important;
	display:flex !important;
	align-items:center;
	justify-content:center;
	gap:5px;	
	text-decoration:unset !important;
	color:var(--red-color) !important;
}
.delete-filters svg{
	width:16px;
	height:16px;
	fill:currentColor;
}
.ui-widget-overlay{
	background:rgba(0,0,0, 1);
}
.ui-dialog{
	border: 0;
	padding:0;
}
.ui-dialog .ui-dialog-titlebar{
	border-radius:0;
	background:var(--light-color-2);
	border:0;
	padding:10px 12px;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title{
	color:#fff;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close{
	padding:0;
	margin:0;
	transform:translateY(-50%);
	width:22px;
	height:22px;
	display:flex;
	align-items:center;
	justify-content:center;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close.ui-state-hover{
	background:var(--dark-color-2);
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close span{
	background:unset;
	position:relative;
	margin:0;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close span:before{
	content:'';
	width:16px;
	height:2px;
	background:#fff;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%) rotate(45deg);
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close span:after{
	content:'';
	width:2px;
	height:15px;
	background:#fff;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%) rotate(45deg);
}
.ui-dialog .tabs fieldset dd input[type="text"],#tab-frame-1 input[type="input"],.ui-dialog .tabs fieldset dd input[type="email"], .ui-dialog .tabs fieldset dd input[type="number"], .ui-dialog .tabs fieldset dd textarea{
	width:calc(100% - 25px) !important;
}
.language_ro>input{
	width: 220px;
	margin-right: 20px;
	background: aliceblue;
}
.ui-dialog .tabs fieldset dt label{
	color:var(--dark-color-2);
    font-size: 12px;
    font-weight: 500;
   	line-height: 22px;	
}
.ui-dialog .tabs{
	padding:0;
}
.ui-dialog .tabs fieldset dl{
	display:flex;
	align-items:center;
	justify-content:flex-start;
}
.ui-dialog .tabs fieldset dl dt{
	padding:0;
}
.ui-dialog .tabs fieldset dl dd{
	flex:1;
	margin:0;
}
.ui-dialog .ui-dialog-content{
	background:var(--gray-color-100);
}
.ui-dialog .tabs fieldset{
	background:#fff;
	border-color:#fff;
	box-sizing:border-box;
}
.ui-dialog .tabs fieldset > legend{
	position:relative;
	top:-18px;
	background:#fff;
	border:0;
	font-size:12px;
	line-height:22px;
	border-radius:0.5rem 0.5rem 0 0;
	padding:.5em 1em;
	margin:0;
	color:var(--light-color-1);
}
.ui-dialog .tabs .ui-tabs-nav .ui-state-default:not(.ui-tabs-selected.ui-state-active){
	background:transparent;
	border-color:transparent;
}
.ui-dialog .tabs .ui-tabs-nav .ui-state-default:not(.ui-tabs-selected.ui-state-active) a{
	color:var(--gray-color-500);
}
.ui-dialog .tabs .ui-tabs-nav .ui-state-default:not(.ui-tabs-selected.ui-state-active) a:hover{
	color:var(--light-color-1);
}
.ui-dialog .tabs .ui-tabs-nav .ui-state-default{
	font-size:12px;
	line-height:22px;
	border-radius:0.5rem 0.5rem 0 0;
}
.ui-dialog .tabs .ui-tabs-nav .ui-state-default.ui-tabs-selected.ui-state-active{
	background:#fff;
	border-color:#fff;
}
.ui-dialog .tabs .ui-tabs-nav .ui-state-default.ui-tabs-selected.ui-state-active a{
	color:var(--light-color-1);
}
.ui-dialog .ui-tabs-nav li:first-child{
	margin-left:0;
}
.ui-dialog .ui-tabs-nav{
	padding:0;
}
.ui-dialog .buttons{
	margin-bottom:20px;
	display:flex;
	flex-wrap:wrap;
	gap:1rem;
	align-items:center;
	justify-content:flex-start;
}
fieldset dl:hover{
	background:var(--gray-color-100);
}
.general-radio-wrap{
	position:relative;
	display:inline-flex;
	flex-wrap:wrap;
}
.general-radio-wrap input{
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}
.general-radio-wrap input:checked + label:after{
	left:22px;
}
.general-radio-wrap input:checked + label:before{
	background:var(--light-color-1);
}
.general-radio-wrap label{
	padding-left:54px;
	color:var(--dark-color-2);
	position:relative;
	line-height:24px;
	font-weight:600;
}
.general-radio-wrap label:before{
	content:'';
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
	width:44px;
	height:24px;
	border-radius:20px;
	background:var(--gray-color-200);
}
.general-radio-wrap label:after{
	content:'';
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:2px;
	width:20px;
	height:20px;
	border-radius:40px;
	background:var(--white-color);
	transition:all 400ms ease-in-out;
}
.checkbox-general-wrap{
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	width:16px;
	height:16px;
	margin:0;
}
.checkbox-general-wrap.center{
	margin:0 auto;
	bottom:-3px;
}
.checkbox-general-wrap.bottom-0{
	bottom:unset;
}
.checkbox-general-wrap input{
	position:absolute;
	top:0;
	left:0;
	opacity:0 !important;
}
.checkbox-general-wrap input:checked + label{
	background:var(--light-color-1);
	border-color:var(--light-color-1);
}
.checkbox-general-wrap label{
	width:100%;
	height:100%;
	display:block;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
    border:1px solid var(--gray-color-300);
    border-radius: 0.25rem;
    background-color: #fff;
    margin:0;
    box-sizing:border-box;
    position:relative;
}
.checkbox-general-wrap label:before{
	content:'';
	position:absolute;
	top:3px;
	left:2px;
	width:8px;
	height:3px;
	border-bottom:2px solid #fff;
	border-left:2px solid #fff;
	transform:rotate(-45deg);
}
.checkbox-general-wrap label:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity));
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
	height:36px;
	padding:0 16px;
	color:rgb(31, 41, 55);
	font-weight: 500;
	font-size:14px;
    line-height: 24px;
    border:1px solid var(--gray-color-300);
    border-radius:0.5rem;
    background:var(--white-color);
}
.ui-datepicker-calendar .ui-state-default{
	height:unset;
	padding:0;
	text-align:center;
}
.ui-datepicker-calendar .ui-datepicker-week-end .ui-state-default{
	background:	var(--gray-color-300);
}
.ui-datepicker-calendar .ui-state-default:hover, .ui-datepicker-calendar .ui-state-default.ui-state-active{
	background:var(--light-color-2);
	color:var(--white-color);
}
.ui-state-default[name="save"], .ui-widget-content .ui-state-default[name="save"], .ui-widget-header .ui-state-default[name="save"]{
	background:var(--light-color-1);
	border-color:var(--light-color-1);
	color:#fff;
}
.ui-state-default[name="save"]:hover, .ui-widget-content .ui-state-default[name="save"]:hover, .ui-widget-header .ui-state-default[name="save"]:hover{
	background:var(--light-color-2);
	border-color:var(--light-color-2);
}
.group-td{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	flex-wrap:wrap;
	gap:10px;
}
.ui-dialog .tabs .nss_editor{
	width:100%;
}
.ui-dialog fieldset .product_have_variations > div{
	width:100% !important;
}
.ui-dialog fieldset .product_have_variations table td, .ui-dialog fieldset .product_have_variations table th{
	padding:2px;	
}
.ui-dialog fieldset .product_have_variations .table-variations-wrap{
	overflow-y:auto;
	max-width:1000px;
}
.ui-dialog fieldset .product_have_variations .table-variations-wrap table thead{
	background:var(--gray-color-400);
}
.ui-dialog fieldset .product_have_variations .table-variations-wrap table thead th{
	border:0;	
	background:unset;
	padding:1em 2px;
	font-size:12px;
	font-weight:500;
	color:var(--gray-color-600);
	border-bottom:1px solid var(--gray-color-200);
	white-space:unset;
	vertical-align:unset;
}
.ui-dialog fieldset .product_have_variations .table-variations-wrap table td input{
	width:100% !important;
}
.ui-dialog fieldset .product_have_variations .table-variations-wrap table td{
	border-bottom:1px solid rgb(209, 213, 219);
}
.ui-dialog fieldset .product_have_variations .table-variations-wrap table td:has(.pointer) input{
	max-width:calc(100% - 40px) !important;
}
.ui-dialog fieldset .product_have_variations .table-variations-wrap table td:not(:first-child){
	min-width:230px;
}
.ui-state-default.ui-state-active, .ui-widget-content .ui-state-default.ui-state-active, .ui-widget-header .ui-state-default.ui-state-active{
    background: var(--light-color-2);
    border-color: var(--light-color-2);
    color: #fff;
}

.main-body #main #content{
	padding:10px 1%;
	border:0;
	margin:0;
	background:transparent;
	box-shadow:unset;
	box-sizing:border-box;
	width:100%;
}
.main-body #menu{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	flex-wrap:wrap;
	gap:10px;
	height:unset;
	width:100%;
	box-sizing:border-box;
	margin:0;
	padding:0 1% 0 1%;
}
.main-body #header{
	height:72px;
}
.main-body #menu > li{
	float:none;	
	height:35px;
}
.main-body #menu > li > a{
	background:var(--light-color-2);
	border:1px solid var(--light-color-2);
	color:var(--white-color);
	border-radius:5px;
	height:35px;
	line-height:35px;
	font-size:14px;
	padding:0 10px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:5px;
}
.main-body #menu > li > a img{
	position:relative;
	top:-1px;
	left:unset;
}
.main-body #menu > li > ul{
	top:100%;
	background:var(--white-color);
	border:1px solid var(--light-color-2);
	padding:5px 0;
}
.main-body #menu > li > ul li a{
	padding:0 10px;
	display:flex !important;
	align-items:center;
	justify-content:flex-start;
	gap:5px;	
	background:var(--white-color);
	color:var(--dark-color-1);
	bordeR:0;
}
.main-body #menu > li > ul li a:hover{
	color:var(--light-color-2);
}
.main-body #menu > li > ul li a img{
	position:relative;
	left:unset;
	top:unset;
}
.main-body #list_orders_container{
	padding:0;
}
.main-body #content > div > h2{
	width:100%;
}
#list_products_container .nss_grid{
	width:100%;
}
#list_products_container a.action{
	width:100%;
	box-sizing:border-box;
	margin:0;
}
#list_products_container h2{
	padding:15px 0;
}
.module_menu{
	margin-bottom:20px;
}
.main-body #main{
	min-height:100vh;
	display:flex;
	flex-direction:column;
}
.main-body .nss_grid table tbody tr .pagination-th-wrap table tbody tr th{
	border:0;
}
.main-body .nss_grid table tbody tr .pagination-th-wrap table tbody tr th.th-foot-right {
	text-align:right !important;	
}
.main-body .nss_grid table tbody tr .pagination-th-wrap table tbody tr th.th-foot-center {
	display:flex;
	align-items:center;
	justify-content:center;
}
.main-body .nss_grid table tbody tr .pagination-th-wrap table tbody tr{
	background:transparent;
}
.nss_grid table th a.delete{
	padding-left:20px;
}
.nss_grid table th:first-child{
	border-left:0;
}
.categories-th-grid table tr th:first-child{
	text-align:left !important;
	padding:10px;
}
.categories-th-grid table{
	border-bottom-left-radius:0;
	border-bottom-right-radius:0;
	border-bottom:0;
}
.categories-th-grid table tr{
	background:var(--white-color);
}
#nss_list_record{
	background:var(--white-color);
}
#menu #count{
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	margin: 1px 0 -1px 2px;
	padding: 0 5px;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	background-color: #d63638;
	color: #fff;
	font-size: 11px;
	line-height: 1.6;
	text-align: center;
}
#table_variations td:has(.pointer) input{
	width:calc(100% - 40px);
}
#table_variations td[align='center']{
	text-align:center;
	vertical-align:middle;
}
#list_orders table tbody td.tl b.anulată{
	background: #eba3a3;
    color: #761919;
}
#list_orders table tbody td.tl b{
	padding:0 13px;
	background:#c6e1c6;
    line-height: 2.5em;
    border-radius: 4px;
    display:block;
    text-align:center;
}
#list_orders table tbody td .previous-orders-wrap{
	display:flex;
	align-items:Center;
	justify-content:flex-start;
	flex-wrap:wrap;
	gap:4px;
	padding:0;
}
#list_orders table tbody td .previous-orders-wrap span{
	display:flex;
	width:21px;
	height:21px;
	border-radius:50%;
	align-items:center;
	justify-content:center;
	color:#ffffff;
	font-weight:bold;
}
#list_orders table tbody td .previous-orders-wrap #totalp{
	background:#c6e1c6;
}
#list_orders table tbody td .previous-orders-wrap #totalc{
	background:#61B329;
}
#list_orders table tbody td .previous-orders-wrap #totalt{
	background:#cccccc;
}
#list_orders table tbody td .previous-orders-wrap #totalf{
	background:#cccccc;
}
#list_orders table tbody td .previous-orders-wrap #totala{
	background:#FF2400;
}
#list_orders td{
	padding:10px;
}
.reports-tabs{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	flex-wrap:wrap;
	margin:1.5em 0 1em;
	border-bottom:1px solid #c3c4c7;
	padding-top:9px;
	gap:7px;
}
.reports-tabs li{
	position:relative;
	margin-bottom:-1px;
}
.reports-tabs li a{
	border:1px solid #c3c4c7;
	padding: 5px 10px;
    font-size: 14px;
    background:#dcdcde;
    font-weight: 600;
    display:block;
    color:#50575e;
}
.page_orders_edit .module-page-main-wrap{
	padding:0 !important;
}
.page_orders_edit .module-page-main-wrap > h2{
	color: #98978b;
    border-bottom:1px solid #dcdcdc;
    background: #f6f6f6;
    text-shadow: 0 -1px 0 rgba(50, 50, 50, 0);
    font-size: 11px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 15px;
    margin:0;
    box-sizing:border-box;
    display:none;
}
.page_orders_edit .module-page-main-wrap .tabs{
	padding-bottom:0 !important;
	display:flex;
	flex-wrap:wrap;
	gap:30px;
}
.page_orders_edit .module-page-main-wrap .tabs > ul{
	padding:15px;
	display:none;
	justify-content:flex-start;
	flex-wrap:wrap;
}
.page_orders_edit .module-page-main-wrap .tabs > ul li{
	flex:1;
}
.page_orders_edit .module-page-main-wrap .tabs > ul li a{
	background-color: #f8f5f0;
   	color: #dfd7ca;
	border:1px solid #dfd7ca;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: block;
    padding: 10px 15px;
    text-align:center;
}
.page_orders_edit .module-page-main-wrap .tabs > ul li.active a{
	color: #333;
	background:#fff;
	border-bottom:1px solid #fff;
}
.page_orders_edit .module-page-main-wrap .tabs > ul li.active a span{
	color:#333;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-']{
	border:1px solid #dcdcdc;
	border-top:1px solid #dcdcdc;
    background-color: #ffffff;
    padding-bottom:20px !important;
    width:calc(50% - 15px);
    box-sizing:border-box;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-']:last-child{
	width:100%;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset{
	padding:0;
	background:#fff;
	border:0;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dl{
	padding:15px;
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
	gap:15px;
	border-bottom:1px solid #ededed;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dt{
	padding:0;
	display:flex;
	align-items:center;
	justify-content:flex-end;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dt label{
    font-weight: 700;
    color: #545454;
    font-size: 14px;
    line-height: 1.42857143;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dd{
	flex:1;
	margin:0;
	display:flex;
	align-items:center;
	justify-content:flex-start;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dd input[type='text'], .page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dd select, .page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dd input[type='email'], .page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dd input[type='number']{
	width:100%;
    display: block;
    height: 46px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.42857143 !important;
    color: #3e3f3a;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #dfd7ca !important;
    border-radius: 4px;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dd textarea{
	width:100%;
    display: block;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.42857143 !important;
    color: #3e3f3a;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #dfd7ca !important;
    border-radius: 4px;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dd span:has(input){
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:10px;
	color:#333;
} 
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset dd span:has(input) input:not(:first-child){
	margin-left:10px;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset #order_products_list{
	padding-bottom:0;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset #order_products_list dl{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:20px;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset #order_products_list dl dt{
	flex:1;
	justify-content:flex-start;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset #order_products_list dl dd{
	justify-content:flex-end;
}
.page_orders_edit .module-page-main-wrap .tabs div[id*='tab-frame-'] fieldset legend{
	display:none;
}
.page_orders_edit + .buttons{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	gap:15px;
	padding:0 1%;
}
.page_orders_edit + .buttons input{
    font-size: 11px;
    line-height: 22px;
    height:46px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 16px;
    border-radius: 4px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.page_orders_edit + .buttons input[id="save"]{
	background:#325d88;
	border-color:#325d88;
}
.page_orders_edit + .buttons input[id="save"]:hover{
	background:#244363;
	border-color:#244363;
}
.page_orders_edit + .buttons input[id="reset"]{
	background:#3e3f3a;
	border-color:#3e3f3a;
	color:#fff;
}
.page_orders_edit + .buttons input[id="reset"]:hover{
	background:#121210;
	border-color:#121210;
}
#window_orders_edit{
	background:#fff;
}
#window_orders_edit .modal-body table{
	border-collapse:collapse;
}
#window_orders_edit .modal-body table td{
	border:1px solid #dfd7ca;
}
#window_orders_edit .modal-body table thead td{
	padding:8px;
	font-weight:bold;
	text-align:center;
}
#window_orders_edit .modal-body table tbody td{
	padding:8px;
	vertical-align:middle;
}
#window_orders_edit .modal-body table tbody .image img{
	width:100%;
	max-width:120px;
}
#window_orders_edit .modal-body table tbody .image.zummy img{
	max-width:300px;
	width:300px;
}
#window_orders_edit .modal-body table tbody .name {
	color:#93c54b;
	font-weight:bold;
	font-size:14px;
	line-height:24px;
}
#window_orders_edit .modal-body table tbody .price {
	white-space:nowrap;
}

.order-view-module .top-actions{
	display:Flex;
	justify-content:space-between;
	gap:20px;
	flex-wrap:wrap;
    margin: 20px 0 15px 0;
    padding: 0 0 10px !important;
    border-bottom: 1px solid #e9e9e9;
}
.order-view-module .top-actions .left{
	display:Flex;
	justify-content:flex-start;
	align-items:flex-end;
	gap:10px;
	padding-bottom:0 !important;
	margin:0;
}
.order-view-module .top-actions .left .breadcrumbs{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:5px;
	margin-bottom:5px;
}
.order-view-module .top-actions .left .breadcrumbs li{
	color: #999999;
	font-size:12px;
}
.order-view-module .top-actions .left .breadcrumbs li a{
    color: #999999;
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    text-transform:uppercase;
}
.order-view-module .top-actions .left .order-info{
	font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: #4c4d5a;
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: 0 1px #fff;
    margin:0;
}
.order-view-module .top-actions .right-actions{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	gap:5px;
}
.order-view-module .top-actions .right-actions a{
	width:42px;
	height:46px;
	border-radius:4px;
	display:flex;
	align-items:Center;
	justify-content:center;
	color: #ffffff;
	transition:all 350ms ease-in-out;
}
.order-view-module .top-actions .right-actions a svg{
	width:17px;
	height:17px;
	fill:#fff;	
}
.order-view-module .top-actions .right-actions a.awb{
	width:unset;
	background-color:var(--light-color-2);
	padding:0 10px;
}
.order-view-module .top-actions .right-actions a.print{
    background-color: #29abe0;
}
.order-view-module .top-actions .right-actions a.print:hover{
    background-color: #1b8dbb;
}
.order-view-module .top-actions .right-actions a.edit{
    background-color: #325d88;
}
.order-view-module .top-actions .right-actions a.edit:hover{
    background-color: #244363;
}
.order-view-module .top-actions .right-actions a.back{
    background-color: #3e3f3a;
}
.order-view-module .top-actions .right-actions a.back:hover{
    background-color: #393a35;
}
.order-view-module .add-to-black-list-container{
	margin-bottom:20px;
}
.order-view-module .add-to-black-list-container button{
	border: none;
    font-size: 11px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 3px;
    color: #ffffff;
    background-color: #f47c3c;
    transition:all 400ms ease-in-out;
    cursor:pointer;
}
.order-view-module .add-to-black-list-container button:hover{
    background-color: #ef5c0e;
}
.order-view-module .info-boxes-wrap{
    display:flex;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:30px;
}
.order-view-module .info-boxes-wrap .box-area{
    width:100%;
    max-width:calc(100% / 3 - (60px / 3));
    border:1px solid #dcdcdc;
    display:flex;
    flex-direction:column;
    padding:0 !important;
    box-sizing:border-box;
}
.order-view-module .info-boxes-wrap .box-area.full{
	max-width:100%;
}
.order-view-module .info-boxes-wrap .box-area .head{
    border-bottom:1px solid #dcdcdc;
    display:flex;
	justify-content:flex-start;
	align-items:Center;
	gap:10px;
	color: #4c4d5a;
    background: #f6f6f6;
    text-shadow: 0 -1px 0 rgba(50, 50, 50, 0);
    font-size: 11px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding:10px 15px !important;
}
.order-view-module .info-boxes-wrap .box-area .head svg{
	width:13px;
	height:13px;
	fill:#98978b;
}
.order-view-module .info-boxes-wrap .box-area .head svg.stroke{
	stroke:#98978b;
	fill:none;
}
.order-view-module .info-boxes-wrap .box-area .head h2{
	margin:0;
	 font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: #4c4d5a;
}
.order-view-module .info-boxes-wrap .box-area .head h2 span{
	color: #fff;
    background: #f90;
    font-size: 13px;
    display: inline-block;
    margin-left: 5px;
    padding: 3px 10px;
}
.order-view-module .info-boxes-wrap .box-area .body{
	background:#fff;
	flex:1;
}
.order-view-module .info-boxes-wrap .box-area .body.p-15{
	padding:15px;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list{
	display:flex;
	flex-direction:Column
}
.order-view-module .info-boxes-wrap .box-area .body .details-list.between li{
	justify-content:space-between;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list li:not(:last-child){
	border-bottom:1px solid #dfd7ca;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list li{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:16px;
	padding:8px;
	font-size:14px;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list li a{
	color:#93c54b;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list li .icon{
	display:flex;
	align-items:center;
	justify-content:center;
	width:24px;
	height:24px;
	border-radius:4px;
	background:#29abe0;
	padding:0 !important;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list li .icon svg{
	width:14px;
	height:14px;
	fill:#fff;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list li .icon svg.stroke{
	stroke:#fff;
	fill:none;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list li .bg-red{
    padding: 4px;
    background: #cc0033!important;
    color: #fff!important;
    border-radius: 3px;
    font-size: 12px;
}
.order-view-module .info-boxes-wrap .box-area .body .details-list li .bg-gray{
    padding: 4px 5px;
    background: #eee;
    border-radius: 3px;
}
.order-view-module .info-boxes-wrap .box-area .body .addresses{
	display:flex;
	justify-content:flex-start;
	border:1px solid #dfd7ca;
	padding:0 !important;
}
.order-view-module .info-boxes-wrap .box-area .body .addresses .area{
	width:50%;
	padding:0 !important;
}
.order-view-module .info-boxes-wrap .box-area .body .addresses .area:first-child{
	border-right:1px solid #dfd7ca;
}
.order-view-module .info-boxes-wrap .box-area .body .addresses .area h2{
	border-bottom:2px solid #dfd7ca;
	padding:8px;
    font-size: 14px;
    margin:0;
}
.order-view-module .info-boxes-wrap .box-area .body .addresses .area p{
	padding:8px;
    font-size: 14px;
    line-height:24px;
}
.order-view-module .info-boxes-wrap .box-area .body .reserve-operator{
    text-align: center;
    padding: 10px;
    background: #ecffee;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #93c54b;
    margin-top:30px;
}
.order-view-module .info-boxes-wrap .box-area .body .reserve-operator.busy{
	background:	#ef5c0e;
}
.order-view-module .info-boxes-wrap .box-area .body .reserve-operator p{
   font-size: 17px;
   margin:0 0 10px;
}
.order-view-module .info-boxes-wrap .box-area .body .reserve-operator button{
    color: #ffffff;
    background-color: #93c54b;
    background-image: none;
    border-color: rgba(0,0,0,0);
    text-transform: uppercase;
    height:66px;
    border-radius:5px;
    padding:0 30px;
    cursor:pointer;
}
.order-view-module .info-boxes-wrap .box-area .body .reserve-operator button:hover{
	color: #ffffff;
    background-color: #79a736;
}
.order-view-module .info-boxes-wrap .box-area .body .comments-info{
	padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #d9534f;
    color: #fff;
    margin:30px 0;
    position:relative;
}
.order-view-module .info-boxes-wrap .box-area .body .comments-info:before{
	content:'';
	position:absolute;
	top:-15.5px;
	left:0;
	width:100%;
	height:1px;
	background:#f8f5f0;
}
.order-view-module .info-boxes-wrap .box-area .body .comments-info:after{
	content:'';
	position:absolute;
	bottom:-15.5px;
	left:0;
	width:100%;
	height:1px;
	background:#f8f5f0;
}
.order-view-module .info-boxes-wrap .box-area .body .comments-info h2{
	margin:0 0 10px;
	font-size:24px;
	color:var(--white-color);
}
.order-view-module .info-boxes-wrap .box-area .body .comments-info table{
	border:1px solid #dfd7ca;
	background:var(--white-color);
	border-collapse:collapse;
	width:100%;
}
.order-view-module .info-boxes-wrap .box-area .body .comments-info table th, .order-view-module .info-boxes-wrap .box-area .body .comments-info table td{
	border:1px solid #dfd7ca;
	padding:8px;
	color:#000;
	font-size:14px;
	line-height:20px;
}
.order-view-module .info-boxes-wrap .box-area .body .comments-info table th{
	font-weight:bold;
	font-size:16px;
	border-bottom:2px solid #dfd7ca;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table{
	width:100%;
	border:1px solid #dfd7ca;
	border-collapse:collapse;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table th, .order-view-module .info-boxes-wrap .box-area .body .products-order-list table td{
	border:1px solid #dfd7ca;
	padding:8px;
	font-size:14px;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table th{
	font-weight:bold;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table td{
	vertical-align:middle;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table td.name{
	color:#93c54b;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table td.total{
	text-align:right;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table td.zummy img{
	max-width:300px;
	width:300px;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table td img{
	width:100%;
	max-width:120px;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table td .order-status{
	font-weight:bold;
	font-size:16px;
	text-transform:uppercase;
}
.order-view-module .info-boxes-wrap .box-area .body .products-order-list table td .order-status.new{
	color:#77bbc0;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history h2{
	padding-bottom: 5px;
	display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: inherit;
    border: 0;
    border-bottom: 1px solid transparent;
    margin:0;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset{
	padding:0;
	background:#fff;
	border:0;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dl{
	padding:15px;
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
	gap:15px;
	border-bottom:1px solid #ededed;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dt{
	padding:0;
	display:flex;
	align-items:center;
	justify-content:flex-end;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dt label{
    font-weight: 700;
    color: #545454;
    font-size: 14px;
    line-height: 1.42857143;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dd{
	flex:1;
	margin:0;
	display:flex;
	align-items:center;
	justify-content:flex-start;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dd input[type='text'], .order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dd select, .order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dd input[type='email'], .order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dd input[type='number']{
	width:100%;
    display: block;
    height: 46px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.42857143 !important;
    color: #3e3f3a;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #dfd7ca !important;
    border-radius: 4px;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dd textarea{
	width:100%;
    display: block;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.42857143 !important;
    color: #3e3f3a;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #dfd7ca !important;
    border-radius: 4px;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dd button{
	font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #325d88;
    border-color: transparent;
   	padding: 12px 16px;
    border-radius: 4px;
}
.order-view-module .info-boxes-wrap .box-area .body .add-order-history fieldset dd:has(button){
	justify-content:flex-end;
}


/* Raports page */

.reports_page .top_module{
	display:flex;
	align-items:flex-end;
	justify-content:flex-start;
	flex-wrap:wrap;
	gap:15px;
	margin:20px 0 15px;
	padding-bottom:20px !important;
	border-bottom:1px solid #e9e9e9;
}
.reports_page .top_module .module_name{
	margin:0;
	font-weight: 300;
    font-size: 30px;
    color: #4c4d5a;
    display: inline-block;
    margin-bottom: 0px;
    text-shadow: 0 1px #fff;
}
.reports_page .top_module nav{
	margin-bottom:2px;
}
.reports_page .top_module nav ul{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:5px;
}
.reports_page .top_module nav ul li{
	color: #999999;
    font-size: 14px;
    padding: 0px;
    margin: 0px;
}
.reports_page .top_module nav ul li.line{
	font-size: 12px;
}
.reports_page .top_module nav ul li a{
	color: #999999;
}
.reports_page .main-boxes{
	display:flex;
	flex-wrap:Wrap;
	justify-content:flex-start;
	gap:20px;
}
.reports_page .main-boxes .box-area{
    width:100%;
    border:1px solid #dcdcdc;
    display:flex;
    flex-direction:column;
    padding:0 !important;
    box-sizing:border-box;
    width:100%;
}
.reports_page .main-boxes .box-area.width-1{
	width:calc(25% - 10px);	
}
.reports_page .main-boxes .box-area.width-3{
	width:calc(75% - 10px);	
}
.reports_page .main-boxes .box-area.full{
	max-width:100%;
}
.reports_page .main-boxes .box-area .head{
    border-bottom:1px solid #dcdcdc;
    display:flex;
	justify-content:flex-start;
	align-items:Center;
	gap:10px;
	color: #4c4d5a;
    background: #f6f6f6;
    text-shadow: 0 -1px 0 rgba(50, 50, 50, 0);
    font-size: 11px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding:10px 15px !important;
}
.reports_page .main-boxes .box-area .head svg{
	width:13px;
	height:13px;
	fill:#98978b;
}
.reports_page .main-boxes .box-area .head svg.stroke{
	stroke:#98978b;
	fill:none;
}
.reports_page .main-boxes .box-area .head h2{
	margin:0;
	 font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: #4c4d5a;
}
.reports_page .main-boxes .box-area .head h2 span{
	color: #fff;
    background: #f90;
    font-size: 13px;
    display: inline-block;
    margin-left: 5px;
    padding: 3px 10px;
}
.reports_page .main-boxes .box-area .body{
	background:#fff;
	flex:1;
	padding:15px;
}
.reports_page .main-boxes .box-area .body .field{
	min-height: 20px;
    padding: 19px !important;
    margin-bottom: 20px;
    background-color: #f8f5f0;
    border: 1px solid transparent;
    border-radius: 4px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}
.reports_page .main-boxes .box-area .body .field button{
	padding: 15px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #3e3f3a;
    text-align: center;
    background-color: #f8f5f0;
    border: 1px solid #dfd7ca;
    border-radius: 4px;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:7px;
}
.reports_page .main-boxes .box-area .body .field button svg{
	width:12px;
	height:12px;
}
.reports_page .main-boxes .box-area .body .field select{
	border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    height:46px !important;
    text-align-last:left !important;
}
#list_products_container #list_products table tbody tr td:last-child{
	padding:3px 10px;
}
#list_products_container #list_products table tbody tr td:last-child a, #list_products_container #list_products table tbody tr td:last-child button{
	display:inline-flex;
	width:Auto;
}
#list_products_container #list_products table tbody tr td:last-child .view, 
#list_products_container #list_products table tbody tr td:last-child .stock_history,
#list_products_container #list_products table tbody tr td:last-child .view_orders{
	font-size:0;
	margin:2px;
	padding:0 10px !important;
	cursor:pointer;
}
#window_products_edit #tab-frame-2 fieldset dd.group-td select{
	width:100% !important;
}
#window_products_edit #tab-frame-2 fieldset dd.group-td div{
	width:100%;
	max-width:calc(50% - 5px);
}
.nss_grid > table tbody tr:nth-child(odd) td{
	background:#F5F5F5;
}
.nss_grid > table tbody tr:hover td{
	background:#C5DFF8;
}
#window_products_edit .product-select-category .selected-value{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:15px;
}
#window_products_edit .product-select-category .selected-value span{
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
}
#window_products_edit .product-select-category .selected-value a.delete{
	padding:5px 10px;
	background:red;
	color:#fff;
}
.escort-prices-list{
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	gap:10px;
}
.escort-prices-list .line{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:10px;
}
.escort-prices-list dl{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:5px;
	flex:1;
}
.escort-prices-list dl dd{
	flex:1;
}
.escort-prices-list dl dd input{
	width:100% !important;
}
.escort-prices-list dl dt{
	width:auto;
}
.product-services{
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	gap:10px;
}
.product-services .line{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:10px;
}
.product-services dl{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:5px;
	flex:1;
}
.product-services dl dd{
	flex:1;
}
.product-services dl dd .check-section{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:5px;
}
.product-services dl dd .check-section input{
	width:auto !important;
}
.product-services dl dd input{
	width:100% !important;
}
.product-services dl dt{
	width:auto;
}
.product-schedule-list{
	display: flex;
	flex-direction: column;
	gap:7px;
}
.product-schedule-list .day{
	display: flex;
	flex-direction: column;
	gap:3px;
}
.product-schedule-list .day h5{
	font-weight: 700;
}
.product-schedule-list .day .inline-dl{
	display: flex;
	justify-content: flex-start;
	gap:7px;
	align-items: center;
}
.product-schedule-list .day .inline-dl dt{
	width:auto;
}
.product-schedule-list .day .inline-dl dl{
	flex:1;
}
.metting-info-wrap{
	display: flex;
	flex-direction: column;
	gap:20px;
}
.metting-info-wrap .metting-area{
	display: flex;
	flex-direction: column;
	gap:10px;
}
.metting-info-wrap .metting-area h4{
	font-weight: 700;
}
.metting-info-wrap .metting-area .block-checks{
	display: flex;
	flex-direction: column;
	gap:6px;
}
.metting-info-wrap .metting-area .block-checks .check-section{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:4px;
}
.languages-select-wrapper{
	display: flex;
	flex-direction: column;
	gap:7px;
}
.languages-select-wrapper .check-section{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:4px;
}
.blocked-countries-select-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap:15px;
}
.blocked-countries-select-wrapper .check-section{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:4px;
}
.tours-list{
	display: flex;
	flex-direction: column;
}
.tours-list .tour{
	padding:10px;
	display: flex;
	flex-direction: column;
	gap:3px;
}
.tours-list .tour:nth-child(odd){
	background:#f5f5f5;
}
.escort-reports-list{
	display: flex;
	flex-direction: column;
	gap:5px;
}
.escort-reports-list .report:nth-child(odd){
	background:#f5f5f5;
}
.escort-reports-list .report{
	padding:10px;
	display: flex;
	flex-direction: column;
	gap:5px;
}
.custom_select{
	position: relative;
}
.custom_select .custom_select_overlay{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}
.custom_select .selected{
	position: relative;
	border:1px solid rgb(209 213 219);
	padding:4px 12px;
	font-size: 13px;
	border-radius: 0.5rem;
	line-height: 24px;
	width: 100%;
	background:white;
	box-sizing: border-box;
}
.custom_select .custom_select_list{
	position: absolute;
	border:1px solid rgb(209 213 219);
	border-radius: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transition: all 400ms ease-in-out;
	top:100%;
	left: 0;
	width: 100%;
	background:white;
	padding:12px;
	display:flex;
	flex-direction: column;
	gap:10px;
	box-sizing: border-box;
}
.custom_select .custom_select_list ul{
	display: flex;
	flex-direction: column;
	max-height: 170px;
	overflow-y: auto;
}
.custom_select .custom_select_list ul li{
	padding:5px 0;
 	cursor:pointer;
}
.custom_select.open .custom_select_list{
	opacity:1;
	visibility: initial;
}
.custom_select.open .custom_select_overlay{
	display: block;
}
.filament-header-heading{
	@media(max-width:575px){
		margin-bottom: 10px;
	}
}

@media(min-width:768px){
	.main-body{
		#menu{
			.close-menu{
				display: none;
			}		
		}
	}
}
@media(max-width:767px){
	body{
		padding:0 12px;
	}
	#header{
		height: unset !important;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap:10px;
		padding-block: 15px !important;
		padding-inline: 0 !important;
		.logo{
			max-width: 150px;
			height: unset !important;
			padding:0;
			order:1;
			a{
				height: unset !important;
				img{
					max-width: 100%;
					height: auto !important;
				}
			}
		}
		.right_menu{
			min-height: 0;
			line-height: unset;
			order:2;
			margin-left: auto;
		}
		.mega-dropdown{
			display: flex !important;
			flex-direction: column;
			float:none !important;
			width: 30px;
			gap:5px;
			order:0;
			button{
				display: flex;
				flex-direction: column;
				gap:4px;
				background:transparent;
				border:0;
				span{
					width: 100%;
					height: 3px;
					background:red;
					display: block;
				}
			}
		}
	}
	#menu{
		position: fixed;
		top:0;
		left: 0;
		width: 100%;
		max-width: 280px;
		height: 100% !important;
		background:var(--light-color-2);
		align-items: flex-start !important;
		padding: 20px 10px !important;
		overflow-y:auto;
		transition: all 400ms ease-in-out;
		transform: translateX(-150%);
		&.active{
			transform: translateX(0%);
		}
		li{
			height: unset !important;
			width: 100%;
			+ a{
				text-align: left;
			}
			&.close-menu{
				text-align: right;
				color:red;
				font-weight:700;
				height: unset;
				margin-left: auto;
			}
			ul{
				position: initial;
				display: flex;
				flex-direction: column;
				width:100%  !important;
				background:transparent !important;
				padding: 0  !important;
				bordeR:0  !important;
				li{
					a{
						background:transparent !important;
					}
				}
			}
		}
	}
	#main{
		#content{
			padding:0 !important;
		}
	}
	#list_customers_container, #modul-main-container{
		> h2{
			padding: 15px 0 0;	
			margin:0;
			text-align: center;
			width: 100%;
		}
	}
	.module_menu{
		justify-content: flex-start;
		gap:5px;
		width: 100%;
		flex:unset;
		li{
			width: calc(100% / 3 - (10px / 3));
			box-sizing: border-box;
		}
	}
	.nss_grid{
		overflow-x: scroll;
	}
	.ui-dialog{
		width: calc(100% - 24px) !important;
		left:50% !important;
		transform: translateX(-50%) !important;
	}
	fieldset{
		dl{
			flex-wrap: wrap;
			dt, dd{
				width: 100%;		
				flex:unset;
				padding:0;
			}
			dd{
				input[type='text'], 
				textarea, 
				input[type='input'],
				input[type='email'],
				input[type='number']{
					width: 100%;
					min-width: 100%;
				}
			}
		}
	}
}
@media(max-width:575px){
	.module_menu{
		li{
			width: calc(100% / 2 - (5px / 2));
			font-size: 11px;
		}
	}
}
@media(max-width:380px){
	#header{
		.logo{
			max-width: 100px;
		}
	}
}