
.flex {
	display: flex;
}
.acenter {
	align-items: center;
}
.spaceb {
	justify-content: space-between;
}
.jcenter {
	justify-content: center;
}
.bg_red {
	background: #e12a1d;
	color: #fff;
}
.bg_red.sel {
	background: #b11308;
}
.clrwhite {
	color: #fff;
}
.p10 {
	padding: 10px;
}
.p20 {
	padding: 20px;
}




.login_wrapper {
	width: 800px;
	max-width: 800px;
	padding-top: 120px;
	margin: auto;
	position: relative;
}
.bg_right {
	position: absolute;
	z-index: 0;
	top: 20px;
	right: -160px;
	width: 300px;
}
.login_wrapper img {
	max-width: 100%;
}
.login_wrapper_left {
	width: 49%;
	float: left;
}
.login_wrapper_right {
	width: 50%;
	float: right;
	position: relative;
	z-index: 1;
}
.login_logo {
	margin-bottom: 10px;
}
.login_logo h2 {
	margin: 0px;
}
.login_logo img {
	width: auto;
	height: 40px;
}

#login_form,
#signup_form {
	min-height: 268px;
}
#signup_form {
    max-height: calc(100vh - 280px);
	display: none;
	overflow: hidden;
	overflow-y: auto;
}
.div_tab_item {
	padding: 10px;
	text-align: center;
	width: 50%;
	cursor: pointer;
	background: #b11308;
}
.div_tab_item.sel {
	background: transparent;
}
.btn_custom {
	width: 100%;
	color: #333;
	text-transform: uppercase;
}
.app_icons {
	padding: 10px;
}
.app_icons img {
	height: 36px;
}


.sub_menu {
    position: absolute;
    background: #e22713;
    left: 100%;
    width: 177px;
    display: none;
}
.sub_menu a {
	color: #fff;
	text-decoration: none;
	padding: 14px 0px;
	display: block;
}
.sub_menu ul {
	margin-bottom: 0px;
	padding-left: 16px;
}
.sub_menu li {
	list-style: none;
	padding: 0px 14px;
	padding-left: 20px;
}
.sub_menu li:hover {
	background: rgba(255,255,255,0.4);
}
.sub_menu li .menu-item-arrow {
	margin-top: 3px;
}
.div_body_main h3 {
	font-size: 18px;
}
.sales .div_payment {
	width: 160px;
    height: 80px;
    padding: 10px 20px;
}
.sales .div_payment .price {
	color: #93c47d;
	font-weight: bold;
	font-size: 24px;
}
.sales .div_payment.add_payment div {
	padding-top: 8px;
    text-transform: none;
}
.groups .div_tab_item {
	background: #eee;
	padding: 5px 10px;
}
.groups .div_tab_item.sel {
	background: #93c47d;
}
#map {
	width: 100%;
	height: 500px;
	display: none;
}
.div_payment.wauto {
	width: auto !important;
}
.div_payment.hauto {
	height: auto !important;
}
.div_payment.hauto div {
	padding: 0px !important;
}

.alert_box,
.forgot_dlg {
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 99;
}
.forgot_dlg {
	z-index: 98;
}
.forgot_dlg .fa-close {
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
}
.alert_body {
	width: 320px;
	min-height: 220px;
	background: #fff;
	border-radius: 12px;
	padding: 15px 20px;
	position: absolute;
    left: calc(50% - 160px);
    top: calc(50% - 100px);
}
.alert_body h3 {
	min-height: 100px;
	text-align: center;
}
.forgot_dlg .alert_body h3 {
	min-height: 60px;
}
.alert_bt {
	margin: 10px auto;
	background: #e12a1d;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	max-width: 80px;
	text-align: center;
	cursor: pointer;
}







::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}