@import url('bootstrap.min.css');
@import url('bootstrap-override.css');
@import url('jquery-ui-1.10.3.css');
@import url('font-awesome.min.css');
@import url('animate.min.css');
@import url('animate.delay.css');
@import url('toggles.css');
@import url('chosen.css');
@import url('lato.css');
@import url('lato.css');
@import url('pgfont.css');
@import url('gotham.css');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Roboto:wght@400;700&family=Lato:wght@400;700&family=Raleway:wght@400;700&family=Poppins:wght@400;700&family=Quicksand:wght@400;700&family=Inter:wght@400;700&display=swap');

:root {
	--loader-size: 36px;
	--loader-speed: 0.8s;
}

.fa-circle-notch:before {
	content: '' !important;
}
.fa-circle-notch{
    background-image: url(../images/loader.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: var(--loader-size);
    width: var(--loader-size);
    height: var(--loader-size);
}
body[theme="dark"] .fa-circle-notch {
	filter: hue-rotate(-20deg) brightness(1.5);
}
.fa-spin {
	-webkit-animation: fa-spin var(--loader-speed) infinite linear !important;
	animation: fa-spin var(--loader-speed) infinite linear !important;
}

/* Safari 10.1+ */
@media not all and (min-resolution:.001dpcm) { @media {
	.fa-circle-notch{
		filter: invert(30%) sepia(63%) saturate(2000%) hue-rotate(185deg);
	}
	body[theme="dark"] .fa-circle-notch {
		filter: invert(30%) sepia(63%) saturate(2000%) hue-rotate(145deg);
	}
}}

body {
	background: var(--bg-color, #f5f9fc);
	line-height: 21px;
	color: var(--primary, #364455);
	font-family: var(--font, sans-serif);
}

body.notfound,
body.signin {
background: #e7e7e7;
}


body[class^=banner-]::before {
	position: sticky;
	content: attr(css-banner);
	display: block;
	width: 100%;
	top: 0px;
	height: 40px;
	line-height: 40px;
	color: white;
	font-weight: bold;
	padding: 0;
	text-align: center;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.2117647059);
	background-image: repeating-linear-gradient(-55deg, #a59a20, #a59a20 15px, #565656 15px, #565656 30px); /* Fallback */
	grid-column: 1/-1;
	background-size: 100%;
	-webkit-animation: bg-loop 60s linear infinite;
	animation: bg-loop 60s linear infinite;
	pointer-events: none;
	z-index: 9999999999;
}
body[class^=banner-] .leftpanel, body[class^="banner-"] nav.navbar {
	margin-top: 40px;
}
body.banner-localhost::before {
	background-image: repeating-linear-gradient(-55deg, #dc2323, #dc2323 15px, #331616 15px, #331616 30px);
}
body.banner-staging::before {
	background-image: repeating-linear-gradient(-55deg, #42bd94, #42bd94 15px, #2da07a 15px, #2da07a 30px);
}
body.banner-devit::before {
	background-image: repeating-linear-gradient(-55deg, #4277bd, #4277bd 15px, #2d5e9f 15px, #2d5e9f 30px);
}
@keyframes bg-loop {
	0% {
		background-size: 100%;
	}
	100% {
		background-size: 200%;
	}
}

a:focus, a:active { outline: none; }

strong {
	font-weight: normal;
}

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

::selection {
	background-color: #0072ff54;
}

.readonly {
	cursor: default !important;
}
body:not([theme="dark"]) .readonly {
	background: #fff !important;
}
body[theme="dark"] .readonly {
	background: #27282b;
}


.clear {
	clear: both;
}

.pointer {
   cursor: pointer;
}

.nopointer {
   cursor: default !important;
}

/* preloader */
#preloader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 10000; 
   pointer-events: none;
}
body:not([theme="dark"]) #preloader {
	background-color: #f5f9fc;
}
body[theme="dark"] #preloader {
	background-color: #27282b;
}
#preloader .fa-spin {
	color: var(--active, #0861fd);
}

#preloader ~ .leftpanel {
	opacity: 0;
}
#preloader[style="display: none;"] ~ .leftpanel {
	opacity: 1;
}
#preloader[style*="opacity"] ~ .leftpanel {
	opacity: 1;
}
.fa-circle-notch {
    color: var(--active) !important;
	font-size: 36px !important;
}

#status {
   width: 30px;
   height: 30px;
   position: absolute;
   left: 50%; 
   top: 50%;
   margin: -15px 0 0 -15px;
   font-size: 32px;
}

.alert-danger-staging {
	color: #027a6e;
	background-color: #b5e6e1;
	border-color: #2bcbba;
}
  
.alert-danger-local {
   color: #b94a48;
   background-color: #f2dede;
   border-color: #ebccd1;
}

.alert-danger-devit {
   color: #3867d6;
   background-color: #95aade;
   border-color: #95aade;
}  

/* signin */




/***** HEADER PANEL *****/
/************************/

.menutoggle {
	display: none;
	float: left;
	width: 50px;
	height: 50px;
	font-size: 22px;
	padding: 14px 0 0 15px;
	cursor: pointer;
	float: left;
	color: #1d2939;
	/* border-right: 1px solid #eee; */
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.menutoggle:hover {
	background-color: var(--highlight, #eef5ff);
	color: var(--active);
}



.lang-menu {
   color: white !important;
   text-decoration: none !important;
   height: 50px;
   line-height: 50px;
   float: left;
   padding: 0 15px 0 15px;
   -moz-transition: all 0.2s ease-out 0s;
   -webkit-transition: all 0.2s ease-out 0s;
   transition: all 0.2s ease-out 0s;
}

.dropdown.open .lang-menu, .lang-menu:hover {
   color: white;
   background-color: var(--btn-primary);
   text-decoration: none !important;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
	background-image: none;
}

.lang-menu + .dropdown-menu {
   top: 50px;
   left: 50px;
   margin-top: 0;
}

.header-right {
	display: flex;
    justify-content: flex-end;
}

.headermenu {
	display: flex;
	align-items: center;
	list-style: none;
	height: 50px;
	padding: 0;
}

.headermenu > li {
	display: inline-block;
	position: relative;
}


.headermenu .tp-icon {
   padding: 12px 15px;
	height: 50px;
   font-size: 16px;
	background: #fff;
	color: var(--muted-600);
	border-color: #fff;
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.headermenu .tp-icon + .dropdown-menu:after {
	right: 17px;
}

.headermenu .chat-icon {
   border-right: 0;
}

.headermenu .dropdown-menu-usermenu {
   background: #010102;
	min-width: 200px;
}

.headermenu .dropdown-menu-head ul {
   border: 1px solid #ddd;
   border-top: 0;
	padding: 0 10px;
}

.headermenu .dropdown-menu-head li a {
   color: var(--muted-600);
   padding: 0;
   opacity: 1;
}

.headermenu .dropdown-menu-head li a:hover {
   background: none;
   color: #428BCA;
	text-decoration: none;
}

.headermenu .btn-group {
	margin-bottom: 0;
}

.dropdown-list li {
   padding: 15px;
   overflow: hidden;
   border-bottom: 1px solid #eee;
}

.dropdown-list li:last-child {
   border-bottom: 0;
}

.dropdown-list .thumb {
   width: 36px;
   float: left;
}

.dropdown-list .thumb img {
   width: 100%;
   display: block;
   vertical-align: middle;
}

.dropdown-list .desc {
   margin-left: 45px;
   display: block;
}

.dropdown-list .desc h5 {
   font-size: 13px;
   margin-top: 7px;
}

.dropdown-list li:last-child {
	padding: 7px 5px;
}

.dropdown-list li .badge {
   float: right;
}

.user-list {
   width: 300px;
}

.gen-list li a {
   display: block;
}

.gen-list li a:hover {
   color: var(--muted-600) !important;
   text-decoration: none;
}

.gen-list li .name {
	font-size: 13px;
   line-height: 21px;
   display: block;
}

.gen-list li .msg {
   font-size: 11px;
   line-height: normal;
   color: #999;
   display: block;
}


/***** LEFT PANEL *****/
/**********************/

.leftpanel {
	position: fixed;
	width: var(--panel-width);
	min-height: 100dvh;
	top: 0;
	left: 0;
	background: var(--nav-bg);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	z-index: 999999;
	transition: width 0.3s, left 0.3s, opacity 0.3s;
}

.sticky-leftpanel {
   position: fixed;
   height: 100%;
   overflow-y: auto;
}

.logopanel {
	margin: 20px 20px 18px;
    min-height: 40px;
    width: 240px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}
body[theme="dark"] .logopanel{
	filter: invert(100%) hue-rotate(192deg) saturate(5000%);
}

.logopanel h1 {
   font-size: 30px;
   letter-spacing: -1.5px;
   color: #1d2939;
   line-height: 30px;
   margin: 0;
}

.logopanel h1 span {
   color: #1caf9a;
}

.leftpanelinner {
   padding: 5px 15px 15px 15px;
}

.leftpanel .searchform {
   display: none;
}

.leftpanel .searchform::after {
   content: '';
   display: block;
   clear: both;
}

.leftpanel .searchform input {
   padding: 10px;
   height: auto;
   width: 100%;
   margin: 5px 0 20px 0;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;
   border-radius: 2px;
}

.leftpanel .userlogged {
   margin: 0;
   padding: 0;
   padding-bottom: 15px;
   margin-bottom: 15px;
   border-bottom: 1px solid rgba(255,255,255,0.1);
   display: none;
}

.leftpanel .userlogged .media-object {
   width: 40px;
   -moz-border-radius: 100px;
   -webkit-border-radius: 100px;
   border-radius: 100px;
   float: left;
   border: 2px solid var(--active-600);
   padding: 2px;
   margin-left: 2px;
}

.leftpanel .userlogged .media-body {
   margin-left: 50px;
   color: #ccc;
}

.leftpanel .userlogged .media-body h4 {
   font-size: 15px;
   margin: 0;
}

.leftpanel .userlogged .media-body span {
   font-style: italic;
   font-size: 11px;
   opacity: 0.5;
}

.sidebartitle {
   font-size: 11px;
   text-transform: uppercase;
   color: #999;
   margin-bottom: 10px;
   margin-left:10px;
}

.nav-bracket > li > a {
	font-weight: 50;
	color: var(--grayed);
}
.nav-bracket > li > a .menu-icon.filled {
	opacity: 0;
}

.nav>li>a:focus {
	background: unset;
	background-color: transparent;
	color: var(--active);
}
.nav-bracket > li.selected > a {
	background: unset;
	background-color: var(--highlight);
	color: var(--active);
	transition: background-color 0.3s ease;
}
.nav-bracket > li > a:hover,
.nav>li>a:hover,
.nav-parent.nav-hover > a,
.nav-parent ul.children a:hover {
	background: unset;
	background-color: var(--highlight-600);
	color: var(--active);
}
.nav-bracket > li > a:active {
	background: unset;
	background-color: var(--highlight-700);
	color: var(--active);
}



.nav-bracket > li > a:hover .menu-icon.filled,
.nav-bracket > li > a:active .menu-icon.filled,
.nav>li>a:hover .menu-icon.filled,
.nav>li>a:focus .menu-icon.filled,
.nav-parent.nav-hover > a .menu-icon.filled,
.nav-parent ul.children a:hover .menu-icon.filled,
.nav-bracket > li.selected > a .menu-icon.filled {
	opacity: 1;
}
.nav-bracket > li > a:hover .menu-icon.outline,
.nav-bracket > li > a:active .menu-icon.outline,
.nav>li>a:hover .menu-icon.outline,
.nav>li>a:focus .menu-icon.outline,
.nav-parent.nav-hover > a .menu-icon.outline,
.nav-parent ul.children a:hover .menu-icon.outline,
.nav-bracket > li.selected > a .menu-icon.outline {
	opacity: 0;
}
.nav-parent ul.children a:hover {
	border-radius: var(--radius-md, 4px);
}
.nav-bracket > li.selected > a {
	color: var(--active);
}
.nav-parent > a, .nav_external > a {
	display: inline-flex !important;
	width: 100%;
    gap: 18px;
}
.nav_external > a::after {
	content: '';
    display: inline-flex;
    position: relative;
	align-self: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    width: 16px;
    height: 16px;
	background-image: url(../images/pg/iconly/external.svg) !important;
	filter: saturate(0) brightness(1.3);
	transition: filter 0.3s;
	margin-left: auto;
}
.nav_external:hover > a::after {
	filter: saturate(1);
}
body[theme="dark"] .nav_external > a::after {
	filter: saturate(0) brightness(1.75);
}
body[theme="dark"] .nav_external:hover > a::after {
	filter: hue-rotate(-20deg) brightness(1.5) saturate(0.7);
}


.nav-parent > ul {
    position: relative;
    left: 32px;
	width: calc(100% - 32px);
}


.nav-bracket > li.active > a,
.nav-bracket > li.active > a:hover,
.nav-bracket > li.active > a:focus {
   background-color: var(--active-600);
   color: #fff;
}

.nav-bracket > li.active > a {
	-moz-box-shadow: 0 3px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 0 rgba(0,0,0,0.2);
	box-shadow: 0 3px 0 rgba(0,0,0,0.2);
}

.nav-bracket > li.nav-parent.active > a {
   background-image: url(../images/plus.png); 
}

.nav-bracket > li.nav-active.active > a {
   background-image: url(../images/minus.png); 
}

.nav-bracket > li.nav-active.active > a:hover {
   background-image: url(../images/minus.png); 
}

.nav-bracket li .fa,
.nav-bracket li .glyphicon {
   font-size: 16px;
   vertical-align: middle;
   margin-right: 10px;
   width: 16px;
   text-align: center;
}

.nav-bracket .children {
   list-style: none;
   display: none;
   margin: 5px 0;
	padding: 0;
}

.nav-bracket .children > li > a {
   color: #94989d;
   font-size: 13px;
   display: block;
   /* padding: 5px 20px 5px 27px; */
   padding: 5px 0px 5px 12px;
   -moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

body[theme="dark"] .nav-bracket .children > li > a[style="color: rgb(5, 96, 253);"] {
	color: var(--active-600) !important;
}

.nav-bracket .children > li > a:hover,
.nav-bracket .children > li > a:active,
.nav-bracket .children > li > a:focus {
   text-decoration: none;
   color: var(--active-600);
}

.nav-bracket .children > li .fa {
   font-size: 12px;
   opacity: 0.5;
   margin-right: 5px;
   text-align: left;
   width: auto;
   vertical-align: baseline;
}

.nav-bracket .children > li.active > a {
   color: var(--active-600);
}

.nav-bracket .children ul {
   margin-left: 12px;
   border: 0;
}

.infosummary {
   margin-top: 30px;
}

.infosummary ul {
   padding: 0;
   margin: 20px 0 0;
   list-style: none;
   border-top: 1px solid rgba(255,255,255,0.05);
}

.infosummary li {
   padding: 10px 0;
   border-bottom: 1px solid rgba(255,255,255,0.05);
}

.infosummary li:after {
   clear: both;
   display: block;
   content: '';
}

.infosummary .datainfo {
   float: left;
   line-height: normal;
}

.infosummary .datainfo h4 {
   margin: 0;
   font-size: 16px;
   color: #fff;
   opacity: 0.7;
}

.infosummary span {
   font-size: 11px;
   line-height: normal;
   text-transform: uppercase;
   font-size: 10px;
   opacity: 0.4;
}

.infosummary .chart {
   float: right;
   margin-top: 5px;
   opacity: 0.6;
}



/***** MAIN PANEL *****/
/**********************/

main, .leftpanel, .headerbar{
	filter: brightness(1);
	transition: filter 0.3s;
}

.mainpanel {
   margin-left: var(--panel-width);
   filter: brightness(1);
   transition: margin 0.3s, filter 0.3s;
}


.pageheader .glyphicon,
.pageheader .fa {
	font-size: 24px;
	margin-right: 5px;
	padding: 6px 7px;
}

.pageheader .fa.fa-pencil {
	padding: 6px 9px;
}

.pageheader .fa.fa-hand-o-up {
	padding: 6px 9px 6px 7px;
}

.pageheader .fa-file-o {
	padding: 6px 10px;
}

.pageheader .fa-user {
	padding: 6px 10px;
}

.pageheader .fa-file-text {
	padding: 6px 10px;
}

.pageheader .fa-map-marker {
   padding: 6px 12px;
}

.pageheader .fa-dollar {
   padding: 6px 12px;
}

.pageheader .fa-clock-o {
   padding: 6px 8px;
}

.pageheader h2 span {
   font-size: 13px;
   text-transform: none;
   color: #999;
   font-style: italic;
   vertical-align: middle;
   letter-spacing: 0;
}

.pageheader h2 span::before {
   content: '/';
   margin: 0 10px 0 5px;
   color: #ccc;
}

.pageheader h2 i {
	display: none !important;
}

.breadcrumb {
	padding: 8px 0;
}

.pageheader .breadcrumb-wrapper {
	position: absolute;
	right: var(--padding-h, 40px);
}

.pagefilters {
   position: relative;
   margin-bottom: 8px;
}

.pagefilters form > div {
    display: flex;
    gap: 8px;
}

.contentpanel {
}

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

form .form-group:last-child {
   margin-bottom: 0;
}

.row-pad-5 {
	margin-left: -5px;
	margin-right: -5px;
}

.row-pad-5 [class*="col-lg"],
.row-pad-5 [class*="col-md"],
.row-pad-5 [class*="col-sm"] {
	padding-left: 5px;
	padding-right: 5px;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 13px;
	text-transform: uppercase;
	color: var(--muted-600);
	margin-bottom: 15px;
	margin-top: 0;
}

p {
	margin-bottom: 10px;
}

.paid {
	color: rgb(50, 100, 50);
}
.not-paid {
	color: #cc6666;
}
.complimentary {
	color: #6699cc;
}

.qlt {
	font-size: 16px;
	cursor: pointer;
}
.quality-0 {
	color: #ddd;
}
.quality-1 {
	color: #66cc66;
}
.quality-2 {
	color: #ffcc66;
}
.quality-3 {
	color: #cc6666;
}
.quality-4 {
	color: #000;
}

/***** DASHBOARD *****/
/*********************/

.pg_panel-default {
   margin-bottom: 10px;
}

.pg_no-visible div.event-details:after {
    display: flex;
    justify-content: center;
	color: #fff;
    content: attr(css-text-novisible);
    background: var(--danger);
    padding: 0;
    border-radius: 2px;
    min-width: 56px;
    font-size: 9px;
    line-height: 17px;
    height: 16px;
	width: fit-content;
}

/***** CLIENT LIST STATUS *****/
/******************************/

.client_not_paid, .client_not_paid:hover {
   background-color: #f2dede !important;
   border-left: 4px solid #f22 !important;
}

.client_not_paid a h4.text-primary, .client_not_paid small.text-muted {
   color: #f22 !important;
}

.client_complimentary, .client_complimentary:hover {
   background-color: #ecf3f8;
   border-left: 4px solid rgb(93, 157, 253) !important;
}

.client_complimentary a h4.text-primary, .client_complimentary small.text-muted {
   color: var(--muted-600) !important;
}

.client_paid, .client_paid:hover {
   /*background-color: rgb(250,240,240);*/
   border-left: 4px solid rgb(50, 100, 50);
}

.client_paid a h4.text-primary, .client_paid small.text-muted {
   color: rgb(50, 100, 50) !important;
}

.not_, .not_:hover {
   border-left: 4px solid #aa6708 !important;
   background-color: #fcf8e3 !important;
}

.not_ a h4.text-primary, .not_ small.text-muted {
   color: #aa6708 !important;
}

/***** SERVICE STATUS *****/
/**************************/

.service-active .service-badges .badge {
	background: var(--success-bg);
    color: var(--success) !important;
}

.service-hide-until-sale .service-badges .badge {
	background: var(--warning-bg);
    color: var(--warning) !important;
}

.service-hide .service-badges .badge {
	background: var(--disabled-bg);
    color: var(--disabled-color) !important;
}

.service-on-request .service-badges .badge {
	background: var(--info-bg);
    color: var(--info) !important;
}


.service-badges .badge.badge-info,
.service-soldout .service-badges .badge,
.service-closed .service-badges .badge {
	background: var(--info-bg);
    color: var(--info) !important;
}
.service-badges .badge.badge-danger,
.service-soldout .service-badges .badge,
.service-closed .service-badges .badge {
	background: var(--danger-bg);
    color: var(--danger) !important;
}

.serviceDeleted {
	background-color: var(--danger-bg);
	border-left: 4px solid var(--danger);
	border-radius: 6px;
}

.serviceDeleted:hover {
	background-color: #ffe5e5;
	cursor: default;
}

.serviceDeleted td.service-name:after {
	margin-left: 10px;
	color: #fff;
	content: 'DELETED';
	background: #f22;
	padding: 2px 5px;
	font-size: 10px;
	border-radius: 2px;
	display: table-cell;
}

.resolvedRequest, .resolvedRequest:hover {
   background-color: #ebffe5 !important;
   border-left: 4px solid #468847 !important;
}

.resolvedRequest a h4.text-primary, .resolvedRequest small.text-muted {
   color: #468847 !important;
}

.panel-stat {
	background: none;
}

.panel-stat .panel-heading {
	padding: 15px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.panel-stat .stat {
	color: #909090;
	max-width: 250px;
}

.panel-stat .stat img {
	text-align: center;
}

.panel-stat i {
	font-size: 30px;
	padding: 15px;
   /*
   border: 1px solid #fff;
	border-radius: 50px;
	opacity: 0.5;
   */
}

.panel-stat .stat-label {
	text-transform: uppercase;
	font-size: 14px;
	opacity: 0.75;
	display: block;
	line-height: normal;
	margin-bottom: 2px;
}

.panel-stat h1 {
	margin: 0;
	line-height: 36px;
	font-size: 38px;
}

.panel-stat h4 {
	margin: 0;
}

.sublabel {
	display: block;
	font-size: 12px;
	margin-bottom: 2px;
}

.dashboard-datatable .dataTables_filter {
	float: left;
}


/***** FORM STYLES *****/
/***********************/

pre {
	font-size: 12px;
	color: #C7254E;
	border: 1px solid #ddd;
	padding: 8px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background: #fff;
}

label.error {
	color: #B94A48;
	margin-top: 2px;
}

.asterisk {
	color: #D9534F;
}

div.error {
	margin-bottom: 20px;
	display: none;
	position: relative;
}

div.error label.error {
	display: block;
	padding-left: 25px;
	position: relative;
}

div.error label.error:before {
	content: '\e101';
	position: absolute;
	top: -2px;
	left: 0;
	font-size: 16px;
	color: #D9534F;
	display: inline-block;
}

.required:after {
	content: '*';
	color: #D9534F;
	margin-left: 5px;
	font-weight: bold;
}


/***** FORM WIZARD STYLES *****/
/**************************/


.basic-wizard .nav li a {
	background: var(--bg-color, #f5f9fc);
	border-bottom: 1px solid #ccc;
	color: #4A535E;
	border-right: 1px solid #ccc;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	opacity: 0.75;
}

.basic-wizard .nav li:last-child a {
	border-right: 0;
}

.basic-wizard .nav li a:hover {
	background-color: #f7f7f7;
	opacity: 1;
}

.basic-wizard .nav li.active a,
.basic-wizard .nav li.active a:focus,
.basic-wizard .nav li.active a:active {
	background: #fcfcfc;
	border-bottom-color: #fcfcfc;
	color: var(--muted-600);
	opacity: 1;
}

.basic-wizard ul li a span {
}

.basic-wizard .pager {
	margin: 0;
	border-top: 1px solid #ddd;
	background: #f7f7f7;
	padding: 10px;
}

.basic-wizard .pager li a {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	border-color: #357EBD;
	background-color: #428BCA;
	color: #fff;
}

.basic-wizard .pager li a:hover {
	background-color: #3276B1;
	border-color: #285E8E;
}

.basic-wizard .pager li.disabled a {
	background: #eee;
	color: #999;
	border-color: #ccc;
}

.basic-wizard .progress {
	height: 12px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.basic-wizard .nav-disabled-click li a:hover,
.basic-wizard .nav-disabled-click li a:active,
.basic-wizard .nav-disabled-click li a:focus {
	background-color: var(--bg-color, #f5f9fc);
	opacity: 0.75;
	color: #4A535E;
	cursor: default;
}

.basic-wizard .nav-disabled-click li.active a:hover,
.basic-wizard .nav-disabled-click li.active a:active,
.basic-wizard .nav-disabled-click li.active a:focus {
	background: #fcfcfc;
	color: var(--muted-600);
	opacity: 1;
}

.basic-wizard .tab-content {
	-moz-box-shadow: none;
   -webkit-box-shadow: none;
   box-shadow: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.tab-pane::after {
	clear: both;
	display: block;
	content: '';
}


/***** UI ELEMENTS *****/
/***********************/

.btn-single {
    width: min-content;
	float: right;
}

.btn-demo::after {
   clear: both;
   display: block;
   content: '';
}

.btn-demo .btn {
	float: left;
	margin: 0 10px 10px 0;
}

.fonticon-list {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}

.fontawesome-list {
	list-style: none;
	padding: 0;
}

.fonticon-list li,
.fontawesome-list li {
	display: block;
	margin-bottom: 5px;
}

.fonticon-list li span,
.fontawesome-list li span {
	color: var(--muted-600);
	vertical-align: middle;
	margin-right: 8px;
	min-width: 20px;
}

.font-xs {
	font-size: 12px;
}

.tooltip-example .btn,
.popover-example .btn {
	margin: 0 5px 5px 0;
}

.tooltipflot {
	background-color: rgba(0,0,0,0.75);
	font-size: 11px;
	color: #fff;
	padding: 3px 10px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.ui-tooltip {
	background-color: #000000d4;
	color: white;
	border: 1px solid black !important;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);

	box-shadow: var(--box-shadow-500);
	-moz-border-radius: var(--radius-md);
	-webkit-border-radius: var(--radius-md);
	border-radius: var(--radius-md);
}

.jqstooltip{ 
   min-height: 25px;
	border: 0;
	min-width: 30px;
	height: auto !important;
	width: auto !important;
}

.tinystat {
	display: inline-block;
}

.tinystat .chart,
.tinystat .datainfo {
	display: inline-block;
	vertical-align: middle;
}

.tinystat .chart {
	margin-right: 5px;
}

.tinystat .text-muted {
	text-transform: uppercase;
	font-size: 10px;
}

.tinystat h4 {
	margin: 0;
	color: var(--muted-600);
	line-height: normal;
	font-size: 16px;
}

.widget-quick-status-post .nav-tabs > li > a {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.widget-quick-status-post .panel-body {
	padding: 0;
}

.widget-messaging .panel-btns .panel-edit {
	padding: 15px 17px;
	opacity: 0.5;
	font-size: 24px;
	margin-top: -18px;
	margin-right: -20px;
	position: relative;
}

.widget-messaging .panel-btns .panel-edit:hover {
	opacity: 1;
}

.widget-messaging .panel-body {
	padding: 0;
}

.widget-messaging ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget-messaging ul li {
	padding: 15px;
	border-top: 1px solid #eee;
	background-color: #fff;
}

.widget-messaging ul li:hover {
	background-color: #fcfcfc;
}

.widget-messaging ul li:first-child {
	border-top: 0;
}

.widget-messaging .sender {
	font-size: 13px;
	color: var(--muted-600);
	margin: 0;
	line-height: normal;
}

.widget-messaging ul li small {
	line-height: normal;
}

.widget-today .panel-heading,
.widget-time .panel-heading {
	height: 115px;
}

.widget-today .glyphicon,
.widget-today .fa {
	font-size: 72px;
	color: #fff;
	opacity: 1;
}

.widget-time .glyphicon,
.widget-time .fa {
	font-size: 60px;
	color: #fff;
	opacity: 1;
}
.widget-today .today,
.widget-time .today {
	line-height: normal;
	margin: 0;
	color: var(--muted-600);
	font-size: 20px;
}

.widget-photoday .panel-body {
	padding: 0;
}

.widget-photoday .photoday img {
	width: 100%;
	display: block;
	-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.widget-photoday .photo-details {
	padding: 15px;
}

.widget-photoday .photo-title {
	color: var(--muted-600);
	font-size: 16px;
	margin: 0;
	line-height: normal;
}

.widget-photoday .photo-details small {
	display: block;
}

.widget-photoday .photo-meta {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid #e3e3e3;
	background-color: #f7f7f7;
}

.widget-photoday .photo-meta li {
	display: table-cell;
	width: 1%;
	text-align: center;
	border-left: 1px solid #e3e3e3;
}

.widget-photoday .photo-meta li:first-child {
	border-left: 0;
}

.widget-photoday .photo-meta li a,
.widget-photoday .photo-meta li span {
	padding: 15px 10px;
	display: block;
	color: #999;
	font-size: 12px;
}

.widget-photoday .photo-meta li a:hover {
	color: #666;
	text-decoration: none;
}

.widget-bloglist .media {
	border-bottom: 1px solid #eee;
}

.widget-weather {
	overflow: hidden;
}

.widget-weather .panel-body {
	padding: 0;
	background-color: #1D2939;
}

.widget-weather .row {
	margin: 0;
}

.widget-weather .temp,
.widget-weather .weather {
	padding: 0;
}

.widget-weather .temp {
	background-color: #1CAF9A;
	color: #fff;
	padding: 10px 0;
}

.widget-weather .temp h1 {
	font-size: 60px;
}

.widget-weather .temp h1 span {
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-left: -10px;
}

.widget-weather .temp h5 {
	text-transform: uppercase;
}

.widget-weather .weather-icon {
	color: #666;
	font-size: 60px;
	background-color: #fff;
	display: block;
	padding: 20px 0;
}

.widget-weather .weather > div {
	width: 50%;
	text-align: center;
	color: #fff;
	font-size: 14px;
	padding-top: 10px;
}

.widget-profile .panel-heading {
	position: relative;
}

.widget-profile .cover {
	position: absolute;
	top: 0;
	left: 0;
	height: 105px;
	overflow: hidden;
	-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.widget-profile .cover img {
	width: 100%;
	display: block;
}

.widget-profile .panel-body {
	position: relative;
	padding: 0;
}

.widget-profile-img {
	position: relative;
	margin-top: 30px;
	margin-left: 15px;
}

.widget-profile-title {
	background: #428BCA;
	margin-top: -55px;
	padding: 15px 0 15px 120px;
	color: #fff;
}

.widget-profile-title h4 {
	font-size: 18px;
	margin: 0;
	line-height: normal;
}

.widget-profile-title small {
	line-height: normal;
}

.widget-profile blockquote {
	font-size: 18px;
	border-left: 0;
	margin: 0;
	color: #555;
	padding: 15px;
}

.widget-profile-title .fa {
	margin-right: 7px;
}

.widget-profile .row {
	margin: 0;
}

.widget-profile .row > div {
	padding: 0;
}

.widget-profile .row > div > span {
	display: block;
	border-right: 1px solid rgba(255,255,255,0.15);
	font-size: 14px;
	padding: 15px 10px;
	text-transform: uppercase;
	background: #1D2939;
	color: #fff;
}

.widget-profile .row > div:first-child span {
	-moz-border-radius: 0 0 0 3px;
	-webkit-border-radius: 0 0 0 3px;
	border-radius: 0 0 0 3px;
}

.widget-profile .row > div:last-child span {
	border-right: 0;
	-moz-border-radius: 0 0 3px 0;
	-webkit-border-radius: 0 0 3px 0;
	border-radius: 0 0 3px 0;
}

.dropzone {
	border-radius: 8px;
    padding: 2px;
    border: 1px solid var(--input-border, #92a6e8);
	min-height: unset;
	width: 100%;
	background: var(--box-background);
}
.dropzone .dz-preview {
	min-height: unset;
}
.dropzone .dz-preview .dz-image {
	height: unset;
}
.dropzone .dz-preview .dz-details {
	padding: 0;
	height: calc(100% - 2em);
    display: flex;
    justify-content: center;
    flex-flow: column;
}

.dropzone .dz-preview.dz-image-preview {
	background: transparent;
}

/***** MY PROFILE *****/
/*****************/

.img-edit {
	position: absolute;
    left: 160px;
    top: 0;
    border: 1px solid var(--box-border);
    border-radius: var(--radius-md);
}

/***** EMAIL *****/
/*****************/

.btn-compose-email {
   padding: 10px 0;
   margin-bottom: 20px;
}

.nav-email > li > a > .badge {
   margin-top: 2px;
}

.nav-email > li > a {
   color: #444;   
}

.nav-email > li > a > i {
   width: 16px;
   text-align: center;
   margin-right: 10px;
}

.nav-email > li > a:hover {
   background-color: #d8dcdf;
}

.table-email {
   -moz-box-shadow: none;
   -webkit-box-shadow: none;
   box-shadow: none;
   border-bottom: 1px solid #eee;
   margin: 0;
   background-color: #f7f7f7;
}

.table-email tr.unread td {
   background-color: #fff;
}

.table-email tbody > tr > td {
   vertical-align: middle;
}

.table-email tr:hover {
  background-color: #eee;
}

.table-email tr.selected td {
   background-color: #eee;
}

.table-email .ckbox {
   width: 18px;
   height: 19px;
}

.table-email .ckbox input[type="checkbox"]:checked + label:after {
   top: 2px;
}

.table-email .star {
   color: #ccc;
}

.table-email .star-checked {
   color: #F0AD4E;
}

.table-email td:first-child {
   width: 30px;
}

.table-email td:nth-child(2) {
   width: 30px;
}

.table-email .media {
   margin: 0;
   padding: 0;
}

.table-email .media-object {
   width: 35px;
}

.table-email .media h4 {
   margin: 0;
   font-size: 14px;
   line-height: normal;
}

.table-email .media-meta {
   font-size: 11px;
   color: #999;
}

.table-email .email-summary {
   margin: 2px 0 0 0;
}

.table-email .email-summary strong {
   color: var(--muted-600);
}

.read-panel {
   margin-top: 10px;
   border-top: 1px solid #eee;
   padding-top: 20px;
}

.read-panel .media-object {
   width: 35px;
}

.read-panel .media h4 {
   margin: 2px 0 0 0;
   font-size: 14px;
   line-height: normal;
}

.read-panel .media-meta {
   font-size: 12px;
}

.email-subject {
   color: var(--muted-600);
}


/***** TABLES *****/
/******************/

.dataTables_length .chosen-container {
	min-width: 75px;
}

.dataTables_length .chosen-container-single .chosen-single {
	padding-right: 0;
}

.table-action {
	text-align: center;
}

.table-action-hide a {
	opacity: 0;
}

.table-action a,
.table-action-hide a {
	display: inline-block;
	margin-right: 5px;
	color: #666;
}

.table-action a:hover,
.table-action-hide a:hover {
	color: var(--muted-600);
}

.table-action a:last-child,
.table-action-hide a:last-child {
	margin-right: 0;
}

/* styles to fix table columns with */

.min-w-36 {
	min-width: 36px !important;
}

.min-w-51 {
	min-width: 51px !important;
}

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

.min-w-65 {
	min-width: 65px !important;
}

.min-w-78 {
	min-width: 78px !important;
}

.min-w-70 {
	min-width: 70px !important;
}

.min-w-71 {
	min-width: 71px !important;
}

.min-w-80 {
	min-width: 80px !important;
}

.min-w-90 {
	min-width: 90px !important;
}

.min-w-96 {
	min-width: 96px !important;
}

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

.min-w-106 {
	min-width: 106px !important;
}

.min-w-110 {
	min-width: 110px !important;
}

.min-w-113 {
	min-width: 113px !important;
}

.min-w-120 {
	min-width: 120px !important;
}

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

.min-w-169 {
	min-width: 169px !important;
}

.min-w-541 {
	min-width: 541px !important;
}

.w50 {
	width: 50px !important;
}

.w55 {
	width: 55px !important;
}

.w60 {
	width: 60px !important;
}

.w65 {
	width: 65px !important;
}

.w70 {
	width: 70px !important;
}

.w80 {
	width: 80px !important;
}

.w90 {
	width: 90px !important;
}

.w100 {
	width: 100px !important;
}

.w110 {
	width: 110px !important;
}

.w120 {
	width: 120px !important;
}

.w130 {
   width: 130px !important;
}

.w180 {
   width: 180px !important;
}

.w790 {
	width: 790px !important;
}



i.fa.fa-sort-asc {
	position: relative;
	float: left;
	left: 3px;
	top: 5px;
	cursor: pointer;
}

i.fa.fa-sort-desc {
	position: relative;
	float: left;
	left: 3px;
	bottom: 2px;
	cursor: pointer;
}

i.fa.fa-sort-desc.sort-active {
  color: var(--active-600);
}

i.fa.fa-sort-desc.sort-unactive {
  color: #444;
}

i.fa.fa-sort-asc.sort-active {
  color: var(--active-600);
}

i.fa.fa-sort-asc.sort-unactive {
  color: #444;
}
/*
.reorderBy {
	position: relative;
	float: left;
	left: 3px;
	bottom: 2px;
	cursor: pointer;
}
*/
/***** PAGES *****/
/*****************/

.external-event {
	background: #428BCA;
	margin-bottom: 5px;
	padding: 6px 10px;
	color: #fff;
	font-size: 13px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}


/* mediamanager */
.filemanager-options {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	background: #fcfcfc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   box-shadow: 0 3px 0 rgba(12,12,12,0.03);
}

.filemanager-options li {
	display: inline-block;
	padding: 12px 15px;
	border-right: 1px solid #eee;
	font-size: 12px;
	color: #666;
}

.filemanager-options li a {
	color: #666;
}

.filemanager-options li a.disabled {
	opacity: 0.5;
	cursor: default;
}

.filemanager-options li a.disabled:hover {
	text-decoration: none;
}

.filemanager-options li i {
	font-size: 14px;
	margin-right: 5px;
	color: #444;
}

.filemanager-options .ckbox label {
	margin: 0 !important;
}

.filemanager-options .filter-type {
	float: right;
	border-right: 0;
	border-left: 1px solid #eee;
}

.filemanager-options .filter-type a {
	display: inline-block;
	margin-right: 10px;
}

.filemanager-options .filter-type a:last-child {
	margin-right: 0;
}

.filemanager-options .filter-type a:first-child {
	margin-left: 10px;
}

.filemanager-options .filter-type a.active {
	text-decoration: underline;
	color: #2A6496;
}

.filemanager .thmb {
	border: 1px solid #fcfcfc;
	background: #fcfcfc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 10px;
	margin-bottom: 20px;
	position: relative;
	-moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   box-shadow: 0 3px 0 rgba(12,12,12,0.03);
}

.filemanager .thmb.checked {
	border-color: #ccc;
}

.filemanager .thmb::after {
	clear: both;
	display: block;
	content: '';
}

.filemanager .ckbox {
	position: absolute;
	top: 15px;
	left: 15px;
	display: none;
}

.filemanager .fm-group {
	position: absolute;
	top: 15px;
	right: 15px;
	display: none;
}

.filemanager .fm-toggle {
	padding: 1px 4px;
	line-height: normal;
	background: #fff;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.filemanager .fm-menu {
	min-width: 120px;
}

.filemanager .fm-menu a {
	font-size: 12px;
	color: var(--muted-600);
}

.filemanager .fm-menu i {
	margin-right: 7px;
	color: #999;
	width: 16px;
	font-size: 13px;
}

.filemanager .thmb-prev {
	background: #eee;
	overflow: hidden;
}

.filemanager .thmb-prev a {
	display: block;
}

.filemanager .fm-title {
	margin-bottom: 0;
	font-size: 13px;
}

.fm-sidebar {
	padding-left: 10px;
}

.fm-sidebar .subtitle a {
	color: #999;
	font-size: 11px;
}

.fm-sidebar .subtitle a:hover {
	text-decoration: none;
	color: var(--muted-600);
}

.folder-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.folder-list li {
	display: block;
	border-bottom: 1px solid #ddd;
}

.folder-list li a {
	display: block;
	padding: 5px 0;
	color: #666;
}

.folder-list li a:hover {
	color: var(--muted-600);
	text-decoration: none;
}

.folder-list li i {
	margin-right: 10px;
	width: 16px;
}

.fm-sidebar .tag-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fm-sidebar .tag-list li {
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
}

.fm-sidebar .tag-list li a {
	display: block;
	padding: 2px 7px;
	font-size: 11px;
	background: #fcfcfc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #666;
}

.fm-sidebar .tag-list li a:hover {
	color: #fff;
	text-decoration: none;
	background: #428BCA;
}

/* profile */
.profile-name {
	margin: 0;
	margin-bottom: 10px;
	color: var(--muted-600);
}

.profile-location,
.profile-position {
	font-size: 13px;
	margin-bottom: 3px;
}

.profile-location .fa,
.profile-position .fa {
	width: 16px;
	margin-right: 8px;
	text-align: center;
}

.profile-header {
	margin-bottom: 30px;
}

.profile-header .btn .fa {
	margin-right: 7px;
}

.profile-social-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.profile-social-list li {
	border-bottom: 1px solid #ddd;
	padding: 5px 0;
}

.profile-social-list li:first-child {
	padding-top: 0;
}

.profile-social-list li .fa {
	margin-right: 10px;
	width: 16px;
}

.activity-list {
	padding: 20px 10px;
}

.activity-list .act-media {
	border-bottom: 1px solid #eee;
}

.activity-list .act-thumb {
	width: 28px;
	vertical-align: middle;
}

.activity-list .act-media-body {
	line-height: 16px;
}

.activity-list .media-body p {
	line-height: 21px;
	font-size: 13px;
}

.activity-list .media-title {
	font-size: 15px;
	margin-bottom: 0;
}

.activity-list .blog-media {
	padding-bottom: 0;
}

.activity-list .blog-media .media-object {
	width: 120px;
	margin-right: 10px;
	margin-top: 5px;
}

.activity-list .blog-media .media-title {
	margin: 0;
}

.activity-list .img-single img {
	width: 50%;
}

.uploadphoto-list {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 20px;
}

.uploadphoto-list li {
	width: 20%;
	float: left;
}

.uploadphoto-list li a {
	display: block;
	margin-right: 5px;
}

.follower-list {
	padding: 10px;
}

.follower-list .media {
	border-bottom: 1px solid #eee;
}

.follower-list .btn .fa {
	margin-right: 5px;
}

.follower-list .media-object {
	margin-right: 10px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.follower-name {
	color: var(--muted-600);
	margin: 0;
	font-size: 18px;
	margin-bottom: 5px;
}

.events .subtitle {
	margin-bottom: 20px;
}

.events .media-object {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.events-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.events-list .event-body {
	font-size: 13px;
}

.event-body small {
	display: block;
}

.event-body small .fa {
	margin-right: 5px;
	width: 14px;
	text-align: center;
}

.event-body p {
	margin-top: 10px;
}

.event-title {
	margin: 0;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: normal;
}

/* bloglist */
.blog-item {
	background: #fcfcfc;
	margin-bottom: 20px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   box-shadow: 0 3px 0 rgba(12,12,12,0.03);
	position: relative;
}

.blog-img img {
	-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.blog-details {
	padding: 15px;
}

.blog-title {
	margin: 0;
	font-weight: normal;
}

.blog-title a {
	color: var(--muted-600);
}

.blog-meta {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 10px;
}

.blog-meta::after {
	clear: both;
	display: block;
	content: '';
}

.blog-meta li {
	float: left;
	padding: 0 5px;
	border-right: 1px solid #ddd;
	line-height: normal;
	font-size: 11px;
	margin-bottom: 5px;
}

.blog-meta li:first-child {
	padding-left: 0;
}

.blog-meta li:last-child {
	padding-right: 0;
	border-right: 0;
}

.blog-summary {
	font-size: 13px;
}

.blog-summary p {
	margin: 10px 0;
}

.blog-summary .btn {
	margin-top: 10px;
}

.blog-quote .quote {
	margin: 0;
	font-size: 18px;
	line-height: 24px;
}

.blog-quote .quote a {
	padding: 15px;
	background: #1d2939;
	color: #dadfe6;
	display: block;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	text-align: center;
}

.blog-quote .quote a:hover {
	text-decoration: none;
	background: #2c394c;
}

.blog-quote .quote-author {
	display: block;
	opacity: 0.5;
}

.blog-quote .blog-meta {
	margin-top: 3px;
}

.blog-video {
	-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
	overflow: hidden;
	height: 0;
	padding-top: 30px;
	padding-bottom: 56.25%;
	position: relative;
}

.blog-video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 0;
	top: 0;
	left: 0;
}

.blog-quote .quote-primary a {
	background-color: #428BCA;
}

.blog-quote .quote-primary a:hover {
	background-color: #357EBD;
}

.blog-quote .quote-success a {
	background-color: #1CAF9A;
	color: #fff;
}

.blog-quote .quote-success a:hover {
	background-color: #17A08C;
}

.blog-quote .quote-danger a {
	background-color: #D9534F;
	color: #fff;
}

.blog-quote .quote-danger a:hover {
	background-color: #D43F3A;
}

/* blog single */
.panel-blog .blog-img img {
	width: 100%;	
}

.blogsingle-title {
	color: var(--muted-600);
	margin: 0;
}

.blog-content {
	max-width: 975px;
}

.authorpanel {
	/* margin: 20px 0; */
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}

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

.authorpanel .media {
	padding: 0;
}

.authorpanel .media-object {
	margin-right: 15px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.authorpanel p {
	margin-bottom: 0;
	font-size: 13px;
}

.blog-sidebar {
	font-size: 13px;
	padding-left: 5px;
	margin-top: 5px;
}

.sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-list li {
	display: block;
	border-bottom: 1px solid #ddd;
}

.sidebar-list li a {
	padding: 7px 0;
	display: block;
}

.sidebar-list li i {
	display: inline-block;
	margin-right: 5px;
}

/* comment list */
.comment-list .media {
	border-bottom: 1px solid #ddd;
}

.comment-list .media-object {
	width: 60px;
	margin-right: 10px;
}

.comment-list h4 {
	margin: 0;
	color: var(--muted-600);
	font-size: 16px;
}

.comment-list .media-body {
	font-size: 13px;
	position: relative;
}

.comment-list .reply {
	padding: 3px 8px;
	line-height: normal;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.comment-list .media-body p:last-child {
	margin-bottom: 0;
}

.comment-list .media-body .media:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

/* people directory */
.letter-list {
	list-style: none;
	padding: 0;
	margin: 0;
	-moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   box-shadow: 0 3px 0 rgba(12,12,12,0.03);
}

.letter-list li {
	border-left: 1px solid #eee;
	display: table-cell;
	width: 1%;
}

.letter-list li:first-child {
	border-left: 0;
}

.letter-list li a {
	display: block;
	padding: 8px 0;
	text-align: center;
	text-transform: uppercase;
	background: #f7f7f7;
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.letter-list li:first-child a {
	-moz-border-radius: 3px 0 0 3px;
	-webkit-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}

.letter-list li:last-child a {
	-moz-border-radius: 0 3px 3px 0;
	-webkit-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}

.letter-list li a:hover {
	color: #fff;
	background: #428BCA;
	text-decoration: none;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.people-item {
	background: #fcfcfc;
	padding: 20px;
	font-size: 13px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   box-shadow: 0 3px 0 rgba(12,12,12,0.03);
	margin-bottom: 20px;
}

.people-item .media {
	padding: 0;
}

.people-item .media-object {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-right: 10px;
	width: 110px;
	height: 110px;
}

.people-item .fa {
	margin-right: 5px;
}

.person-name {
	margin: 0 0 5px 0;
	color: #428BCA;
}

.people-item .social-list {
	margin-top: 10px;
	margin-bottom: 0;
	list-style: none;
	padding: 0;
}

.people-item .social-list::after {
	clear: both;
	display: block;
	content: '';
}

.people-item .social-list li {
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
}

.people-item .social-list li a {
	font-size: 16px;
	border: 1px solid #ddd;
	padding: 3px 5px;
	width: 30px;
	display: block;
	text-align: center;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #666;
}

.people-item .social-list li a:hover {
	background-color: #eee;
	color: var(--muted-600);
}

.people-item .social-list li a .fa {
	margin-right: 0;
}

.notfoundpanel {
   text-align: center;
   margin-top: 10%;
   width: 600px;
   margin: 10% auto 0 auto;
}

.notfoundpanel h1 {
   font-size: 130px;
   color: var(--muted-600);
   margin: 0;
   line-height: 130px;
}

.notfoundpanel h3 {
   color: var(--muted-600);
   margin: 0;
}

.notfound h4 {
   font-size: 14px;
}

.notfoundpanel form {
   width: 350px;
   margin: 20px auto 0 auto;
}

.notfoundpanel .form-control {
   width: 250px;
   float: left;
}

/* search results */
.nav-sr li {
   border-bottom: 1px solid #ddd;  
}

.nav-sr li a {
   padding: 5px 0;
   color: #555;
}

.nav-sr li a:hover {
   background: none;
   color: var(--muted-600);
}

.nav-sr li a i {
   margin-right: 5px;
}

.results-list .media {
   border-bottom: 1px solid #eee;
}

.results-list .media-object {
   width: 125px;
   margin-right: 10px;
}

.results-list .filename {
   margin: 0;
   font-size: 16px;
}

.results-list .media-body {
   line-height: 18px;
}


/* invoice */
.table-invoice {
   -moz-box-shadow: none;
   -webkit-box-shadow: none;
   box-shadow: none;
   border-bottom: 1px solid #eee;
   margin-top: 20px;
}

.table-invoice thead > tr > th {
   background: none;
}

.table-invoice thead > tr > th:last-child,
.table-invoice thead > tr > th:nth-child(3),
.table-invoice thead > tr > th:nth-child(2) {
   text-align: right;
}

.table-invoice tbody > tr > td:last-child,
.table-invoice tbody > tr > td:nth-child(3),
.table-invoice tbody > tr > td:nth-child(2) {
   width: 15%;
   text-align: right;
}

.table-total {
   -moz-box-shadow: none;
   -webkit-box-shadow: none;
   box-shadow: none;
   float: right;
}

.table-total > tbody > tr > td {
   border: 0;
}

.table-total > tbody > tr > td:last-child {
   border-bottom: 1px solid #ddd;
   width: 15%;
   text-align: right;
}

.table-total > tbody > tr > td:first-child {
   text-align: right;
   color: var(--muted-600);
}

/* timeline */

.timeline-post .panel-body {
   padding: 0;
}

.timeline-post .form-control {
   border: 0;
   -moz-border-radius: 3px 3px 0 0;
   -webkit-border-radius: 3px 3px 0 0;
   border-radius: 3px 3px 0 0;
   resize: vertical;
}

.timeline-post .form-control:focus {
   -moz-box-shdow: none;
   -webkit-box-shadow: none;
   box-shadow: none;
}

.timeline-post .panel-footer {
   padding: 10px;
   background: #f7f7f7;
}

.timeline-btns {
   padding: 5px;
}

.timeline-btns a {
   display: inline-block;
   font-size: 14px;
   width: 20px;
   height: 20px;
   color: #ccc;
   text-align: center;
   margin-right: 5px;
}

.timeline-btns a:hover {
   color: #666;
}

.panel-timeline .panel-heading {
   padding: 10px 10px 6px 10px;
   border-bottom: 0;
}

.panel-timeline .panel-body {
   padding: 0 10px;   
}

.panel-timeline .panel-heading .media {
   margin: 0;
   padding: 0;
}

.panel-timeline .panel-heading .media-object,
.panel-timeline .panel-footer .media-object {
   width: 32px;
   border-radius: 1px;
}

.panel-timeline .panel-body .media {
   margin-top: 10px;
   padding-bottom: 10px;
}

.panel-timeline .panel-body .media-object {
   width: 150px;
}

.panel-timeline .panel-body h4 {
   font-size: 16px;
   margin-bottom: 5px;
}

.panel-timeline h4 {
   margin: 0;
   font-size: 13px;
   line-height: normal;
}

.panel-timeline .panel-footer {
   padding: 10px;
}

.panel-timeline .panel-footer .form-control {
   padding: 8px 10px;
   border-radius: 0;
}

.timeline-btns {
   padding: 10px;
}

.timeline-btns:after {
   clear: both;
   display: block;
   content: '';
}

.timeline-video {
	-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
	overflow: hidden;
	height: 0;
	padding-top: 30px;
	padding-bottom: 56.25%;
	position: relative;
}

.timeline-video iframe {
   position: absolute;
   width: 100%;
   height: 100%;
   border: 0;
   top: 0;
   left: 0;
}

/* locked screen */

.lockedpanel {
   width: 250px;
   margin: 10% auto 0 auto;
   text-align: center;
}

.lockedpanel .loginuser {
   text-align: center;
}

.lockedpanel .loginuser img {
   -moz-border-radius: 100px;
   -webkit-border-radius: 100px;
   border-radius: 100px;
   background: rgba(255,255,255,0.4);
   padding: 5px;
}

.lockedpanel .locked {
   font-size: 42px;
   margin-bottom: 20px;
}

.lockedpanel .logged {
   margin-top: 20px;
}

.lockedpanel .logged h4 {
   margin: 0;
   font-size: 21px;
   color: var(--muted-600);
}

.lockedpanel form {
   margin-top: 20px;
}

.lockedpanel form .btn {
   display: block;
   margin-top: 10px;
}

/* sign in */

.signinpanel {
   width: 780px;
   margin: 10% auto 0 auto;
}

.signinpanel .logopanel {
   float: none;
   width: auto;
   padding: 0;
   background: none;
}

.signinpanel .signin-info ul {
   list-style: none;
   padding: 0;
   margin: 20px 0;
}

.signinpanel .signin-info a {
   color: var(--muted-600);
}

.signinpanel .form-control {
   display: block;
   margin-top: 15px;
}

.signinpanel .uname {
   background: #fff url(../images/user.png) no-repeat 95% center; 
}

.signinpanel .pword {
   background: #fff url(../images/locked.png) no-repeat 95% center; 
}

.signinpanel .btn {
   margin-top: 15px;
}

.signinpanel form {
   background: rgba(255,255,255,0.2);
   border: 1px solid #ccc;
   -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   border-radius: 3px;
   padding: 30px;
}

.signinpanel form a {
   color: #666;
}

/* sign up */

.signuppanel {
   margin: 5% auto 0 auto;
   width: 780px;
}

.signuppanel .row {
   margin-left: -5px;
   margin-right: -5px;
}

.signuppanel .logopanel {
   float: none;
   width: auto;
   padding: 0;
   background: none;
}

.signuppanel .col-sm-6,
.signuppanel .col-sm-5,
.signuppanel .col-sm-3,
.signuppanel .col-sm-4 {
   padding-left: 5px;
   padding-right: 5px;
}

.signuppanel .signup-info {
   padding-right: 20px;
}

.signuppanel form {
   background: #fff;
   border: 1px solid #ccc;
   -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   box-shadow: 0 3px 0 rgba(12,12,12,0.03);
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   border-radius: 3px;
   padding: 30px;
}

.feat-list {
   margin-top: 20px;
}

.feat-list .fa {
   font-size: 20px;
   border: 2px solid #636e7b;
   padding: 4px 5px;
   -moz-border-radius: 100px;
   -webkit-border-radius: 100px;
   border-radius: 100px;
   float: left;
}

.feat-list h4 {
   margin-left: 45px;
   padding-top: 3px;
}

.feat-list p {
   margin-left: 45px;
}

.signup-footer {
   border-top: 1px solid #ddd;
   margin-top: 30px;
   padding-top: 10px;
   font-size: 12px;
}


/***** LEFT PANEL COLLAPSE *****/
/*******************************/


.leftpanel-collapsed .logopanel {
   display: none;
}

.leftpanel-collapsed .headerbar {
   margin-left: -50px;
}

.leftpanel-show .headerbar {
   pointer-events: none;
}

.leftpanel-collapsed .leftpanel {
   width: 51px;
   top: 51px;
}

.leftpanel-collapsed .leftpanelinner {
   padding: 0;
}

.leftpanel-collapsed .leftpanelinner .sidebartitle {
   display: none;
}

.leftpanel-collapsed .nav-bracket {
   margin: 5px;   
}

.leftpanel-collapsed .nav-bracket li a {
   text-align: center;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;
   border-radius: 2px;
   padding: 10px;
   position: relative;
}

.leftpanel-collapsed .nav-bracket > li.nav-parent > a {
   background-image: none;
}

.leftpanel .nav-bracket li > a > span {
	opacity: 1;
	transition: opacity 0.3s, font-size 0.3s;
	margin-left: 32px;
}
.leftpanel .nav-bracket li > ul li > a > span {
	margin-left: 8px;
}
.leftpanel-collapsed .nav-bracket li a span {
	text-align: center;
    font-size: 11px;
}

.leftpanel-collapsed .nav-bracket li.active a span {
   -moz-border-radius: 0 2px 0 0;
   -webkit-border-radius: 0 2px 0 0;
   border-radius: 0 2px 0 0;
}

.leftpanel-collapsed .nav-bracket ul {
   display: none;
}

.leftpanel-collapsed .nav-bracket > li.nav-hover > a {
   background: #fff;
   color: #1d2939;
}

.leftpanel-collapsed .nav-bracket > li.nav-hover.active > a {
   background: var(--active-600);
   color: #fff;
}

.leftpanel-collapsed .nav-bracket li.nav-hover a span {
   display: block;
}

.leftpanel-collapsed .nav-bracket li.nav-hover.active a span {
   background: var(--active-600);
   color: #fff;
}

.leftpanel-collapsed .nav-bracket li.nav-hover ul {
   display: block;
   position: absolute;
   top: 41px;
   left: 47px;
   margin: 0;
   min-width: 172px;
   background: #fff;
   z-index: 100;
   -moz-border-radius: 0 0 2px 0;
   -webkit-border-radius: 0 0 2px 0;
   border-radius: 0 0 2px 0;
   padding-left: 10px;
}

.leftpanel-collapsed .nav-bracket ul a {
   text-align: left;
   padding: 6px 10px;
   padding-left: 0;
}

.leftpanel-collapsed .nav-bracket ul a:hover {
   background: none;
}

.leftpanel-collapsed .nav-bracket li a i {
   margin-right: 0;
}

.leftpanel-collapsed .mainpanel {
   margin-left: 52px;
}

.leftpanel-collapsed .infosummary {
   display: none;
}

.leftpanel-collapsed .sticky-leftpanel {
   overflow-y: visible;
}


/***** RIGHT PANEL STYLES *****/
/**************************/

.chat-view {
   margin-right: 240px;
}

.rightpanel {
   width: 240px;
   height: 100%;
   position: fixed;
   overflow-y: auto;
   overflow-x: hidden;
   top: 0;
   right: -240px;
   display: none;
}

.chat-view .rightpanel {
   display: block;
   right: 0;
}

.chat-relative-view {
   right: 240px;
}

.chat-relative-view .rightpanel {
   display: block;
   right: 0;
}

.rightpanel,
.rightpanel label {
   color: #999;
}

.rightpanel .nav-tabs {
   -moz-border-radius: 0;
   -webkit-border-radius: 0;
   border-radius: 0;
   background: #131d29;
   position: fixed;
   width: 240px;
}

.rightpanel .nav-tabs > li {
   display: table-cell;
   width: 1%;
}

.rightpanel .nav-tabs > li > a {
   padding: 15px 20px 16px 20px;
   -moz-border-radius: 0;
   -webkit-border-radius: 0;
   border-radius: 0;
   color: rgba(255,255,255,0.5);
}

.rightpanel .nav-tabs > .active > a,
.rightpanel .nav-tabs > .active > a:hover,
.rightpanel .nav-tabs > .active > a:focus {
   background: #1D2939;
   color: #fff;
}

.rightpanel .tab-content {
   background: none;
   -moz-box-shadow: none;
   -webkit-box-shadow: none;
   box-shadow: none;
   margin-top: 45px;
}

.chatuserlist {
   list-style: none;
   padding: 0;
   border-bottom: 1px dotted rgba(255,255,255,0.05);
}

.chatuserlist li {
   border-top: 1px dotted rgba(255,255,255,0.05);
}

.chatuserlist .media-thumb {
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 50px;
   border: 2px solid #999;
   padding: 3px;
   display: block;
}

.chatuserlist .media {
   margin: 10px 0;
   padding: 0;
}

.chatuserlist .online .media-thumb {
   border-color: #1CAF9A;
}

.chatuserlist .media-object {
   width: 30px;
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 50px;
}

.chatuserlist .media-body {
   line-height: normal;
   padding-top: 7px;
}

.chatuserlist .media-body small {
   color: #666;
   display: block;
}

.chatuserlist .media-body strong {
   color: #bbb;
   font-size: 13px;
   margin-bottom: 4px;
   display: block;
}

.chatuserlist .badge {
   margin-top: 5px;
}

.rightpanel .pane-settings {
   font-size: 13px;
}


/***** ADDITIONAL STYLES *****/
/*****************************/


/* DROPDOWN */

.dropdown-menu-head {
   background: #fff
}

.dropdown-menu-head .title {
   background: #1d2939;
   color: #94989d;
   padding: 15px;
	text-transform: uppercase;
	font-size: 11px;
	margin: 0;
}


/* ICON */

.tp-icon {
   padding: 10px 20px;
   line-height: 20px;
   border-color: #ddd;
   position: relative;
}

.tp-icon .badge {
   position: absolute;
   font-size: 10px;
   font-weight: normal;
   right: 4px;
   top: 10px;
   line-height: 13px;
   background-color: #D9534F;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;
   border-radius: 2px;
   padding: 2px 5px;
}

/* CHOSEN OVERRIDE */

.chosen-container-single .chosen-single div {
	width: 30px;
	border-left: 1px solid #ccc;
	background: var(--bg-color, #f5f9fc);
}

.chosen-container-single .chosen-single div b {
	background: url(../images/dropdown-arrow.png) no-repeat 8px 15px;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
	width: 30px;
	border-left: 0;
	background: #fff;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: 8px -33px;
}

/* TIME PICKER */

.bootstrap-timepicker-widget.dropdown-menu {
	width: 230px;
}

/* COLOR PICKER */

.colorpicker-input {
	width: 200px;
	float: left;
}

.colorselector {
	margin-top: 4px;
}

/* STICKY HEADER */

.stickyheader .logopanel {
   position: fixed;
   top: 0;
   left: 0;
   width: 240px;
   z-index: 100;
}

.stickyheader .leftpanel {
   top: 50px;
}

.stickyheader .headerbar {
   position: fixed;
   top: 0;
   left: 240px;
   width: 100%;
   z-index: 100;
   box-shadow: 0 1px rgba(0,0,0,0.05);
}

.stickyheader .mainpanel {
   padding-top: 50px;
}

.stickyheader .header-right {
   margin-right: 240px;
}

.stickyheader.leftpanel-collapsed .headerbar {
   left: 51px;   
}

.stickyheader.leftpanel-collapsed .header-right {
   margin-right: 0;
}

.stickyheader.chat-view .headerbar {
   right: 240px;
   width: auto;
}


/* CUSTOM STYLES */
.separator {
   clear: both;
   border-bottom: 1px dotted lightgrey;
   margin-bottom: 15px;
   padding-bottom: 15px;
}

.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: 0 !important;
}

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

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

.mr20 {
	margin-right: 20px !important;
}

.mr30 {
	margin-right: 30px !important;
}

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

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

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

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

.nopadding {
	padding: 0 !important;
}

.nomargin {
	margin: 0 !important;
}

.border-right-0 {
   border-right: 0;
}

.border-left-0 {
   border-left: 0;
}

.padding-top-0 {
	padding-top: 0;
}

.padding5 {
	padding: 5px;
}

.padding10 {
	padding: 10px;
}

.italic {
	font-style: italic;
}

.dark {
	color: var(--muted-600);
}

.width100p {
	width: 100%;
}

.width20 {
	width: 20px;
}

.width30 {
	width: 30px;
}

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

.centered {
	text-align: center;
	margin: 0 auto;
	position: relative;
	float: none !important;
}

.inline {
	display: inline-block;
}

.noborder {
	border: 0 !important;
}

/***** MEDIA QUERIES *****/
/*************************/


@media screen and (max-width: 1024px) {
   
   body {
      position: relative;
   }
   
   .leftpanel {
      left: -330px;
   }
   
   .mainpanel {
      margin-left: 0;
      width: 100%;
   }

   .leftpanel-collapsed .leftpanel {
      display: none;
   }
   
   .leftpanel-collapsed .mainpanel {
      margin-left: 0;
   }
   
   .leftpanel-collapsed .headerbar {
      margin-left: 0;
   }
   
   .leftpanel-show section {
      overflow-x: hidden;
   }
   
   .leftpanel-show .leftpanel {
	left: 0;
   }

   .leftpanel-show .mainpanel {
     filter: brightness(0.45);
   }
   
   .leftpanel-show main * {
     pointer-events: none;
   }

   .stickyheader .headerbar {
      left: 0;
   }
   
   .stickyheader.leftpanel-show .headerbar {
      left: 240px;
   }
   
   .stickyheader.chat-relative-view .headerbar {
      right: 240px;
      left: auto;
   }
   
   .stickyheader .header-right {
      margin-right: 0;
   }
   
   .btn-demo {
      margin-bottom: 20px;
   }
   
   .leftpanelinner {
      padding: 5px 10px;
   }
   
   .leftpanelinner .searchform input {
      background: #131b26;
      border: 0;
   }

   .menutoggle {
	display: block;
   }

	.modal.in .modal-dialog {
		transform: translate(0, 78px) !important;
	}
}

@media screen and (max-width: 767px) {
   
   .searchform {
      position: relative;
   }
     
   .leftpanel .searchform,
   .leftpanel .userlogged {
      display: block;
   }
   
   .breadcrumb-wrapper {
      display: none;
   }
   
   .headermenu .dropdown-menu:after {
      display: none;
   }
   
   .rightpanel .nav-tabs.nav-justified > li > a,
   .rightpanel .nav-justified > li > a {
      margin-bottom: 0;
   }
   
   .panel-email .col-sm-3 {
      display: none;
   }

   .panel-default {
	min-width: unset !important;
   }
   body.modal-open {
	overflow-y: auto !important;
	margin-right: 0 !important;
   }
}

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

   .notfoundpanel {
      width: auto;
      padding: 0 20px;
   }
   
   .notfoundpanel h1 {
      font-size: 72px;
      line-height: 72px;
   }
   
   .notfoundpanel h3 {
      font-size: 14px;
      line-height: normal;
   }
   
   .notfound h4 {
      font-size: 12px;
      line-height: 18px;
   }
   
   .notfoundpanel form {
      width: auto;
   }
   
   .notfoundpanel .form-control {
      float: none;
      width: 100%;
   }
   
   .notfoundpanel .btn {
      margin-top: 10px;
      width: 100%;
   }
   
   .signinpanel,
   .signuppanel {
      margin: 0 auto;
      width: 480px;
      padding: 20px;
   }
   
   .signinpanel form {
      margin-top: 20px;
   }
   
   .signup-footer {
      margin-bottom: 10px;
   }
   
   .signuppanel .form-control {
      margin-bottom: 10px;
   }
   
   .signup-footer .pull-left,
   .signup-footer .pull-right {
      float: none !important;
      text-align: center;
   }
   
   .widget-quick-status-post .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%;
      margin-bottom: -5px;
   }
   
   .widget-quick-status-post .nav-tabs.nav-justified > li a {
      margin: 0;
   }
   
   .nav-tabs.nav-justified.nav-profile > li {
      float: none;
      margin-bottom: 0;
      display: table-cell;
      width: 1%;
   }
   
   .nav-tabs.nav-justified.nav-profile > li a {
      margin: 0;
      -moz-border-radius: 3px 3px 0 0;
      -webkit-border-radius: 3px 3px 0 0;
      border-radius: 3px 3px 0 0;
      
   }
   
   .dataTables_info {
      float: none !important;
      text-align: center;
      margin-bottom: 10px;
   }
   
   .dataTables_paginate {
      margin-bottom: 10px;
      text-align: center !important;
      float: none !important;
   }
   
   .paginate_disabled_previous,
   .paginate_enabled_previous,
   .paginate_disabled_next,
   .paginate_enabled_next {
      float: none !important;
   }
   
   .dataTables_filter,
   .dataTables_length {
      float: none !important;
      padding: 10px 0 0 10px;
      margin: auto !important;
      display: inline-block;
   }
   
   .table.dataTable th,
   .table.dataTable td {
      font-size: 13px;
      min-width: 150px;
   }
   
   .paging_full_numbers {
      min-width: 500px;
      margin: 0 0 10px 10px;
   }
   
   .paging_full_numbers:after {
      clear: both;
      display: block;
      content: '';
   }
}

@media screen and (max-width: 480px) {
   
   .signinpanel,
   .signuppanel {
      width: 360px;
   }
   
   .panel-email .pull-right {
      float: none !important;
   }
   
   .pageheader h2 {
      font-size: 18px;
   }
   
   .pageheader .glyphicon,
   .pageheader .fa {
      font-size: 18px;
   }
   
   .pageheader h2 span {
      font-size: 11px;
   }
   
   .fc-header td {
      display: block !important;
      text-align: center;
      width: 100%;
      border: 1px solid #eee;
      padding: 10px !important;
      margin-top: -1px;
   }
   
   .fc-button {
      padding: 2px 5px !important;
      margin: 0 !important;
   }
   
   .fc-header-title h2 {
      margin: 0 !important;
   }
   
   .filemanager-options li {
      padding: 5px 7px;
   }
   
   .filemanager-options .filter-type {
      display: block;
      float: none;
      border-top: 1px solid #eee;
   }
   
   .comment-list .media-object {
      width: 30px;
      padding: 2px;
   }
   
   .comment-list .media > .pull-left {
      margin: 0;
   }
   
   .comment-list h4 {
      font-size: 13px;
   }
   
   .comment-list .reply {
      font-size: 10px;
      padding: 2px 5px;
   }
   
   .comment-list .media-body {
      font-size: 12px;
      line-height: 18px;
   }
   
   .blog-content form {
      margin-bottom: 20px;
   }
   
   .letter-list {
      -moz-box-shadow: none;
      -webkit-box-shadow: none;
      box-shadow: none;
   }
   
   .letter-list::after {
      clear: both;
      display: block;
      content: '';
   }
   
   .letter-list li {
      float: left;
      width: auto;
      display: inline-block;
   }
   
   .letter-list li a {
      display: block;
      padding: 2px 5px;
   }
   
   .btn-invoice:before {
      display: block;
      content: '';
      clear: both;
   }
   
   .btn-invoice .btn {
      display: block;
      width: 100%;
      margin-top: 10px;
   }
   
   .nav-tabs.nav-justified.nav-profile > li a {
      font-size: 13px;
      padding: 14px 10px;
   }
   
   #bloglist > div {
      padding: 0;
      margin: 0;
      float: none;
      width: auto;
   }
   
   .border-left {
		border: none;
   }

	.flyer {
		width: 200px;
	}
}

@media screen and (max-width: 360px) {
   
   .blog-title {
      font-size: 14px;
      line-height: 18px;
   }
   
   .blog-summary {
      font-size: 12px;
      line-height: 18px;
   }
   
   .blog-summary .btn {
      padding: 2px 5px;
      display: block;
      width: 100%;
   }
   
   .headermenu li:first-child .dropdown-menu {
      margin-right: -130px;
   }
   
   .headermenu li:nth-child(2) .dropdown-menu {
      margin-right: -85px;
   }
   
   .headermenu li:nth-child(3) .dropdown-menu {
      margin-right: -37px;
   }
   
   .nav-tabs.nav-justified.nav-profile > li {
      float: none;
      display: block;
      width: auto;
   }
   
   .blog-media .media-body {
      overflow: visible;
   }
   
   .follower-list .btn {
      display: block;
      margin: 0 0 5px 0;
      width: 100%;
   }
   
   .filemanager-options li {
      display: block;
      border-top: 1px solid #eee;
   }
   
   .filemanager-options li:first-child {
      border-top: 0;
   }
   
   .authorpanel .media-object {
      width: 80px;
      margin-right: 10px;
   }
   
   .people-item .media-object {
      width: 80px !important;
      height: 80px !important;
   }
   
   .pagination {
      margin-bottom: 20px;
   }
   
}

@media screen and (max-width: 320px) {
   
   .signinpanel,
   .signuppanel {
      width: 310px;
   }
   
}

.input-invisible {
   visibility: hidden;
}
#feedback {
   display: inline-block;
}

.btn-lang, .btn-lang:active, .btn-lang.active {
    background-position: 12px center;
}

.active-flag, .btn-lang:hover, .btn-lang:active {
   color: #fff !important;
   background-color: var(--active-600) !important;
   border-color: var(--active-600);
}

.btn-container {
	display: inline-flex;
   margin-bottom: 2px;
   gap: 8px;
}
.btn-container .btn-group {
   margin-bottom: 0px;
}
#menuBarDiv, .Editor-editor, #statusbar {
   border: 1px solid #cccccc;
}
#menuBarDiv, .Editor-editor {
   border-bottom: 0px;
}

/* uncomment this class in order to hide the text editor tools*/
/*
.Editor-container > .row-fluid{
display:none;
}
*/

@media (max-width:767px){

	#menuBarDiv {
	   display: none !important;
	}
}

/* --- Estils David --- */
.perm_icon {
   height: auto !important;
   width: auto !important;
   padding: 3px 15px !important;
   margin: 0 10px !important;
}


.openlistColor {
	color: #4883e0 !important;
}

.unactiveRrppColor {
	color: #f22 !important;
}

.activeRrppColor {
	color: rgb(20,140,20) !important;
}

.loaderIntern {
   font-size: 40px;
}
.ui-state-active, .ui-datepicker-today a {
   color: white !important;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;
   border-radius: 2px;
}
.ui-state-highlight {
   background: var(--bg-color-800) !important;
}
.ui-state-active, .ui-state-highlight:hover {
   background: var(--active-600) !important;
}

#sendReport .ckbox label:before {
   width: 24px;
   height: 24px;
}
#moreinfolink {
   text-decoration: none;
}

/*
#header-help-container {
	background-color: #f5f9fc;
    border: 1px solid #8084a921;
    align-self: center;
    margin: 0 14px 8px 0;
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    gap: 14px;
    align-items: center;
}
@media only screen and (max-width: 1200px) {
	#header-help-container {
		margin: 12px;
	}
}
@media only screen and (max-width: 992px) {
	#header-help-container {
		margin: 0 14px 8px 0;
	}
}

#header-help-container::before {
	content: attr(css-top-text);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 8px;
    position: absolute;
    margin-top: -35px;
    margin-left: -9px;
    color: #80849c;
    background: white;
    padding: 0 4px;
    line-height: 12px;
    border-radius: 2px;
    border: 1px solid #e6eaf1;
}

#header-help-container a {
	display: flex;
	opacity: 0.65;
	transition: opacity 0.3s;
}
#header-help-container a:hover {
	opacity: 1;
}
*/

#header-help-container {
    display: flex;
    align-items: center;
	height: 50px;
    gap: 1px;
	padding: 0 3px;
}
#header-help-container a {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 10px 12px;
	border-radius: 6px;
	transition: background-color 0.3s;
}
#header-help-container a:hover {
    background-color: var(--highlight, #eef5ff);
}

#header-help-container svg {
	width: 20px;
	height: 20px;
}
#header-help-container svg path {
	transition: fill 0.3s;
	fill: var(--grayed, #80849c) !important;
}
#header-help-container a:hover svg path {
	fill: var(--active, #0861fd) !important;
}

.topbar_button .menu-icon {
    position: relative;
    display: flex;
	width: 20px;
    height: 20px;
    padding: 10px 12px;
}
.topbar_button .menu-icon.outline {
	left: 24px;
    margin-left: -24px;
	opacity: 1;
}

.topbar_button .menu-icon.filled {
	opacity: 0;
}
.topbar_button:hover .menu-icon.outline {
	opacity: 0;
}
.topbar_button:hover .menu-icon.filled {
	opacity: 1;
}
body[theme="dark"] #theme-switcher .light-switch {
	display: none;
}
body:not([theme="dark"]) #theme-switcher .dark-switch {
	display: none;
}

body[theme="dark"] .menu-icon.outline,
body[theme="dark"] .icon {
    filter: brightness(1.75) saturate(0.25);
}



.noHeader .ui-dialog-titlebar {display:none}

.header-profile-btn {
	margin-right: 4px !important;
	height: 40px !important;
}
.header-profile-btn, .header-lang-btn {
	padding: 0 !important;
    margin: 0 10px 0 0;
	height: 50px;
	gap: 0;
	border-color: transparent !important;
	border-radius: 6px;
	background-color: transparent !important;
	transition: background-color 0.3s;
}
.header-profile-btn:hover, .header-lang-btn:hover {
	background-color: var(--highlight, #eef5ff) !important;
	color: inherit !important;
}

.header-lang-btn, .header-lang-btn:hover {
	padding: 10px 8px 10px 10px !important;
	margin: 0;
}
.lang-flag {
	background-size: 22px;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	width: 22px;
	height: 20px;
}
#header_profile_info {
	display: grid;
    grid-template-columns: 26px 1fr;
    grid-column-gap: 0px;
    gap: 0 10px;
	align-items: center;
	padding: 5px 28px 5px 10px;
	border-radius: 6px;	
}

.header_profile_image {
   height: 26px;
   width: 26px;
   overflow: hidden;
   border-radius: 26px;
   background-size: cover;
   background-position: center top;
}
#profile_image {
	height: 160px;
    width: 160px;
    border-radius: 50%;
}
.img-edit .header-profile-btn {
	transform: translateX(50px);
    width: 70px;
    display: flex;
    justify-content: center;
	gap: 20px;
    padding-left: 10px !important;
}
.header_profile_text {
	display: flex;
    flex-direction: column;
	text-align: left;
}
.header_profile_name, .header_profile_group {
	width: 100%;
	font-size: 13px;
    line-height: 16px;
}
.header_profile_name{
	color: var(--primary, #364455);
	font-weight: 450;
}
.header_profile_group{
	color: var(--grayed, #80849c);
	font-weight: 450;
}
button.dropdown-caret::after, .nav-parent > a::after {
	display: inline-flex;
	/*font-family: "FontAwesome";
    content: "\f107";
	*/
	content: '';
    position: relative;
	align-self: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    width: 18px;
    height: 18px;
	background-image: url(../images/pg/iconly/caret_down.svg) !important;
    position: relative;
	top: 0;
	filter: saturate(0) brightness(1.5);
    transition: transform 0.3s, top 0.3s, filter 0.3s;
	place-self: center;
    margin-left: auto;
}
body[theme="dark"] button.dropdown-caret::after,
body[theme="dark"] .nav-parent > a::after {
	background-image: url(../images/pg/iconly/caret_down-dark.svg) !important;
}
button.dropdown-caret::after, .nav-parent:not(.nav-active) > a::after {
	transform: rotate(0deg);
}
.nav-parent > a::after {
	right: 0;
}
button.header-profile-btn.dropdown-caret::after {
	right: 12px;
}

button.dropdown-caret:hover::after, .nav-parent > a:hover::after, .nav-parent.nav-active > a::after {
	color: var(--active, #0861fd);
	filter: saturate(1) brightness(1);
}
button.dropdown-caret[aria-expanded="true"]::after, .nav-parent.nav-active > a::after{
	top: -1px;
	transform: rotate(-180deg);
}
.dropdown-caret {
	outline: none !important;
}

button.header-lang-btn::after {
	right: 0;
}

.subs-report-top {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
}
.subs-report-top h1,
.subs-report-top h4,
.subs-report-top .stat-label {
	color: var(--bg-color);
}
body[theme="dark"] .subs-report-top img {
	filter: invert(0.85);
}
body[theme="dark"] .subs-report-top #barchart,
body[theme="dark"] .subs-report-top #basicflot {
	filter: invert(0.85) hue-rotate(180deg);
}

@media screen and (max-width: 1024px) {
	#header_profile_info {
		gap: 0;
		padding: 5px 12px 5px 10px;
	}
	.header_profile_text {
		display: none;
	}
	.subs-report-top {
		grid-template-columns: 1fr;
	}
 }
 

.bootstrap-filestyle.input-group input.form-control,
.bootstrap-filestyle.input-group span.group-span-filestyle.input-group-btn label {
   height: 40px;
   line-height: 27px;
}
input.form-control[readonly]:not(:disabled) {
    background: var(--input-background);
}

/* Bubble effect menu */

.outer_bubble {
   background-color: var(--bg-color);
}

.bubble {
	background-color: var(--box-background);
   border-radius: 25px;
   box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
   transition: 0.3s;
   width: 100%;
}

.outer_bubble_promoter {
   /* padding: 15px;  */
   background-color: #F1F3F9;
}

.bubble_promoter {
   padding: 15px; 
   background-color: var(--box-background);
   transition: 0.3s;
   width: 100%;
}

.legend_map {
   padding: 40px 40px 10px 40px; 
}

.panel-default {
	position: relative;
	min-width: 350px;
	background-color: var(--box-background);
	border-radius: var(--radius-md, 6px) !important;
	border: none;
	box-shadow: var(--box-shadow-500);
	overflow: hidden;
	transition: box-shadow 0.3s;
}
.panel-group .panel-title a {
    background-color: var(--tab-bg, #e7f1fc);
    color: var(--primary);
    border-bottom: 1px solid var(--bg-color-800);
}
.panel-default:has(.business-container){
	min-height: 140px;
}
.panel-default:hover {
	box-shadow: var(--box-shadow-600);
}
.panel-default:has(.business-container):hover {
	box-shadow: var(--box-shadow-500);
}
.panel-default.client-option-key {
	min-height: unset;
}
#colorEditorModal .tabs {
	padding: 1em 0;
}
#colorpicker-box {
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-left: -1px;
}

.panel-btn {
	min-width: unset;
	min-height: unset;
	display: flex;
    justify-content: center;
    padding: 20px;
}
.panel-btn:hover {
	box-shadow: var(--box-shadow-500);
}

.details-container {
	display: flex;
    flex-direction: column;
	justify-content: space-between;
	padding: 16px 18px;
    gap: 8px;
}

.event-container {
	padding: 0;
	height: 100%;
	cursor: pointer;
	border-radius: 6px;
    overflow: hidden;
}
.business-container {
	cursor: default;
}

.event-container .panel-content {
	display: grid;
    grid-template-columns: 128px 1fr;
	height: 100%;
	min-height: 200px;
}
.business-container .panel-content {
	min-height: 140px;
	grid-template-columns: 180px 1fr;
}
.event-container .flyer-container{
    border-radius: 0;
	overflow: hidden;
}
.business-container .flyer-container{
	overflow: visible;
}

.event-container .date {
	position: relative;
	display: flex;
    flex-direction: column;
	line-height: 15px;
    font-size: 12px;
    text-align: center;
    background: rgba(30, 40, 51, 0.8);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	color: white;
    min-width: 36px;
	width: 42%;
	height: 70px;
    padding: 10px 14px;
    border-radius: 0 0 var(--radius-md) 0;
	margin: 0 0 -70px 0;
	z-index: 1;
}
.business-container .date {
	height: 32px;
	margin: 0 0 -32px 0;
	border-radius: var(--radius-md) 0;
}
.event-container.serviceDeleted .date {
	margin-left: -3px;
}

.event-container .date .day {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.flyer {
	width: 128px;
    aspect-ratio: 10 / 16;
	border-radius: var(--radius-md);
	background-position: center;
    background-size: cover;
}
.flyer-big {
	width: 140px;
}

.event-container .flyer {
	width: 128px;
    height: 100%;
	border-radius: 0;
}
.business-container .flyer {
	width: 240px;
	aspect-ratio: 8 / 6;
	position: relative;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	border-radius: var(--radius-sm);
}

.event-container .btn-group {
	place-content: unset;
    flex-wrap: unset;
}

.event-assistance-container {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	gap: 5px;
}
.event-assistance-card {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
	flex-direction: column;
	background-color: var(--box-background);
	border: 1px solid var(--box-border);
	border-radius: var(--radius-sm);
	gap: 6px;
    padding: 9px 0;
	transition: background-color 0.3s;
}
.event-assistance-card:hover {
	text-decoration: none;
}
.event-assistance-card * {
    margin: 0;
    padding: 0;
    text-align: center;
	line-height: 1em;
}
.event-assistance-card h5 {
	font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
}
.event-assistance-card h4 {
	font-weight: 600;
    font-size: 14px;
    color: inherit;
}

.event-assistance-card.tickets{
	color: var(--info, #347FF0);
}
.event-assistance-card.tickets:hover {
	background-color: var(--info-bg);
}
.event-assistance-card.privates{
	color: var(--warning, #FF9641);
}
.event-assistance-card.privates:hover {
	background-color: var(--warning-bg);
}
.event-assistance-card.lists{
	color: var(--success, #2AC28F);
}
.event-assistance-card.lists:hover {
	background-color: var(--success-bg);
}



.nav-pills > li > a {
	border-radius: 6px;
}

@media screen and (min-width: 992px) {
   .legend_text {
      text-align: center; 
   }
}


.pagination {
	margin: 10px 0 20px;
}
.pagination.tabs {
	width: 100%;
	display: inline-flex;
	justify-content: center;
}
.pagination.tabs>li>a, .pagination.tabs>li>span, .pagination.tabs>li>a:hover, .pagination.tabs>li>span:hover, .pagination.tabs>li>a:focus, .pagination.tabs>li>span:focus {
	border-radius: 3px;
	transform: translateX(-2px);
	padding: 5px 18px;
	min-width: 90px;
	text-align: center;
}


.pagination.tabs>li:first-child>a, .pagination.tabs>li:first-child>span, .pagination.tabs>li:first-child>a:hover, .pagination.tabs>li:first-child>span:hover, .pagination.tabs>li:first-child>a:focus, .pagination.tabs>li:first-child>span:focus {
	border-left-width: 2px;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-right-width: 0px;
}
.pagination.tabs>li:last-child>a, .pagination.tabs>li:last-child>span, .pagination.tabs>li:last-child>a:hover, .pagination.tabs>li:last-child>span:hover, .pagination.tabs>li:last-child>a:focus, .pagination.tabs>li:last-child>span:focus {
	border-left-width: 0px;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-right-width: 2px;
}
.pagination.tabs>.active>a, .pagination.tabs>.active>span, .pagination.tabs>.active>a:hover, .pagination.tabs>.active>span:hover, .pagination.tabs>.active>a:focus, .pagination.tabs>.active>span:focus {
	background-color: white !important;
	border-color: var(--active-600) !important;
	font-weight: 600;
	color: var(--active-600);
	border-width: 2px !important;
}
.pagination.tabs>li>a:hover{
	border-color: var(--active-600) !important;
}

.pagination.tabs{
	margin: 0;
}


.modal {
   overflow: auto;
}

body.modal-open {
   height: 100dvh;
   height: 100vh;
   overflow-y: hidden;
   margin-right: 15px;
}

.modal-body .panel-body {
	max-height: calc(100vh - 240px);
	border-radius: var(--radius-sm);
	overflow-y: auto;
	border-top-color: transparent !important;
}
.panel-collapse {
	padding: 12px 16px;
}
.panel-collapse.in .panel-body {
	border-bottom: unset !important;
}
.panel-collapse:not(.in) {
	height: 0 !important;
    display: none;
    padding: 0 !important;
}


.mainpanel.wl {
	margin: auto !important;
	min-height: unset;
	background: transparent;
	padding-top: 10px;
}

.paylink-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
    max-width: 900px;
    justify-content: center;
    margin: auto;
    align-content: center;
}

.mainpanel.wl, .mainpanel.wl .contentpanel {
	background-color: var(--body-bg, transparent);
}

.mainpanel .paylink-container, .paylink-container .panel-heading {
	background-color: var(--body-bg);
}

.paylink-header {
	display: flex;
	margin-top: 30px;
	margin-bottom: 10px;
}

.paylink-flyer {
	height: 70px;
	aspect-ratio: 9 / 16;
	margin-right: 18px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: var(--radius-sm);
}

.paylink-title h2 {
	margin-bottom: 15px;
	color: inherit;
}

.paylink-container > div {
	max-width: 100%;
    padding: 0 20px;
    min-width: min(800px, 50vw);
	line-height: 1.7em;
}
.paylink-container > div > h3 {
	margin: 10px 0 0;
}

.paylink-container .payment-total {
	font-size: 1.1em;
    padding: 10px;
}

.paylink-container #tpvLoader, .paylink-container #paypalLoader {
	mix-blend-mode: multiply;
}

.paylink-container .payment-choice .row > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding:  2em 10px !important;
	border-bottom: 1px solid var(--tags-bg);
	justify-content: space-between;
	flex-direction: row;
}
.paylink-container .payment-choice .row > div > div {
	display: grid;
}
.paylink-container .payment-choice .row > div > div p {
	flex-grow: 1;
}

@media only screen and (max-width: 560px) {
	.paylink-container .payment-choice .row > div > .pay-method {
		width: 100%;
		margin-bottom: 8px;
    	text-align: center;
	}
	.paylink-container .payment-choice .row > div > .pay-method small {
		margin: auto;
	}
	.paylink-container .payment-choice .row > div > div {
		margin: auto auto 8px auto;
	}
}

.paylink-container .btn {
	border-radius: calc(var(--border-radius-int, 3px) * 2) !important;
	gap: 7px;
	display: flex;
	justify-content: center;
	padding: 6px 12px;
    font-size: 1.15em;
    font-weight: 500;
	min-width: 100px;
}

.paylink-container .rdio:hover,
.paylink-container label:has(input[type="checkbox"]):hover {
	color: var(--active);
}

.paylink-container .rdio:hover label,
.paylink-container label:has(input[type="checkbox"]) {
	color: inherit;
}

.paylink-terms {
	padding-top: 10px;
}

.paylink-terms label{
	position: relative;
	font-weight: normal;
	color: inherit;
}

.paylink-terms label.label-error {
	color: red!important;
}

.paylink-terms label a:hover, .paylink-terms label a:active {
	color: var(--input-primary-light);
}

.date-field {
	display: flex;
	min-width: calc(100% - 16px);
}
input[type='date'].date-field {
	line-height: 1.428571429;
}
.date-field::before {
	display: flex;
    content: attr(css-text);
    width: calc(100% + 40px);
	color: #929292;
}
.date-field.empty {
	color: transparent;
}
@-moz-document url-prefix() { 
	.date-field.empty {
		color: inherit;
	}
}
.date-field:not(.empty)::before {
    display: none;
}

.terms_container, .paylink-container .alert {
	margin: 10px 0 0;
	opacity: 0.9;
	padding: 14px 4px;
	font-size: 0.9em;
	text-align: center;
	border-radius: var(--border-radius-ext);
}
.modal-content .terms_container a {
	font-size: 1em;
}
body[theme="dark"] .terms_container {
	background: #005fb024;
	color: #07adff;
	border: 1px solid #004d8052;
}
body[theme="light"] .terms_container {
	background: #008aff1c;
	border: 1px solid #058be42b;
}

.navbar.wl .navbar-header {
	display: flex;
    padding: 0;
    width: 100%;
    justify-content: space-between;
}
.navbar.wl .navbar-header .navbar-brand {
	flex-grow: 1;
}
.navbar.wl .dropdown-menu {
	left: unset !important;
    right: 0px;
	background: var(--navbar-bg, white);
}

.navbar.wl .dropdown-toggle {
	display: flex;
    align-items: center;
    gap: 6px;
}
.navbar.wl .dropdown-menu>li>a {
	color: var(--navbar-text, #ccc);
	display: flex;
	gap: 6px;
}
.navbar.wl .dropdown-menu>li.disabled {
	opacity: 0.5;
}

.navbar.wl .dropdown-menu>li>a:hover {
	background-color: var(--btn-primary) !important;
}
.mainpanel.wl small.price-fee {
    display: flex;
	line-height: 1.5em;
	margin: 0.25em 0;
}

label[for="reg_newsletter"] {
	display: flex;
    gap: 8px;
    align-items: center;
}

.mainpanel.wl .btn-group {
	display: flex;
	justify-content: center;
	gap:8px;
	flex-wrap: wrap;
}
.mainpanel.wl .btn-group button {
	display: flex;
    align-items: center;
    padding: 8px 26px;
}

#sted-advanced-settings {
	display:flex;
	align-items:center;
	gap: 6px;
	margin-top: 30px;
	cursor: pointer;
}

#colorEditorModal .new.active ~ div #sted-advanced-settings ~ #accordion {
	transition: height 0.3s, opacity 0.3s;
}
#colorEditorModal .new.active ~ div #sted-advanced-settings.active ~ #accordion {
	display: block;
	height: unset;
}
#colorEditorModal .new.active ~ div #sted-advanced-settings:not(.active) ~ #accordion {
	display: none;
    height: 0;
}

#colorEditorModal .old.active ~ div #sted-advanced-settings {
	display: none;
}
#colorEditorModal .old.active ~ div .newlayout-selector {
	display: none;
}

#colorEditorModal .old.active ~ div .newlayout-field {
	display: none;
}
#colorEditorModal .new.active ~ div .oldlayout-field {
	display: none;
}

#colorEditorModal .old:not(.active) {
	display: none;
}

#colorEditorModal .new:not(.active) {
	display: none;
}

#sted-advanced-settings .fa-caret-up {
	transition: transform 0.3s;
}
#sted-advanced-settings.active .fa-caret-up {
	transform: rotate(0deg);
}
#sted-advanced-settings:not(.active) .fa-caret-up {
	transform: rotate(180deg);
}

.newlayout-selector {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
}
.newlayout-selector h5 {
	width: 100%;
	text-align: left;
	font-weight: 600;
	margin: 12px 0 0 1px;
}
.newlayout-selector label {
	font-size: 12px;
	color: #909090;
}
#color-mode-selector svg, #roundness-selector svg {
	display: flex;
	width: 60px;
    border-radius: 8px;
}
#color-mode-selector svg#light-mode-sel {
    border: 2px solid #cbcbcb;
}
#color-mode-selector svg#dark-mode-sel, #roundness-selector svg {
	border: 2px solid #a3a3a3;
}
.newlayout-selector div.active svg, .newlayout-selector div.active.title-body-selector {
	border: 2px solid var(--active-600) !important;
    box-shadow: 0px 0px 6px #e9b564;
}

.newlayout-selector div.active::after {
	content: "\f058";
    display: flex;
	font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    font-size: 16px;
    line-height: 16px;
    color: var(--active-600);
    
    justify-content: end;
    align-items: end;
    padding: 4px;
}

#color-mode-selector div.active::after, #roundness-selector div.active::after {
	width: 60px;
    height: 48px;
}
#font-combo-selector div.active::after {
	width: 86px;
    height: 54px;
}

.newlayout-selector div:not(.colorpicker-component) {
	display: flex;
    flex-direction: column;
    justify-content: left;
    align-content: baseline;
	font-size: 0.85em;
	cursor: pointer;
}

.newlayout-selector div svg ~ span {
    max-width: 60px;
    line-height: 1.4em;
    margin: 0.4em 0;
}

.newlayout-selector select {
	font-size: 12px !important;
    padding: 8px;
    border-radius: 3px;
    border-color: var(--input-border);
}
.newlayout-selector input {
	font-size: 12px !important;
    padding: 8px !important;
}

.title-body-selector {
	background: #e2e2e2;
    color: #373737;
    border: 2px solid #cbcbcb;
    width: 100px;
    height: 57px;
    justify-content: center !important;
    padding: 0 10px;
    line-height: 1em;
    text-align: left;
    gap: 4px;
    border-radius: 8px;
    zoom: 1.1;
}
.title-body-selector span {
	overflow: hidden;
	white-space: nowrap;
    text-overflow: ellipsis;
	user-select: none;
}
.title-body-selector span:first-child {
	font-size: 1.1em;
	font-weight: 600;
}


.iti {
	color: var(--muted-600);
	width: 100%;
}

.iti-mobile .iti--container {
	max-width: 85vw;
}
.iti--separate-dial-code .iti__selected-flag {
	background-color: var(--tab-bg) !important;
	color: var(--primary) !important;
}
body[theme="dark"] .iti--separate-dial-code .iti__selected-flag .iti__arrow {
	filter: invert(1);
}
.iti__country-list {
	background: var(--input-background) !important;
	color: var(--primary);
	border-color: var(--input-border) !important;
    border-radius: var(--radius-sm);
}
.iti__divider {
	border-bottom: 1px solid var(--box-border) !important;
}
.iti__country.iti__highlight {
	background-color: var(--highlight) !important;
}

.field input, .field select, .field textarea {
	margin-bottom: 0;
}

.modal-backdrop {
	display: none;
}

.modal-content {
    box-shadow: 0 0 7px rgb(0 0 0 / 10%);
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
	background-color: unset;
    color: var(--headers);
}

.flex-end {
	display: flex;
	place-content: flex-end;
}

#add-guest-summary {
    background: var(--bg-color-600);
    color: var(--input-primary);
    padding: 14px 20px;
	margin: 5px 0 20px;
    border-radius: 6px;
    display: flex;
}

.payment-origin {
	position: relative;
    flex-direction: row;
}


.promo-group td {
	transition: background-color 0.3s;
}

.promo-group td a {
	text-decoration: none;
}
.promo-group:hover td a {
	color: var(--active);
}

.promo-group.active td {
	background-color: var(--bg-color-600) !important;
}

#event-load-button {
	padding: 5px 16px;
    font-size: 12px;
    width: fit-content;
    cursor: pointer;
    text-align: center;
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    margin-top: 15px;
    background-color: var(--input-background);
}

.checkbox-group {
	display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.checkbox-group span {
    width: 100%;
}

.style-editor .input-group {
	width: 100%;
	margin: 4px 0;
}
.style-editor .btn {
	width: fit-content;
}

.fs-title, .fs-subtitle {
	width: 100%;
	text-align: left;
}
.modal #msform {
	width: unset;
	margin: 0;
    padding: 30px 40px;
}
.modal #msform fieldset {
	border-radius: var(--radius-md);
	background-color: var(--bg-color-500);
	box-shadow: none;
	position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
}
.modal #msform .action-button {
	background: var(--input-primary);
	outline-color: var(--input-primary);
	border-color: var(--input-primary);
}

.modal #msform .action-button:hover {
	background: var(--input-primary-light);
	outline-color: var(--input-primary-light);
	border-color: var(--input-primary-light);
}
.modal #msform .action-button.submit {
	background-color: var(--secondary) !important;
    outline-color: var(--secondary);
    border-color: var(--secondary) !important;
}
.modal #msform .action-button.submit:hover {
	background-color: var(--secondary-hover) !important;
	outline-color: var(--secondary-hover);
	border-color: var(--secondary-hover) !important;
}
.modal #msform i {
	color: var(--grayed);
}
.modal #msform .active i {
	color: var(--input-background);
}
.modal #progressbar {
    position: initial;
	width: 100%;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    background-color: transparent;
    box-shadow: none;
}
.modal #progressbar li {
	color: var(--primary);
}
.modal #progressbar li::before, .modal #progressbar li::after {
	background: var(--bg-color-700);
	color: white;
}

.modal #amount_div {
	width: unset;
    margin: 0 10px;
}

#orderModalPaidLabel {
	color: var(--primary) !important;
}

.fs-title,
#msform input:not([type="button"]),
#msform textarea {
	color: var(--headers) !important;
	border-color: var(--input-border) !important;
}

.pageheader-sales-promoter {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.pageheader-sales-promoter h4 {
	width: 100%;
}
.pageheader-sales-promoter a {
	pointer-events: none;
	font-weight: bold;
}
.pageheader-sales-promoter-main {
	display: flex;
	align-items: center;
}
.pageheader-sales-promoter-main a {
	color: var(--info);
	font-weight: bold;
	cursor: pointer;
	background-color: transparent;
	padding: 4px 10px;
	border-radius: var(--radius-lg);
	transition: background-color 0.3s;
}
.pageheader-sales-promoter-main a:hover {
    background-color: var(--bg-color-700);
	text-decoration: none;
}

.data-card-report {
	cursor: pointer;
	border: 2px solid transparent !important;
	transition: border-color 0.3s;
}
.data-card-report:hover {
	border-color: var(--input-border) !important;
}
.data-card-no-hover:hover {
	border-color: transparent !important;
	cursor: default;
}

.data-card-report input[type="radio"] {
	display: grid;
	place-content: center;
	position: absolute;
	right: 20px;
	scale: 2;
}

.data-card-report input[type="radio"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	border-radius: 50%;
	transform: scale(0) !important;
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em rgb(43, 126, 234);
}

.data-card-report input[type="radio"]:checked::before {
	transform: scale(1);
}

.active-summary-type {
	border-color: var(--active) !important;
    color: var(--active) !important;
 }

.fee-container {
	gap: 36px;
	margin-bottom: 20px;
}
.fee-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.fee-group label {
    grid-column: 1 / span 2;
}
.fee.paypal ~ .fee.tpv::before {
	content: '+';
	margin-left: -12px;
    margin-right: 12px;
}

.seatsio-loading-screen ~ iframe {
    background: var(--box-background);
	border: 1px solid var(--box-border) !important;
    border-radius: var(--radius-lg);
    padding: 20px 18px;
}


/* service-list-table */
.table.service-list-table {
	border: none;
}
.table.service-list-table tr.hidden-content-row {
	padding: 10px 0 30px 0;
}
.table.service-list-table tr.expandable-row .panel-body{
	background-color: var(--bg-color);
	border-radius: var(--radius-md);
}
.table.service-list-table thead {
	display: none;
}

.table.service-list-table tbody {
	display: grid;
    width: 100%;
    gap: 8px;
}

.service-list-title {
	font-weight: 600;
	margin: 0 0 14px;
    color: var(--primary-800);
}
.table.service-list-table tr:not(.hidden-content-row) {
	width: 100%;
    display: flex;
    grid-auto-flow: column;
	padding: 0 10px;
	border-radius: var(--radius-md);
	background-color: var(--box-background);
}
.table.service-list-table tr.expandable:not(.hidden-content-row) > td > button[disabled] {
	display: none;
}


.table.service-list-table tr:not(.hidden-content-row) td {
	display: flex;
    align-items: center;
	justify-content: center;
	flex-grow: 1;
	border: none;
	border-radius: var(--radius-md);
	background-color: transparent !important;
}
.table.service-list-table tr:not(.hidden-content-row) + tr:not(.hidden) {
	margin-top: -12px;
	box-shadow: none;
}
.service-ungrouped > tr:not(.service-child) {
	grid-template-columns: 70px 1fr 150px 60px 74px 100px 50px !important;
}
.service-child {
	grid-template-columns: 60px 1fr 100px 60px 109px 80px 40px !important;
}
tr.expandable-row {
	display: block !important;
    margin: 16px 0 14px;
	grid-template-columns: 1fr !important;
}
tr.expandable-row .panel {
	overflow: visible !important;
}
.table.service-list-table tr.hidden-content-row {
	overflow: auto;
}
.table.service-list-table tr.hidden-content-row td {
	background-color: transparent;
	display: contents;
}
.table.service-list-table tr.hidden-content-row .panel-default {
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	box-shadow: var(--box-shadow-500) !important;
}
td.service-name {
	justify-content: flex-start !important;
}

.table.service-list-table td.no-tickets {
	justify-content: flex-end !important;
}
.table.service-list-table td.service-name div {
	/*display: flex;
    flex-wrap: wrap;
    flex-direction: column;
	width: stretch;
	width: -moz-available;
	width: -webkit-fill-available;*/
}
.table.service-list-table td.service-name div > * {
    overflow: hidden;
    text-overflow: ellipsis;
}
.table.service-list-table td.pg-actions {
	justify-content: flex-end;
}

.table.service-list-table td[data-cell="ID"] {
	color: var(--grayed);
}


.table.service-list-table>tbody>tr>td.service-expand{
	width:40px;
	flex-grow:0;
	flex-shrink:0;
}
.table.service-list-table>tbody>tr>td[data-cell="ID"]{
	width:80px;
	flex-grow:0;
	flex-shrink:0;
}
.table.service-list-table>tbody>tr>td.service-name{
	flex-grow:1;
	flex-shrink:0;
}
.table.service-list-table>tbody>tr>td.service-price{
	width:120px;
	flex-grow:0;
	flex-shrink:0;
	text-align:right;
}
.table.service-list-table>tbody>tr>td.no-tickets{
	width:120px;
	flex-grow:0;
	flex-shrink:0;
	text-align:right;
}
.table.service-list-table>tbody>tr>td.service-price>strong,
.table.service-list-table>tbody>tr>td.no-tickets>div{
	width:100%;
	text-align:right;
}
.table.service-list-table>tbody>tr>td.pg-actions{
	width:80px;
	flex-grow:0;
	flex-shrink:0;
}
.text-muted .pg-icon.ticket {
	opacity:.6;
}
.table.service-list-table .service-badges{
	margin-top:4px;
}
.service-badges .badge {
	font-size: 0.9em;
}
.table.service-list-table-child{
	padding-left:12px;
}



@media screen and (min-width: 768px) {
	.table.service-list-table .service-active{
		padding-top:6px !important;
		padding-bottom:6px !important;
	}
}
@media screen and (max-width: 768px) {
	.tab-content:has(#services){
		padding: 16px 8px;
	}
	.table.service-list-table tr:not(.hidden-content-row){
		display:grid;
	}
	.table.service-list-table>tbody>tr>td[data-cell="ID"]{
		display:none;
	}

	.table.service-list-table tr:not(.hidden-content-row) {
		padding: 0 12px;
	}
	/*.table.service-list-table tr:not(.hidden-content-row):has(td[data-cell="ID"]) {
		grid-template-columns: 60px 1fr 42px 50px;
	}
	.table.service-list-table tr.expandable:not(.hidden-content-row):has(td[data-cell="ID"]) {
		grid-template-columns: 28px 60px 1fr 40px 42px;
	}*/
	.table.service-list-table tr:has(td .dropdown.open) td {
		background-color: inherit !important;
	}
	.table.service-list-table td {
		padding: 0;
	}
	.table.service-list-table td[data-cell="ID"] {
		place-self: flex-start;
	}
	
	.table.service-list-table td.service-name {
		grid-column: 1 / 6;
		grid-row: 1 / 1;
	}
	
	.table.service-list-table td.service-price {
		grid-column: 6 / 6;
		grid-row: 1 / 1;
		place-self:end;
		width:auto !important;
	}
	.table.service-list-table td.pg-actions {
		grid-column: 7 / 7;
		grid-row: 1 / 1;
		width:auto !important;
	}

	.table.service-list-table .service-child td.pg-actions{
		/*grid-column: 7 / 7;
		grid-row: 1 / 1;
		place-self:end;
		width:auto !important;*/
	}
	.table.service-list-table td.status {
		grid-column: 3 / 5;
		grid-row: 2 / 2;
		place-self: flex-end;
		width:auto !important;
	}
	.table.service-list-table td.no-tickets {
		grid-column: 1 / 3;
		grid-row: 3 / 3;
		place-self: start;
		width:auto !important;
		height: 36px;
	}
	.table.service-list-table td.service-badges-xs {
		grid-column: 4 / 8;
		grid-row: 2 / 2;
		place-self:end;
		width:auto !important;
		height: 36px;
	}
	.table.service-list-table tr.expandable .service-expand:has(button:disabled) {
		display: none !important;
	}
	.table.service-list-table tr.expandable .service-expand{
		grid-column: 7 / 7;
		grid-row: 1 / 1;
		width:auto !important;
	}
}

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

	.panel-collapse {
		padding: 12px 0;
	}
	.panel-body {
		padding: 6px;
	}

	.service-child {
		grid-template-columns: 46px 0px 1fr 40px 30px !important;
	}
}

.report_table .table-container {
	background: var(--container-bg);
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    box-shadow: var(--box-shadow-500);
	height: calc(100% - 1px);
}
.promoter-item-group-container > div,
.promoter-item-row {
	display: grid !important;
    text-align: center;
    place-items: center;
	flex-grow: 1;
}
.promoter-item-group-container > div {
	grid-template-columns: 1fr 1fr;
	min-width: 90px;
}
.promoter-item-row {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.promoter-row-totals .promoter-item-group-container.tickets-container > div > div:first-child,
.promoter-row-totals .promoter-item-group-container.dinners-container > div > div:first-child,
.promoter-row-totals .promoter-item-group-container.drinks-container > div > div:first-child,
.promoter-row-totals .promoter-item-group-container.modifications-container > div > div:first-child,
.promoter-row-totals .promoter-item-group-container.totals-container > div > div:first-child {
	color: var(--success);
}
.promoter-row .promoter-item-group-container.totals-container > div > div:first-child,
.promoter-row.promoter-row-totals .promoter-item-group-container {
	font-weight: bold;
}

.promoter-item-group-container.totals-container > div > div:last-child,
.promoter-item-group-container.tickets-container > div > div:last-child,
.promoter-item-group-container.dinners-container > div > div:last-child,
.promoter-item-group-container.lists-container > div > div:last-child,
.promoter-item-group-container.drinks-container > div > div:last-child,
.promoter-item-group-container.modifications-container > div > div:last-child {
	color: var(--active);
}

.promoter-item-group-container.totals-container {
	background-color: var(--table-highlight-600);

}
.promoter-item-group-container.dinners-container,
.promoter-item-group-container.drinks-container {
	background-color: var(--table-highlight-500);
}

.promoter-row.promoter-row-totals .promoter-item-group-container,
.promoter-row.promoter-row-totals .promoter-title-group {
	background-color: var(--table-highlight-700);
}
.promoter-title-group {
	padding: 8px 6px 8px 20px;
	width: 260px;
	height: 100%;
    display: flex;
    align-items: center;
}



.promoter-item-group-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	padding: 8px 10px;
	width: 100%;
	height: 100%;
    align-content: center;
}

 
.promoter-item-group-container::before {
	content: attr(css-text-category);
    width: 100%;
	font-size: 0.9em;
    font-weight: 600;
    line-height: 2em;
}

.promoter-row.promoter-row-totals {
	display: flex !important;
}
.report_table.grouped .promoter-row:not(.promoter-row-sub-totals) {
	display: none;
}
.report_table:not(.grouped) .promoter-row.promoter-row-sub-totals {
	display: none;
}
.promoter-title {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.promoter-title span {
	flex-grow: 1;
}
.promoter-incomes-sales {
	display: flex;
	flex-direction: row;
	font-size: 14px;
	font-weight: 500;
	margin-top: 3px;
}

.report_table .title {
	font-weight: 600;
    line-height: 1em;
	width: 100%;
}
.report_table .subtitle {
    font-size: 0.8em;
    line-height: 0.8em;
    font-weight: 100;
    color: var(--muted);
	text-transform: none;
    margin: 0;
}
.report_table .event-link {
	width: 100%;
}
.report_table .event-link:focus {
	text-decoration: none;
}

.promoter-row-headers {
    position: sticky;
    background: var(--box-background);
	top: 48px;
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	box-shadow: var(--box-shadow-400);
    overflow: hidden;
}
.printable {
	zoom: 0.9;
}
.printable .promoter-row-headers {
	top: 0;
	position: relative;
}
body[class^=banner-] .promoter-row-headers {
	top: 90px;
}

.promoter-row-headers,
.promoter-row {
	border-bottom: 1px solid var(--box-border);
	color: var(--primary);
	display: flex;
	flex-direction: row;
	width: 100%;
}

.promoter-row .promoter-title-group {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.promoter-row .promoter-title-group,
.promoter-row .promoter-item-group-container {
	transition: background-color 0.15s ease-in-out;
}
.promoter-row:hover .promoter-title-group,
.promoter-row:hover .promoter-item-group-container {
	background-color: var(--table-highlight-800);
}

.promoter-row-headers .promoter-item-group-container {
	padding: 5px 10px 3px;
}

.promoter-row-headers .promoter-item-group-container > div > div {
    font-size: 0.8em;
    color: var(--muted-400) !important;
}

@media only screen and (max-width:1200px) {
	.promoter-item-row {
		grid-template-columns: 1fr;
	}

	.promoter-item-group-container:not(.active) {
		display: none !important;
	}
	.promoter-row-headers .promoter-item-row-totals {
		position: relative;
		grid-template-columns: 1fr;
	}
	.report_table .table-container {
		margin-top: 14px;
	}
}

#addAlertBtn {
    display: flex;
    height: fit-content !important;
    align-self: center;
}

#PromotersGroupsRRPP .stat-label.status,
#SearchPromotersRRPP .stat-label.status {
	padding: 0.1em 0.2em;
	font-size: 0.65em;
	border-radius: 2px;
}
#PromotersGroupsRRPP .status.list,
#SearchPromotersRRPP .status.list {
	width: 44px;
	line-height: 1.5em;
	margin: 0 4px 0 0;
}
#PromotersGroupsRRPP .table>tbody>tr>td:last-child,
#SearchPromotersRRPP .table>tbody>tr>td:last-child {
	padding: 8px 8px 8px 1px;
}

.dz-default.dz-message {
	display: none;
}

.swal2-title {
	color: var(--primary);
}
.swal2-checkbox {
	display: none !important;
	opacity: 0;
    height: 0;
}

div:where(.swal2-container).swal2-center>.swal2-popup {
	background: var(--box-background);
    border: 1px solid red;
    border-color: var(--box-border);
    box-shadow: var(--box-shadow-500);
}

div:where(.swal2-container).swal2-backdrop-show,
div:where(.swal2-container).swal2-noanimation {
	background: #ffffff54 !important;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

body[theme="dark"] div:where(.swal2-container).swal2-backdrop-show,
body[theme="dark"] div:where(.swal2-container).swal2-noanimation {
	background: #00000017 !important;
}

.swal2-html-container {
    filter: saturate(1.5) hue-rotate(10deg);
}
body[theme="dark"] .swal2-html-container {
    filter: saturate(1.5) hue-rotate(-5deg);
}

#seatsio-select-container.disabled {
	display: none;
}

.no-shadow,
.no-shadow:hover {
	box-shadow: none !important;
}

.report-section-title {
	width: 100%;
	color: var(--primary-800);
	margin: 4px 0 10px;
	font-weight: 600;
	font-size: 1.5em;
	letter-spacing: -0.25px;
}


.data-text-table {
	margin: -8px;
    padding: 10px;
    color: var(--primary);
}

tr.tr-background th {
	height: 40px;
}

#report-sales-parent {
	transition: opacity 0.3s;
}