textarea{
	border-radius: 5px;
    border: 1px solid var(--input-border-color);
    resize: none;
    font-size: 1em;
    padding: 10px !important;
    min-height: 100px;
}

.customer{
    color: var(--font-color);
	background: #fff;
}

.customer .alertDialog{
	font-size: .13em;
}

.customer .topBar{
	font-size: .15em;
    border-bottom: 1px solid var(--topbar-border-color);
    display: flex;
    flex-direction: column;
    /* height: 92px; */
}

.customer .topBar .category{
    position: fixed;
    backdrop-filter: blur(2px) brightness(85%) saturate(100%);
    z-index: 99;
    width: 100vw;
    height: 100vh;
}

.customer .topBar .categoryList{
    position: fixed;
    top: 100vh;
    background: #fff;
    z-index: 100;
    width: 100%;
    height: 70%;
    background: white;
    border-radius: 15px 15px 0px 0px;
    padding: 20px;
    transition: .5s all;   
}

.customer .topBar .list{
    display: flex;
    align-items: center;
}

.customer .topBar .label{
	font-weight: 900;
    /* border-bottom: 1px solid var(--topbar-border-color); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* text-align: -webkit-left; */
    /* padding: 10px; */
    /* padding-top: 10px; */
    /* margin-top: 10px; */
    /* margin-left: 20px; */
    font-size: 1.5em;
}

.customer .topBar .menu{
	cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 5px 5px;
    color: gray;
    border-bottom: 5px solid #ffffff00;
    /* border-right: 1px solid var(--topbar-border-color); */
    /* margin-top: 10px; */
}

/* .customer .topBar .menu:last-child{
	border: none;
} */

.customer .mainContainer{
	min-height: calc(100vh - 213px);
	max-height: calc(100vh - 213px);
	overflow-y: auto;
	background: white;
}

.customer .pos .mainContainer{
	min-height: calc(100vh - 60px);
	max-height: calc(100vh - 60px);
	overflow-y: auto;
	background: white;
    min-width: 100%;
}

.customer .footerMenu {
    border-top: 1px solid var(--topbar-border-color);
    height: 64px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: white;
}

.customer .footerMenu .footerMenuItem {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 0.12em;
    gap: 3px;
    flex-direction: column;
}

.customer .footerMenu .footerMenuItem svg {
    height: 28px;
    width: 28px;
    color: var(--font-color);
}

.customer .footer{
	font-size: .15em;
	/* border-top: 1px solid var(--topbar-border-color); */
	padding: 5px;
    position: fixed;
    bottom: 64px;
    width: 100%;
}

.customer .footer {
	font-size: .15em;
	/* border-top: 1px solid var(--topbar-border-color); */
	padding: 5px;
    position: fixed;
    bottom: 64px;
    width: 100%;
    background-color: white;
}

.customer .footer .button{
	width: 100%;
	text-align: left;
	border-radius: var(--border-radius);
	background: #00796B;
	color: #fff;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	font-weight: bold;
}

.customer .footer .button .amount{
	background: #e5f1f0;
    color: #00796b;
    text-align: center;
    width: 20px;
    border-radius: 5px;
}

.customer .mainContainer .itemList{
	/* display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    overflow-y: overlay;
    padding: 10px; */
}

.customer .mainContainer .itemList .item{
	text-align: center;
    cursor: pointer;
    display: flex;
    /* border: 1px solid lightgray; */
	border: 1px solid #e8eaed;
	/* box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 10%); */
    flex-direction: column;
    border-radius: 5px;
	background: white;
	font-size: .16em;
	line-height: 1.5em;
}

 .customer .modal.customerCategoryMenu .item{
	text-align: center;
    cursor: pointer;
    display: flex;
    border: 1px solid lightgray;
	/* box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 10%); */
    flex-direction: column;
    border-radius: 5px;
	background: white;
	line-height: 1.5em;
 }

.customer .mainContainer .itemList .item .name, .customer .modal.customerCategoryMenu .item .name{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.customer .topBar .menu.selected{
	border-bottom: 5px solid var(--menu-button-selected-color);
}

.customer .mainContainer .itemList .item, .customer .modal.customerCategoryMenu .item{
	text-align: center;
    cursor: pointer;
	display: flex;
	flex-direction: column;
}

.customer .mainContainer .itemList .promotion, .customer .modal.customerCategoryMenu .promotion{
	flex-direction: row;
    border-radius: 0;
}

.customer .mainContainer .itemList .item .image, .customer .modal.customerCategoryMenu .item .image{
	/* background: #e5f1f0; */
	/* border-radius: 5px 5px 0 0; */
	border-radius: 5px;
	display: flex;
	justify-content: center;
    aspect-ratio: 1;
}

.customer .mainContainer .itemList .item img, .customer .modal.customerCategoryMenu .item img{
	max-width: 100%;
    /* max-height: 120px;
    min-height: 120px; */
    object-fit: cover;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.customer .mainContainer .itemList .item .name, .customer .modal.customerCategoryMenu .item .name{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
	word-break: break-all;
}

.customer .mainContainer .itemList .item .detail, .customer .modal.customerCategoryMenu .detail{
	padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
	position: relative;
    width: 100%;
}

.customer .mainContainer .itemList .item .detail .amount, .customer .modal.customerCategoryMenu .item .detail .amount{
	position: absolute;
    right: 10px;
    bottom: 10px;
    color: #00796b;
    background: #e5f1f0;
    border-radius: 50%;
    padding: 2px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .9em;
}

.customer .mainContainer .menuItem{
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow-y: auto;
}

.customer .mainContainer .menuItem .item{
	font-size: .18em;
	color: var(--font-color);
}

.customer .mainContainer .menuItem .item .box{
	padding: 0 10px;
    /* padding-bottom: 66px; */
	/* min-height: 100vh; */
}

.customer .mainContainer .menuItem .item .box .name{
	padding: 10px 0;
	border-bottom: 1px solid #eaeaea;
}

.customer .mainContainer .menuItem .item .description{
	font-size: .9em;
    /* padding: 5px 0; */
	margin: 10px 0;
    color: #8f8f8f;
}

.customer .mainContainer .menuItem .item .image{
	background: #e5f1f0;
    display: flex;
    justify-content: center;
    max-height: 170px;
    min-height: 170px;
	/* position: relative; */
}

.customer .mainContainer .menuItem .item .image img{
	object-fit: cover;
    min-width: 100%;
}

.customer .mainContainer .menuItem .item .option{
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid #eaeaea;
}

.customer .mainContainer .menuItem .item .remark{
	padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.customer .mainContainer .menuItem .item .footer{
	font-size: 1em;
    display: flex;
    justify-content: space-between;
    padding: 10px;
	gap: 15px;
    background: #fff;
}

.customer .mainContainer .menuItem .item svg{
	border-radius: 50%;
	width: 30px;
	height: 30px;
	padding: 5px;
	cursor: pointer;
}

.customer .mainContainer .menuItem .item .decrease{
	color: #ffa5a5;
    background: #eaeaea;
}

.customer .mainContainer .menuItem .item .increase{
	color: #40b1a4;
    background: #eaeaea;
}

.customer .mainContainer .menuItem .item .header{
	position: fixed;
	top: 10px;
	right: 10px;
	display: flex;
	gap: 10px;
	transition: .3s;
}

.customer .mainContainer .menuItem .item .header .name{
	display: none;
}

.customer .mainContainer .menuItem .item .header.scroll{
	background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    padding-left: 10px;
    border-bottom: 2px solid var(--topbar-border-color);
}

.customer .mainContainer .menuItem .item .header.scroll .name{
	display: flex;
	width: 100%;
}

.customer .mainContainer .menuItem .item .header .close{
	background: #fff;
	border-radius: 50%;
}

.customer .mainContainer .menuItem .item .header.scroll .close{
	background: unset;
}

.customer .mainContainer .menuItem .item .close{
	display: flex;
}

.customer .mainContainer .menuItem .item .close svg{
	width: 35px;
	height: 35px;
	cursor: pointer;
}

.customer .mainContainer .menuItem .item .footer .button{
	width: 100%;
    display: flex;
    justify-content: space-between;
    background: #00796b;
    border-radius: 5px;
    color: #fff;
    padding: 10px 15px;
	cursor: pointer;
}

.customer .mainContainer .menuItem .item .body{
    /* min-height: calc(100vh - 129px);
    max-height: calc(100vh - 129px); */
	min-height: calc(100vh - 64px - 67px);
	max-height: calc(100vh - 64px - 67px);
    overflow-y: auto;
}

.customer .topBar .call{
	background: #fb3c4c;
    display: flex;
    padding: 7px;
    /* justify-content: center; */
    align-items: center;
    gap: 5px;
    color: white;
    border-radius: 5px;
}

.customer .mainContainer .basket{
	font-size: 0.16em;
    /* padding: 20px; */
    padding-top: 0;
}

.customer .mainContainer .basket .flex{
	/* display: flex;
	justify-content: space-between;
	align-items: center; */
}

.customer .mainContainer .basket .topic, .customer .mainContainer .CustomerBill .topic{
	font-size: 1.4em;
	font-weight: 600;
}

.customer .mainContainer .basket .edit{
	font-size: 1em;
    color: blue;
    font-weight: 600;
}

.customer .mainContainer .basket .flex-2{
	/* display: flex;
    justify-content: space-between;
    margin-top: 10px;
    border-bottom: solid 1px lightgray;
    padding-bottom: 5px; */
}

.customer .mainContainer .basket .add{
	font-size: .8em;
    border: solid 1px;
    padding: 5px;
    border-radius: 3px;
    border-color: #fb3c4c;
    color: #fb3c4c;
}

/* .customer .mainContainer .basket .amount{
    border: solid 1px gray;
    padding: 5px;
    border-radius: 5px;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85%;
} */

.customer .mainContainer .basket .option{
	font-size: 0.9em;
    color: slategray;
}

.customer .mainContainer .basket .image{
    display: flex;
}

.MemberDialog{
	width: 75%;
    font-size: 0.16em;
    background: white;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 5%;
}
.MemberDialog input{
	border-radius: 5px;
    border-color: gray;
	border: solid 1px;
	height: 30px;
    width: 100%;
    margin-top: 8px;
}

.MemberDialog .submit{
	width: 35%;
    background: green;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    /* display: flex; */
    color: white;
}

.CallDialog{
	background: white;
    font-size: 0.18em;
    width: 80%;
    /* height: 80%; */
    border-radius: 10px;
    position: absolute;
    top: 5%;
    padding: 20px;
    padding-bottom: 40px;
}

.CallDialog .card-callList{
	width: 40%;
    border: solid 1px;
    border-color: gray;
    border-radius: 10px;
    font-size: 0.8em;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.CallDialog .card-call{
	display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.dialog{
	backdrop-filter: blur(8px) brightness(90%) saturate(50%) !important; 
}

.customer .topBar .list-table{
    display: flex;
    border: solid 1px lightgray;
    padding: 5px;
    /* padding-left: 10px; */
    border-radius: 5px;
    gap: 5px;
    /* padding-right: 10px; */
    font-weight: 600;
    width: 30%;
    justify-content: center;
}

.customer .topBar .table{
	border-right: solid 1px lightgray;
    padding-right: 5px;
}

.customer .CustomerHistory{
	font-size: 0.16em;
    padding: 20px;
    padding-top: 0;
}

.customer .CustomerHistory .topic{
	font-size: 1.4em;
	font-weight: 600;
	margin-bottom: 20px;
}

.customer .CustomerHistory .image{
	border-radius: 5px;
    height: 60px;
    /* background: green; */
    width: 60px;
}

.customer .CustomerHistory .status{
	background:#ecb731;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.8em;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer .CustomerHistory .historyList{
	display: flex;
    justify-content: space-between;
    border-bottom: solid 1px lightgray;
    padding-bottom: 10px;
    padding-top: 10px;
    /* margin-top: 20px; */
}

.search input{
    border-radius: 5px;
    /* width: 100px; */
    border: solid 1px gray;
    width: 120px;
}

.search-box{
    gap: 5px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.customer .basket .amount-right{
    display: flex;
    /* align-items: center; */
    gap: 12px;
    font-size: 1.5em;
}

.customer .basket .price{
    text-align: end;
}

.customer .CustomerBill{
    font-size: 0.16em;
    padding: 20px;
    padding-top: 0;
}

.customer .TopBarBasket, .customer .TopBarPayment, .customer .TopBarHistory{
    font-size: .15em;
    /* border-bottom: 1px solid var(--topbar-border-color); */
    display: flex;
    flex-direction: column;
    /* height: 100px; */
    padding: 20px;
    padding-bottom: 10px;
}

.customer .TopBarBasket .close, .customer .TopBarPayment .close, .customer .TopBarHistory .close{
    text-align: end;
}

.customer .TopBarBasket .topic, .customer .TopBarPayment .topic, .customer .TopBarHistory .topic{
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
}

.customer .CustomerBill .table{
    font-size: 0.8em;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 17px;
    padding-left: 10px;
    padding-right: 10px;
}

.customer .CustomerBill .flex{
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    border-bottom: solid 1px lightgray;
    padding-bottom: 10px;
}

.customer .CustomerBill .amount{
    color: #00796B;
    font-weight: 600;
    font-size: 1.3em;
}

.customer .CustomerBill .option{
    font-size: 0.8em;
    color: indianred;
}

.customer .CustomerBill .totalList{
    font-size: 1.2em;
}

.customer .basket .basketItemList .image img{
	min-width: 100%;
    max-width: 55px;
    max-height: 55px;
    min-height: 55px;
    object-fit: cover;
    border-radius: 5px;
}

.customer .basket .basketItemList{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.customer .mainContainer .basket .menuItem .item {
    font-size: 18px !important;
}

.customer .mainContainer .CustomerSearch .itemList {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr; */
    gap: 10px;
    /* height: calc(100vh - 178px); */
    /* overflow-y: overlay; */
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.customer .mainContainer .CustomerSearch .itemList .item {
    /* text-align: center; */
    /* cursor: pointer; */
    /* display: flex; */
    /* border: 1px solid var(--topbar-border-color); */
    /* box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 10%); */
    /* flex-direction: column; */
    /* border-radius: 5px; */
    background: white;
    font-size: .16em;
    line-height: 1.5em;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    border-bottom: solid 1px lightgray;
    /* padding-bottom: 10px; */
    border-radius: 5px;
}

.customer .mainContainer .CustomerSearch .itemList .item .image {
    width: 35%;
}

.customer .mainContainer .CustomerSearch .itemList .item .detail{
    width: 100%;
}

.TopBarSearch{
    display: flex;
    padding: 20px;
    gap: 10px;
    align-items: center;
    /* padding-bottom: 10px; */
}

.TopBarSearch .search input{
    border: 0px solid;
    font-size: 0.17em;
    width: 100%;
    outline: none !important;
    /* font-weight: 500; */
    /* align-items: center; */
}

.ListDialog{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #008CBA;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: .10s ease;
    top: 25%;
}

.customer .topBar .categoryList .item{
    font-size: 1.2em;
    font-weight: 700;
    border-bottom: 0.5px solid lightgray;
    padding: 10px;
}

.customer .topBar .avatar{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.customer .topBar .avatar img{
    height: 34px;
    border-radius: 50%;
}

.customer .pos .topBar .menu {
    width: unset !important;
}

.customer .pos .mainContainer .itemList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    overflow-y: overlay;
    padding: 10px;
    width: 100%;
    height: 100%;
}

.customer .pos .itemList .item{
	background: var(--bar-background-color);
	border-radius: var(--border-radius);
	border-color: var(--topbar-border-color);
}

.customer .pos .itemList .item img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    background: #e5f1f0;
}

.customer .pos .itemList .item .detail {
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    background: rgb(0 0 0 / 70%);
    width: 100%;
    color: #fff;
    bottom: 0;
    border-radius: 0 0 5px 5px;
}

.customer .pos .itemList{	
	/* display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr; */
    gap: 10px;
	/* height: calc(100vh - 184px); */
	height: calc(100vh - 160px);
    overflow-y: overlay;
}

.customer .pos .itemList .item{
	text-align: center;
    cursor: pointer;
    border: 1px solid var(--topbar-border-color);
    display: flex;
    width: 100%;
    /* flex-direction: column; */
    aspect-ratio: 1 / 1;
	position: relative;
}

.customer .pos .itemList .item .image{
	background: #e5f1f0;
	border-radius: 5px 5px 0 0;
}

.customer .pos .itemList .item img{
	position: absolute;
	min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
	border-radius: var(--border-radius);
	background: #e5f1f0;
    top: 0;
    left: 0;
}

.customer .pos .itemList .item .name{
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    white-space: nowrap;
}

.customer .pos .itemList .item .detail{
	padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    background: rgb(0 0 0 / 70%);
    width: 100%;
    color: #fff;
    bottom: 0;
    border-radius: 0 0 5px 5px;
}

.customer .pos .itemList .item.text img{
	display: none;
}

.customer .pos .itemList .item.text .detail{
	position: relative;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.5em;
    background: #e5f1f0;
    color: #00796b;
}

.customer .mainContainer .historyCard{
	font-size: 0.16em;
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #cacaca;
    padding-top: 20px;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: 1.5fr 7fr 3fr;
    text-align: left;
}

.customer .mainContainer .historyCard div:last-child {
    text-align: right;
    align-items: flex-end;
}

.customer .mainContainer .history-menuList{
	font-size: 0.16em;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
    color: gray;
    cursor: pointer;
    user-select: none;
}

.customer .mainContainer .history-menuList .menu-item {
    padding-bottom: 5px;
}

.customer .mainContainer .history-menuList .menu-item.selected {
    border-bottom: 5px solid var(--menu-button-selected-color);
}

.customer .mainContainer .reorder-btn{
    background: #ccf8dd;
    border-radius: 5px;
    padding: 2px 5px;
    color: #27b469;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.customer .mainContainer .history-card-container {
    width: 100%;
}

.customer .mainContainer .history-card-container .history-icon {
    display: flex;
    align-items: flex-start;
    padding: 7px;
    background: #f3f3f3;
    height: 39px;
    width: 39px;
    border-radius: 50%;
}

.customer .mainContainer .history-card-container .history-icon svg {
    stroke: #27b469;
}

.customer .mainContainer .history-card-container .history-card-not-found{
    font-size: 0.16em;
    height: 55.9px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.customer .pos .dialog .item {
    font-size: 0.16em;
    min-width: 550px;
    max-width: 550px;
    background-color: white;
    position: relative;
    height: fit-content;
    border-radius: 5px;
    margin: auto;
}

.customer .pos .dialog svg {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.customer .pos .dialog .item .header {
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    right: 5px;
    top: 5px;
}

.customer .pos .dialog .item .header .close {
    background: white;
    border-radius: 50%;
}

.customer .pos .dialog .item .header .name {
    display: none;
}

.customer .pos .dialog .item img {
    max-width: 100%;
    min-width: 100%;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px 5px 0 0;
    background: #e5f1f0;
}

.customer .pos .dialog .item .box {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.customer .pos .dialog .item .box .name {
    border-bottom: 1px solid var(--topbar-border-color);
    border: none;
    padding: 0 20px;
}

.customer .pos .dialog .item .box .detail_body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 350px;
    overflow-y: auto;
    padding: 0 20px;
}

.customer .pos .dialog .item .box .name .bold {
    text-align: center;
    font-size: 1.3em;
}

.customer .pos .dialog .item .box .group .options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
    row-gap: 5px;
}


.customer .pos .dialog .item .description {
    font-size: .9em;
    padding: 5px 0;
    color: #8f8f8f;
}

.customer .pos .dialog .item .box .detail_body .favorite-box {
    display: none !important;
}


.customer .pos .dialog .footer {
    font-size: 1em;
    display: flex;
    position: initial;
    gap: 10px;
    padding: 10px;
    padding-top: 0;
}

.customer .pos .itemList .item .detail .amount {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #00796b;
    background: #e5f1f0;
    border-radius: 50%;
    padding: 2px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .9em;
}

.customer .pos .basket {
    font-size: 0.16em;
    min-width: 550px;
    max-width: 550px;
    background-color: white;
    position: relative;
    height: fit-content;
    border-radius: 5px;
    margin: auto;
    padding: 10px 0;
}

.customer .pos .basket .flex-2 {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-bottom: 5px;
    padding: 0 10px;
}

.customer .pos .basket .edit {
    font-size: 0.7em;
    color: blue;
    cursor: pointer;
}

.customer .mainContainer .addAmount, .customer .mainContainer .deleteAmount {
    display: flex;
}

.customer .pos .addAmount, .customer .pos .deleteAmount {
    display: flex;
    width: 20px;
    align-items: center;
}

.customer .pos .basket .button {
    width: calc(100% - 20px);
    text-align: left;
    border-radius: var(--border-radius);
    background: #00796B;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin: 10px auto;
    margin-top: 10px;
    margin-bottom: 0;
    cursor: pointer;
}

.customer .pos .basket .button .amount {
    background: #e5f1f0;
    color: #00796b;
    text-align: center;
    width: 20px;
    border-radius: 5px;
}

.customer .pos .basket .close{
    position: absolute;
    top: 8px;
    right: 8px;
}

.customer .pos .basket .topic{
	font-size: 1.3em;
}

.customer .history-container {
    padding: 20px;
}

.customer .history-container .topic {
    font-size: 0.2em;
}

.customer .pos .history-container {
    height: fit-content;
    max-height: 70vh;
    min-width: 550px;
    max-width: 550px;
    background-color: white;
    position: relative;
    border-radius: 5px;
    margin: auto;
    padding: 10px 0;
}

.customer .pos .history-container .history-menuList {
    font-size: 0.16em;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    padding: 20px;
    color: gray;
    cursor: pointer;
    user-select: none;
}

.customer .pos .history-menuList .menu-item.selected {
    border-bottom: 5px solid var(--menu-button-selected-color);
}

.customer .pos .history-container .history-card-container {
    padding: 0 20px;
}

.customer .pos .history-container .history-card-container .historyCard {
    display: grid;
    grid-template-columns: 1fr 7fr 2fr;
    text-align: left;
}

.customer .pos .history-container .history-card-container .historyCard div:last-child {
    text-align: right;
}

.customer .pos .history-container .history-card-container .historyCard .reorder-btn{
    background: #ccf8dd;
    border-radius: 15px;
    padding: 2px 5px;
    color: #27b469;
    font-weight: 600;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.customer .pos .history-card-container .history-icon {
    display: flex;
    align-items: flex-start;
    padding: 7px;
    background: #f3f3f3;
    height: 39px;
    width: 39px;
    border-radius: 50%;
}

.customer .pos .history-card-container .history-icon svg {
    stroke: #27b469;
}

.customer .pos .history-card-container .history-card-not-found{
    font-size: 0.16em;
    height: 55.9px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.customer .pos .history-container .close {
    position: absolute;
    top: 8px;
    right: 8px;
}

.customer .pos .footerMenu {
    display: none;
}

.customer .pos .itemList .promotion{
	flex-direction: column;
    border-radius: var(--border-radius);
    padding: 0;
}

.customer .mainContainer .product-utility-icon {
    width: 36px;
    height: 36px;
}

.customer .mainContainer .CustomerSearch .product-utility-icon {
    width: 24px;
    height: 24px;
}

.customer .pos .product-utility-icon {
    width: 36px;
    height: 36px;
}

.customer .mainContainer .card-detail-container, .customer .modal .card-detail-container {
    display:flex;
    justify-content: space-between;
    width: 100%;
}

.customer .pos .card-detail-container {
    display:flex;
    justify-content: space-between;
    width: 100%;
}

.customer .mainContainer .CustomerSearch .card-detail-container {
    display:flex;
    justify-content: space-between;
    /* width: 65%; */
	width: 70%;
}

.customer .mainContainer .product-utility-icon-container {
    position: absolute;
    top: 5px;
    right: 5px;
}

.customer .pos .product-utility-icon-container {
    position: absolute;
    top: 5px;
    right: 5px;
}

.customer .mainContainer .CustomerSearch .product-utility-icon-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.customer .mainContainer .itemList .item .detail .description{
	display: none;
}

.customer .mainContainer .itemList.customerCategoryMenu .item, .customer .modal.customerCategoryMenu .item{
	flex-direction: row !important;
}

.customer .mainContainer .customerCategoryMenu .product-utility-icon-recommend, .customer .modal.customerCategoryMenu .item .product-utility-icon-recommend{
	display: none !important;
}

.customer .mainContainer .itemList.customerCategoryMenu .item .image, .customer .modal.customerCategoryMenu .item .image{
	/* width: 40%; */
	width: 30%;
}

.customer .mainContainer .customerCategoryMenu .product-utility-icon, .customer .modal.customerCategoryMenu .product-utility-icon{
	width: 25px;
	height: 25px;
}

.customer .mainContainer .itemList.customerCategoryMenu .item .detail, .customer .modal.customerCategoryMenu .item .detail{
	justify-content: space-evenly;
	gap: 0;
}

.customer .mainContainer .itemList.customerCategoryMenu .item .detail .name, .customer .modal.customerCategoryMenu .item .detail .name{
	font-weight: bold;
	-webkit-line-clamp: 1;
    line-clamp: 1;
}

.customer .mainContainer .itemList.customerCategoryMenu .item .detail .description, .customer .modal.customerCategoryMenu .item .detail .description{
	display: block;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.customer .modal{
	font-size: .16em;
}

.customer .topbar .profile .avatar{
	aspect-ratio: 1;
    object-fit: cover;
}