:root {
	--desktop-nav-width: 275px;
	--mobile-nav-width: 320px;
	--main-shadow: rgb(0 0 0 / 7%) 0px 0px 5px;
	--nav-shadow: rgb(0 0 0 / 15%) 0px 0px 4px, rgb(0 0 0 / 15%) 0px 0px 1px;
	--widget-border-color: #DADADA;
	--widget-element-bg-color: #EDEDED;
	--highlight-border-color: #06D;
	--highlight-background-color: #0066DD40;
	--element-border-radius: 6px;
	--button-background: #F7F8F9;
}

body {
	background-color: #F5F7F9;
}

body,h1,h2,h3,h4,p{
	font-family: 'Open Sans', sans-serif !important; 
}

main {
	display: block;
	margin-left: var(--desktop-nav-width);
	padding: 0px 15px;
	z-index: 1039;
}

body.no-nav main {
	margin-left: 0px;
}

nav {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: var(--desktop-nav-width);
	height: 100%;
	margin: 0;
	padding: 10px 0px 60px;
	border-right: 1px solid #EEE;
	font-size: 16px;
	background-color: #FFF;
	overflow: hidden;
	z-index: 1040;
}

nav ul {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	overflow: overlay;
}

nav li {
	display: block;
}

nav a {
	display: block;
	width: 100%;
	padding: 10px 5px 10px 20px;
}

nav a,
nav a:active,
nav a:focus,
nav a:hover {
	color: #000;
}

nav a:hover {
	background-color: #F0F0F0;
}

nav a span {
	margin-right: 8px;
}

nav li ul {
	padding: 0px;
	font-size: 14px;
}

nav li.open ul,
nav li.active ul {
	display: block;
}

nav li.active>a {
	color: #0066DD;
}

nav li ul li {
	height: 0;
	opacity: 0;
	transition: height 0.25s ease-in-out, opacity 0.6s ease-in;
	overflow: hidden;
}

nav li.open ul li,
nav li.active ul li {
	height: 36px;
	opacity: 1;
}

nav li ul a {
	padding: 8px 5px 8px 25px;
}

nav li ul a.active {
	color: #0066DD;
	background-color: rgba(0, 102, 221, 0.15);
}

nav li ul a.active:hover {
	background-color: rgba(0, 102, 221, 0.25);
}

nav .signature {
	display: block;
	position: absolute;
	width: 100%;
	height: 60px;
	left: 0;
	bottom: 0;
	padding-top: 10px;
	font-size: 12px;
	color: #888;
	text-align: center;
	border-top: 1px solid #EEE;
}

nav .signature img {
	display: block;
	height: 20px;
	margin: 4px auto 8px;
}

@media screen and (max-width: 991px) {
	main {
		margin: 0px;
	}

	nav {
		width: var(--mobile-nav-width);
		left: -133%;
		transition: left 0.5s ease-in-out;
		box-shadow: var(--nav-shadow);

	}

	nav.open {
		left: 0;
	}
}

hr {
	border-top: 1px solid #DFDFDF !important;
	width: 60%;
}

.shadowed {
	box-shadow: var(--main-shadow);
}

input::-webkit-calendar-picker-indicator {
	display: none;
}

.login {
	display: block;
	position: absolute;
	width: 600px;
	max-width: calc(100% - 30px);
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -70%, 0);
}

.btn-custom {
    font-weight: 600;
    padding: 5px 8px;
    background-color: var(--button-background);
    border: 1px solid var(--widget-border-color);
	border-radius: 4px;
    outline: none;
	transition: background-color 0.125s, border-color 0.3s;
}

.btn-custom:active, .btn-custom:focus {
    border-color: var(--highlight-border-color) !important;
}

.btn-custom:hover:not(:disabled) {
    background-color: var(--highlight-background-color);
    border-color: var(--highlight-border-color);
}

.btn-custom.btn-large {
    padding: 12px;
}

.btn-custom:disabled, .btn-custom:disabled span {
	color: #AAA !important;
}

.btn-custom.loading {
	pointer-events: none;
	user-select: none;
}

button:disabled {
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.input-sm {
    font-size: 14px !important;
    padding: 5px 10px 5px 10px !important;
}

.form-group input[type="text"][readonly] {
    background-color: #FFF;
}

.form-group input[type="text"][disabled] {
    color: #AAA !important;
}

.bordered {
	border: 1px solid #CCC;
}

.borderless {
	border: none !important;
}

/* STILE TABELLA CUSTOM */

.rTable {
    display: table;
    border-collapse: separate;
	border-radius: var(--element-border-radius);
	background-color: #FFF;
}

.rTable th:first-child, .rTable td:first-child {
    border-left: none;
}

.rTable th {
    border-bottom: 1px solid var(--widget-border-color);
    border-left: 1px solid var(--widget-border-color);
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 8px 5px 8px;
    text-align: center;
    background: #F7F7F7;
}

.rTable thead th {
	white-space: nowrap;
}

.rTable td {
    text-align: center;
    padding: 6px 8px 5px 8px;
    font-size: 14px;
    border-bottom: 1px solid var(--widget-border-color);
    border-left: 1px solid var(--widget-border-color);
}

.rTable tr:hover {
    background-color: #F7F7F7;
}

.rTable tbody {
	border-radius: var(--element-border-radius);
}

.rTable tbody a {
    font-weight: 500;
    text-decoration: none;
}

.rTable.bordered {
	border: 1px solid var(--widget-border-color) !important;
	border-bottom: none !important; 
}

.rTable.boxed tr:last-child>td, .rTable.boxed tr:last-child>th {
	border-bottom: none;
}

.rTable.f12pt td, .rTable.f12pt th {
	font-size: 12px !important;
}

.rTable tr:last-child th:last-child, .rTable tr:last-child td:last-child {
	border-bottom-right-radius: var(--element-border-radius);
}

.rTable tr:last-child th:first-child, .rTable tr:last-child td:first-child {
	border-bottom-left-radius: var(--element-border-radius);
}

.rTable tr:first-child th:last-child, .rTable tr:first-child td:last-child {
	border-top-right-radius: var(--element-border-radius);
}

.rTable tr:first-child th:first-child, .rTable tr:first-child td:first-child {
	border-top-left-radius: var(--element-border-radius);
}

.f12pt {
	font-size: 12px !important;
}

.f14pt {
    font-size: 14px !important;
}

.f16pt {
    font-size: 16px !important;
}

.f18pt {
    font-size: 18px !important;
}

.f20pt {
    font-size: 20px !important;
}

.fw400 {
	font-weight: 400 !important;
}

.fw500 {
	font-weight: 500 !important;
}

.fw600 {
	font-weight: 600 !important;
}

.fw700 {
	font-weight: 700 !important;
}

.fw800 {
	font-weight: 800 !important;
}

.mt0 {
	margin-top: 0px !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.ml0 {
	margin-left: 0px !important;
}

.ml5 {
	margin-left: 5px !important;
}

.ml10 {
	margin-left: 10px !important;
}

.ml15 {
	margin-left: 15px !important;
}

.mb0 {
	margin-bottom: 0px !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mr0 {
	margin-right: 0px !important;
}

.mr5 {
	margin-right: 5px !important;
}

.mr10 {
	margin-right: 10px !important;
}

.mr15 {
	margin-right: 15px !important;
}

.no-padding {
	padding: 0px !important;
}

.p10 {
    padding: 10px !important;
}

.p15 {
    padding: 15px !important;
}

.pb5 {
	padding-bottom: 5px !important;
}

.pb10 {
	padding-bottom: 10px !important;
}

.pb20 {
	padding-bottom: 20px !important;
}

.pb100 {
    padding-bottom: 100%;
}

.pb150 {
	padding-bottom: 150%;
}

.pt0 {
	padding-top: 0px !important;
}

.pb0 {
	padding-bottom: 0px !important;
}

.pl0 {
	padding-left: 0px !important;
}

.pr0 {
	padding-right: 0px !important;
}

.pt3 {
	padding-top: 3px !important;
}

.pt5 {
	padding-top: 5px !important;
}

.pt10 {
	padding-top: 10px !important;
}

.pt15 {
	padding-top: 15px !important;
}

.pb15 {
	padding-bottom: 15px !important;
}

.pl15 {
	padding-left: 15px !important;
}

.pr15 {
	padding-right: 15px !important;
}

.pt20 {
	padding-top: 20px !important;
}

.ptb0 {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.plr5 {
	padding-left: 5px !important;
	padding-right: 5px !important;
}

.p15 {
	padding: 15px;
}

.w10 {
	width: 10%;
    min-width: 10%;
    max-width: 10%;
}

.w15 {
	width: 15%;
    min-width: 15%;
    max-width: 15%;
}

.w20 {
    width: 20%;
    min-width: 20%;
    max-width: 20%;
}

.w25 {
    width: 25%;
    min-width: 25%;
    max-width: 25%;
}

.w30 {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
}

.w33 {
	width: 33.3%;
    min-width: 33.3%;
    max-width: 33.3%;
}

.w35 {
    width: 35%;
    min-width: 35%;
    max-width: 35%;
}

.w40 {
    width: 40%;
    min-width: 40%;
    max-width: 40%;
}

.w50 {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
}

.w60 {
    width: 60%;
    min-width: 60%;
    max-width: 60%;
}

.w70 {
    width: 70%;
    min-width: 70%;
    max-width: 70%;
}

.w80 {
    width: 80%;
    min-width: 80%;
    max-width: 80%;
}

.w90 {
    width: 90%;
    min-width: 90%;
    max-width: 90%;
}

.w100 {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

.w32px {
	width: 32px !important;
	min-width: 32px !important;
	max-width: 32px !important;
}

.w50px {
	width: 50px !important;
	min-width: 50px !important;
	max-width: 50px !important;
}

.w64px {
	width: 64px !important;
	min-width: 64px !important;
	max-width: 64px !important;
}

.w75px {
	width: 75px !important;
	min-width: 75px !important;
	max-width: 75px !important;
}

.w100px {
	width: 100px !important;
	min-width: 100px !important;
	max-width: 100px !important;
}

.w150px {
	width: 150px !important;
	min-width: 150px !important;
	max-width: 150px !important;
}

.w200px {
	width: 200px !important;
	min-width: 200px !important;
	max-width: 200px !important;
}

.mn50px {
	min-width: 50px;
}

.mw100 {
	max-width: 100%;
}

.h32px {
	height: 32px !important;
	min-height: 32px !important;
	max-height: 32px !important;
}

.h100 {
	min-height: 100%;
	height: 100%;
	max-height: 100%;
}

.op30 {
	opacity: 0.3;
}

.op40 {
	opacity: 0.4;
}

.op50 {
	opacity: 0.5;
}

.op60 {
	opacity: 0.6;
}

.op75 {
	opacity: 0.75;
}

.bd0 {
	border: none !important;
} 

.bt0 {
	border-top: none !important;
}

.bb0 {
	border-bottom: none !important;
}

.bl0 {
	border-left: none !important;
}

.br0 {
	border-right: none !important;
}

.bt1 {
	border-top: 1px solid #CCC;
}

.br1 {
	border-right: 1px solid #CCC;
}

.bb1 {
	border-bottom: 1px solid #CCC;
}

.bl1 {
	border-left: 1px solid #CCC;
}

.position-relative {
	position: relative;
}

select option:disabled {
    color: #D00;
    cursor: not-allowed;
}

.fbFont {
	color: #3b5998 !important;
}

.redFont {
	color: #E00 !important;
}

.orangeFont {
	color: #FF6600 !important;
}

.blueFont {
	color: #00E !important;
}

.cyanFont {
	color: #09C !important;
}

.greenFont {
	color: #090 !important;
}

.brownFont {
	color: #C60 !important;
}

.navyFont {
	color: #06C !important;
}

.fucsiaFont {
	color:  #CF0076 !important;
}

.purpleFont {
	color: #8000D2 !important;
}

.lightGreyFont {
	color:  #CCC !important;
}

.greyFont {
	color:  #777 !important;
}

.darkGreyFont {
	color: #555 !important;
}

.blackFont {
	color: #000 !important;
}

.folderFont {
	color: #ECC849 !important;
}

.whiteBg {
	background-color: #FFF !important;
}

.center-inline {
	display: inline-block;
}

.display-inline {
	display: inline;
}

.display-inline-block {
	display: inline-block;
}

.display-block {
	display: block !important;
}

.vertical-top {
	vertical-align: top !important;
}

.vertical-middle {
	vertical-align: middle !important;
}

.noOverflow {
	overflow-x:hidden;
}

.noOverflowY {
	overflow-y:hidden;
}

.hidden {
	display: none;
}

.text-right {
	text-align: right !important;
}

.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.cursor-move {
	cursor: move;
}

optgroup {
	background-color: #EAEAEA;
}

optgroup option {
	background-color: #FFF;
}

.pagination {
	display: flex;
	position: relative;
    width: 100%;
	height: 36px;
	justify-content: flex-start;
	align-items: stretch;
    border: 1px solid var(--widget-border-color);
	border-radius: var(--element-border-radius);
	box-shadow: var(--main-shadow);
    margin: 5px 0px 15px;
    background: #FFF;
    overflow: hidden;
}

.pagination .item,
.pagination .summary {
	line-height: 1.3;
}

.pagination .item {
	display: block;
	flex: 0 0 35px;
	text-align: center;
	font-weight: 600;
	font-size: 15px;
	color: #333;
	cursor: pointer;
    text-decoration: none !important;
    padding: 8px 0px;
    border-right: 1px solid var(--widget-border-color);
}

.pagination .number {
	flex: 0 1 35px;
}

.pagination .item:hover {
    background: rgb(235, 235, 235);
}

.pagination .item.disabled {
	cursor: not-allowed;
	color: #AAA !important;	
}

.pagination .item.active {
    color: #000;
    background: rgb(226, 226, 226);
}

.pagination .summary {
	display: block;
	flex-shrink: 0;
	flex-grow: 0;
	margin: 0px 0px 0px auto;
    padding: 8px 10px;
    border-left: 1px solid var(--widget-border-color);
}

.mobile-menu-head {
	display: none;
	justify-content: flex-end;
	align-items: stretch;
	width: 100%;
	height: 42px;
	background-color: #FFF;
	border-bottom: 1px solid var(--widget-border-color);
	margin-bottom: 0;
	padding: 5px 15px;
}

.mobile-menu-head button {
	display: block;
	padding: 5px 12px;
	margin-left: 5px;
	background-color: #F0F0F0;
	border: 1px solid var(--widget-border-color);
	border-radius: 4px;
	transition: background-color 0.125s, border-color 0.3s;
}

.mobile-menu-head button:hover {
	background-color: var(--highlight-background-color);
	border-color: var(--highlight-border-color);
}

@media screen and (max-width: 768px) {
	.mobile-menu-head {
		display: flex;
	}
}

.errorField {
	border-color: #C00 !important;
	border-style: solid !important;
}

.monospace,
.numeric,
.currency,
.discount {
	font-size: 17px;
	font-weight: 600;
    font-family: 'Courier New';
	line-height: 0.9;
    padding-top: 6px;	
}

.currency,
.numeric {
	color: #03C;
}

.discount {
	color: #C00;
}

td .action {
	display: inline-block;
    height: 24px;
	width: 24px;
	text-align: center;
	margin: 2px;
    padding: 6px 0px;
	border: 1px solid var(--widget-border-color);
	border-radius: 4px;
    outline: none;
    background-color: var(--button-background);
	line-height: 1;
    transition: background-color 0.125s, border-color 0.3s;
}

td .action:hover {
	background-color: var(--highlight-background-color);
    border-color: var(--highlight-border-color);
}

td .action:active,
td .action:focus {
    border-color: var(--highlight-border-color);
}

td .action:disabled {
	cursor: not-allowed !important;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

td .action span{
	display: block;
	font-size: 12px;
    opacity: 0.85;
}

td .action:hover span {
    opacity: 1.0;
}

td.loading span {
	color: #06C !important;
}

td.loading span::after {
	content: "\f1ce";
	-webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.widget {
	margin-bottom: 15px;
	box-shadow: var(--main-shadow);
	border-radius: var(--element-border-radius);
}

.widget>div:first-child {
	border-top-left-radius: var(--element-border-radius);
	border-top-right-radius: var(--element-border-radius);
}

.widget>div:last-child {
	border-bottom-left-radius: var(--element-border-radius);
	border-bottom-right-radius: var(--element-border-radius);
}

.widget .head {
	display: flex;
	position: relative;
	width: 100%;
	height: 35px;
	align-content: center;
	color: #333;
	background-color: var(--widget-element-bg-color);
	font-weight: 600;
	text-transform: uppercase;
	border: 1px solid var(--widget-border-color);;
}

.widget .head .title {
	flex-basis: auto;
	flex-grow: 0;
	flex-shrink: 1;
    padding: 0px 10px;
	margin: auto 0px;
    color: inherit;
	text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
    text-decoration: none !important;
	line-height: 1;
}

.widget .head .title span {
    display: inline-block;
}

.widget .head .check {
	position:relative;
	display: inline-block;
	width: 35px;
	text-align:center;
	border-right: 1px solid #CCC;	
	font-size: 0px;
}

.widget .head .check input[type="checkbox"] {
	display: block;
	position: absolute;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 15px;
	height: 15px;
	margin: auto;
	background-color: #FFF;
	border: 1px solid #CCC;
	outline: none;
	cursor: pointer;
}

.widget .head .check input[type="checkbox"]:checked {
	background-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtY2hlY2sgZmEtdy0xNiBmYS05eCI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6IiBjbGFzcz0iIj48L3BhdGg+PC9zdmc+);
	background-size: 85%;
	background-position: center;
	background-repeat: no-repeat;
}

.widget .head .check input[type="checkbox"]:hover {
	background-color: #F9F9F9;
    border-color: #AAA;	
}

.widget .head .check input[type="checkbox"]:focus {
    border-color: #4D90FE;
}

.widget .head .check label {
	width: 100%;
    height: 100%;
    position: relative;
    margin: 0px;
	cursor: pointer;
}

.widget .head .icon {
	position: relative;
	width: 35px;
	text-align: center;
	border-right: 1px solid var(--widget-border-color);;	
    color: inherit;
}

.widget .head .icon.fa:before, .widget .head .icon.fas:before, .widget .head .icon.far:before, .widget .head .icon.fab:before {
	display: block;
    position: relative;
    top: calc(50%);
    transform: translateY(-40%);
}

.widget .head .icon span {
	position:relative;
	display: block;
	top: 10px;
	color: inherit;
}

.widget .head .icon img {
    display: block;
    position: relative;
    margin: auto;
    width: 15px;
    height: 15px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.widget .head input[type="text"] {
    outline: none;
    position: relative;
	color: #333;
	border: 1px solid #DDD;
	background-color: #FAFAFA;
    margin-left: 5px;
    font-size: 15px;
    font-weight: 400;
    font-family: monospace;
	padding: 3px 6px 0px 6px;
	line-height: 1;
}

.widget .head input[type="text"]:active, .widget .head input[type="text"]:hover {
	border: 1px solid #CCC;
}

.widget .head .actions {
	display: flex;
	flex-shrink: 0;
	flex-grow: 0;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;	
	margin-right: 0;
	margin-left: auto;
    padding-right: 5px;
    color: #555 !important;
}

.widget .head .amounts {
    padding-right: 10px;
}

.widget .head .amounts h4 {
    margin: auto 0px;
    font-weight: 700;
    position: relative;
    font-size: 20px;
}

.widget .head .tag {
	position: relative;
	margin: 0px !important;
	padding: 6.5px 10px 7.5px 10px;
	border-right: 1px solid var(--widget-border-color);
	height: 100%;
	max-height: 35px;
    text-overflow: ellipsis;
    color: inherit;
    word-break: break-all;
    white-space: nowrap;
    text-decoration: none !important;
}

.widget .head .tag img {
	display: inline-block;
	height: 32px;
}

.widget .content {
	border: 1px solid var(--widget-border-color);
	border-top: none;
	padding: 15px;
    background-color: #FFF;
    width: 100%;
	overflow: hidden;
}

.widget .footer {
	display: flex;
	justify-content: flex-end;
	align-content: center;
	width: 100%;
    color: #333;
	background-color: var(--widget-element-bg-color);
	border: 1px solid var(--widget-border-color);
    border-top: none;
    text-align: right;
    padding: 5px 10px;
}

.widget .footer button.action, 
.modal-footer button.action {
    font-weight: 600;
    margin-left: 5px;
    padding: 5px 8px;
    background: #F5F5F5;
    border: 1px solid var(--widget-border-color);
	border-radius: 4px;
    outline: none;
    transition: background-color 0.125s, border-color 0.3s;
}

.widget .footer button.action:hover, 
.modal-footer button.action:hover {
	background-color: var(--highlight-background-color);
	border: 1px solid var(--highlight-border-color);
}

.widget .footer button.widgetAction:active, .widget .footer button.action:active, .modal-footer button.action:active {
    background: #EAEAEA;
}

.widget hr {
	margin-top: 10px;
	margin-bottom: 10px;	
}

.widget.boxed .head {
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
}

.widgetHeadLink {
    color: inherit !important;
    text-transform: none !important;
    text-decoration: none !important;
}

.widget .head .title select {
	margin: -3px 0px auto -6px;
	padding: 0px;
    background-color: transparent;
    /*border: none;*/
    border: 1px solid #CCC;
    outline: none;
    vertical-align: middle;
}

.widget .percentage-wrapper {
    border: 1px solid #CCC;
    border-top: none;
    background-color: #FFF;
    display: block;
    width: 100%;
}

.widget .percentage {
    position: relative;
    display:block;
    width: 0%;
    height: 3px;
    background-color: #657d92;
    transition: width 0.2s;
}

.widget .percentage span {
    position: absolute;
    color: #657d92;
    font-size: 12px;
    font-weight: 600;
    top: -15px;
    right: 2px;
}

.widget .head.loading::after {
	position: absolute;
	top: 4px;
	right: 8px;
	font-family: FontAwesome;
	font-size: 125%;
	text-align: center;
	width: 26px;
	height: 26px;
	content: '\f1ce';
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
	color: #06C !important;
}

.widget .head .actions button, 
.widget .head .actions a {
	display: inline-block;
	position: relative;
	top: 0px;
	margin: 0px 3px 0px 0px;
	padding: 1px 6px;
    height: 26px;
    width: auto;
	min-width: 26px;
    border: 1px solid var(--widget-border-color);
	border-radius: 4px;
    background-color: var(--button-background);
	text-align: center;
	font-weight: 600;
	color: #555;
	line-height: 1.6;
    overflow: hidden;
	outline: none;
	vertical-align: middle;
	transition: background-color 0.125s, border-color 0.3s;
}

.widget .head .actions button:hover, .widget .head .actions a:hover {
	background-color: var(--highlight-background-color);
	border-color: var(--highlight-border-color);
}

.widget .head .actions button:hover, 
.widget .head .actions a:hover,
.widget .head .actions button:focus, 
.widget .head .actions a:focus {
	border-color: var(--highlight-border-color);
}

.widget .head .actions button span, .widget .head .actions a span {
	margin: 0px;
}

.widget .content .rTable {
	border-radius: 0px;
}

.widget .content .rTable th, .widget .content .rTable th {
	border-radius: 0px !important;
}

.widget .head .actions .dropdown {
	display: inline-block;
	position: relative;
    height: 26px;
    width: auto;
    min-width: 26px;
    border: 1px solid var(--widget-border-color);
    background-color: var(--button-background);
    border-radius: 4px;
    text-align: center;
	outline: none;
    top: 0px;
	margin: 0px 3px 0px 0px;
	vertical-align: top;
	cursor: pointer;
	padding: 1px 35px 1px 10px;
	transition: background-color 0.125s, border-color 0.3s;
}

.widget .head .actions .dropdown:hover {
	background-color: var(--highlight-background-color);
	border-color: var(--highlight-border-color);
}

.widget .head .actions .dropdown:active,
.widget .head .actions .dropdown:focus {
	border-color: var(--highlight-border-color);
}

.widget .head .actions .dropdown::after {
    display: block;
    position: absolute;
    height: 18px;
    top: 3px;
    right: 2px;
    content: '\f078';
	font-weight: 600;
    font-family: "Font Awesome 5 Pro";
    border-left: 1px solid #BBB;
    font-size: 14px;
    padding: 4px 5px;
    line-height: 1;
}

.widget .head .actions .dropdown span {
	vertical-align: text-bottom;
}

.widget .head .actions .dropdown ul {
	position: absolute;
	display: none;
	visibility: hidden;
	top: 25px;
	right: -1px;
	list-style-type: none;
	padding: 2px 0px;
	z-index: 1000;
	font-size: 14px;
	text-align: left;
	font-weight: 400;
	background-color: #FDFDFD;
	border: 1px solid #DDD;
	min-width: 200px;
	box-shadow: -1px 1px 4px -2px rgba(0,0,0,0.5);
}

.widget .head .actions .dropdown.active ul {
	display: block;
	visibility: visible;
}

.widget .head .actions .dropdown ul li {
	display: block;
	padding: 3px 10px;
	color: #000;
	white-space: nowrap;
	text-transform: initial;
}

.widget .head .actions .dropdown ul li span {
	vertical-align: inherit;
	margin-right: 7px;
}

.widget .head .actions .dropdown ul li:hover {
	color: #FFF;
	background-color: #06D;
}

.widget .head .actions .dropdown ul li:hover span {
	color: #FFF !important;
}

.widget .head .actions .dropdown ul li:not(:last-child) {
	border-bottom: 1px solid #DDD;
}

.widget .head .actions .dropdown.loading {
	pointer-events: none;
}

.widget .head .actions .dropdown.loading span {
	-webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.widget .head .actions .dropdown.loading span::before {
	content: '\f1ce' !important;
	color: #06D !important;
}

.page-title {
	display: block;
	position: sticky;
	top: 0;
	font-size: 16px;
    color: #555;
	background-color: #FFF;
    margin: 0px 0px 15px -15px;
	width: calc(100% + 30px);
	min-height: 38px;
    border-bottom: 1px solid var(--widget-border-color);
    padding: 10px 15px;
    font-weight: 600;
	line-height: 1;
	z-index: 1001;
}

.page-title>span {
	line-height: 0.9;
    display: inline-block;
    vertical-align: baseline;
}

@media screen and (max-width: 575px) {
	.page-title {
		display: block;
		position: relative;
		top: 0px;
		margin: 0px 0px 15px -15px;
	}

	.page-title>span {
		display: none;
	}
}

.input-group-addon input {
    border: none;
    margin: 0px;
    padding: 0px;
    outline: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    max-width: 50px;
	height: 18px;
	background-color: transparent !important;
}

.rTable.editable tr td>input[type="text"], .rTable.editable tr td>select {
	border: none;
	width: 100%;
	text-align: center;
	display: table-cell;
	outline: none;
	background: inherit;
	cursor: default;
}

.rTable.editable td.has-error, .rTable.editable td.has-error input {
	color: #F00 !important;
	background-color: #FFF0F0;
}

.rTable.editable tr.editing {
	background-color: #FFF0F0;
}

.rTable.editable tr.editing td>input[type="text"] {
	cursor: text;
}

.rTable.editable .action.save {
	display: none;
}

.rTable.editable .action.edit {
	display: inline-block;
}

.rTable.editable tr.editing .action.save { 
	display: inline-block;
}

.rTable.editable tr.editing .action.edit {
	display: none;
}

.redRow {
	background-color: rgba(255,0,0,0.15);
}

.greenRow {
	background-color: rgba(0,150,0,0.15);
}

.blueRow {
	background-color: rgba(8,77,240,0.175);
}

.whiteRow {
	background-color: #FFF !important;
}

@media print {
    
    a:link:after,
    a:visited:after {
        content: "" !important;
    }

    .toPrintInline {
    	display: inline-block !important;
    }

    .toPrint {
    	display: block !important;
    }

    .noPrint {
    	display: none;
    }
    
    .widget .head {
    	background-color: #F5F5F5 !important;
    }

}

.footer.orderListAmount {
	color: #4286ad;
	font-weight: 700;
	font-size: 16px;
	padding-top: 6px;
	padding-bottom: 6px;
}

.footer.orderListAmount:after {
	display: block;
	clear: both;
	content: '';
}

.orderBody {
    height: 160px;
    max-height: 160px;
    padding: 0px !important;
}

@media screen and (min-width: 768px) {
	.modal-dialog.modal800 {
		width: 800px;
		margin: 30px auto;
	}	
}

.sticker {
	background-color: #207DC5;
	display: inline-block;
	border-radius: 3px;
	color: #EEE;
	padding: 3px 6px 2px 6px;
	margin: 0px 2px 2px 0px;
	-moz-user-select: none;
	--webkit-user-select: none;
	user-select: none;
	position: relative;
	text-shadow: 0.5px 0.5px 1px #333333;
	font-size: 13px;
	font-weight: 600;
	line-height: 16px;
	opacity: 1;
	transition: opacity 0.3s;
	cursor: pointer;
}

.sticker.user::before {
	display: inline-block;
	content: "\f007";
	font-family: FontAwesome;
	font-size: 12px;
	color: #EEE;
	opacity: 0.75;
	line-height: 16px;
	margin: 0px 5px 0px 0px;
	position: relative;
}

.sticker.user.highlight::before {
	color: #39FF14;
}

.sticker.hashtag::before {
	display: inline-block;
	content: "\f292";
	font-family: FontAwesome;
	font-size: 12px;
	color: #FFF;
	opacity: 0.75;
	line-height: 16px;
	margin: 0px 5px 0px 0px;
	position: relative;
}

.sticker.size {
	background-color: #00C691;
}

.sticker.size::before {
	display: inline-block;
	content: "\f02c";
	font-family: FontAwesome;
	font-size: 12px;
	color: #FFF;
	opacity: 0.85;
	line-height: 16px;
	margin: 0px 5px 0px 0px;
	position: relative;
}

.sticker.size input[type="text"] {
	display: none;
	visibility: hidden;
	width: 0;
	height: 0;
}

.sticker.color {
	background-color: #00A4BF;
}

.sticker.color::before {
	display: inline-block;
	content: "\f043";
	font-family: FontAwesome;
	font-size: 12px;
	color: #FFF;
	opacity: 0.85;
	line-height: 16px;
	margin: 0px 5px 0px 0px;
	position: relative;
}

.sticker.color input[type="text"] {
	display: none;
	visibility: hidden;
	width: 0;
	height: 0;
}

.sticker>span {
	display: inline-block;
	position: relative;
	top: 1.5px;
	font-size: 125%;
	text-shadow: none;
}

.sticker>span:hover {
	color: #E00;
}

.sticker a.remove {
	text-shadow: none !important;
    color: #F00;
    font-size: 22px;
    text-decoration: none !important;
    margin-left: 3px;
    line-height: 0.4;
    display: inline-block;
    position: relative;
    top: 3px;
}

.modal-percentage {
    position: relative;
    display:block;
    width: 0%;
    height: 3px;
    background-color: #657d92;
    transition: width 0.2s;
}

.modal-percentage span {
    position: absolute;
    color: #657d92;
    font-size: 12px;
    font-weight: 600;
    top: -15px;
    right: 2px;
}

.dashButton {
    width: 100%;
    font-size: 18px;
    color: #888;
    min-height: 100px;
}

.dashButton span.fa {
    width: 100%;
    font-size: 1.6em;
    display: block;
    margin-bottom: 10px;
}

.legendBox {
	border: 1px solid #CCC;
	position: absolute;
	right: 15px;
	top: 15px;
	padding: 10px 10px 5px 10px;
	-webkit-box-shadow: 1px 1px 6px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 1px 1px 6px 0px rgba(0,0,0,0.5);
	box-shadow: 1px 1px 6px 0px rgba(0,0,0,0.5);
	background-color: rgba(255,255,255,0.5);
}

.legendBox .label {
	display: block;
	height: 16px;
	font-size: 12px;
	font-weight: 600;
	color: #333;
	border: none;
	border-radius: 0px;
	border-left: 16px solid #CCC;
	margin: 0px 0px 5px 0px;
	text-align: left;
}

.usrSendMessage::before {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.orderItemSetInStock[data-val="0"] {
	color: #E00;
}

.orderItemSetInStock[data-val="1"] {
	color: #090;
}

.productFlag {
	cursor: pointer;
	color: #CCC;
	padding: 10px;
}

.productFlag.active {
	color: #090;
}

.serverLogItem {
	position: relative;
	display: block;
	width: 100%;
	border: 1px solid #CCC;
	border-color: #CCC;
	border-style: solid;
	border-width: 1px;
	border-left-width: 8px;
	border-bottom-width: 2px;
	margin-bottom: 15px;
	padding: 10px 10px 10px 300px;
}

.serverLogDate {
	position: absolute;
	display: flex;
	top: 0px;
	left: 0px;
	width: 280px;
	height: 100%;
	font-weight: 600;
	border-right: 1px solid #CCC;
	justify-content: center;
	align-items: center;
	background-color: #F9F9F9;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
}

.serverLogDate span {
	text-align: center;
	flex-basis: 100%;
	flex-grow: 1;
	flex-shrink: 1;
	display: block;
	height: 20px;
}

.serverLogItem.error {
	border-left-color: #E00;
}

.serverLogItem.warning {
	border-left-color: #FFA819;
}

.serverLogItem.notice {
	border-left-color: #0073D1;
}

.serverLogItem.parse {
	border-left-color: #EBE200;
}

.serverLogItem.catchable {
	border-left-color: #B1002C;
}

.serverLogItem.unmatched {
	border-left-color: #000;
}

.serverLogItem.page404 {
	border-left-color: #CF0076;
}

.serverLogDir {
	display: inline-block;
	border: 1px solid #CCC;
	background-color: #F8F8F8;
	padding: 5px 10px;
	color: #000 !important;
	font-weight: 600;
	min-width: 100px;
	text-decoration: none !important;
	margin: 5px 0px 5px 0px;
}

.serverLogDir.active {
	border-color: #002D89;
	background-color: rgba(0,45,137,0.20);
	color: #0063BF !important;
}

.serverLogDir::before {
	display: inline-block;
	content: '';
	width: 20px;
	height: 20px;
	background-image: url('../img/ui/folder.svg');
	background-size: contain;
	vertical-align: bottom;
	margin-right: 10px;
}

#folders {
	position: sticky;
	top: 38px;
	width: calc(100% + 30px);
	border-bottom: 1px solid #CCC;
	z-index: 9999;
	margin: -15px auto 20px -15px;
	background-color: rgba(250, 250, 250, 0.90);
	padding: 15px;
}

#folderContainer {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.folder {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(160px - 20px);
	text-decoration: none !important;
	color: #555;
	margin: 10px;
	text-transform: uppercase;
	background-color: #F8F8F8;
	border: 1px solid var(--widget-border-color);
	border-radius: var(--element-border-radius);
	box-shadow: var(--main-shadow);
	cursor: pointer;
	transition: background-color 0.125s, border-color 0.3s;
}

.folder:hover {
	border-color: var(--highlight-border-color);
	background-color: var(--highlight-background-color);
}

.folder img {
	display: block;
	width: 75%;
	margin: auto;
}

.folder p {
	font-weight: 600;
	text-align: center;
	display: block;
	max-width: 100%;
	font-size: 12px;
    padding: 0px 10px;
}

#couponsWrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.coupon {
	position: relative;
	display: inline-block;
	height: 200px;
	flex-basis: 300px;
	overflow: hidden;
	margin: 15px auto;
	flex-grow: 0;
	flex-shrink: 0;
}

.coupon .inner {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 998;
	border: 1px dashed #BBB;
	background-color: #F4F8FA;
	color: #000;
}

.coupon .code {
	width: 100%;
	text-align: center;
	font-size: 28px;
	font-family: monospace;
	margin: 15px auto;
	font-weight: 400;
	text-shadow: 1px 1px #FFF;
}

.coupon .value {
	position: absolute;
	width: 100%;
	text-align: center;
	font-size: 56px;
	top: calc(50% - 28px);
	left: 0px;
	line-height: 1;
	font-family: 'Open Sans';
	font-weight: 600;
	text-shadow: 1px 1px #FFF;
}

.coupon .validity {
	position: absolute;
	right: 10px;
	bottom: 5px;
	font-family: monospace;
	font-size: 14px;
}

.coupon .inner.void::before {
	position: absolute;
	content: 'SCADUTO';
	font-size: 56px;
	line-height: 1;
	color: #888;
	z-index: 998;
	text-align: center;
	width: 100%;
	font-weight: 700;
	transform: rotate(-23deg);
	opacity: 0.2;
	pointer-events: none;
	top: calc(50% - 28px);
}

.coupon::before, .coupon:after {
	display: block;
	border-radius: 100%;
	width: 76px;
	height: 76px;
	content: '';
	background-color: #FFF;
	border: 1px dashed #BBB;
	position: absolute;
	left: -38px;
	top: calc(50% - 38px);
	z-index: 999;
}

.coupon::after {
	right: -38px !important;
	left: auto;
}

.coupon .inner[data-name]:not([data-name=""])::after {
	display: block;
	content: attr(data-name);
	position: absolute;
	left: 6px;
	bottom: 5px;
	font-size: 12px;
	background-color: #06C;
	color: #FFF;
	padding: 0px 4px;
	border-radius: 3px;
}

.param {
	margin-bottom: 10px;
}

.param:last-child {
	margin-bottom: 0px;
}

.param input {
	width: calc(50% - 25px);
	margin-right: 6px;
	display: inline-block;
	vertical-align: top;
}

.param button {
	display: inline-block;
	vertical-align: top;
	width: 32px;
	height: 32px;
}

.param button span {
	margin-left: -1px;
}

@media screen and (max-width: 480px) {
	.checkbox.custom label {
		white-space: normal !important;
	}
}

.ordersListInner {
	padding: 0px !important;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.ordersListDetails {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 375px;
	max-width: 100%;
	background-color: #FFF;
	border-right: 1px solid #CCC;
	padding: 0px;
	overflow-x: hidden;
}

#ordersListWrapper:empty::before {
    display: block;
    width: 100%;
    content: 'Nessun risultato trovato';
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    background-color: #FFF;
    padding: 20px;
    box-shadow: var(--main-shadow);
    border-radius: var(--element-border-radius);
	border: 1px solid var(--widget-border-color);
}

@media screen and (max-width: 768px) {
	.ordersListDetails {
		border-right: 0px;
	}
}

.ordersListElements {
	position: relative;
	flex-grow: 1;
	flex-shrink: 0;
	overflow-y: scroll;
	overflow-x: hidden;
}

.ordersListElements table.rTable {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	max-width: 100%;
	table-layout: fixed;
}

.ordersListElements table.rTable td {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.ordersListSectionInfo {
	position: relative;
	width: 100%;
	padding: 15px 15px 15px 60px;
}

.ordersListSectionInfo:not(:last-child) {
	border-bottom: 2px solid #DDD;
}

.ordersListSectionInfo a:first-child {
	display: block;
	width: 100%;
	text-transform: uppercase;
	margin-bottom: 3px;
	color: #06D;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ordersListSectionInfo a:nth-child(2) {
	display: block;
	color: #000;
	text-decoration: none !important;
}

.ordersListSectionInfo>span {
	display: block;
	width: 100%;
	line-height: 1;
	margin-bottom: 0px;
}

.ordersListSectionInfo label {
	display: block;
	width: 100%;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0px;
}

.ordersListSectionInfo>label + label {
	margin-top: 8px;
}

.ordersListSectionInfo>label>span {
	font-weight: 400;
	line-height: 1;
}

.ordersListUserInfo::before {
	position: absolute;
	top: 18px;
	left: 15px;
	background-image: url(../svg/user-book.svg);
	background-repeat: no-repeat;
	content: '';
	display: block;
	width: 35px;
	height: 45px;
}

.ordersListOrderInfo::before {
	position: absolute;
	top: 14px;
	left: 15px;
	background-image: url(../svg/info.svg);
	background-repeat: no-repeat;
	content: '';
	display: block;
	width: 35px;
	height: 45px;
}

.ordersListGrandTotal {
	font-family: monospace;
	background-color: #ececec;
	padding: 2px 10px;
}

#utmUrlBuilder {
	display: flex;
	min-height: 400px;
	padding: 0px;
}

#utmUrlBuilder #params {
	flex-basis: 40%;
	flex-grow: 0;
	flex-shrink: 0;
	min-height: 100%;
	background-color: #F2F2F2;
	padding: 15px;
	border-right: 1px solid #CCC;
}

#utmUrlBuilder #urls {
	flex-basis: 60%;
	flex-grow: 0;
	flex-shrink: 0;
	min-height: 100%;
	background-color: #FFF;
}

.param {
	margin-bottom: 10px;
}

.param:last-child {
	margin-bottom: 0px;
}

.param input {
	width: calc(50% - 25px);
	margin-right: 6px;
	display: inline-block;
	vertical-align: top;
}

.param button {
	display: inline-block;
	vertical-align: top;
	width: 32px;
	height: 32px;
}

.param button span {
	margin-left: -1px;
}

#urls {
	padding: 15px;
}

#loadMcUtms {
	display: block;
	margin-top: 10px;
}

.widget .content>textarea {
	display: block;
	width: 100%;
	height: 74px;
	padding: 6px 10px;
	resize: none;
	border: none;
	font-family: monospace;
	color: #333;
	outline: none;
}

#orderTools a {
	display: block;
	color: #606060;
}

#orderTools a:not(:last-child) {
	margin-bottom: 7px;
	padding-bottom: 7px;
	border-bottom: 1px solid #EEE;
}

#orderTools a:hover {
	color: #000;
}

.input-group-addon.reset {
	cursor: pointer;
}

.product .content {
	display: flex;
	padding: 0px;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	overflow: hidden;
}

.product .image {
	flex: 0 0 292px;
	background-size: cover;
	background-position: center;
}

.product .image::before {
	display: block;
	content: '';
	width: 100%;
	padding-bottom: 100%;
}

.product .info {
	flex: 0 0 500px;
	border-left: 1px solid var(--widget-border-color);
	border-right: 1px solid var(--widget-border-color);
}

.product .stats, .user .stats {
	flex-basis: 100%;
	flex-shrink: 1;
	flex-grow: 1;
	padding: 15px;
}

.product .stats a, .product .stats p, .user .stats a, .user .stats p {
	display: block;
	padding: 0px 0px 5px 0px;
	margin-bottom: 5px;
	border-bottom: 1px dotted #DDD;
}

@media screen and (max-width: 991px) {
	.product .content {
		flex-wrap: wrap;
	}

	.product .content>div {
		border-left: 0px;
		border-right: 0px;
		flex-basis: 100%;
	}

	.product .content .image {
		border-bottom: 1px solid #CCC;
	}
}

@media screen and (min-width: 992px) {
	.product .info table:last-child tr:last-child td, .product .info table:last-child tr:last-child th {
		border-bottom: 0px;
	}
}

.dashboard-header {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.dashboard-header>div {
	position: relative;
	flex: 0 1 calc(100% - 15px);
	max-width: 50%;
	border: 1px solid #DDD;
	border-bottom: 3px solid #06D;
	border-radius: 2px;
	background-color: #FFF;
	padding: 30px 10px;
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	margin-right: 15px;
}

.dashboard-header>div:last-child {
	margin-right: 0px;
}

.dashboard-header h3 {
	display: block;
	font-size: 28px;
	margin: 0px;
	text-align: center;
}

.dashboard-header h3 span {
	font-size: 42px;
}

.dashboard-header h3 span::after {
	display: none;
	content: '---';
}

.dashboard-header h3 span:empty::after {
	display: inline-block;
}

.dashboard-header label {
	display: block;
	opacity: 0.75;
	font-weight: 300;
	font-size: 18px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 8px 0px 0px;
	text-align: center;
}

@media screen and (max-width: 991px) {
	.dashboard-header {
		flex-wrap: wrap;
	}

	.dashboard-header>div {
		margin-right: 0px;
		flex: 1 1 100%;
		max-width: 100%;
	}
}

.loading-overlay::before {
    position: absolute;
    display: block;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 999;
    position: absolute;
    display: block;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    background-size: 42px, cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iZUhjMjRkSlVqZ0wxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHRleHQtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48c3R5bGU+PCFbQ0RBVEFbI2VIYzI0ZEpVamdMMl90ciB7YW5pbWF0aW9uOiBlSGMyNGRKVWpnTDJfdHJfX3RyIDEwMDBtcyBsaW5lYXIgaW5maW5pdGUgbm9ybWFsIGZvcndhcmRzfUBrZXlmcmFtZXMgZUhjMjRkSlVqZ0wyX3RyX190ciB7IDAlIHt0cmFuc2Zvcm06IHRyYW5zbGF0ZSgyNTZweCwyNTZweCkgcm90YXRlKDBkZWcpfSAyNSUge3RyYW5zZm9ybTogdHJhbnNsYXRlKDI1NnB4LDI1NnB4KSByb3RhdGUoOTBkZWcpfSA1MCUge3RyYW5zZm9ybTogdHJhbnNsYXRlKDI1NnB4LDI1NnB4KSByb3RhdGUoMTgwZGVnKX0gNzUlIHt0cmFuc2Zvcm06IHRyYW5zbGF0ZSgyNTZweCwyNTZweCkgcm90YXRlKDI3MGRlZyl9IDEwMCUge3RyYW5zZm9ybTogdHJhbnNsYXRlKDI1NnB4LDI1NnB4KSByb3RhdGUoMzYwZGVnKX19XV0+PC9zdHlsZT48ZyBpZD0iZUhjMjRkSlVqZ0wyX3RyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyNTYsMjU2KSByb3RhdGUoMCkiPjxnIGlkPSJlSGMyNGRKVWpnTDIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNTYsLTI1NikiPjxwYXRoIGlkPSJlSGMyNGRKVWpnTDMiIGQ9Ik00NTYuNzEwMDAwLDM3MC42OTAwMDBMNDI4Ljg4MDAwMCwzNTQuNzkwMDAwQzQyMi4yMjczNDcsMzUwLjkxMDkyMiw0MTkuMzA1MDQzLDM0Mi44MjYxNjIsNDIxLjk0MDAwMCwzMzUuNTkwMDAwQzM4Mi41NTIyMjksNDE3LjY4OTA5NywyODkuMDM3NzQ2LDQ1OC42MzA0MDAsMjAxLjk5NjE4OSw0MzEuODgyOTU5QzExNC45NTQ2MzIsNDA1LjEzNTUxOSw2MC41Njg1NTgsMzE4Ljc0NTEwNSw3NC4wODE0NTIsMjI4LjY5NDc4NkM4Ny41OTQzNDYsMTM4LjY0NDQ2NywxNjQuOTQxNDYwLDcyLjAyMTg1MiwyNTYsNzJDMjYxLjg5MDAwMCw3MiwyNjcuNzEwMDAwLDcyLjI5MDAwMCwyNzMuNDYwMDAwLDcyLjgzMDAwMEMyNzIuNzIwMDAwLDcyLjc2MDAwMCwyNzEuOTgwMDAwLDcyLjY4MDAwMCwyNzEuMjMwMDAwLDcyLjYyMDAwMEMyNjIuNzQwMDAwLDcxLjkzMDAwMCwyNTYsNjUuMzEwMDAwLDI1Niw1Ni43OTAwMDBMMjU2LDI0Ljc5MDAwMEMyNTUuOTkyNjkzLDE2LjIwNDkwMiwyNjIuNzYyMjA2LDkuMTQ0MTMyLDI3MS4zNDAwMDAsOC43OTAwMDBDMjY2LjI0MDAwMCw4LjQ2MDAwMCwyNjEuMTgwMDAwLDgsMjU2LDhDMTE5LDgsOCwxMTksOCwyNTZDOCwzOTMsMTE5LDUwNCwyNTYsNTA0QzM1NCw1MDQsNDM4LjQyMDAwMCw0NDcuMDUwMDAwLDQ3OC43MTAwMDAsMzY0LjU4MDAwMEM0NzQuNTgwMDAwLDM3Mi40NDAwMDAsNDY0LjQ4MDAwMCwzNzUuMTMwMDAwLDQ1Ni43MTAwMDAsMzcwLjY5MDAwMFoiIGZpbGw9IiMwMDY2REQiIGZpbGwtb3BhY2l0eT0iMC4yNSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiLz48cGF0aCBpZD0iZUhjMjRkSlVqZ0w0IiBkPSJNMjcxLjIzMDAwMCw3Mi42MjAwMDBDMjYyLjc0MDAwMCw3MS45MzAwMDAsMjU2LDY1LjMxMDAwMCwyNTYsNTYuNzkwMDAwTDI1NiwyNC43MzAwMDBDMjU2LDE1LjYyMDAwMCwyNjMuNjcwMDAwLDcuOTUwMDAwLDI3Mi43NzAwMDAsOC41NjAwMDBDNDAxLjkyMDAwMCwxNy4xODAwMDAsNTA0LDEyNC42NzAwMDAsNTA0LDI1NkM1MDQuMDI4ODEyLDI5My41MTQyNDUsNDk1LjQ3NzQ2MCwzMzAuNTM4MTc5LDQ3OSwzNjQuMjQwMDAwQzQ3NSwzNzIuNDEwMDAwLDQ2NC42MzAwMDAsMzc1LjI0MDAwMCw0NTYuNzQwMDAwLDM3MC42OTAwMDBMNDI4LjkwMDAwMCwzNTQuNzkwMDAwQzQyMS40OTAwMDAsMzUwLjU2MDAwMCw0MTkuMDcwMDAwLDM0MS40NDAwMDAsNDIyLjcwMDAwMCwzMzMuNzIwMDAwQzQzNC4xMTU2NzcsMzA5LjQwMjA2Miw0NDAuMDIyODY5LDI4Mi44NjQwODksNDQwLDI1NkM0NDAsMTU5LjUxMDAwMCwzNjUuNzMwMDAwLDgwLjM3MDAwMCwyNzEuMjMwMDAwLDcyLjYyMDAwMFoiIGZpbGw9IiMwMDY2REQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9nPjwvZz48L3N2Zz4=);
    z-index: 999;
}

@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg)
	}
}

@-moz-keyframes rotation {
	0% {
		-moz-transform: rotate(0)
	}

	100% {
		-moz-transform: rotate(360deg)
	}
}

@-ms-keyframes rotation {
	0% {
		-ms-transform: rotate(0)
	}

	100% {
		-ms-transform: rotate(360deg)
	}
}

@-o-keyframes rotation {
	0% {
		-o-transform: rotate(0)
	}

	100% {
		-o-transform: rotate(360deg)
	}
}

@keyframes rotation {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

.has-shadow {
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1);
}

.range-picker, #headActions select, #headActions .pagination>div, #headActions input[type="text"] {
	display: inline-block;
	position: relative;
	text-align: left;
	font-weight: 400;
	text-decoration: none !important;
	color: #333;
	font-size: 14px;
	padding: 2px 8px 3px 8px;
	height: 28px;
	cursor: pointer;
	background-color: #F2F2F2;
	border: 1px solid #DDD;
	border-radius: 4px;
	outline: none;
	text-shadow: none;
	vertical-align: middle;
	line-height: 1.3;
	transition: background-color 0.125s, border-color 0.3s;
}

.range-picker, #headActions select {
	min-width: 80px;
}

.range-picker:hover, #headActions select:hover, #headActions .pagination>div:hover, #headActions input[type="text"]:hover {
	background-color: var(--highlight-background-color);
	border-color: var(--highlight-border-color);
}

#headActions input[type="text"]  {
	background-color: #FFF !important;
}

.range-picker span {
	display: inline-block;
	vertical-align: middle;
	line-height: 1.7;
}

.range-picker span::after {
	display: inline-block;
	content: '\f107';
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	margin-left: 10px;
	font-size: 14px;
}

#headActions>label {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	vertical-align: middle;
	margin: 0px 5px 0px 10px;
}

#headActions .pagination {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 0px 10px;
	padding: 0;
	height: 28px;
}

#headActions .pagination>* {
	display: inline-flex;
	height: 28px;
	vertical-align: middle;
}

#headActions .pagination div {
	width: 28px;
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
}

#headActions .pagination input {
	width: 45px;
	text-align: center;
}

#headActions .pagination .first {
	background-image: url('/assets/img/ui/pagination_first.svg');
}

#headActions .pagination .prev {
	background-image: url('/assets/img/ui/pagination_prev.svg');
}

#headActions .pagination .next {
	background-image: url('/assets/img/ui/pagination_next.svg');
}

#headActions .pagination .last {
	background-image: url('/assets/img/ui/pagination_last.svg');
}

#headActions,
.nav-toggle {
	position: absolute;
	top: 50%;
    right: 15px;
	transform: translateY(-50%);
}

#headActions .action,
.nav-toggle {
	display: inline-block;
    text-align: center;
    font-weight: 600;
    text-decoration: none !important;
    color: #333;
    font-size: 14px;
    padding: 4px 8px 3px 8px;
    min-width: 80px;
    height: 28px;
    cursor: pointer;
    background-color: #F2F2F2;
	border: 1px solid #DDD;
	border-radius: 4px;
	text-shadow: none;
	transition: background-color 0.125s, border-color 0.3s;
}

#headActions .action:hover,
.nav-toggle:hover {
	background-color: #0066DD40;
	border-color: #06D;
}

#headActions .action span {
	display: inline-block;
    font-size: 18px;
    vertical-align: middle;
}

#headActions p {
	margin: 0px 0px 0px 6px;
    text-transform: capitalize;
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 991px) {

	#headActions {
		right: 60px;
	}	

	.daterangepicker span.drp-selected {
		display: none;
	}

	.daterangepicker .ranges {
		float: none;
		border-bottom: 1px solid #DDD;
	}

	.daterangepicker .ranges ul {
		width: 100%;
	}

}

.table-wrapper {
	overflow-x: scroll;
	border: 1px solid #CCC;
}

.table-wrapper table {
	border: none !important;
}

.table-wrapper table tfoot tr:last-of-type th, .table-wrapper table tfoot tr:last-of-type td {
	border-bottom: none !important;
}

#dashboard-services {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
}

#dashboard-services .service {
	position: relative;
	flex: 0 1 100%;
	font-size: 24px;
	text-align: center;
	border-radius: var(--element-border-radius);
	background-color: #FFF;
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	margin-right: 15px;
	padding: 15px;
	overflow: hidden;
}

#dashboard-services .service:last-child {
	margin-right: 0px;
}

#dashboard-services .service span {
	display: block;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    margin-top: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    opacity: 0.75;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
	#dashboard-header>div, #dashboard-payments>div {
		flex: 0 0 calc(50% - 15px);
	}

	#dashboard-services {
		flex-wrap: wrap;
	}

	#dashboard-services .service {
		flex: 0 0 calc(50% - 15px);
		margin: 0px 30px 15px 0px;
	}
}

@media screen and (max-width: 480px) {
	#dashboard-services .service {
		flex: 0 0 100%;
		margin: 0px 0px 15px;
	}

	#dashboard-header>div, #dashboard-payments>div {
		flex: 0 0 100%;
	}
}

#product-editor-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#product-data-wrapper {
	flex: 0 0 calc(100% - 380px);
}

#file-drag-wrapper {
	display: block;
	position: sticky;
	flex: 0 0 360px;
	top: 91px;
}

.file-drag {
	display: block;
	position: relative;
	border: 1px solid #DDD;
	margin-bottom: 10px;
}

.file-drag::before {
	display: block;
	width: 100%;
	content: '';
	padding-bottom: 100%;
	background-color: #FFF;
	background-position: center 25%;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48ZyBjbGFzcz0iZmEtZ3JvdXAiPjxwYXRoIGZpbGw9IiNGMkYyRjIiIGQ9Ik00NjQsMTI3LjA4SDI3MmwtNjQtNjRINDhhNDgsNDgsMCwwLDAtNDgsNDh2Mjg4YTQ4LDQ4LDAsMCwwLDQ4LDQ4SDQ2NGE0OCw0OCwwLDAsMCw0OC00OHYtMjI0QTQ4LDQ4LDAsMCwwLDQ2NCwxMjcuMDhaTTM2NC40NCwyODIuNDQsMjY4LDM3OC4xNGExNy4wNSwxNy4wNSwwLDAsMS0yNCwwbC05Ni40Mi05NS43YTE2LDE2LDAsMCwxLDExLjI1LTI3LjM0SDIyNHYtNDhhMTYsMTYsMCwwLDEsMTYtMTZoMzJhMTYsMTYsMCwwLDEsMTYsMTZ2NDhoNjUuMThBMTYsMTYsMCwwLDEsMzY0LjQ0LDI4Mi40NFoiPjwvcGF0aD48cGF0aCBmaWxsPSIjQ0NDQ0NDIiBkPSJNMzY0LjQ0LDI4Mi40NCwyNjgsMzc4LjE0YTE3LjA1LDE3LjA1LDAsMCwxLTI0LDBsLTk2LjQyLTk1LjdhMTYsMTYsMCwwLDEsMTEuMjUtMjcuMzRIMjI0di00OGExNiwxNiwwLDAsMSwxNi0xNmgzMmExNiwxNiwwLDAsMSwxNiwxNnY0OGg2NS4xOEExNiwxNiwwLDAsMSwzNjQuNDQsMjgyLjQ0WiI+PC9wYXRoPjwvZz48L3N2Zz4=");
	background-size: 150px auto;
	z-index: 1;
}

.file-drag::after {
	display: block;
	position: absolute;
	width: 100%;
	content: 'Trascina qui l\'immagine oppure fai click per selezionarla';
	text-align: center;
	font-size: 20px;
	padding: 0px 20px;
	color: #BBB;
	bottom: 20%;
	pointer-events: none;
	z-index: 1;
}

.file-drag .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 2;
}

.file-drag input {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	opacity: 0;
}

@media screen and (max-width: 768px) {
	#product-editor-wrapper {
		flex-wrap: wrap;
	}

	#file-drag-wrapper {
		position: relative;
		top: initial;
		flex: 0 0 100%;
		margin-bottom: 15px;
	}

	#product-data-wrapper {
		flex: 0 0 100%;
	}
}

.other-listings {
	display: inline-block;
	width: 16px;
	height: 16px;
	font-size: 12px;
	padding: 2px;
	text-align: center;
	border-radius: 100%;
	line-height: 1;
	background-color: #E00;
	color: #FFF !important;
}

.expandableFilterFields {
	display: block;
	overflow: hidden;
	transition: height 0.25s;
}

.expandableFilterFields.closed {
	height: 0px;
}

#logo-container {
	padding: 3px 0px;
}

#logo-container img {
	display: block;
	margin: 0px auto;
	padding: 2px 0px;
	height: 32px;
}

#images-container {
	display: grid;
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    grid-auto-rows: 1fr;
    margin: 0px;
}

#images-container .product-image {
    display: block;
    position: relative;
	width: 100%;
    margin: 0px;
    border: 1px solid #DDD;
	overflow: hidden;
	cursor: move;
}

#images-container .product-image::after {
    display: block;
    width: 100%;
    content: '';
    padding-bottom: 100%;
}

#images-container .product-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
}

#images-container .product-image span {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 24px;
	width: 24px;
	background-color: #FFF;
	background-image: url("data:image/svg+xml;base64,PHN2ZyByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDQ0OCA1MTIiPjxnPjxwYXRoIGZpbGw9IiNGRkNBQ0EiIGQ9Ik01My4yIDQ2N0wzMiA5NmgzODRsLTIxLjIgMzcxYTQ4IDQ4IDAgMCAxLTQ3LjkgNDVIMTAxLjFhNDggNDggMCAwIDEtNDcuOS00NXoiPjwvcGF0aD48cGF0aCBmaWxsPSIjRTAwMDAwIiBkPSJNMCA4MFY0OGExNiAxNiAwIDAgMSAxNi0xNmgxMjBsOS40LTE4LjdBMjMuNzIgMjMuNzIgMCAwIDEgMTY2LjggMGgxMTQuM2EyNCAyNCAwIDAgMSAyMS41IDEzLjNMMzEyIDMyaDEyMGExNiAxNiAwIDAgMSAxNiAxNnYzMmExNiAxNiAwIDAgMS0xNiAxNkgxNkExNiAxNiAwIDAgMSAwIDgweiI+PC9wYXRoPjwvZz48L3N2Zz4=");
	background-size: 55%;
	background-position: center;
	background-repeat: no-repeat;
	border-width: 1px 0px 0px 1px;
	border-color: #EEE;
	border-style: solid;
	z-index: 999;
	cursor: pointer;
}

#images-container .product-image:hover span {
	display: block;
}

#images-container .product-image.sortable-ghost {
    border-color: #06D;
    background-color: #0066DD70;
}

#images-container .product-image.sortable-ghost img {
    opacity: 0;
}

.order-heading {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
}

.order-heading-info {
	flex: 1 1 auto;
}

.order-heading-tools {
	flex: 0 0 350px;
	margin-left: 30px;
}

@media screen and (max-width: 768px) {
	.order-heading {
		flex-wrap: wrap;
	}
	
	.order-heading-info {
		flex: 1 1 100%;
		margin-bottom: 15px;
	}
	
	.order-heading-tools {
		flex: 0 0 100%;
		margin-left: 0px;
	}
}

#paymentTypeModal #types {
	margin-bottom: 0;
}

#paymentTypeModal #types label {
	display: block;
	position: relative;
	width: 80%;
	border: 1px solid #EEE;
	padding: 8px 10px 8px 40px;
	background-color: #FCFCFC;
	color: #555;
	margin: 0px auto 10px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	transition: all 0.25s;
}

#paymentTypeModal #types label:last-child {
	margin-bottom: 0px;
}

#paymentTypeModal #types label:hover {
	background-color: #FAFAFA;
	border-color: #DADADA;
	color: #333;
}

#paymentTypeModal #types label input {
	margin: 0px 10px 0px 0px;
	vertical-align: top;
}

#paymentTypeModal #types label span {
	display: block;
	position: absolute;
	width: 32px;
	border-right-width: 1px;
	border-right-style: solid;
	border-color: inherit;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	text-align: center;
}

.cdoFont {
	color: #DD0000;
}

.pplFont {
	color: #3B7BBF;
}

.btoFont {
	color: #009944;
}

.crdFont {
	color: #E15B26;
}

.cardItem .content {
	position: relative;
	overflow: hidden;
}

.cardItem .content::before {
	display: block;
	width: 100%;
	content: '';
	padding-bottom: 40%;
}

.cardItem .content img {
	position: absolute;
	max-height: 100%;
	max-width: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

.cardItem.sortable-ghost[data-role="slide"] .widget {
	border: 1px dashed #06D;
	background-color: rgba(0, 102, 221, 0.10);
}

.cardItem.sortable-ghost[data-role="slide"] .head {
	opacity: 0;
}

.cardItem.sortable-ghost[data-role="slide"] .content {
	border: none;
	opacity: 0;
}

#dashboard-header, #dashboard-payments {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: space-between;
}

#dashboard-header>div {
	position: relative;
	flex: 0 1 calc(100% - 15px);
	border: 1px solid #DDD;
	border-bottom: 3px solid #06D;
	border-radius: var(--element-border-radius);
	background-color: #FFF;
	padding: 30px 0px;
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	margin-right: 15px;
}

#dashboard-header>div:last-child {
	margin-right: 0px;
}

#dashboard-header h3 {
	display: block;
	font-size: 28px;
	margin: 0px;
	text-align: center;
}

#dashboard-header h3 span {
	font-size: 42px;
}

#dashboard-header label {
	display: block;
	opacity: 0.75;
	font-weight: 300;
	font-size: 18px;
	margin: 8px 0px 0px;
	text-align: center;
}

#dashboard-payments .block {
	position: relative;
	flex: 0 0 calc(25% - 15px);
	border-radius: var(--element-border-radius);
	background-color: #FFF;
	padding: 20px 0px 20px 70px;
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	overflow: hidden;
}

#dashboard-payments .block::before {
	position: absolute;
	color: #FFF;
	text-align: center;
	font: normal normal normal 18px/1 "Font Awesome 5 Pro";
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	height: 100%;
	padding: 38px 0px;
	width: 56px;
}

#dashboard-payments .block[data-kind="cash_on_delivery"]::before {
	background-color: #DD0000;
	content: '\f53a';
}

#dashboard-payments .block[data-kind="paypal"]::before {
	font-family: "Font Awesome 5 Brands";
	background-color: #3B7BBF;
	content: '\f1ed';
}

#dashboard-payments .block[data-kind="bank_transfer"]::before {
	background-color: #009944;
	content: '\f19c';
}

#dashboard-payments .block[data-kind="credit_card"]::before {
	background-color: #E15B26;
	content: '\f38a';
}

#dashboard-payments .block[data-kind="not_delivered"]::before {
	background-color: #E15B26;
	content: '\f071';
}

#dashboard-payments .block[data-kind="deliver_today"]::before {
	background-color: #26d8e1;
	content: '\f784';
}

.cdoFont {
	color: #DD0000;
}

.pplFont {
	color: #3B7BBF;
}

.btoFont {
	color: #009944;
}

.crdFont {
	color: #E15B26;
}

#dashboard-payments .block label {
	font-size: 14px;
	font-weight: 300;
	color: #888;
	margin: 0px 0px 3px;
	pointer-events: none;
}

#dashboard-payments .block h3 {
	color: #000;
	font-size: 20px;
	margin: 0;
	pointer-events: none;
}

#dashboard-payments .block h3 span {
	font-size: 28px;
}

@media screen and (max-width: 991px) {
	#dashboard-header {
		flex-wrap: wrap;
	}

	#dashboard-header .block {
		margin-right: 0px;
	}

	#dashboard-payments {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 575px) {
	#dashboard-header>div, #dashboard-payments .block {
		flex: 0 0 100%;
	}
}

#headProgress {
	display: flex;
	position: absolute;
	right: 20px;
	top: 0;
	height: 100%;
	padding: 5px 0px;
}

#headProgress .step {
	position: relative;
	color: #FFF;
	background-color: #BBB;
	font-size: 14px;
	font-weight: 400;
	padding: 6px 26px 6px 28px;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	text-shadow: 0 0 6px rgb(0 0 0 / 40%);
}

#headProgress .step:not(:last-child) {
	margin-right: 10px;
}

#headProgress .step:not(:last-child)::after {
	display: block;
	position: absolute;
	top: 0px;
	height: 100%;
	width: 11px;
	content: '';
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzIDMyIj48cGF0aCBmaWxsPSIjQkJCQkJCIiBmaWxsLW9wYWNpdHk9IjEiIGQ9Ik0wIDBoM2MyLjggMCA0IDMgNCAzbDYgMTMtNiAxM3MtMS4wNiAzLTQgM0gwVjB6Ii8+PC9zdmc+");
	background-size: contain;
	left: calc(100% - 6px);
}

#headProgress .step.complete {
	background-color: #00A74C;
}

#headProgress .step.complete::after {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDEzIDMyIj48cGF0aCBmaWxsPSIjMDBhNzRjIiBmaWxsLW9wYWNpdHk9IjEiIGQ9Ik0wIDBoM2MyLjggMCA0IDMgNCAzbDYgMTMtNiAxM3MtMS4wNiAzLTQgM0gwVjB6Ii8+PC9zdmc+");
}


#headProgress .step.loading {
	color: transparent;
	text-shadow: none;
}

#headProgress .step.loading::before {
	position: absolute;
	width: 38px;
	height: 38px;
	top: calc(50% - 20px);
	left: calc(50% - 19px);
	content: '';
	background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAwIDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik03Myw1MGMwLTEyLjctMTAuMy0yMy0yMy0yM1MyNywzNy4zLDI3LDUwIE0zMC45LDUwYzAtMTAuNSw4LjUtMTkuMSwxOS4xLTE5LjFTNjkuMSwzOS41LDY5LjEsNTAiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiB0eXBlPSJyb3RhdGUiIGR1cj0iMXMiIGZyb209IjAgNTAgNTAiIHRvPSIzNjAgNTAgNTAiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIj48L2FuaW1hdGVUcmFuc2Zvcm0+PC9wYXRoPjwvc3ZnPg==");
	background-size: cover;
}

@media screen and (max-width: 575px) {

	#headProgress {
		justify-content: center;
	}
	
	#headProgress .step {
		padding: 6px 15px 6px 12px;
	}
}

.purchaseDeliveryDate {
	display: flex;
	align-items: center;
	overflow: hidden;
}

.purchaseDeliveryDate span {
	flex: 0 0 18px;
}

.purchaseDeliveryDate label {
	font-weight: 400;
	white-space: nowrap;
	margin: 0px 6px 0px 3px;
	line-height: 0.9;
}

.purchaseDeliveryDate input {
	flex: 0 0 100px;
	max-width: 100px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	padding: 0px;
	border: none;
	border-bottom: 1px solid #CCC;
	outline: none;
	cursor: pointer;
	background-color: #F6F6F7;
}

@media screen and (max-width: 575px) {
	.widget .head .actions button, .widget .head .actions a {
		position: relative;
		font-size: 0;
	}

	.widget .head .actions button span, .widget .head .actions a span {
		position: absolute;
		font-size: 14px;
		top: 51%;
		left: 50%;
		transform: translate3d(-50%, -40%, 0);
	}
}

/* AUTOCOMPLETE PLUGIN STYLING */
.autocomplete-suggestions {
	text-align: left;
	cursor: default;
	border: 1px solid #ccc;
	border-top: 0;
	background: #fff;
	box-shadow: -1px 1px 3px rgba(0,0,0,.1);
	position: absolute;
	display: none;
	z-index: 9999;
	max-height: 254px;
	overflow: hidden;
	overflow-y: auto;
	box-sizing: border-box;
}

.autocomplete-suggestion {
	position: relative;
	padding: 10px 15px;
	line-height: 1.6;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	color: #333;
	cursor: pointer;
}
.autocomplete-suggestion.selected {
	background: #f0f0f0;
}

.autocomplete-suggestion:not(:last-child) {
	border-bottom: 1px solid #EEE;
}

.autocomplete-suggestion .title, .autocomplete-suggestion .subtitle {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.autocomplete-suggestion .title {
	display: block;
	color: #000;
	font-size: 14px;
}

.autocomplete-suggestion .subtitle {
	display: block;
	color: #888;
	font-size: 12px;
}
/* AUTOCOMPLETE PLUGIN STYLING */

select.form-control {
	padding: 4px 6px 6px 6px;
}

.flagger {
	display: block;
	cursor: pointer;
	text-decoration: none !important;
	color: #06C;
	text-align: center;
} 

.flagger::after {
	content: "\f00c";
	display: block;
	font-size: 18px;
	line-height: 1;
	font-weight: 800;
	font-family: 'Font Awesome 5 Pro';
}

.flagger[data-val="0"] {
	color: #AAA !important;
}

.flagger[data-val="1"] {
	color: #090 !important;
}

.flagger.loading {
	color: #06C !important;
}

.flagger.icon::after {
	position: relative;
	top: 30%;
}

.flagger.loading::after {
	content: "\f1ce";
	-webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.relative {
	position: relative;
}

.notifications {
	display: block;
	position: fixed;
	width: 360px;
	right: 0px;
	top: 48px;
	user-select: none;
	z-index: 4999;
}

.notification {
	position: relative;
	padding: 10px 15px;
	margin: 0px 20px 10px 0px;
	border: 1px solid #CCC;
	border-radius: 2px;
	background: #F5F5F5;
	cursor: pointer;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
	transform: translate3d(0,0,0);
	transition: transform 0.5s, opacity 0.5s;
	opacity: 1;
	width: calc(100% - 15px);
	display: block;
}

.notification.success {
	border-bottom: 3px solid #0B0;
}

.notification.warning {
	border-bottom: 3px solid #F90;
}

.notification.error {
	border-bottom: 3px solid #E00;
}

.notification.info {
	border-bottom: 3px solid #08D;
}

.notification .title {
	margin: 3px 0px;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	display: block;
}

.notification .text {
	margin: 5px 0px 0px;
	font-size: 14px;
	color: #777;
}

.notification.entering {
	transform: translate3d(305px,0,0);
	opacity: 0;
}

.notification.closing {
	transform: translate3d(305px,0,0);
	opacity: 0;
}

.nav-toggle {
	right: 15px;
	width: 40px;
	min-width: unset;
}

@media screen and (min-width: 992px) {
	.nav-toggle {
		display: none;
	}
}

.input-search {
	position: relative;
}

.input-search select {
	position: absolute;
	top: 100%;
	display: none;
	padding: 0px;
	width: 100%;
	z-index: 9999;
}

.input-search select option {
	padding: 5px 10px;
}

.checkbox.custom label {
	position: relative;
	padding-right: 10px;
	white-space: nowrap;
}

.checkbox.custom label .sign {
	display: block;
	position: absolute;
	top: 2px;
	left: 0px;
	width: 16px;
	height: 16px;
	border: 1px solid #CCC;
	background-color: #FFF;
	background-size: 85%;
	background-position-x: center;
	background-position-y: center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.checkbox.custom>label>input[type="checkbox"]:hover ~ span.sign {
	background-color: #F9F9F9;
}

.checkbox.custom>label>input[type="checkbox"]:checked ~ span.sign {
	background-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtY2hlY2sgZmEtdy0xNiBmYS05eCI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6IiBjbGFzcz0iIj48L3BhdGg+PC9zdmc+);
}

.checkbox.custom label input[type="checkbox"] {
	opacity: 0;
}

.checkbox.custom label:hover .sign {
	border-color: #AAA;
}

.checkbox.custom label input[type="checkbox"]:focus ~ span.sign {
	border-color: #4D90FE;
}

.checkbox.custom label span.sign.loading {
	background-image: none !important;
	background-color: #FFF;
}

.checkbox.custom label span.sign.loading::before {
	background-color: transparent;
	position: absolute;
	top: 0px;
	left: 0px;
	content: '\f1ce';
	display: block;
	font-family: FontAwesome;
	color: #06D;
	animation: fa-spin 2s infinite linear;
	text-align: center;
	line-height: 1.0;
}

.checkbox.custom.inline {
	display: inline-block;
}

input[type="checkbox"].styled {
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
	width: 16px;
	height: 16px;
    border: 1px solid #CCC;
    outline: none;
	background-color: #FFF;
	background-size: 75%;
	background-position-x: center;
	background-position-y: center;
	background-repeat: no-repeat;
	cursor: pointer;
	margin-top: 2px;
	vertical-align: top;
}

input[type="checkbox"].styled:hover {
    background-color: #F9F9F9;
    border-color: #AAA;
}

input[type="checkbox"].styled:checked {
	background-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtY2hlY2sgZmEtdy0xNiBmYS05eCI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6IiBjbGFzcz0iIj48L3BhdGg+PC9zdmc+);
}

input[type="checkbox"].styled:focus {
	border-color: #4D90FE;
}

input[type="checkbox"].styled.loading {
    background-color: #FFF;
    background-size: 90%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxwYXRoIGZpbGw9IiMwMDY2REQiIGQ9Ik0yODggMzkuMDU2djE2LjY1OWMwIDEwLjgwNCA3LjI4MSAyMC4xNTkgMTcuNjg2IDIzLjA2NkMzODMuMjA0IDEwMC40MzQgNDQwIDE3MS41MTggNDQwIDI1NmMwIDEwMS42ODktODIuMjk1IDE4NC0xODQgMTg0LTEwMS42ODkgMC0xODQtODIuMjk1LTE4NC0xODQgMC04NC40NyA1Ni43ODYtMTU1LjU2NCAxMzQuMzEyLTE3Ny4yMTlDMjE2LjcxOSA3NS44NzQgMjI0IDY2LjUxNyAyMjQgNTUuNzEyVjM5LjA2NGMwLTE1LjcwOS0xNC44MzQtMjcuMTUzLTMwLjA0Ni0yMy4yMzRDODYuNjAzIDQzLjQ4MiA3LjM5NCAxNDEuMjA2IDguMDAzIDI1Ny4zMzJjLjcyIDEzNy4wNTIgMTExLjQ3NyAyNDYuOTU2IDI0OC41MzEgMjQ2LjY2N0MzOTMuMjU1IDUwMy43MTEgNTA0IDM5Mi43ODggNTA0IDI1NmMwLTExNS42MzMtNzkuMTQtMjEyLjc3OS0xODYuMjExLTI0MC4yMzZDMzAyLjY3OCAxMS44ODkgMjg4IDIzLjQ1NiAyODggMzkuMDU2eiI+PC9wYXRoPjwvc3ZnPg==);
}

.flex {
	display: flex;
}

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

.fx10 {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 10%;
}

.fx20 {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 20%;
}

.fx25 {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 25%;
}

.fx33 {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 33%;
}

.fx40 {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 40%;
}

.fx50 {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 50%;
}

.modal .modal-footer {
	padding: 4px 15px;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
	background-image: none !important;
	border: 1px solid #06D;
	background-color: #0066DD25 !important;
    color: #333;
}

.ui-state-highlight:hover, .ui-widget-content .ui-state-highlight:hover, .ui-widget-header .ui-state-highlight:hover {
	border: 1px solid #0199fe;
    background-color: #4399fd28 !important;
    color: #222;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	background-image: none !important;
	background-color: #EEE;
	font-weight: 600;
}

.tabs {
	width: 100%;
	max-width: 100%;
	position: relative;
}

.tabs>.head {
	position: relative;
	min-width: 100%;
	padding: 0px 5px;
	margin-bottom: -1px;
	font-size: 0px;
	white-space: nowrap;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	z-index: 999;
}

.tabs>.head>.tab {
	position: relative;
	display: inline-block;
	background-color: #F7F7F7;
	padding: 6px 6px;
	font-weight: 600;
	font-size: 14px;
	border: 1px solid #CCC;
	vertical-align: bottom;
	cursor: pointer;
	margin-right: 3px;
	flex-grow: 0;
	flex-shrink: 1;
	overflow: hidden;
	transition: border-top-color 0.25s, background-color 0.25s;
}

.tabs>.head>.tab::after {
	display: inline-block;
	content: attr(title);
	overflow: hidden;
	line-height: 1;
	vertical-align: middle;
}

.tabs>.head>.tab.active {
	border-top: 2px solid #06D;
	border-bottom-color: #FFF;
	padding: 8px 6px 6px 6px;
	background-color: #FBFBFB;
}

.tabs>.head>.tab.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.tabs>.content {
	position: relative;
	width: 100%;
	max-width: 100%;
	border: 1px solid #CCC;
	padding: 15px 15px 45px 15px;
	z-index: 998;
	background-color: #FBFBFB;
}

.tabs>.content>.tab {
	display: none;
}

.tabs>.content>.tab.active {
	display: block;
}

.tabs>.content>.tab.disabled>* {
	display: none;
}

.tabs>.content>.tab::after {
	display: table;
	content: '';
	clear:both;
	float: none;
}

.tabs>.content>.tab>.footer {
	position: absolute;
	width: 100%;
	height: 43px;
	padding: 5px 15px;
	left: 0px;
	bottom: 0px;
	background-color: #EEEFEF;
	border-top: 1px solid #CCC;
	text-align: right;
}

.tabs.horizontal {
	display: flex;
	flex-direction: row;
}

.tabs.horizontal>.head {
	display: flex;
	min-width: auto;
	min-height: 600px;
	width: 215px;
	flex-basis: 215px;
	flex-direction: column;
	align-items: flex-end;
	padding: 0px;
	margin-right: -1px;
}

.tabs.horizontal>.head>.tab {
	width: calc(100% - 1px);
	border-right-color: #CCC;
	border-bottom: 0px;
	margin-right: 0px;
}

.tabs.horizontal>.head>.tab:last-child {
	border-bottom: 1px solid #CCC;
}

.tabs.tabs.horizontal>.head>.tab.active {
	border-top: 1px solid #CCC;
	padding-top: 6px;
	border-left: 2px solid #06D;
	border-right-color: #FFF;
	width: 100%;
}

.tabs.horizontal>.content {
	width: calc(100% - 215px);
	max-width: calc(100% - 215px);
	display: block;
}

.input-group-addon.is-valid span.fa {
	color: #090 !important;
}

.input-group-addon.is-valid span.fa::before {
	content: '\f00c';
}

.input-group-addon.is-error span.fa {
	color: #D00 !important;
}

.input-group-addon.is-error span.fa::before {
	content: '\f00d';
}

.input-group.loading .input-group-addon span.fa {
	content: '\f1ce';
	line-height: 0.75;
	color: #06D !important;
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
	cursor: default;
	pointer-events: none;
}

.input-group.loading .input-group-addon span.fa::before {
	content: '\f1ce';
}

.input-group-addon.loading span.fa {
	content: '\f1ce';
	line-height: 0.75;
	color: #06D !important;
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
	cursor: default;
	pointer-events: none;
}

.input-group-addon.loading span.fa::before {
	content: '\f1ce';
}

.cursor-pointer {
	cursor: pointer;
}

.gr2 {
	grid-template-columns: repeat(2, 1fr);
}

.gr3 {
	grid-template-columns: repeat(3, 1fr);
}

.gr4 {
	grid-template-columns: repeat(4, 1fr);
}

.gr5 {
	grid-template-columns: repeat(5, 1fr);
}

.gr6 {
	grid-template-columns: repeat(6, 1fr);
}

.gr8 {
	grid-template-columns: repeat(8, 1fr);
}

.gr10 {
	grid-template-columns: repeat(10, 1fr);
}

.gr12 {
	grid-template-columns: repeat(12, 1fr);
}

.gr16 {
	grid-template-columns: repeat(16, 1fr);
}

.borderColorAnimate {
	animation-name: border_color_animate;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes border_color_animate {
	0% {
		border-color: #FF0000FF;
	}
	25% {
		border-color: #FF000077;
	}
	50% {
		border-color: #FF000022;
	}
	75% {
		border-color: #FF000077;
	}
	100% {
		border-color: #FF0000FF;
	}
}

@-webkit-keyframes border_color_animate {
	0% {
		border-color: #FF0000FF;
	}
	25% {
		border-color: #FF000077;
	}
	50% {
		border-color: #FF000022;
	}
	75% {
		border-color: #FF000077;
	}
	100% {
		border-color: #FF0000FF;
	}
}

@-moz-keyframes border_color_animate {
	0% {
		border-color: #FF0000FF;
	}
	25% {
		border-color: #FF000077;
	}
	50% {
		border-color: #FF000022;
	}
	75% {
		border-color: #FF000077;
	}
	100% {
		border-color: #FF0000FF;
	}
}

.loading {
	position: relative;
}

.loading::before {
	display: block;	
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0 !important;
	left: 0;
	background-color: rgba(250, 250, 250, 0.3);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iZUhjMjRkSlVqZ0wxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHRleHQtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48c3R5bGU+PCFbQ0RBVEFbI2VIYzI0ZEpVamdMMl90ciB7YW5pbWF0aW9uOiBlSGMyNGRKVWpnTDJfdHJfX3RyIDEwMDBtcyBsaW5lYXIgaW5maW5pdGUgbm9ybWFsIGZvcndhcmRzfUBrZXlmcmFtZXMgZUhjMjRkSlVqZ0wyX3RyX190ciB7IDAlIHt0cmFuc2Zvcm06IHRyYW5zbGF0ZSgyNTZweCwyNTZweCkgcm90YXRlKDBkZWcpfSAyNSUge3RyYW5zZm9ybTogdHJhbnNsYXRlKDI1NnB4LDI1NnB4KSByb3RhdGUoOTBkZWcpfSA1MCUge3RyYW5zZm9ybTogdHJhbnNsYXRlKDI1NnB4LDI1NnB4KSByb3RhdGUoMTgwZGVnKX0gNzUlIHt0cmFuc2Zvcm06IHRyYW5zbGF0ZSgyNTZweCwyNTZweCkgcm90YXRlKDI3MGRlZyl9IDEwMCUge3RyYW5zZm9ybTogdHJhbnNsYXRlKDI1NnB4LDI1NnB4KSByb3RhdGUoMzYwZGVnKX19XV0+PC9zdHlsZT48ZyBpZD0iZUhjMjRkSlVqZ0wyX3RyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyNTYsMjU2KSByb3RhdGUoMCkiPjxnIGlkPSJlSGMyNGRKVWpnTDIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNTYsLTI1NikiPjxwYXRoIGlkPSJlSGMyNGRKVWpnTDMiIGQ9Ik00NTYuNzEwMDAwLDM3MC42OTAwMDBMNDI4Ljg4MDAwMCwzNTQuNzkwMDAwQzQyMi4yMjczNDcsMzUwLjkxMDkyMiw0MTkuMzA1MDQzLDM0Mi44MjYxNjIsNDIxLjk0MDAwMCwzMzUuNTkwMDAwQzM4Mi41NTIyMjksNDE3LjY4OTA5NywyODkuMDM3NzQ2LDQ1OC42MzA0MDAsMjAxLjk5NjE4OSw0MzEuODgyOTU5QzExNC45NTQ2MzIsNDA1LjEzNTUxOSw2MC41Njg1NTgsMzE4Ljc0NTEwNSw3NC4wODE0NTIsMjI4LjY5NDc4NkM4Ny41OTQzNDYsMTM4LjY0NDQ2NywxNjQuOTQxNDYwLDcyLjAyMTg1MiwyNTYsNzJDMjYxLjg5MDAwMCw3MiwyNjcuNzEwMDAwLDcyLjI5MDAwMCwyNzMuNDYwMDAwLDcyLjgzMDAwMEMyNzIuNzIwMDAwLDcyLjc2MDAwMCwyNzEuOTgwMDAwLDcyLjY4MDAwMCwyNzEuMjMwMDAwLDcyLjYyMDAwMEMyNjIuNzQwMDAwLDcxLjkzMDAwMCwyNTYsNjUuMzEwMDAwLDI1Niw1Ni43OTAwMDBMMjU2LDI0Ljc5MDAwMEMyNTUuOTkyNjkzLDE2LjIwNDkwMiwyNjIuNzYyMjA2LDkuMTQ0MTMyLDI3MS4zNDAwMDAsOC43OTAwMDBDMjY2LjI0MDAwMCw4LjQ2MDAwMCwyNjEuMTgwMDAwLDgsMjU2LDhDMTE5LDgsOCwxMTksOCwyNTZDOCwzOTMsMTE5LDUwNCwyNTYsNTA0QzM1NCw1MDQsNDM4LjQyMDAwMCw0NDcuMDUwMDAwLDQ3OC43MTAwMDAsMzY0LjU4MDAwMEM0NzQuNTgwMDAwLDM3Mi40NDAwMDAsNDY0LjQ4MDAwMCwzNzUuMTMwMDAwLDQ1Ni43MTAwMDAsMzcwLjY5MDAwMFoiIGZpbGw9IiMwMDY2REQiIGZpbGwtb3BhY2l0eT0iMC4yNSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiLz48cGF0aCBpZD0iZUhjMjRkSlVqZ0w0IiBkPSJNMjcxLjIzMDAwMCw3Mi42MjAwMDBDMjYyLjc0MDAwMCw3MS45MzAwMDAsMjU2LDY1LjMxMDAwMCwyNTYsNTYuNzkwMDAwTDI1NiwyNC43MzAwMDBDMjU2LDE1LjYyMDAwMCwyNjMuNjcwMDAwLDcuOTUwMDAwLDI3Mi43NzAwMDAsOC41NjAwMDBDNDAxLjkyMDAwMCwxNy4xODAwMDAsNTA0LDEyNC42NzAwMDAsNTA0LDI1NkM1MDQuMDI4ODEyLDI5My41MTQyNDUsNDk1LjQ3NzQ2MCwzMzAuNTM4MTc5LDQ3OSwzNjQuMjQwMDAwQzQ3NSwzNzIuNDEwMDAwLDQ2NC42MzAwMDAsMzc1LjI0MDAwMCw0NTYuNzQwMDAwLDM3MC42OTAwMDBMNDI4LjkwMDAwMCwzNTQuNzkwMDAwQzQyMS40OTAwMDAsMzUwLjU2MDAwMCw0MTkuMDcwMDAwLDM0MS40NDAwMDAsNDIyLjcwMDAwMCwzMzMuNzIwMDAwQzQzNC4xMTU2NzcsMzA5LjQwMjA2Miw0NDAuMDIyODY5LDI4Mi44NjQwODksNDQwLDI1NkM0NDAsMTU5LjUxMDAwMCwzNjUuNzMwMDAwLDgwLjM3MDAwMCwyNzEuMjMwMDAwLDcyLjYyMDAwMFoiIGZpbGw9IiMwMDY2REQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9nPjwvZz48L3N2Zz4=);
	z-index: 1049;
}

.widget .head .actions button.loading, .widget .footer button.loading {
	pointer-events: none;
}

.widget .head .tag.loading {
	position: relative;
	color: #EDEDED !important;
	user-select: none;
}

.widget .content.loading {
	position: relative;
}

.action.loading {
	pointer-events: none;
}

#headActions .action.loading {
	pointer-events: none;
}

.loadAside::before {
	position: absolute;
	display: none;
	right: -8px;
	top: calc(50% - 9px);
	content: '\f1ce';
	color: #06D !important;
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
	cursor: default;
	pointer-events: none;
	font: normal normal normal 18px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; 
}

.loadAside.loading::before {
	display: block;
}

.rTable tr td button.cell-action {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 32px;
	height: 100%;
	background-color: #EEE;
	border-width: 0px 0px 0px 1px;
	border-color: #CCC;
	border-style: solid;
	outline: none;
}

.rTable tr td button.cell-action.loading {
	pointer-events: none;
}

.rTable tr td button.cell-action.loading span {
	-webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.rTable tr td button.cell-action.loading span::before {
	content: '\f1ce' !important;
	color: #06D !important;
}

.validate {
	color: #BBB;
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.validate.is-valid {
	color: #090;
}

.validate.has-error {
	color: #D00;
}

.validate.loading {
	color: #06D;
	-webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.validate::before {
	content: '\f021';
}

.validate.is-valid::before {
	content: '\f00c';
}

.validate.has-error::before {
	content: '\f05e';
}

.validate.loading::before {
	content: '\f1ce';
}

.capitalize {
	text-transform: uppercase !important;
}

.italic {
	font-style: italic;
}

.noPadding {
	margin: 0 !important;
	padding: 0 !important;
}

#userExplorerTbl tr td:last-child {
	text-align: center;
	width: 60px;
	background-color: #EEE;
	color: #06C;
	cursor: pointer;
}

#userExplorerTbl tr td:first-child {
	max-width: 320px;
	white-space: nowrap;
	overflow: hidden;
}

#userExplorerTblWrapper {
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
	border: 1px solid #CCC;
}

.product-variant {
	display: flex;
	flex-wrap: nowrap;
	background-color: #FCFCFC;
	padding: 14px;
	margin: 0px 0px 8px !important;
	border: 1px dashed #F0F0F0;
	overflow: hidden;
}

.product-variants-legend {
	display: flex;
	flex-wrap: nowrap;
	padding: 0px 57px 10px 15px;
}

.product-variant input[data-field="description"],
.product-variants-legend span[data-field="description"] {
	flex: 1 1 100%;
}

.product-variant input[data-field="stock"],
.product-variants-legend span[data-field="stock"],
.product-variant input[data-field="price_offset"],
.product-variants-legend span[data-field="price_offset"] {
	display: block;
	flex: 0 1 150px;
	margin-left: 10px;
	white-space: nowrap;
}

.product-variant input[data-field="stock"], 
.product-variant input[data-field="price_offset"] {
	text-align: center;
}

.product-variant button.product-variant-delete {
	flex: 0 0 32px;
	color: #F00;
	height: 32px;
	text-align: center;
	margin-left: 10px;
}

.elad-dashboard-pane {
	display: block;
	position: relative;
	width: 750px;
	max-width: 100%;
	margin: 5% auto;
	text-align: center;
}

.elad-dashboard-pane .content {
	padding: 60px 10px 30px;
}

.elad-dashboard-pane .choices {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-top: 40px;
}

.elad-dashboard-pane .choice {
	display: block;
	flex: 0 0 40%;
	color: #000 !important;
	font-weight: 400;
	font-size: 18px;
	padding: 30px 20px;
	margin-bottom: 25px;
}

.elad-dashboard-pane .choice i {
	display: block;
	font-size: 42px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.elad-dashboard-pane .choice {
		flex: 0 0 85%;
		font-size: 16px;
	}
}