
/* ---------------------------------- */
/* Dashboard List Box
------------------------------------- */
.dashboard-list-box {
	margin: 30px 0 0 0;
	border-radius: 6px;
}
.dashboard-list-box > * {
    border-radius: 6px;
}
/* Button */
.dashboard-list-box .button {
	padding: 6px 15px;
	line-height: 20px;
	font-size: 13px;
	font-weight: 600;
	margin: 0;
}

.dashboard-list-box .button.gray:before { display: none; }

.dashboard-list-box .button.gray:hover {
	background-color: #66676b;
	color: #fff;
}

.dashboard-list-box h4 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 25px 30px;
	display: block;
	border-radius: 4px 4px 0 0;
}


.dashboard-list-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 0 0 4px 4px;
}

.dashboard-list-box ul li {
	padding: 23px 30px;
	transition: 0.3s;
	position: relative;
}

/*.dashboard-list-box ul li:nth(2n+1) {
	background-color: #fcfcfc
}*/

.dashboard-list-box.with-icons ul li { padding-left: 87px; }

.dashboard-list-box ul li:last-child { border: none; }

/*.dashboard-list-box ul li:hover { background-color: #fbfbfb; }*/
.dashboard-list-box .numerical-rating { margin: 0 3px; }

.dashboard-list-box ul li i.list-box-icon {
	height: 38px;
	width: 38px;
	color: #777;
	text-align: center;
	line-height: 37px;
	border-radius: 50%;
	transition: 0.3s;
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 30px;
	color: rgb(from var(--third_color) r g b / .7);
    background: rgb(from var(--grayish2) r g b / .6);
}

.dashboard-list-box ul li:hover i.list-box-icon { 
	background-color: #eaeaea;
	background-color: rgb(from var(--grayish) r g b / .7);
    color: var(--third_color);
}


/* Static Content */
.dashboard-list-box-static {
	padding: 30px;
}

.dashboard-list-box-static .button {
	padding: 12px 20px;
	font-size: 15px;
	margin-bottom: 3px;
}


/* Close List Item */
a.close-list-item {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	opacity: 0;
	padding: 4px;
	color: #ea2828;
	transition: 0.3s;
}

.dashboard-list-box ul li:hover a.close-list-item { opacity: 1; }


/* Reset for child ul  */
/*.dashboard-list-box ul ul { background-color: transparent; }

.dashboard-list-box ul ul li:nth-last-child(2n+1) { background-color: transparent; }*/
.dashboard-list-box ul ul li {
	padding: 0;
	border: none;
	transition: 0.3s;
	background-color: transparent;
	display: inline-block;
}

.dashboard-list-box ul ul li:hover { background-color: transparent; }

/* Sorting */
.dashboard-list-box .sort-by {
	top: 16px;
	right: 26px;
}

.dashboard-list-box .sort-by .chosen-container-single .chosen-single { background-color: transparent; padding: 0 4px; }
.dashboard-list-box .chosen-container .chosen-results li { border: none; }



/* Invoices
------------------------------------- */
.dashboard-list-box.invoices li { padding: 20px 30px; }
.dashboard-list-box.invoices li.checkboxes { padding: 0px 15px; }

.dashboard-list-box.invoices ul ul {
	line-height: 22px;
	padding-bottom: 2px;
	color: #909090;
}

.dashboard-list-box.invoices ul ul li { padding: 0; }

.dashboard-list-box.invoices ul ul li:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 11px;
	background-color: #e0e0e0;
	position: relative;
	margin: 0 10px;
}

.dashboard-list-box.invoices ul ul li:last-child:after { display: none; }

.paid { color: #64bc36; }
.unpaid { color: #ee3535; }

/* Button to right */
.buttons-to-right,
.dashboard-list-box .button.to-right {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translate3d(0,-49%,0);
	-moz-transform: translate3d(0,-50%,0);
	opacity: 0;
	transition: 0.4s;
	box-shadow: 0px 0px 10px 15px #fbfbfb;
}


.dashboard-list-box li:hover .buttons-to-right,
.dashboard-list-box li:hover .button.to-right { opacity: 1; }

.buttons-to-right { box-shadow: none; }
.buttons-to-right .button { margin-left: 2px; }

.dashboard-list-box .button i { padding-right: 2px; position: relative; top: 1px; }
.dashboard-list-box .button i.fa-remove { padding-right: 1px; }

.buttons-to-right, .dashboard-list-box .button.to-right {
    right: 15px;
    top: 30%;
}.buttons-to-right ul {
    float: left;
    text-align: left;
    position: absolute;
    top: 25px;
    right: 0;
    list-style: none;
    background-color: var(--main_color);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
    border-radius: 4px;
    display: none;
    width: 270px;
    font-size: 15px;
    transform: translate3d(0,15px,0);
    padding: 12px 10px;
    box-sizing: border-box;
    transition: 0.25s;
	z-index:99999;
}.buttons-to-right ul li a {
    padding: 6px 15px;
    line-height: 22px;
    display: inline-block;
    color: #696969;
	color: var(--fourth_color);
    transition: 0.2s;
}.buttons-to-right ul#filters {
    float: left;
    text-align: left;
    position: absolute;
    top: 34px;
    right: -15px;
    list-style: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: none;
    width: 515px;
    font-size: 15px;
    transform: translate3d(0, 15px, 0);
    padding: 12px 10px;
    box-sizing: border-box;
    transition: 0.25s;
    z-index: 99999;
    max-width: 100vw;
}

/* Booking Buttons */
.buttons-to-right a.button.approve:hover { background-color: #64bc36; }
.buttons-to-right a.button.reject:hover { background-color: #e42929; }

.dashboard-content {
    width: calc(100% - 260px);
}
.dashboard-list-box .header_action{
    float: right;
    margin-top: -7px;
}
.dashboard-list-box .header_action .button {
    box-shadow: 1px 1px 5px 0px #55c88247;
	/*color: #222;*/
	min-width: 50px;
    text-align: center;
    border-radius: 7px;
}
/*  DataTables*/
#data_wrapper{
	position: relative;
}.dataTables_length,.dataTables_filter,.dt-length,.dt-search{
    width: 47.9%;
    float: left;
    margin: 1%;
}.dataTable{
	overflow: auto;
	display: block;
}.dataTables_filter input,.dataTables_length select,.dt-search input,.dt-length select{
	height:40px;
	padding:0px;
}thead,tobody,tr{
	display: inline-block;
    /*width: 100%;*/
}td div,th div{ 
	width:100px;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre; 
    max-width: 300px;
	padding: 7px 0px;
	padding-left:13px;
	display: block;
    margin: 0px auto;
}td .long,th .long{
	width:200px;
}td .little_long,th .little_long{
	width:150px;
}td .xl,th .xl{
	width:290px;
}td .short,th .short{
	width:65px;
}
.table > thead > tr > th{
    font-weight: 400;
    font-size: 15.5px;
	border-bottom:0px;
}.paginate_button,button.dt-button,.dt-paging-button {
    padding: 10px;
    margin: 8px;
	cursor:pointer;
    box-shadow: 0 1px 3px 0px rgb(0 0 0 / 11%);
	border: 1px solid transparent;
}a.paginate_button:not(.current):not(.disabled) {
    opacity: .8;
}.dt-paging-button {
    border: none;
    height: 40px;
    padding: 2px 10px;
}button.dt-button {
    font-weight: 600;
	transition:0.5s;
	border:none;
	margin: 5px;
}a.paginate_button.current,a.paginate_button:hover,button.dt-button:hover,.dt-paging-button.current {
    box-shadow: 0 1px 3px 0px #55c88247;
    color: var(--main-green);
	border-color: var(--grayish2);
	border-radius: 3px;
}.paginate_button.disabled,.dt-paging-button.disabled{
	opacity: 0.5;
    cursor: no-drop;
}.dataTable .sort{
	cursor:pointer;
}#data_processing {
    position: absolute;
    width: 100%;
    text-align: center;
    background: rgb(from var(--grayish2) r g b / .6);
    padding: 30px;
    z-index: 98;
    height: 100%;
    top: 0px;
	border-radius: 5px;
}#data_processing .lds-dual-ring.big {
    top: 50%;
    left: auto;
}#data_processing .lds-dual-ring.big::before {
    border: 6px solid var(--main-green);
    border-color: var(--main-green) transparent #55c882 transparent;
}

th{
	position: relative;
}table th > div i.fa.fa-sort{
	position: absolute;
    right: 2px;
    top: 0;
    bottom: 0;
    width: 12px;
}table th > div i.fa.fa-sort::before,table th > div i.fa.fa-sort::after{
	content: "";
	left: 0;
    opacity: .25;
    line-height: 9px;
    font-size: .8em;
    position: absolute;
    display: block;
}table th > div i.fa.fa-sort::before {
    bottom: 50%;
    content: "\25B2";
    content: "\25B2" / "";
}table th > div i.fa.fa-sort::after {
    top: 50%;
    content: "\25BC";
    content: "\25BC" / "";
}table th.sorting_asc > div i.fa.fa-sort::after {
    opacity: .75;
}table th.sorting_desc > div i.fa.fa-sort::before {
    opacity: .75;
}
i.scroll_table{
	position: relative;
    cursor: pointer;
    line-height: 0px;
    margin-top: -8px;
}i#table_scroll2end{
	float: right;
}i#table_scroll2start{
	float: left;
}

/*  DataTables*/

/*bedges*/
.bedge{
	padding: 4px 6px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    display: inline;
}.success_bedge {
    color: #006908;
    background: #d7f7c2;
}.warning_bedge {
    color: #a82c00;
    background: #faedbc;
}.failed_bedge {
    color: #c0123c;
    background: #fbeaee;
}.plain_bedge {
    color: #6c7688;
    background: #ebeef1;
}.blue_bedge{
	color: #0055bc;
	background: #d4f4f6;
}.bedge.pill{
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	line-height: 1;
}
/*bedges*/

.dashboard-stat.color-1 {
    background: linear-gradient(to left, rgba(255,255,255,0) 25%, rgba(255,255,255,0.2));
    background-color: #64bc36;
}.dashboard-stat.color-2 {
    background: linear-gradient(to left, rgba(255,255,255,0) 25%, rgba(255,255,255,0.3));
    background-color: #ffae00;
}.dashboard-stat.color-3 {
    background: linear-gradient(to left, rgba(255,255,255,0) 25%, rgba(255,255,255,0.1));
    background-color: #f3103c;
}.dashboard-stat.color-4 {
    background: linear-gradient(to left, rgba(255,255,255,0) 25%, rgba(255,255,255,0.1));
}.dashboard-stat.color-5 {
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.1));
    background-color: hsl(184 58% 45% / 1);
}
.dashboard-stat {
    display: inline-block;
    padding: 0;
    height: 160px;
    /*color: #fff;*/
    border-radius: 4px;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
    cursor: default;
	box-shadow: rgb(17 17 26 / 10%) 0px 0px 16px;
}.dashboard-stat-content h4 {
    font-size: 38px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    /*color: #fff;*/
    letter-spacing: -1px;
}.dashboard-stat-content {
    position: absolute;
    left: 22px;
    top: 50%;
    max-width: calc(100% - 100px);
    transform: translateY(-50%);
}.dashboard-stat-icon {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-40%);
    opacity: 0.4;
}.dashboard-stat-icon svg,.dashboard-stat-icon i::before{
	width:80px ;
	height:80px ;
}.dashboard-stat .flaticon-question.tip {
    color: var(--third_color);
}.dashboard-stat-icon i::before{
	line-height: normal !important;
	font-size: 80px;
}

/*! CSS Used from: https://cdn.datatables.net/buttons/2.4.1/css/buttons.dataTables.min.css */
div.dt-button-background{position:fixed;top:0;left:0;width:100%;height:100%;background: var(--overlay_bg);z-index:2001;}
div.dt-button-collection .dt-button.dt-button{box-shadow:none;}
div.dt-button-collection .dt-button:hover:not(.disabled){border:none;background:rgba(153, 153, 153, 0.1);box-shadow:none;}
div.dt-button-collection .dt-button{position:relative;left:0;right:0;width:100%;display:block;float:none;background:none;margin:0;padding:.5em 1em;border:none;text-align:left;cursor:pointer;color:inherit;}
div.dt-buttons .dt-button{overflow:hidden;text-overflow:ellipsis;}
/*html.dark div.dt-button-collection{border:1px solid rgba(255, 255, 255, 0.15);background-color:rgb(33, 37, 41);box-shadow:3px 4px 10px 1px rgba(0, 0, 0, 0.8);}*/

.dt-button-collection {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 3px;
    margin-bottom: 3px;
    padding: .75em 0;
    background-color: var(--main_color);
    z-index: 2002;
    border-radius: 5px;
    box-shadow: 3px 4px 10px 1px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    height: 400px;
    overflow: auto;
    width: max-content;
    max-height: 75%;
}.dt-button-collection .dt-button:after {
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 1em;
    display: inline-block;
    content: "";
    font-weight: 900;
    border: 2px solid;
    border-color: var(--main-green);
    color: #fff;
    width: 19px;
    height: 19px;
    border-radius: 4px;
    transition: all 0.25s;
    font-family: Flaticon;
    font-size: 12px;
    text-align: center;
    line-height: 15px;
    left: 20px;
}div.dt-button-collection .dt-button-active:after{
	background-color: var(--main-green);
	content: "\f10e";
}div.dt-button-collection .dt-button span {
    margin-left: 35px;
}

.hidden_cols_num{
	background: var(--main-green);
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    line-height: 18px;
    color: var(--grayish2);
    font-size: 13px;
}
/*reorder columns*/
table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202;border-radius:4px}div.DTCR_pointer{width:1px;background-color:#0259c4;z-index:201}html.dark table.DTCR_clonedTable.dataTable{background-color:rgba(33, 33, 33, 0.9)}html.dark div.DTCR_pointer{background-color:rgb(110, 168, 254)}
/**************************/

.bedge{
	padding: 4px 6px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    display: inline;
}.success_bedge {
    color: #006908;
    background: #d7f7c2;
}.warning_bedge {
    color: #a82c00;
    background: #faedbc;
}.failed_bedge {
    color: #c0123c;
    background: #fbeaee;
}.plain_bedge {
    color: #6c7688;
    background: #ebeef1;
}.blue_bedge{
	color: #0055bc;
	background: #d4f4f6;
}.bedge.pill{
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	line-height: 1;
}

@media (max-width: 1600px){
	.dashboard-stat-icon svg,.dashboard-stat-icon i::before {
		width: 66px ;
		height:66px 
	}
}
@media (max-width: 1366px){
	.dashboard-stat-icon svg,.dashboard-stat-icon i::before{
		width: 50px;
		height:50px;
	}
}
@media(min-width:1250px){
	table.buttons-right .dt-buttons{
		float: right;
        margin-top: -62px;
	}
}
/*.dashboard-list-box.invoices > ul > li {
    padding: 20px 30px !important;
}*/
.stats_wrap {
	container: stats_boxes / inline-size;
}
/*@media(min-width:1200px) and (max-width: 1750px){*/
@container stats_boxes (min-width:850px) and (max-width: 1500px){
	.dashboard-stat {
		height: 120px;
	}.dashboard-stat-content {
		left: 10px;
	}.dashboard-stat-content h4 {
		font-size: 30px;
	}.dashboard-stat-icon {
		right: 20px;
	}.dashboard-stat-icon svg, .dashboard-stat-icon i::before {
		width: 60px;
		height: 60px;
	}.dashboard-stat-icon i::before{
		font-size: 60px;
	}
}
@media(max-width:1200px){
	.paginate_button,.dt-paging-button{
		margin:2px;
	}.dashboard-stat-content h4{
		font-size: 32px;
	}.stats_wrap .dashboard-stat{
		height: auto;
		margin-bottom: 0px;
		font-size: 14px;
	}.stats_wrap .col-lg-4.col-md-6,.stats_wrap .col-lg-4.col-md-4{
		width: calc(33.3% - 12px);
		display: inline-block;
		padding: 0px;
		margin: 0px 1px;
	}.stats_wrap .col-lg-3.col-md-6,.stats_wrap .col-lg-6.col-md-6{
		width: calc(50% - 16px);
		display: inline-block;
		padding: 0px;
		margin: 0px 2px;
	}.stats_wrap .dashboard-stat-content{
		padding: 12px 8px;
		position: static;
		max-width: unset;
		transform: none;
	}.stats_wrap .dashboard-stat-icon{
		bottom: 5px;
		top: unset;
		transform: none;
		right: 6px;
	}.stats_wrap .dashboard-stat-content h4{
		font-size: 22px;
	}.stats_wrap .dashboard-stat-content span{
		margin-bottom: -8px;
		display: block;
		font-weight: bold;
		margin-top: 5px;
	}.stats_wrap .dashboard-stat-icon svg {
		width: 25px;
		height: 25px;
	}.stats_wrap .dashboard-stat-icon i::before{
		font-size: 20px;
	}.stats_wrap .col-lg-4.col-md-6:nth-child(1),.stats_wrap .col-lg-4.col-md-4:nth-child(1) {
		margin-left: 12px;
	}.stats_wrap .col-lg-3.col-md-6:nth-child(odd),.stats_wrap .col-lg-6.col-md-6:nth-child(odd) {
		margin-left: 12px;
	}.dashboard-stat.color-4 {
		background-color: #607D8B;
	}.stats_wrap .flaticon-question.tip{
		color: #333;
	}i#table_scroll2start{
		left: 8px;
	}i#table_scroll2end{
		right: 8px;
	}
}
@media(min-width: 1200px){
	.dashboard-stat-icon svg *,.dashboard-stat-icon svg,.dashboard-stat-icon i::before{
		fill:#fff;
	}.dashboard-stat,.dashboard-stat-content h4 {
		color: #fff;
	}.dashboard-stat.color-4 {
		background-color: #363841;
	}i#table_scroll2start{
		left: 16px;
	}i#table_scroll2end{
		right: 18px;
	}
}
@media (min-width:991.98px){
	#data_wrapper{
		padding-bottom:70px;
	}.dataTables_info,.dt-info {
		float: left;
		padding-left: 10px;
		width: 40%;
		margin-top: 20px;
	}.dataTables_paginate,.dt-paging {
		float: right;
		margin-top: 20px;
	}.dt-paging{
		margin-top: 10px;
	}#data a:hover{
		text-decoration: underline;
	}
}
@media (max-width: 991.98px){
	.dashboard-content {
		padding: 40px 1.5%;
	}#data_wrapper{
		padding-bottom:40px;
	}.dataTables_info,.dt-info {
		text-align: center;
		margin-top: 20px;
	}.dataTables_paginate,.dt-paging {
		text-align: center;
		margin-top: 20px;
	}.dashboard-list-box h4{
		padding:25px 12px;
		/*overflow: hidden;*/
	}#filters .col-md-6 {
		width: 49%;
		float: left;
	}#filters{
		width: calc(100vw - 100px);
		max-width: unset;
		margin: 0px auto;
	}
}

@media(max-width: 768px){
	#filters{
		width: calc(100vw - 30px);
		right: -15px;
	}#filters .col-md-6 {
		padding: 0px 2px;
	}
}
@media(min-width:600px){
	.stats_wrap .dashboard-stat-content{
		padding: 15px;
	}
}
@media(max-width: 500px){
	#filters{
		width: calc(100vw - 12px);
		right: -10px;
	}
}
@media(max-width:430px){
	.paginate_button{
		padding: 10px 8px;
	}button.dt-button{
		padding: 7px 5px;
		font-size: 14px;
	}.dt-buttons{
		margin-bottom: 10px;
	}.dt-buttons .buttons-copy,.dt-buttons .buttons-csv{
		display: none;
	}.dashboard-list-box.invoices > ul > li{
		padding: 20px 15px;
	}.stats_wrap .dashboard-stat-content span{
		font-size: 13px;
	}.stats_wrap .dashboard-stat-content h4{
		font-size: 20px;
	}
}
@media(max-width:400px){
	.paginate_button, .dt-paging-button{
		padding: 8px 6px;
		font-size: 13.5px;
	}button.dt-button{
		padding: 5px;
		font-size: 13.5px;
		margin: 5px 1.5px;
	}
	button.dt-button{
		margin-bottom: 15px;
	}
}

