/*
电脑屏幕分辨率
屏幕比例4:3          屏幕比例16:10         屏幕比例16:9        屏幕比例5:4
VGA(640x480)        WVGA(800x480)       qHD(960 x 540)     SXGA (1280x1024)
SVGA(800x600)       WSVGA(1024x600)     720p(1280x720)  
XGA(1024x768)       WXGA(1280x800)      WXGA(1366x768)  
SXGA+(1400x1050)    WXGA+(1440x900)     1080p(1920x1080)    
UXGA(1600x1200)     WSXGA+(1680x1050)   QHD(2560 x 1440)    
QXGA(2048x1536)     WUXGA(1920x1200)        
WQXGA(2560x1600)

ipad分辨率
1024 * 768
1112 * 834
1133 * 744
1180 * 820
1194 * 834
1366 * 1024
*/  

/* 
手机型号    屏幕尺寸    屏幕密度    开发尺寸    像素尺寸    倍图
4/4s    3.5英寸   326ppi  320*480pt   640*960px   @2x
5/5s/5c/SE/SE2  4英寸 326ppi  320*568pt   640*1136px  @2x
6/6s/7/8    4.7英寸   326ppi  375*667pt   750*1334px  @2x
6/6s/7/8 Plus   5.5英寸   401ppi  414*736pt   1242*2208px @3x
X/XS    5.8英寸   458ppi  375*812pt   1125*2436px @3x
XR  6.1 英寸  326ppi  414*896pt   828*1792px  @2x
XS Max  6.5英寸   458ppi  414*896pt   1242*2688px @3x
11  6.1英寸   326ppi  414*896pt   828*1792px  @2x
11 Pro  5.8英寸   458ppi  375*812pt   1125*2436px @3x
11 Pro Max  6.5英寸   458ppi  414*896pt   1242*2688px @3x
12 mini 5.4英寸   476ppi  360*780pt   1080*2340px @3x
12  6.1英寸   460ppi  390*844pt   1170*2532px @3x
12 Pro  6.1英寸   460ppi  390*844pt   1170*2532px @3x
12 Pro Max  6.7英寸   458ppi  428*926pt   1284*2778px @3x 
*/

html {
    touch-action: manipulation;
    position: relative;
    min-height: 100%;
    background-color: #f1f1f1;
    font-size:0.9rem;
}

/* 为了支持所有安卓和苹果手机的开发尺寸 */
@media (max-width: 400px){
    html{
        font-size:0.75rem;
    }
}

body.enable-menu-vertical .adoluna-menu-vertical, body.enable-menu-vertical .adoluna-menu-overlay
{
    display: block;
    left:0;
}

*{
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-focus-ring-color: rgba(0, 0, 0, 0);
/*  -webkit-appearance: none; */
}

*:not(input,textarea) { 
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

input::-webkit-search-cancel-button {
    display: none;
}

/* define bootstrap 8 columns */
/* define bootstrap 5 columns */
.col-1-8, .col-xs-1-8, .col-sm-1-8, .col-md-1-8, .col-lg-1-8,
.col-1-5, .col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5 {
	position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-1-8, .col-xs-1-8 {
    -ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
    max-width: 12.5%;
}

.col-1-5, .col-xs-1-5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

@media ( min-width : 768px) {
	.col-sm-1-8 {
		flex: 0 0 12.5%;
        max-width: 12.5%;
	}
	
	.col-sm-1-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media ( min-width : 992px) {
	.col-md-1-8 {
		flex: 0 0 12.5%;
        max-width: 12.5%;
	}
	
	.col-md-1-7 {
        flex: 0 0 14.2857%;
        max-width: 14.2857%;
    }
	
	.col-md-1-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media ( min-width : 1200px) {
	.col-lg-1-8 {
		flex: 0 0 12.5%;
        max-width: 12.5%;
	}
	
	.col-lg-1-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.font-weight-100{font-weight:100;}
.font-weight-200{font-weight:200;}
.font-weight-300{font-weight:300;}
.font-weight-400{font-weight:400;}
.font-weight-500{font-weight:500;}
.font-weight-600{font-weight:600;}
.font-weight-700{font-weight:700;}
.font-weight-800{font-weight:800;}
.font-weight-900{font-weight:900;}

.font-size-20{font-size:2.0rem;}
.font-size-19{font-size:1.9rem;}
.font-size-18{font-size:1.8rem;}
.font-size-17{font-size:1.7rem;}
.font-size-16{font-size:1.6rem;}
.font-size-15{font-size:1.5rem;}
.font-size-14{font-size:1.4rem;}
.font-size-13{font-size:1.3rem;}
.font-size-12{font-size:1.2rem;}
.font-size-11{font-size:1.1rem;}
.font-size-10{font-size:1rem;}
.font-size-9{font-size:0.9rem;}
.font-size-8{font-size:0.8rem;}
.font-size-7{font-size:0.7rem;}
.font-size-6{font-size:0.6rem;}
.font-size-5{font-size:0.5rem;}

.width-percent-5{width:5% !important;}
.width-percent-10{width:10% !important;}
.width-percent-15{width:15% !important;}
.width-percent-20{width:20% !important;}
.width-percent-25{width:25% !important;}
.width-percent-30{width:30% !important;}
.width-percent-35{width:35% !important;}
.width-percent-40{width:40% !important;}
.width-percent-45{width:45% !important;}
.width-percent-50{width:50% !important;}
.width-percent-55{width:55% !important;}
.width-percent-60{width:60% !important;}
.width-percent-65{width:65% !important;}
.width-percent-70{width:70% !important;}
.width-percent-75{width:75% !important;}
.width-percent-80{width:80% !important;}
.width-percent-85{width:85% !important;}
.width-percent-90{width:90% !important;}
.width-percent-95{width:95% !important;}

.mw-10{
    max-width:10%!important;
}

.mw-20{
    max-width:20%!important;
}

.mw-30{
    max-width:30%!important;
}

.mw-40{
    max-width:40%!important;
}

.mw-50{
	max-width:50%!important;
}

.bg-none{
	background:none !important;
}

.bg-main{
	background-color: #f8f8f8;
}

.lh-15{
    line-height: 1.5;
}

.lh-18{
    line-height: 1.8;
}

.lh-20{
    line-height: 2;
}

.table-sticky-start{
	position:sticky;
 	top:0;
 	left:0;
 	z-index:4!important;
}

.table-sticky-end{
	position:sticky;
 	bottom:0;
 	left:0;
 	z-index:4!important;
}

.table-sticky-top{
	position:sticky;
 	top:0;
 	white-space: nowrap;
 	z-index:1;
}

.table-sticky-left{
	position:sticky;
 	left:0;
 	white-space: nowrap;
 	z-index:2;
}

.table-sticky-bottom{
	position:sticky;
 	bottom:0;
 	white-space: nowrap;
 	z-index:3;
}

.adoluna-language a{
    text-decoration: none;
}

.adoluna-none{
    display:none;
}

.adoluna-font-90{
    font-size: 0.9rem!important;
}

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

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

.adoluna-content{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
}

.adoluna-page {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
/*     max-width: 1400px; */
    /* margin: auto; */
}

.adoluna-header {
    position: relative;
    display: flex;
}

.adoluna-body {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.adoluna-flex{
    display: flex;
    flex: 1;
}

.adoluna-flex-not{
    display: block !important;
    flex: unset !important;
}

.adoluna-bg-none{
    background:none !important;
}

.adoluna-overflow-auto{
    overflow:auto!important;
}

.adoluna-overflow-x{
    overflow-x:auto!important;
    overflow-y:hidden!important;
}

.adoluna-overflow-y{
    overflow-x:hidden!important;
    overflow-y:auto!important;
}

.adoluna-overflow-hidden{
    overflow:hidden!important;
}

.adoluna-placeholder input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color:#AAA !important;
}
.adoluna-placeholder input::-moz-placeholder, textarea::-moz-placeholder {
  color:#AAA !important;
}
.adoluna-placeholder input::-moz-placeholder, textarea::-moz-placeholder {
  color:#AAA !important;
}
.adoluna-placeholder input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color:#AAA !important;
}

.adoluna-line-delete {
    text-decoration: line-through;
    color: #6c757d;
}

.adoluna-btn-disable{
	background-color: #ced4da!important;
    border: #ced4da!important;
}

.adoluna-login-input {
    outline: medium;
}

.adoluna-category-virtual{
    border: 1px dashed #666 !important;
}

.adoluna-menu{
	background-color: #E5E5E5;
}

.adoluna-category{
    background-color: #f5f5f5;
}

.adoluna-category.active, .adoluna-menu.active {
    color: #FFF;
    background-color: var(--primary) !important;
}

.adoluna-category.active i, .adoluna-menu.active i{
	color: #FFF !important;
}

.adoluna-item-active {
    color: #FFF;
    background-color: var(--primary) !important;
}

.adoluna-item-active i{
	color: #FFF !important;
}

.adoluna-icon-right {
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
    line-height: 0;
}

.adoluna-icon-left {
    position: absolute;
    bottom: 0.25rem;
    left: 0.25rem;
    line-height: 0;
}

.adoluna-icon-close {
    width: 1.5rem;
    height: 1.5rem;
    line-height: 0;
}

.adoluna-icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0;
}

.adoluna-icon-hover:hover{
	color:#666;
	cursor: pointer;
}

.adoluna-menu-disabled {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0,0,0,0.05);
    border: none !important;
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    padding-left: 0.25rem;
    padding-bottom: 0.25rem;
    justify-content: start;
    align-items: end;
}

.adoluna-pwd-invisible {
    position: absolute;
    right: 0.5rem;
    top: 2rem;
    fill: #999999;
}

.adoluna-pwd-visible {
    fill: var(--primary);
}

.adoluna-input-clear {
    position: absolute;
    right: 2.7rem;
    top: 0;
    z-index:1000;
}

.adoluna-hide{
    display:none;
}

.form-control.is-invalid~.invalid-feedback~.adoluna-pwd-invisible {
    display: none;
}

.adoluna-active {
    color: #FFF !important;
    background-color: var(--primary) !important;
}

.adoluna-loading{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.adoluna-loading-mask{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-color: #CCC;
    opacity: 0.05; */
    background-color: #EEE;
    opacity: 0.05;
}

.adoluna-loading-content{
    position: absolute;
    width: 2.25rem;
    height: 2.25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding:0.1rem;
}

.adoluna-toast{
    position: absolute;
    left: 50%;
    bottom: 3rem;
    transform: translate(-50%, 0);
    min-width: 8rem;
    text-align: center;
    border-radius: 2rem;
    background-color: #EEE;
    color: #000;
    opacity: 0.7;
}

.adoluna-alert{
    position: absolute;
    left: 0;
    top : 0;
    right: 0;
    border-radius: 0;
    z-index:1;
}

.adoluna-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 55%;
    overflow: hidden;
}

.adoluna-dashboard-line{
	width:100%;
	height:35vh;
	min-height:280px;
}

.adoluna-dashboard-pie{
	width:100%;
	height:30vh;
	min-height:240px;
}

.adoluna-dashboard-original{
	color: #f4595d;
}

.adoluna-dashboard-compare{
	color: #84c571;
}

.adoluna-input-original{
	border-color: #f4595d !important;
}

.adoluna-input-compare{
	border-color: #84c571 !important;
}

.adoluna-spinner-border{
	width:1rem;
	height:1rem;
	border-width: 0.2em;
}

.adoluna-card-fluid{
	min-height: calc(100vh - 140px);
}

.adoluna-card-profile{
	min-height: calc(100vh - 190px);
}

.adoluna-card-shadow {
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 1px rgb(0 0 0 / 5%);
    border: 1px solid #EEEEEE;
}

.adoluna-card-shadow {
    box-shadow: 0 0 17px 0 rgb(130 122 122 / 15%);
}

.adoluna-card-noshadow {
    box-shadow: none !important;
}

.adoluna-card-border {
    border: 1px solid #dee2e6!important;
}

.adoluna-card-border.active {
    border: 1px solid var(--danger)!important;
}

.adoluna-error-img{
    position: relative;
    width: 2rem;
    height: 2rem;
    background-color: #EEE;
}

.adoluna-error-img::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "NO IMAGE";
    color: #CCC;
    font-weight: 500;
    font-size: 0.5rem;
}

li.adoluna-sort-ghost, div.adoluna-sort-ghost .card{
	border: solid 1px #28a745!important;
}

li.adoluna-sort-drag, div.adoluna-sort-drag .card{
	border: solid 1px #ffc107!important;
}

tr.adoluna-sort-ghost{
	background-color: #ffffff!important;
	border: solid 1px #28a745!important;
}

tr.adoluna-sort-ghost > *{
	border-top: solid 1px #28a745!important;
	border-bottom: solid 1px #28a745!important;
}

tr.adoluna-sort-drag{
	background-color: #ffffff!important;
	border: solid 1px #ffc107!important;
}

tr.adoluna-sort-drag > *{
	border-top: solid 1px #ffc107!important;
	border-bottom: solid 1px #ffc107!important;
}

.original_html{
    display:none;
}

.adoluna-container {
	filter: inherit;
    max-width: 1980px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.adoluna-noscroll-box {
	width: calc(100% + 20px);
    height: 100%;
    overflow-x: hidden;
    overflow-y: overlay;
    flex-grow: 1;
    /* 兼容火狐 */
    scrollbar-width: none;
    /* 兼容IE10+ */
    -ms-overflow-style: none;
}

.adoluna-noscroll-box::-webkit-scrollbar {
     width: 0px;
}

.adoluna-menu-vertical {
	width: 16rem;
	z-index: 1005;
	background: #fff;
	/* background: #2c2e2f; */
	bottom: 0;
	margin-top: 0;
	top: 0;
	position: absolute;
	overflow: hidden;
	-webkit-box-shadow: 0 0 17px 0 rgba(130, 122, 122, 0.1);
	box-shadow: 0 0 17px 0 rgba(130, 122, 122, 0.1);
	transition: left .3s;
}

.adoluna-menu-just {
	width: 16rem;
	overflow-y:auto;
}

.adoluna-menu-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(34, 42, 62, 0.3);
	display: none;
	z-index: 1002;
}

.adoluna-menu-logoBox {
    text-align: center;
    padding: 1.7rem 1rem 1.4rem 1rem;
}

.adoluna-menu-logo {
    color: #333;
    padding: 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.adoluna-menu-logo span {
    vertical-align: middle;
}

.adoluna-menu-logo i {
    font-size: 1.375rem;
}

.adoluna-menu-logo img {
    height: 1.25rem;
}

.adoluna-menu-goBack{
	padding: 0.75rem 1.5rem !important;
    letter-spacing: .05em;
    cursor: default;
    text-transform: uppercase;
    font-weight: 700;
}

#adoluna-menu-sidebar {
	padding: 0 0 10px 0;
}

#adoluna-menu-sidebar a{
	text-decoration:none;
}

#adoluna-menu-sidebar .menu-sidebar-title {
    padding: 0.75rem 1.5rem !important;
    letter-spacing: .05em;
    pointer-events: none;
    cursor: default;
    font-size: 1rem;
    text-transform: uppercase;
    color: #5a5454;
    font-weight: 600;
}

.waves-effect .waves-ripple {
	background: rgba(235,23,0,0.2);
	background: radial-gradient(rgba(235,23,0,0.2) 0,
		rgba(235,23,0,0.3) 40%, rgba(235,23,0,0.4) 50%,
		rgba(235,23,0,0.5) 60%, rgba(235,23,0,0) 70%)
}

#adoluna-menu-sidebar ul li a {
	display: block;
	padding: .65rem 1.5rem;
	color: #5a5454;
	position: relative;
	font-size: 1rem;
	-webkit-transition: all .4s;
	transition: all .4s
}

#adoluna-menu-sidebar ul li a:hover {
	color: var(--primary);
	padding-left: 1.75rem
}

#adoluna-menu-sidebar ul li a i {
	display: inline-block;
	min-width: 1.8rem;
	padding-bottom: .125em;
	font-size: 1.1rem;
	line-height: 1.40625rem;
	vertical-align: middle;
	opacity: 0.8
}

#adoluna-menu-sidebar ul li .badge {
	margin-top: 4px
}

#adoluna-menu-sidebar ul li ul.sub-menu {
	padding: 0
}

#adoluna-menu-sidebar ul li ul.sub-menu li a {
	padding: .4rem 1.5rem .4rem 3.5rem;
	font-size: 0.95rem;
	-webkit-transition: all .4s;
	transition: all .4s
}

#adoluna-menu-sidebar ul li ul.sub-menu li a:hover {
	padding-left: 3.75rem
}

#adoluna-menu-sidebar ul li ul.sub-menu li ul.sub-menu {
	padding: 0
}

#adoluna-menu-sidebar ul li ul.sub-menu li ul.sub-menu li a {
	padding: .4rem 1.5rem .4rem 4.5rem;
	font-size: 0.85rem;
	-webkit-transition: all .4s;
	transition: all .4s
}

#adoluna-menu-sidebar ul li ul.sub-menu li ul.sub-menu li a:hover {
	padding-left: 4.75rem
}

#adoluna-menu-sidebar .mm-active .active {
	color: var(--primary) !important;
}

#adoluna-menu-sidebar li.mm-active>a {
	color: var(--primary) !important;
	text-decoration: none;
	padding-left: 1.75rem;
}

.adoluna-menu-vertical-dark {
	background-color: #393f4e
}

.adoluna-menu-vertical-dark #adoluna-menu-sidebar .waves-effect .waves-ripple {
	background: rgba(255, 255, 255, 0.2);
	background: radial-gradient(rgba(255, 255, 255, 0.2) 0,
		rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%,
		rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%)
}

.adoluna-menu-vertical-dark #adoluna-menu-sidebar ul li a {
	color: #9da7bf
}

.adoluna-menu-vertical-dark #adoluna-menu-sidebar ul li a:hover {
	color: var(--primary)
}

.adoluna-menu-vertical-dark .menu-sidebar-title {
	color: #9da7bf
}

.adoluna-menu-vertical-dark .mm-active .active {
	color: #fff !important
}

.adoluna-menu-vertical-dark li.mm-active>a {
	color: #fff !important;
	text-decoration: none;
}

.adoluna-page-navbar {
	/* 样式一
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	background-color: #f1f1f1;
	background: #FFF;
    -webkit-box-shadow: 0 0 17px 0 rgba(130, 122, 122, 0.1);
    box-shadow: 0 0 17px 0 rgba(130, 122, 122, 0.1);
    z-index: 1001; */
    
    position: absolute;
    top: 0;
    right: 15px;
    left: calc(16rem + 15px);
    background-color: #f1f1f1;
    border-bottom-right-radius: .45rem;
    border-bottom-left-radius: .45rem;
	z-index: 1001
}

.adoluna-page-navbar .page-navbar-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	
	height: 60px;
	border-radius: .45rem;
	margin: 15px 0 0 0;
	
	/* 样式一 
	height: 70px;
	margin: 0 0 0 16rem;
    padding: 5px 15px 5px 15px; */
    
    -webkit-box-shadow: 0 0 17px 0 rgba(130, 122, 122, 0.1);
    box-shadow: 0 0 17px 0 rgba(130, 122, 122, 0.1);
}

.adoluna-page-navbar .page-navbar-header .dropdown.show .header-item {
	background-color: rgba(34, 42, 62, 0.03)
}

.header-item {
    height: 60px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #383c40;
    padding: .5rem 0.8rem;
    border: 0
}

.header-item:hover {
    color: #383c40
}

.header-profile-user {
    height: 36px;
    width: 36px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 3px;
    border: 1px solid #EEE;
}

.unlock-profile-user {
    height: 88px;
    width: 88px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 3px;
    border: 1px solid #EEE;
}

.noti-icon i {
    color: #383c40
}

.noti-icon .badge {
    position: absolute;
    top: 12px
}

.notification-item .media {
    padding: 0.75rem 1rem
}

.notification-item .media:hover {
    background-color: #f8f9fa
}

.avatar-xs {
    height: 2rem;
    width: 2rem
}

.avatar-sm {
    height: 3rem;
    width: 3rem
}

.avatar-md {
    height: 3.5rem;
    width: 3.5rem
}

.avatar-lg {
    height: 4.5rem;
    width: 4.5rem
}

.avatar-xl {
    height: 5rem;
    width: 5rem
}

.avatar-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--primary);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.adoluna-page-middle {
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 76px;
    overflow: hidden;
	margin-left: 16rem;
}

.adoluna-page-middle .adoluna-page-just {
	width: calc(100% - 20px);
    overflow: auto;
	padding: 0 0 15px 0;
}

.adoluna-page-middle .adoluna-page-just .breadcrumb {
    background-color: transparent;
    padding: 0
}

.page-middle-footer {
    bottom: 0;
    padding: 15px 12px 15px;
    position: absolute;
    right: 0;
    color: #6c757d;
    left: 0;
}

.adoluna-upload-box{
    border:1px dashed #ccc !important;
}

.adoluna-upload-over{
	border:1px dashed var(--primary) !important;
	background-color:#eee !important;
}

@-webkit-keyframes DropDownSlide{
    100% {
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
    0% {
        -webkit-transform:translateY(10px);
        transform:translateY(10px);
    }
}

@keyframes DropDownSlide{
    100% {
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
    0% {
        -webkit-transform:translateY(10px);
        transform:translateY(10px);
    }
}

.adoluna-radius {
    border-radius: 10px !important;
    overflow: hidden;
}

.adoluna-profile-img {
    position: relative;
    display: inline-block;
    height: 9rem;
    width: 9rem;
}

.adoluna-profile-img img{
	height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 1px solid #eee;
}

.adoluna-profile-img .img-edit {
    position: absolute;
    top: auto;
    right: 0.5rem;
    bottom: 0.625rem;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    background: #827af3;
    color: #fff;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    line-height: 2rem !important;
    text-align: center;
    cursor: pointer;
}

.adoluna-small-img {
    position: absolute;
    top:0.25rem;
    left:0.25rem;
    height: 2rem;
    width: 2rem;
}

.adoluna-small-img img{
    height: 100%;
    width: 100%;
    border: 1px solid #eee;
    padding:1px;
}

.adoluna-depot-img {
    position: relative;
    display: inline-block;
    height: 14rem;
    width: 14rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.adoluna-activity-img {
    position: relative;
    display: inline-block;
    height: 9rem;
    width: 9rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.adoluna-modifier-img {
	position: relative;
    display: inline-block;
	height: 9rem;
    width: 9rem;
    margin:0;
}

.adoluna-combo-img {
    position: relative;
    display: inline-block;
    height: 2rem;
    width: 2rem;
    margin:0;
}

.adoluna-modifier-img img, .adoluna-depot-img img, .adoluna-activity-img img, .adoluna-combo-img img {
    height: 100%;
    width: 100%;
    border: 1px solid #eee;
    padding:0.375rem;
}

.adoluna-depot-img .img-delete {
	position: absolute;
    top: auto;
    right: 0.5rem;
    bottom: 0.625rem;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    background: #827af3;
    color: #fff;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    line-height: 2rem !important;
    text-align: center;
    cursor: pointer;
}

.adoluna-modifier-img .img-delete, .adoluna-activity-img .img-delete, .adoluna-combo-img .img-delete {
	position: absolute;
    top: auto;
    right: 0.5rem;
    bottom: 0.625rem;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    background: #827af3;
    color: #fff;
    border-radius: 50%;
    height: 1.5rem;
    width: 1.5rem;
    line-height: 1.5rem !important;
    text-align: center;
    cursor: pointer;
}

.adoluna-dropdown-menu {
    -webkit-box-shadow: 0 4px 18px rgb(0 0 0 / 11%);
    box-shadow: 0 4px 18px rgb(0 0 0 / 11%);
    -webkit-animation-name: DropDownSlide;
    animation-name: DropDownSlide;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    margin-top: 60px;
    position: absolute;
    z-index: 1000;
}

.adoluna-dropdown-dasbboard {
	width: 350px;
}

@media (max-width: 576px){
    .adoluna-depot-img {
	    height: 9.5rem;
	    width: 9.5rem;
	}
}

@media ( min-width : 768px) {
	
}

@media ( max-width :992px) {
    .adoluna-menu-vertical {
        left: -16rem;
    }
    .adoluna-menu-logoBox {
        padding-left: 0;
    }
    .adoluna-menu-logoBox .adoluna-menu-logo {
        padding-right: 15px;
    }
    .adoluna-menu-logoBox .adoluna-menu-logo span {
        display: none;
    }
    .adoluna-menu-logoBox .adoluna-menu-logo i {
        display: inline-block;
    }
    .adoluna-page-navbar{
        left: 15px;
    }
    .adoluna-page-middle {
        margin-left: 0;
    }
    .adoluna-page-middle .adoluna-page-just {
	    width: calc(100% - 20px);
	    overflow: auto;
	    padding: 0 0 15px 0;
	}
    .page-middle-footer {
	    left: 0;
	}
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}


@media (min-width: 576px){
    .js_restaurantTree_modal .modal-body{
        width:500px !important;
    }
}

@media (min-width: 992px){
    .js_restaurantTree_modal .modal-body{
        width:800px !important;
    }
}

.adoluna-mobiscroll {
    font-size:1rem;
}

.adoluna-mobiscroll-border {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.adoluna-mobiscroll .mbsc-popup-body {
    border-radius: 0.625rem;
}

.adoluna-mobiscroll .mbsc-scroller-wheel-group {
    padding: 1rem;
}

.adoluna-mobiscroll .mbsc-popup-buttons {
    padding: 0 0 1rem 0!important;
}

.adoluna-mobiscroll .adoluna-time-button {
    width: calc(50% - 1.5rem);
    border: 1px solid #DDD;
    border-radius: 50rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem!important;
    font-weight: 400!important;
    line-height: 1.5;
    text-transform: capitalize;
    text-align: center;
    user-select: none;
    outline: medium;
}

.adoluna-mobiscroll .adoluna-button-cancel {
    color: #212529!important;
    background-color: #eee!important;
    border-color: #eee!important;
    margin-left: 1rem!important;
    margin-right: 0.5rem!important;
}

.adoluna-mobiscroll .adoluna-button-set {
    color: #fff!important;;
    background-color: var(--primary)!important;
    border-color: var(--primary)!important;
    margin-left: 0.5rem!important;
    margin-right: 1rem!important;
}

.adoluna-auto-complete {
  position:relative;
}

.adoluna-auto-complete .auto-complete-input{
  border: 1px solid #ff7a6c;
  border-bottom: 1px solid #ddd;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}

.adoluna-auto-complete .auto-complete-list {
  position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    height: auto;
    line-height: 1.5;
    font-size: 1rem;
    border: 1px solid #ff7a6c;
    border-top: 1px solid #ddd;
    /* background-color: #F5F5F5; */
    background-color: #FFF;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    z-index: 1;
}

.adoluna-auto-complete .auto-complete-item {
    padding: 0.375rem 0.75rem;
    border-bottom: 1px solid #ddd;
    color: var(--gray);
    font-size: 1rem;
}

.adoluna-auto-complete .auto-complete-item.active {
  background-color: #EEE;
}

.adoluna-auto-complete .auto-complete-item:last-child {
  border-bottom: 0;
}

.adoluna-input-readonly[readonly] {
    color: #495057 !important;
    /* border:1px solid #ced4da !important; */
    background-color: white !important;
}

.adoluna-input-disabled[disabled] {
    color: #495057 !important;
    background-color: #FAFAFA !important;
}

.adoluna-list-button{
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #DDD;
    border-radius: 50rem;
    padding: 0.375rem;
    text-align: center;
    user-select: none;
    background-color: #FCFCFC;
    box-shadow: 0 0 17px 0 rgb(130 122 122 / 15%);
    color: var(--dark);
    font-weight: 600;
    outline: medium;
}

.adoluna-list-button-bg{
    background-color: #DDD;
}

.adoluna-list-button.active{
    background-color: #DDD;
}

.adoluna-list-button:focus {
    outline:medium!important;
}

.adoluna-list-button.primaryActive {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #FFF!important;
}

.adoluna-list-button.primaryActive i{
    color:#fff!important;
}

.adoluna-list-button.primaryActive .adoluna-group-edit{
    display:inline-block;
}

.adoluna-group-edit{
    display:none;
}

.adoluna-item-edit{
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    background-color:#FFF;
    opacity: 0.85;
    text-align: center;
    color:#000;
}


.adoluna-item-edit i{
    color:#000 !important;
}

.adoluna-table-queue{
	width:5%
}

.adoluna-table-operate{
	width:10%
}

.adoluna-table-item{
    position: relative;
    cursor: pointer;
}

.adoluna-tooltip .tooltip-inner{
	max-width:300px;
	font-size: 0.9rem;
}

.adoluna-icon-box {
    position: absolute;
    top: 2rem;
    right: 0;
    bottom: 0;
    width: 3.5rem;
}

.adoluna-icon-box .adoluna-icon-item {
    position: absolute;
    top: calc(50% - 0.625rem);
    right: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 0;
}

.adoluna-echarts-tooltips {
    padding: 0!important;
}

.adoluna-echarts-tooltips .tooltips-header {
	padding: 0.65rem 0.75rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.02);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.adoluna-echarts-tooltips .tooltips-body {
	padding: 0.75rem;
}

.adoluna-echarts-tooltips .tooltips-text {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size:0.875rem;
    color:#666;
    font-weight:400;
    line-height:1;
}

.adoluna-echarts-tooltips .tooltips-text.active {
	font-weight:700;
	color:#f4595d;
}

.adoluna-echarts-tooltips .tooltips-text:last-child {
    margin-bottom: 0;
}

.adoluna-select-menuitem {
    height: 18vh;
    overflow: auto;
}

.adoluna-coupon-content{
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 30%;
    margin-bottom: 0;
}

.adoluna-param-json{
    font-size: 1rem;
    font-weight: 400;
    background-color: #e9ecef;
}

/*custom metismenu begin*/
.metismenu .has-arrow:after {
    right: 2rem;
    transform: rotate(135deg) translateY(-50%);
    border-width: 2px 0 0 2px;
}

.metismenu .has-arrow[aria-expanded=true]:after, .metismenu .mm-active>.has-arrow:after
    {
    transform: rotate(225deg) translateY(-50%);
}
/*custom metismenu end*/

/*custom bootstrap begin*/
#js_page_viewParent td{
    white-space: nowrap;
    vertical-align: middle !important;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.card{
	border:0;
    box-shadow: 0 0 17px 0 rgb(130 122 122 / 15%);
}

a {
    color: #5a5454;
    text-decoration: none;
    background-color: transparent;
}

.page-link {
    border: none !important;
    border-radius: 0.2rem;
    min-width: 1.5rem;
    text-align: center;
}

.page-link:focus {
    outline: medium;
    box-shadow: none !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: ">";
}

.dropdown-menu-lg {
    width: 320px;
}

.rounded-pill-left{
	border-top-left-radius: 50rem !important;
    border-bottom-left-radius: 50rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.rounded-pill-right{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 50rem !important;
    border-bottom-right-radius: 50rem !important;
}

.table td, .table th {
    border-top: none !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.table td:last-child, .table th:last-child {
    text-align: center;
}

.table .thead-light th {
    white-space: nowrap;
}

.table .thead-sticky th {
    position:sticky;
 	top:0;
 	z-index: 1;
}

.table .tfoot-sticky td {
    position:sticky;
 	bottom:0;
 	z-index: 1;
 	background-color: var(--primary) !important;
}

/*custom bootstrap end*/