/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
@font-face {
  font-family: 'Muli-Regular';
  src: url('../fonts/Muli-Regular.ttf');
}

* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    font-family: 'Muli-Regular', Arial, Helvetica;
    font-size:14px;
    height:100%;
    margin:0 auto;
    padding:0px;
    width:100%;
    background-image: url('../img/bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: repeat;
	background-attachment: fixed;
	max-width: 1000px;
}

body.sub-account-background{
	background-image: url('../img/bg-sub-account.jpg');
}

input, button, textarea, select{
	font-family: 'Muli-Regular', Arial, Helvetica;
}

select.form-control{
	height: auto;
	padding-right: 15px;
}

/* Portrait layout (default) */
.app {
    background:url(../img/logo.png) no-repeat center top; /* 170px x 200px */
    position:absolute;             /* position in the center of the screen */
    left:50%;
    top:50%;
    height:50px;                   /* text area height */
    width:225px;                   /* text area width */
    text-align:center;
    padding:180px 0px 0px 0px;     /* image height is 200px (bottom 20px are overlapped with text) */
    margin:-115px 0px 0px -112px;  /* offset vertical: half of image height and text area height */
                                   /* offset horizontal: half of text area width */
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}

h1 {
    font-size:24px;
    font-weight:normal;
    margin:0px;
    overflow:visible;
    padding:0px;
    text-align:center;
}

h2{
	margin-top: 0;
}

.login-bg{
	position:absolute;
	width:100%;
	top:48px;
	left:0;
	z-index:9999;
	max-height: 155px;
}

.event {
    border-radius:4px;
    -webkit-border-radius:4px;
    color:#FFFFFF;
    font-size:14px;
    margin:0px 30px;
    padding:2px 0px;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#4B946A;
    display:none;
}

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}

/* Custom */
*{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
	outline: none;
}

body{
	padding-bottom: 55px;
}

header{
	padding: 5px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: #fff;
	height: 60px;
    border-bottom-left-radius: 50px;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
}

header .inside{
	padding: 5px;
	border-radius: 5px;
	max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.force-hidden{
	display: none !important;
}

.menu-icon{
	position: absolute;
	top: 9px;
	right: 15px;
	cursor: pointer;
	display: none;
	padding: 10px 0 14px 20px;
}

.menu-wrapper{
	position: absolute;
	top: 56px;
	background-color: #007700;
	left: 0;
	width: 100%;
	display: none;
	box-shadow: 0 3px 10px #050;
}

.menu-wrapper td{
	text-align: center;
	padding: 15px 10px;
	color: #fff;
	font-weight: bold;
	font-size: 0.9em;
}

.menu-wrapper td i.fa{
	font-size: 2em;
	margin-bottom: 5px;
}

.menu-wrapper canvas{
	width: 100% !important;
}

.menu-item{
	text-align: right;
	color: #fff;
	font-weight: bold;
	width: 190px;
	padding: 10px 15px;
	font-size: 1.1em;
	border-bottom: 1px solid #fff;
}

.box{
	border: 1px solid #007700;
	border-left: 1px solid #0b0;
	margin-bottom: 20px;
	display: table;
	width: 100%;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.box .left{
	border-left: 4px solid #0b0;
	background-color: #007700;
	padding: 10px;
	color: #fff;
	font-weight: bold;
	width: 30%;
	display: inline-block;
	vertical-align: top;
	display: table-cell;
}

.box .right{
	width: 70%;
	padding: 10px;
	display: inline-block;
	vertical-align: top;
	display: table-cell;
}

.body{
	padding-top: 70px;
}

.body.logged-in{
	padding-top: 65px;
}

.welcome{
	text-align: right;
	padding: 15px 15px 15px 100px;
	position: relative;
}

#scan_me_2{
	padding: 15px;
	border: 1px solid #f99f1c;
	display: inline-block;
	border-radius: 5px;
}

header h3{
	margin: 0;
	font-size: 1.2em;
}

navbar{
	background-color: #007700;
	padding: 5px 0 3px;
	margin-top: 54px;
	display: none;
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 9999;
	display: none !important;
}

navbar td{
	padding: 0;
	color: #fff;
	font-size:0.8em;
	border: none;
}

navbar td.active{
	color: #0f0;
}

navbar td i{
	font-size: 1.5em !important;
	display: block !important;
	margin-bottom: 3px;
}

.button-home{
	background: #2c3e50;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom, #3498db, #2c3e50);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom, #3498db, #2c3e50); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	/* background-color: #007700; */
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    height: 65px;
    line-height: 1;
    padding-top: 15px;
    width: 65px;
}

.button-home i{
	font-size: 1.5em !important;
	display: block !important;
	margin-bottom: 3px;
}

.button-home-bottom .fa{
	margin-bottom: 3px;
}

.button-home-bottom {
    /* background-color: #fff; */
    background-color: #007700;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 8px 5px;
    text-align: left;
    width: 95%;
	/* border: 1px solid #ccc;
	background: #ECE9E6;
	background: -webkit-linear-gradient(to top, #FFFFFF, #ECE9E6);
	background: linear-gradient(to top, #FFFFFF, #ECE9E6); */
}

.feature-support-button{
	border: none;
	border-radius:5px;
	padding:10px;
	background-color: #2f6288;
    color: #fff;
}

.button-home-bottom.btn-block{
	text-align: center;
}

navbar td.active{
	color: #0f0;
}

navbar td i{
	font-size: 1.5em !important;
	display: block !important;
	margin-bottom: 3px;
}

#btnBack{
	background: transparent;
    color: #333333;
    font-size: 2em;
    left: 0;
    line-height: 0;
    margin-top: -14px;
    position: absolute;
    top: 50%;
	display: none;
}

#btnBack i.fa{
	line-height:0.6
}

.form-group {
    margin-bottom: 15px;
	position: relative;
}

.form-group .icon{
	font-size: 1.5em;
    position: absolute;
    right: 9px;
    top: 27px;
	/* bottom: 7px; */
}

label {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 5px;
    max-width: 100%;
}

.align-left{
	text-align: left;
}

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

.align-right{
	text-align: right;
}

input {
    line-height: normal;
	box-sizing:border-box;
}

.form-control {
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555;
    display: block;
    font-size: 1em;
    height: 34px;
    line-height: 1.42857;
    padding: 6px 30px 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

input.form-control, textarea.form-control{
	background: transparent;
	box-shadow: none;
	border-bottom: 1px solid #007700;
	border-top: 1px solid transparent;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	border-radius: 0;
	transition: all 500ms;
	-webkit-transition: all 500ms;
}

input.form-control:focus, textarea.form-control:focus{
	border: 1px solid #007700;
}

textarea.form-control{
	height: auto;
}

.btn-link {
    -moz-user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857;
    margin-bottom: 0;
    padding: 6px 12px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.btn {
    -moz-user-select: none;
    background-image: none;
    border: 0;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.42857;
    margin: 0;
    padding: 13px 15px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
	text-shadow: 0px 1px 0px rbga(255, 255, 255, 1);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-primary {
	background: #3db3ee; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#3db3ee, #007700); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#3db3ee, #007700); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#3db3ee, #007700); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#3db3ee, #007700); /* Standard syntax */
	color: #fff;
}

.btn-red {
	background: #bf0101; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#e06f6f, #bf0101); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#e06f6f, #bf0101); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#e06f6f, #bf0101); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#e06f6f, #bf0101); /* Standard syntax */
	color: #fff;
}

.btn-orange {
	background: #FF512F; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#F09819, #FF512F); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#F09819, #FF512F); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#F09819, #FF512F); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#F09819, #FF512F); /* Standard syntax */
	color: #fff;
}

.btn-gold {
	background: gold; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(goldenrod, gold); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(goldenrod, gold); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(goldenrod, gold); /* For Firefox 3.6 to 15 */
    background: linear-gradient(goldenrod, gold); /* Standard syntax */
	color: #fff;
}

.btn-green {
	background: darkgreen; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(limegreen, darkgreen); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(limegreen, darkgreen); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(limegreen, darkgreen); /* For Firefox 3.6 to 15 */
    background: linear-gradient(limegreen, darkgreen); /* Standard syntax */
	color: #fff;
}

.btn-block{width: 100%; display: block;}
.btn-absolute-right{position:absolute;right:2px;bottom:3px;width:auto;padding:5px 15px;}

.btn-small{
	font-size: 12px;
	padding: 7px 15px;
}

.page{
	padding: 5px 15px 0;
	margin-bottom: 15px;
	display: none;
}

#loginConfirmation{
	padding:0 15px;text-align:center;font-size:1.3em;display: none;
}

#promo_detail{
	margin: 20px 0 10px;
}

#promo_detail p{border-bottom:1px solid #007700;padding-bottom: 5px}

#voucher_list .package-detail{display: none;}

#home td{
	border: 0;
	padding: 2px 0;
}

/* #home  > div > .btn-primary{
	background: #007700;
	border-radius: 0;
    color: #991b1e;
    width: 46%;
	min-height: 96px;
	position: relative;
	color: #fff;
}

#home  > div > .btn-primary:before{
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #007700;
	top: 10px;
	content: "";
} */

#home  > div > .btn-primary.left{
	border-left: 13px solid #007700;
	float: left;
	padding-left: 5px;
}

#home  > div > .btn-primary.left:before{
	right: 10px;
}

#home  > div > .btn-primary.right{
	border-right: 13px solid #007700;
	float: right;
	padding-right: 5px;
}

#home  > div > .btn-primary.right:before{
	left: 10px;
}

#home  > div > .btn-primary .fa{
	font-size: 2em;
	margin-bottom: 5px;
}

#formVoucher #no_voucher{
	font-size: 30px;
	text-align: center;
	height: 45px;
	padding-bottom: 15px;
}

#formLogin #email, #formLogin #password{padding-right: 35px;}

footer{
	/* background: #007700;
	color: #fff; */
	font-size: 1em;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 0 5px;
	display: none;
	z-index: 10;
    color: #007700;
	border-top: 1px solid #ccc;
	background: #ECE9E6;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to top, #FFFFFF, #ECE9E6);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to top, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.clearfix{clear: both;}

td{
	border-bottom:1px solid #ccc; padding:10px 0;
}

.required-message { color:#c00; font-size:12px; font-style:italic; margin-top:5px; }

.white-popup {
	position: relative;
	background: #FFF;
	background-color: #fff;
	padding: 50px 15px 20px;
	width: auto;
	max-width: 320px;
	margin: 80px auto 20px;
	height: 350px;
	text-align: center;
}
.white-popup.accept-payment{
	padding: 40px 20px 20px;
}
.white-popup.accept-payment .sign{
	/* border-top: 10px solid #007700; */
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 100px 0 0;
	border-color: #007700 transparent transparent transparent;
	position: absolute;
	top: -10px;
	left: -10px;
}
.white-popup h3{
	font-size: 30px;
}
.btn-popup-action{
	width: 100%;
	padding: 15px;
	font-weight: bold;
	color: #fff;
	background-color: #007700;
	border: none;
	letter-spacing: 2px;
}
.btn-popup-close{
	width: 100%;
	padding: 15px;
	font-weight: bold;
	color: #fff;
	background-color: #007700;
	border: none;
	letter-spacing: 2px;
}

.tab-collect { width:100%; border:1px solid #007700; border-radius:5px; float:left; }
.tab-collect .tab-item, .tab-collect .tab-add, .tab-collect .tab-master-add-customer, .tab-collect .tab-master-add-order-business, .tab-collect .tab-master-add-item, .tab-collect .tab-master-add-category-item, .tab-collect .tab-master-add-category-item-default, .tab-collect .tab-history-point { width:50%; text-align:center; border-right:1px solid #007700; padding:8px 0; float:left; }
.tab-collect .tab-amount, .tab-collect .tab-summary,.tab-collect .tab-master-reminder,.tab-collect .tab-master-deposit,.tab-collect .tab-master-room-statistice, .tab-collect .tab-master-list-customer, .tab-collect .tab-master-list-order-business, .tab-collect .tab-master-list-item, .tab-collect .tab-master-list-category-item, .tab-collect .tab-redeem-point, .tab-master-place-order, .tab-master-get-order, .tab-master-send-order, .tab-master-booking { width:50%; text-align:center; padding:8px 0; float:left; }
#item_list .main-tab .tab-item { width:25%; padding-left:0; padding-right:0; font-size:12px; }
#item_list .main-tab .tab-pending-order { width:25%; padding-left:0; padding-right:0; font-size:12px; }
#item_list .main-tab .tab-customer { width:25%; padding-left:0; padding-right:0; font-size:12px; }
#item_list .main-tab .tab-amount { width:25%; padding-left:0; padding-right:0; font-size:12px; }
.tab-collect .tab-amount.active, .tab-collect .tab-master-deposit.active,.tab-collect .tab-master-reminder.active,.tab-collect .tab-master-room-statistic.active,.tab-collect .tab-item.active, .tab-collect .tab-pending-order.active, .tab-collect .tab-customer.active, .tab-collect .tab-add.active, .tab-collect .tab-summary.active, .tab-collect .tab-master-add-customer.active, .tab-collect .tab-master-list-customer.active, .tab-collect .tab-master-add-order-business.active, .tab-collect .tab-master-list-order-business.active, .tab-collect .tab-master-add-item.active, .tab-collect .tab-master-list-item.active, .tab-collect .tab-master-add-category-item.active, .tab-collect .tab-master-add-category-item-default.active, .tab-collect .tab-master-list-category-item.active, .tab-collect .tab-history-point.active, .tab-collect .tab-redeem-point.active, .tab-collect .tab-master-get-order.active, .tab-collect .tab-master-send-order.active, .tab-collect .tab-master-place-order.active, .tab-collect .tab-master-booking.active { color:#fff; font-weight:bold; background-color:#007700; }

.main-tab {width:100%; padding:0 15px; border-bottom:1px solid #007700; float:left; margin-bottom:20px; position:relative;}
.main-tab div {width:50%; float:left; padding:5px 15px 15px; text-align:center; position:relative;}
.main-tab div.active {font-weight:bold;}
.main-tab div.active:after{
	bottom: 0;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #007700;
	margin-left: -8px;
}
.pos-tab {margin-bottom:15px;}
.pos-tab div {border:1px solid transparent;padding:5px;font-size:12px;}
.pos-tab div.active {font-weight:normal;border:1px solid #007700;border-radius:5px;box-shadow: 0px 1px 5px 0px #777;}
.pos-tab div.active:after {
	content: none;
}

.btn-cart{width:70px;border-radius:100%;height:70px;float:left;text-align:center;font-size:12px;padding:0;line-height:1.3;margin:10px 10px 0 0;}
.btn-cart-submit{width:90px;border-radius:100%;height:90px;float:right;text-align:center;font-size:14px;padding:0;line-height:1.3;}
.btn-cart-print{width:70px;border-radius:100%;height:70px;float:right;text-align:center;font-size:12px;padding:0;line-height:1.3;margin:10px 10px 0 0;}

.toggle-item.open { font-weight:bold; }
button:disabled { background: #bbb; }
#topup .bank-title {padding:10px 0 5px; margin-bottom:5px; border-bottom:1px solid #007700;}
#topup .bank-content ol {margin:0; padding-left:25px;}
#topup .bank-content li {line-height:1.5;}
#topup .bank-content {padding-bottom:20px;}

.ppob-title{font-size:16px; font-weight:bold; text-align:center; margin-bottom:25px;}
.qr_code_container img {margin: 0 auto;}

/* .cash-ko-2{
	position: absolute;
	top: 7px;
	right: 10px;
	background-color: #d60905;
	border-radius: 100%;
	padding: 11px 5px;
	font-weight: bold;
	color: yellow;
} */

.cash-ko-ads{
	position: absolute;
	top: 3px;
	left: 5px;
	background-color: #d60905;
	border-radius: 5px;
	padding: 8px;
	font-weight: bold;
	color: yellow;
}

.cash-ko-setting{
	position: absolute;
	top: 3px;
	right: 45px;
	background-color: #d60905;
	border-radius: 50%;
	padding: 5px 9px;
	font-weight: bold;
	color: yellow;
	font-size: 20px;
}

.cash-ko-2{
	position: absolute;
	top: 3px;
	right: 5px;
	background-color: #d60905;
	border-radius: 5px;
	padding: 5px 8px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	font-size: 16px;
}

.cash-ko-notification{
	position: absolute;
	top: 3px;
	right: 5px;
	padding: 5px 8px;
	font-weight: bold;
	color: #007700;
	line-height: 1;
	font-size: 24px;
}

.cash-ko-choose-mode{
	position: absolute;
	font-weight: bold;
	color: #007700;
	line-height: 1;
	display: none;
	top: 31px;
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.cash-ko-choose-mode span{
	display: inline-block;
	background-color: #007700;
	color: #fff;
	border-radius: 50%;
	margin-right: 2px;
}

.cash-ko-choose-mode.active-mode{
	opacity: 1;
	filter: alpha(opacity=100);
	font-size: 16px;
	top: 28px;
}

.cash-ko-choose-mode.merchant-mode{
	right: 40px;
}

.cash-ko-choose-mode.user-mode{
	left: 40px;
}

.cash-ko-business{
	position: absolute;
	top: 7px;
	right: 58px;
	background-color: #0905d6;
	border-radius: 100%;
	padding: 11px 5px;
	font-weight: bold;
	color: yellow;
}

.icon-add-ads{
	position: absolute;
	border-radius: 5px;
	padding: 7px 9px;
	background-color: #007700;
	color: #fff;
	line-height: 1;
	top: -5px;
	left: 0;
	font-size: 14px;
}

.btn-submit{
	background-color: rgb(0,85,0);
	color: white;
	width: 100%;
	padding: 10px;
	border-radius: 30px;
	border: none;
}

.icon-edit-ads{
	position: absolute;
	border-radius: 50%;
	padding: 7px 9px;
	background-color: #007700;
	color: #fff;
	line-height: 1;
	top: -15px;
	right: 0;
}

.button-add-ads{
	position: absolute;
	color: #00a;
	line-height: 1;
	top: -15px;
	right: 0;
	font-size: 14px;
}

.icon-bid-ads{
	position: absolute;
	border-radius: 5px;
	padding: 7px 9px;
	background-color: #007700;
	color: #fff;
	line-height: 1;
	top: -5px;
	right: 0;
}

.btn-share{
	/* background: #2c3e50;
	background: -webkit-linear-gradient(to bottom, #3498db, #2c3e50);
	background: linear-gradient(to bottom, #3498db, #2c3e50); */
	background: #232452;
}

.cart-action-container td{
	border-bottom: none;
	width: 20%;
}

.cart-action-button{
	background-color: #007700;
	padding: 11px 9px;
	line-height: 1.3;
	color: #fff;
	border-radius: 50%;
	display: inline-block;
	width: 55px;
	height: 55px;
	font-size: 12px;
	text-align: center;
	margin-left: 10px;
}

.transaction-map-button{
	background-image: url(../img/bg-save.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    line-height: 1.2;
    color: #fff;
    border-radius: 15px;
    position: fixed;
    bottom: 70px;
    width: 100px;
    height: 50px;
    left: 15px;
    z-index: 10;
    text-align: center;
    padding-top: 9px;
    box-shadow: 0px 2px 15px 1px #333;
}

.save-cart-button{
	/* background-image: url(../img/bg-save.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    line-height: 1.2;
    color: #fff;
    border-radius: 15px;
    position: fixed;
    bottom: 70px;
    width: 100px;
    height: 50px;
    left: 15px;
    z-index: 10;
    text-align: center;
    padding-top: 9px;
    box-shadow: 0px 2px 15px 1px #333; */
    -moz-user-select: none;
    background-image: none;
    border: 0;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.42857;
    margin: 0;
    padding: 13px 15px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
	text-shadow: 0px 1px 0px rbga(255, 255, 255, 1);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
	background: #006bcb; /* Standard syntax */
	color: #fff;
	width: 100%;
	margin-top: 15px;
}

/* ADS */

#ads-list, #premium-ads-list, #point-item-list{
	margin: 15px -5px 0;
}

.ads-list{
	margin: 0 1.66%;
	width: 30%;
	float: left;
	border: 1px solid #f99f1c;
	margin-bottom: 15px;
}

.ads-list .img{
	height: 100px;
	text-align: center;
	background-size: cover;
	background-position: center;
}

.ads-list img{
	max-width: 100%;
	max-height: 100%;
}

.ads-list p, .ads-list .price{
	padding: 0 10px;
}

.ads-list p{
	margin-top: 10px;
	height: 35px;
}

.ads-list .price{
	margin-bottom: 10px;
	font-weight: bold;
	text-align: center;
}

.ads-list button{
	background: #007700; border: 0px none; padding: 8px 10px; color: #fff; width: 100%;
}

#ads_qrcode{
	margin-top: 20px;
}

#ads_qrcode img{
	margin: 0 auto;
}

#verify-pairing-register .verify-digit-otp{
	background-color: #016775;
	color: #fff;
	border-radius: 5px;
}
.form-title{
	font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.flight-list{
	background-color: white;
	display: none;
	padding: 10px;
	position: absolute;
	z-index: 1000;
	width: 100%;
	min-height: 100%;
	overflow-y: scroll;
}

.flight-header{
	text-align: center;
	font-weight: bold;
	border-bottom: 1px solid #007700;
	padding: 10px;
}

.flight-body{
	width: 100%;
}

.rm{
	position: absolute;
	top:10px;
	right: 10px;
	font-size: 20px;
}

.flight-body>ul{
	list-style-type: none;
	padding: 5px;
}

li.list-airport{
	border-bottom: 1px solid #2f2e2ecc;
	padding-bottom: 5px;
	padding-top: 5px;
}

.flight-body>ul>li>p:last-child{
	font-size: 10px;
	color: #2f2e2ecc;
}

.flight-body>ul>li:last-child{
	border-bottom: none;
}

.flight-body>p{
	margin-top: -5px;
}

.date-div{
	background-color: white;
	text-align: center;
	padding: 10px;
	margin-right: 5px;
	border-radius: 3px;
}

.date-list{
	background-color: white;
	position: absolute;
	padding: 10px;
	list-style: none;
	z-index: 9999;
	margin-right: 5px;
	max-height: 150px;
	overflow-y: scroll;
	display: none;
}

.tgl-select{
	text-align: center;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.bln-select{
	text-align: center;
	padding-left: 33px;
	padding-right: 33px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 200px;
}

.thn-select{
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.flightList-content>table{
	padding: 5px;
	background-color: white;
	border-radius: 2px;
	margin-bottom: 15px;
}

.flightList-content > table > tbody > tr >th,.flightOrder>tbody>tr>th,.flightOrder>tbody>tr>td{
	font-weight: normal;
	font-size: 13px;
	text-align: center;
}

.flightOrder{
	padding: 5px;
	background-color: white;
	border-radius: 2px;
	margin-bottom: 5px;	
	width: 100%;
}

.flightOrder>tbody>tr>td{
	border-bottom: none;
}

.caption{
	text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 5px;
}

.listTravel{
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	background-color:white;
	padding:5px;
	margin-bottom:15px;
	border-radius: 2px;
	width: 100%;
}

.listTravel > tbody> tr>td{
	border-bottom: none;
	padding: 5px;
}

.btn-order{
    border-radius: 5px;
    border: none;
    padding: 7px 9px;
    background-color: #050;
    color: #fff;
    line-height: 1;
    top: -5px;
    right: 0;
}
.noborder{
	border:none;
}

.mfp-auto-cursor{
	top:0px;
}

.faci-list{
	padding: 8px;
    text-align: center;
    border: 0.5px solid rgb(0,85,0);
    border-radius: 30px;
    background-color: rgb(0,85,0);
    text-decoration: none;
    color: white;
    font-size: 14px;
    margin-left: -30px;
    margin-bottom: 5px;
    list-style: none;
}

.mfp-content{
	overflow-x:hidden;
}

#hotel-popup-images .mfp-close{
	color: #fff;
	opacity: 1;
}

.btn-add{
	text-decoration: none;
    color: white;
    padding: 7px 9px;
    background-color: rgb(0,85,0);
    color: white;
    border-radius: 5px;
    line-height: 1;
    border: none;
    margin-bottom: 10px;
}

.dp-list{
	background-color: white;width: 100%;padding: 10px;z-index:100;display: none;position: absolute;
}

.pas-box{
	margin-bottom: 10px;
}

.pas-box>span{
	float: right;
}

label.pop-up{
	width: 100%;
	font-weight: bold;
	text-align: left;
}

input.pop-up{
	border-color: #ccc;
}

button.pop-up{
	position: absolute;
    bottom: 10px;
    width: 87%;
}

.white-popup-edit {
	position: relative;
	background: #FFF;
	padding: 50px 20px 20px;
	width: auto;
	margin: 20px auto;
	height: 100%;
	height: 450px;
}

.white-popup-edit h3{
	font-size: 30px;
}

.btn-popup-close-edit{
	width: 100%;
	padding: 15px;
	font-weight: bold;
	color: #fff;
	background-color: #0a0;
	border: none;
	letter-spacing: 2px;
}

.white-popup-edit > .mfp-close{
	margin-top: 10px;
}

.pop-up-list{
    width: 100%;
}

.pop-up-list-item{
	padding: 10px;
}

.pop-up-info{
	margin-top: 10px;
	background-color:#cfc;padding:10px;
}

.pop-up-seat{
	border:none;
	width: 100%;
}

.pop-up-seat>tbody>tr>td{
	border: none;
}

.pop-up-info>tbody>tr>td{
	border: none;
	padding: 2px;
}

.box-sin{
	padding: 2px;
    font-size: 10px;
    border: 1px solid #ccc;
}

.small-div{
	margin-top: 5px;
    font-size: 12px
}

.border-bottom>tbody>tr>td{
	border-bottom: none;
}

.box-seat{
	width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 4px;
}

.box-seat-available{
	width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 4px;
    color: #007700;
    border: 1px solid;
}

.no-seat{
	border:1px solid #050;
	border-radius: 4px;
}

.no-seat>tbody>tr>td{
	border-color: #050;
}

.box-popup{
	padding: 5px;
    border-radius: 3px;
    background-color: #050;
    color: white;
    width: 100%;
    text-align: center;
}

.box-pass{
	width: 100%;
	overflow-x: scroll;
	border-bottom: 1px solid #ccc;
	padding-top: 5px;
	padding-bottom:10px;
	display: flex;
}

.box-pass>table{
	width: 65px;
	margin-right:10px;
	padding:4px;
	height: 85px;
	overflow-x: scroll;
	transition: 0.3s;
}

.box-pass>table>tbody>tr>td{
	text-align: center;
}

.chosen-seat{
	background-color: #050;
	border:none;
	color: white;
}

.chosen-boxseat{	
	background-color:#050;
	border:none;
	color: white;
}

.chosen-boxseat>tbody>tr>td{
	border-color: white;
}

.chosemap{
	border-bottom: 1px solid #050;
    box-shadow: 0px 1px 1px #050;
}

.current{
	z-index: 1000;
}

.footers{
	height: auto;
}

.footers>tbody>tr>td{
	border-bottom: none;
	border-right: 1px solid white;
	color: white;
	font-weight: bold;
	padding: 0px;
	font-size: 14px;
}

.footers>tbody>tr>td:last-child{
	border-bottom: none;
	border-right: none;
}

.pop-up-list-u{
	width: 100%;
}

.chosen-faci{
	padding: 10px;
	margin-bottom: 5px;
}

.chosen-faci>tbody>tr>td{
	border-bottom: none;
	padding: 2px;
}

.chosen-faci>tbody>tr>td:first-child{
	color: #050;
}

.pop-up-list-u>.fa{
	color: #050;
}

.popup-box-code{
	padding: 5px;
    border-radius: 3px;
    background-color: #050;
    color: white;
    width: 100%;
    text-align: center;
}

.pop-up-list-u>tbody>tr>td>{
	border-bottom: none;
}

.form-control-popup{
    background-color: #fff;
    background-image: none;
    border: 1px solid #050;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #050;
    display: block;
    font-size: 1em;
    height: 34px;
    line-height: 1.42857;
    padding: 6px 30px 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.btn-transit{
	background: #fff;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 18px 0;
}

.group-filter{
	background-color: white;
	width: 100%;
	padding: 10px;
}

.group-filter > tbody >tr>td{
	border-bottom: none;
}

.faci-list-room{
	font-size: 14px;
    margin-left: -20px;
    margin-bottom: 5px;
}

.group-filter > tbody >tr>td:last-child{
	text-align: right;
}

.li-hotel{
	text-decoration: none;
	padding: 10px;
	font-size: 16px;
}

.contact-popup{
	padding: 8px;
    text-align: center;
    border: 0.5px solid rgb(0,85,0);
    border-radius: 30px;
    background-color: rgb(0,85,0);
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.gold{
	color: #fdcb04;
}

.switch {
	position: absolute;
	width: 50px;
	height: 25px;
	right: 0;
	top: -3px;
}

.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f55;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 17px;
	width: 17px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2196F3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(25px);
	-ms-transform: translateX(25px);
	transform: translateX(25px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

body.demo .welcome{/* background-color:#050; */}
body.demo-qr .welcome{/* background-color:darkmagenta; */}
.demo-text{display:none;}
.demo-qr-text{display:none;}
.demo-text-all{display:none;}
.sub-account-text{display:none;position:absolute;top:3px;right:5px;}
body.demo .demo-text{display:block; position:absolute; top:-4px; left:45%;}
body.demo-qr .demo-qr-text{display:block; position:absolute; top:3px; left:5px;}
body.demo .demo-text-all, body.demo-qr .demo-text-all{display:block}
/* body.demo .global-box{background-color:#eee8aa;} */


/* DEMO */

body.demo .button-home, body.demo .button-home-bottom, body.demo footer, body.demo .btn-primary, body.demo .tab-collect .tab-amount.active, body.demo .tab-collect .tab-item.active, body.demo .tab-collect .tab-pending-order.active, body.demo .tab-collect .tab-customer.active, body.demo .tab-collect .tab-add.active, body.demo .tab-collect .tab-summary.active, body.demo .tab-collect .tab-master-add-customer.active, body.demo .tab-collect .tab-master-list-customer.active, body.demo .tab-collect .tab-master-add-order-business.active, body.demo .tab-collect .tab-master-list-order-business.active, body.demo .tab-collect .tab-master-add-item.active, body.demo .tab-collect .tab-master-list-item.active, body.demo .tab-collect .tab-master-add-category-item.active, body.demo .tab-collect .tab-master-add-category-item-default.active, body.demo .tab-collect .tab-master-list-category-item.active, body.demo .tab-collect .tab-history-point.active, body.demo .tab-collect .tab-redeem-point.active, body.demo .icon-add-ads, body.demo .icon-edit-ads, body.demo .icon-bid-ads, body.demo .ads-list button, body.demo .cart-action-button, body.demo .btn-popup-action, body.demo .tab-collect .tab-master-place-order.active, body.demo .tab-collect .tab-master-get-order.active, body.demo .tab-collect .tab-master-send-order.active,body.demo .tab-collect .tab-master-deposit.active,body.demo .tab-collect .tab-master-reminder.active,body.demo .tab-collect .tab-master-room-statistic.active, body.demo .tab-collect .tab-master-booking.active{
	background: #006bcb;
}

body.demo header .inside{
	background: transparent;
}

body.demo footer{
	/* background: #098c58; */
	background: #006bcb;
}

body.demo-qr header, body.demo-qr .button-home, body.demo-qr .button-home-bottom, body.demo-qr footer, body.demo-qr .btn-primary, body.demo-qr .tab-collect .tab-amount.active, body.demo-qr .tab-collect .tab-item.active, body.demo-qr .tab-collect .tab-pending-order.active, body.demo-qr .tab-collect .tab-customer.active, body.demo-qr .tab-collect .tab-add.active, body.demo-qr .tab-collect .tab-summary.active, body.demo-qr .tab-collect .tab-master-add-customer.active, body.demo-qr .tab-collect .tab-master-list-customer.active, body.demo-qr .tab-collect .tab-master-add-order-business.active, body.demo-qr .tab-collect .tab-master-list-order-business.active, body.demo-qr .tab-collect .tab-master-add-item.active, body.demo-qr .tab-collect .tab-master-list-item.active, body.demo-qr .tab-collect .tab-master-add-category-item.active, body.demo-qr .tab-collect .tab-master-add-category-item-default.active, body.demo-qr .tab-collect .tab-master-list-category-item.active, body.demo-qr .tab-collect .tab-history-point.active, body.demo-qr .tab-collect .tab-redeem-point.active, body.demo-qr .icon-add-ads, body.demo-qr .icon-edit-ads, body.demo-qr .icon-bid-ads, body.demo-qr .ads-list button, body.demo-qr .cart-action-button, body.demo-qr .btn-popup-action, body.demo-qr .tab-collect .tab-master-place-order.active, body.demo-qr .tab-collect .tab-master-get-order.active, body.demo-qr .tab-collect .tab-master-send-order.active, body.demo-qr .tab-collect .tab-master-booking.active{
	background: #930f92;
}

body.demo .cash-ko-notification{
	color: #050;
}

body.demo-qr .cash-ko-notification{
	color: darkmagenta;
}

body.demo .btn-popup-close{
	background-color: #0a0;
}

body.demo-qr .btn-popup-close{
	background-color: darkmagenta;
}

body.demo .white-popup.accept-payment .sign{
	/* border-top: 10px solid #0a0; */
	border-color: #0a0 transparent transparent transparent;
}

body.demo-qr .white-popup.accept-payment .sign{
	/* border-top: 10px solid darkmagenta; */
	border-color: darkmagenta transparent transparent transparent;
}

body.demo .feature-support-button{
	background: #080;
}

body.demo-qr .feature-support-button{
	background: darkcyan;
}

body.demo .btn-share{
	background: #800;
}

body.demo-qr .btn-share{
	background: darkslategray;
}

body.demo .demo-text, body.demo .sub-account-text, body.demo #btnBack, body.demo footer, body.demo .cash-ko-choose-mode{
	/* color: #fff; */
}

body.demo-qr .demo-qr-text, body.demo-qr .sub-account-text, body.demo-qr #btnBack, body.demo-qr footer, body.demo-qr .cash-ko-choose-mode{
	/* color: #fff; */
}

body.demo .cash-ko-choose-mode span, body.demo-qr .cash-ko-choose-mode span{
	background-color: darkorange;
	color: #007700;
}

.custom-button-home{
	position: relative;
	padding: 15px;
	border-radius: 10px;
	background: white;
	-webkit-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.5);
	width: 28vw;
}

.custom-button-home.guide{
	position: relative;
	padding: 0;
	width: 100px;
	vertical-align: top;
	display: inline-block;
}

.custom-button-home img{
	/* width: 100%; */
	height: 60px;
}

.custom-button-home i{
	font-size: 18px;
	/* border: 1px solid #888; */
	border-radius: 50%;
	padding: 20px;
}

.custom-button-home div{
	font-weight:bold;
	margin-top:5px;
	font-size: 14px;
}

.custom-button-home span{
	position: absolute;
	left: 10px;
	right: 10px;
	display: block;
	font-weight: bold;
	font-size: 13px;
}

.custom-button-home.top span{
	top: 5px;
}

.custom-button-home.bottom span{
	bottom: 8px;
}

.custom-button-home.left span{
	text-align: left;
}

.custom-button-home.right span{
	text-align: right;
}

.custom-button-home.center span{
	text-align: center;
}

.headerowntable{
	border-top: 1px solid #A4BED4;
	border-right: 1px solid #A4BED4;
	border-bottom: 1px solid #A4BED4;
	border-left: 1px solid #A4BED4;
	background-color: transparent;
	font-family:Tahoma;
	font-size:11px;
	color:black;
	text-align:center;
	font-weight: bold;
	padding: 4px;
}

.headerbackground{
	background-color: lightblue;
	border-collapse: collapse;
}

.stufflist{
	font-size:12px;
	overflow: hidden;
	border-top: 1px solid #A4BED4;
	border-right: 1px solid #A4BED4;
	border-bottom: 1px solid #A4BED4;
	border-left: 1px solid #A4BED4;
	padding: 4px;
}

.room_idle{
	background-image: #FFFFFF;
}

.room_using{
	background-color: #FDFF56;
}

.room_cleaning{
	background-color: #88FF88;
}

.room_repairing{
	background-color: #FFAAAA;
}

.global-box{
	padding: 20px 15px 25px;
	border-radius: 10px;
	background: white;
	-webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
}

header.global-header{
	position: relative;
	background-color: transparent;
	height: auto;
    border-bottom-left-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

header.global-header .inside{
	height: 50px;
	background-color: transparent !important;
}

header.global-header img{
	position: absolute;
    top: 50px;
    left: 50%;
    /* margin-left: -104px; */
    transform: translateX(-50%);
    height: 60px;
}

header.global-header img#logo-right{
    top: 80px;
    left: auto;
    margin-left: 0;
    height: 30px;
    right: 10px;
    display: none;
    transform: none;
}

header.global-header .merchant-name{
    font-weight: bold;
    font-size: 18px;
    display: none;
    padding: 0 70px;
    line-height: 1;
    height: 40px;
    overflow: hidden;
}

.general_view, .sub_account_view{
	padding: 0 10px;
}

.home-box-container{
	width: 100%;
	overflow-x: auto;
}

.home-title{
	margin-top: 20px;
	margin-bottom: 0;
	text-align: left;
}

.home-title-underline{
	display: inline-block;
	width: 50px;
	border-top: 3px solid #006bcb;
}

#table-time td{
	padding-left: 3px;
	padding-right: 3px;
	text-align: center;
}

.chatbox-in{
	background-color: #FFF;
	position: relative;
	padding: 10px;
	border: 1px solid #ccc;
	margin-top: 10px;
	border-radius: 5px;
	margin-bottom: 10px;
	margin-right: 50px;
	word-break: normal;
}

.chat{
	margin-right: 15px;
}

.chatbox-in > .user-desc{
	padding: 0px 0px 5px 0px;
	color: #3F51B5;
    font-weight: bold;
}

.chatbox-out{
	position: relative;
	margin-left: 50px;
	word-break: normal;
	margin-bottom: 10px;
	background-color: #00BCD4;
	padding: 10px;
	border:1px solid #ccc;
	border-radius: 5px;
}

.chat-time{
	position: absolute;
	right: 5px;
	bottom: 5px;
	font-size: 9px;
}

tr.no-border > td{
	border-bottom: none;
}

.pulse {
	width: auto;
	height: auto;
	cursor: pointer;
	box-shadow: 0 0 0 rgba(204,169,44, 0.4);
	animation: pulse 2s infinite;
}

.pulse:hover {
	animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(204,169,44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(204,169,44, 0);
    box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}

.body-overlay{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	display: none;
}

.menu-side{
	position: fixed;
	top: 0;
	left: -200px;
	z-index: 10001;
	background-color: #fff;
	width: 200px;
	height: 100%;
	border-bottom-right-radius: 20px;
	transition: all 200ms;
	-webkit-transition: all 200ms;
	padding: 15px;
}
.menu-side .fa{
	font-size: 20px;
}
.menu-side .menu-side-item .fa{
	font-size: 20px;
	display: inline-block;
	width: 30px;
	text-align: center;
}
.menu-side .menu-side-item{
	padding: 8px 0;
	position: relative;
}

.user-pos-label{
	position: absolute;
	top: 8px;
	left: 0;
	z-index: 1;
	font-weight: bold;
	transition: all 200ms;
	-webkit-transition: all 200ms;
}
.user-pos-label.focus{
	top: -20px;
}

.chat-button{
	background-color: #006bcb;
	line-height: 1;
	width: 40px;
	height: 40px;
	padding: 9px 10px;
	border-radius: 50%;
	position: fixed;
	color: #fff;
	right: 15px;
	bottom: 60px;
	font-size: 20px;
}

.video-call-button{
	background-color: #6bcb00;
	line-height: 1;
	width: 40px;
	height: 40px;
	padding: 9px 10px;
	border-radius: 50%;
	position: fixed;
	color: #fff;
	left: 15px;
	bottom: 60px;
	font-size: 20px;
}

.pac-container{
	z-index: 10006;
}

.full-popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 40px 15px;
	z-index: 10005;
	background-color: #fff;
	overflow: auto;
}
.full-popup .button-close{
    color: #333;
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    font-style: normal;
    font-size: 28px;
    font-family: Arial;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.cart-input{
	border: 0;
	text-align: center;
	padding: 0 15px;
	height: auto;
	display: block;
	width: 100%;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	color: #555;
	font-size: 1em;
	line-height: 1;
	font-weight: bold;
}

.mark-important{
	border-radius: 3px;
	background-color: #b00;
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
	white-space: nowrap;
}

.marked{
	border-radius: 3px;
	background-color: #b00;
	color: #fff;
	padding: 3px 5px;
	display: inline-block;
	margin: 2px 0;
	font-size: 12px;
}

.star-on{
	color: #0f0;
	font-size: 30px;
}
.star-off{
	color: #888;
	font-size: 30px;
}

.chat_notified_icon, .chat_general_notified_icon, .chat_mc_notified_icon, .chat_offer_notified_icon, .notification_notified_icon, .order_history_notified_icon, .chat_friend_notified_icon{
	background-color: red;
	border-radius: 100%;
	display: none;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 0;
	top: 10px;
}

.chat_history_offer_notified_icon, .chat_my_offer_notified_icon{
	background-color: red;
	border-radius: 100%;
	display: none;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 3px;
	top: 2px;
}

.chat_row_offer_notified_icon{
	background-color: red;
	border-radius: 100%;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 0;
	top: 10px;
}

.chat_row_friend_notified_icon{
	background-color: red;
	border-radius: 100%;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 0;
	top: 15px;
}

.hide-customer{
	height: 20px;
	overflow: hidden;
}

.cart-item-notes{
	font-weight: bold;
	color: #b00;
	text-decoration: underline;
	font-style: italic;
}

.data-detail{
	font-size: 12px;
}

.business_description_user{
	margin-bottom: 5px;
	font-weight: bold;
	background-color: #0a0;
	color: #fff;
	padding: 5px 8px;
	border-radius: 5px;
	text-align: center;
}

.sector-selection{
	position: relative;
	margin-bottom: 10px;
	border: 1px solid #555;
	border-radius: 10px;
	padding: 15px 15px 15px 55px;
	background-color: #fff;
	transition: all 300ms;
	-webkit-transition: all 300ms;
}
.sector-selection.active{
	background-color: #8f8;
}
.sector-selection img{
	position: absolute;
	left: 15px;
	top: 10px;
	height: 25px;
}
.member-choice{
	display: none;
}

#reader__dashboard_section_swaplink{
    display: none !important;
}
#reader__camera_permission_button, #reader__dashboard_section_csr button{
    -moz-user-select: none;
    background-image: none;
    border: 0;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.42857;
    margin: 0;
    padding: 13px 15px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
	text-shadow: 0px 1px 0px rbga(255, 255, 255, 1);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
	background: #006bcb;
	color: #fff;
	margin-top: 10px;
}
#reader__camera_selection{
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555;
    display: block;
    font-size: 1em;
    height: 34px;
    line-height: 1.42857;
    padding: 6px 30px 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 95%;
    margin-left: 2%;
    margin-top: 5px;
}

.running-text{
	color: #ffffff;
	padding: 8px 5px 5px;
	background-color: #a52a2a;
	font-size: 18px;
	animation: morph 5s infinite;
}

.custom-running-text{
	color: #ffffff;
	padding: 8px 5px;
	background-color: #a52a2a;
	font-size: 18px;
	animation: morph 5s infinite;
	margin: 0 -15px;
	display: none;
	width: 120%; 
	overflow: hidden; 
}

.custom-running-text p{
	white-space: nowrap;
	clear: both;
	float: left;
	padding: 0;
	margin: 0;
}

.main-icon{
	border-radius: 10px;
	padding: 10px 15px;
	/* background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%); */
	background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
	display: inline-block;
	width: 115px;
	font-size: 10px;
}

@keyframes morph {
	0% { background-color: #a00; }
	33% { background-color: #0a0; }
	66% { background-color: #00a; }
	100% { background-color: #a00; }
}