.content-wrapper {
	min-height: 600px;
}

/* menu folder design */

.folder {
	box-sizing: border-box;
	background:  #929697 ;
	background: white;
	border-radius: 10px;
	position: relative;
	padding: 10px 20px 10px 30px;
	height: 90px;
	margin-bottom: 50px;
	box-shadow: 0 8px 10px -10px rgba(0, 0, 0, 0.5);

}

.folder:hover i.label-icon {
	transform: scale(1.2);
}



.folder-label {
	/*width: 70px;*/
	position: relative;
	background:  #20c5a4 ;
	height: 110px;
	margin-top: -18px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}



.folder-label i.fa {
	font-size: 18px;
}

.folder-label i.label-icon {
	margin-top: 30px;
	text-align: center !important;
	font-size: 30px;
	color: #20c5a4;
	padding: 10px;
	background: white;
	border-radius: 100%;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	transition: all .3s;
}

i.arrow-right {
	color: #0c463b !important;
	transform: rotate(-40deg);
	position: absolute;
	right: -5px;
	top: -4px;
}

i.arrow-left {
	color: #0c463b !important;
	transform: rotate(40deg);
	position: absolute;
	left: -5px;
	top: -4px;
}


.sub-folder {
	padding-left: 7px;
	padding-right: 15px;
	color: black;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 13px;
}

.folder-separator {
	height: 70px;
	line-height: 70px;
	text-align: center;
	font-size: 30px;
	border-left: 3px solid #20c5a4;
	color: black;
	padding-right: 10px;
}

.datepicker {
    z-index: 99999 !important;
    padding: 0 10px !important;
}







.ui-menu .ui-menu-item {
	background: navy;
	padding: 10px;
	color: white;
	border-bottom: 1px solid #0c0c0c;
	font-size:14px;
	transition: all .5s;
	width: 100%;
}

.ui-menu .ui-menu-item:hover {
	border-right: none;
	border-left: none;
	border-top: 1px solid #0c0c0c;
	border-bottom: 1px solid #0c0c0c;
}
.content-wrapper {
	min-height: 530px;
	padding: 5px;

	background-color: #F7F9FA;
	padding: 10px;
}


.skin-blue .sidebar-menu > li > a {
	/*border-left: 3px solid transparent;*/
}
.menu-item {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	padding: 5px;
}

.left-icon-container {
	margin-right: 5px;
	position: relative;
}

.left-icon-container i {
	color: #6464de;
	font-size: 18px;
	transition: transform 0.3s ease;
}

.left-icon-container:hover i {
	transform: scale(1.2);
}

.left-icon-container:hover::after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	animation: pulse 1s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		opacity: 1;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.5;
	}
	100% {
		transform: scale(0.9);
		opacity: 1;
	}
}

.menu-name {
	flex-grow: 1;
}
.arrow-container {
	margin-left: auto;
	margin-right: 5px;
	transition: transform 0.3s ease, color 0.3s ease;
}

.arrow-container i {
	color: #49bd06;
	font-size: 16px;
}

.arrow-container:hover i {
	transform: rotate(180deg);
	color: #fff;
}



li {
	list-style-type: none;
	margin: 5px 0;
}

a {
	text-decoration: none;
}

.icon-container {
	display: inline-block;
	margin-right: 10px;
	position: relative;
}

.icon-container i {
	color: #004f91;
	font-size: 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-container:hover i {
	transform: scale(1.2);
	box-shadow: 0px 0px 10px #2ecc71;
}

.name {
	font-size: 14px;
}

a:hover .name {
	color: #004f91;
}

a:hover .icon-container i {
	color: #004f91;
}

.box {
	/*overflow: scroll;*/
}



/*CSS to print receipts*/
.print_section{
    display: none;
}
@media print{
    .print_section{
        display: inline !important;
    }
    .modal-xl{
        width: 100% !important;
    }
    ::-webkit-scrollbar{
        display: none !important;
    }
    #toast-container {
      display: none;
    }
}


