:root {
	--primary-color: #10ac84;
	--secondary-color: #1dd1a1;
	--danger: #ff4444;
	--warning: #ffbb33;
	--success: #00c851;
	--black: #2b2f32;
	--gray: #8a94ac;
	--bg-color: #f4f8fb;
	--sidemenu-wd: 275px;
	--box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

* {
	font-family: "Fira Sans Condensed", sans-serif;
	/*color: var(--gray);*/
}

body {
	width: 100%;
	font-size: 15px;
	background-color: var(--bg-color);
}

main {
	padding: 9.3em 2em 2em calc(var(--sidemenu-wd) + 2em);
}

a {
	color: var(--gray);
}

a:hover {
	text-decoration: none;
}

.btn {
	padding-left: 1.5em;
	padding-right: 1.5em;
	border-radius: 30px;
	font-size: 1em;
}

.portal-primary-btn {
	background-color: var(--primary-color);
	color: #fff;
}

.portal-primary-btn:hover {
	background-color: var(--secondary-color);
	color: #fff;
}

.portal-primary-btn > i {
	color: #fff;
}

.portal-warning-btn {
	background-color: var(--warning);
	color: #fff;
}

.portal-warning-btn:hover {
	background-color: #ff8800;
	color: #fff;
}

.portal-warning-btn > i {
	color: #fff;
}

.portal-disabled-btn {
	background-color: #cfd8dc;
	cursor: default !important;
}

.portal-disabled-btn:hover {
	color: var(--gray);
}

.portal-disabled-btn > i {
	/* color: #fff; */
}

.text-black {
	color: var(--black);
}

.font-weight-bold {
	font-weight: 700;
}
/* =========================================================================================

Portal Timeline

=========================================================================================== */

.portal-tracker {
	background-color: #fff;
	padding: 2em;
	margin-bottom: 2em;
	border-radius: 20px;
	box-shadow: var(--box-shadow);
}

.portal-timeline {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
	margin-bottom: 40px;
}

.portal-timeline__item {
	position: relative;
}

.portal-timeline__node {
	width: 25px;
	height: 25px;
	background-color: var(--gray);
	border-radius: 50%;
}

.portal-timeline__item.portal-timeline__item--active .portal-timeline__node {
	border: 5px solid var(--primary-color);
	background-color: #fff;
}

.portal-timeline__title {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.portal-timeline__item.portal-timeline__item--active .portal-timeline__title {
	display: block;
	color: var(--primary-color);
	font-weight: 600;
}

.portal-timelime__bg-line-container {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	height: 3px;
	display: flex;
	flex-direction: row;
}

.portal-timeline__line {
	height: 100%;
	width: 50%;
	background-color: var(--gray);
}

.portal-timeline__line.portal-timeline__line--active {
	background-color: var(--primary-color);
}

.portal-tracker__detail-item {
	background-color: #fff;
	padding: 1em;
	border: 2px solid var(--primary-color);
	border-radius: 10px;
}

.portal-tracker__arrow-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
}

.portal-tracker__arrow {
	height: 15px;
	width: 15px;
	transform: rotate(45deg) translate(50%, 50%);
	background-color: #fff;
	border-top: 2px solid var(--primary-color);
	border-left: 2px solid var(--primary-color);
	bottom: 3px;
	position: relative;
	display: none;
}

.portal-tracker__arrow.portal-tracker__arrow--display {
	display: block;
}

.portal-tracker__detail-description {
	color: var(--black);
	margin-bottom: 1em;
}

/* =========================================================================================

Side Menu

=========================================================================================== */

.search {
	padding: 1em 2em;
	background-color: #fff;
	border-radius: 30px;
	box-shadow: var(--box-shadow);
}

.search__input {
	width: 100%;
	height: 100%;
	border: none;
	background-color: var(--bg-color);
    border-radius: 5px;
    padding: 0px 20px;
}

.search__parameter {
	width: 100%;
	height: 100%;
	border: none;
	background-color: var(--bg-color);
    border-radius: 5px;
    padding: 0px 20px;
}

/* =========================================================================================

Side Menu

=========================================================================================== */

header,
.sidenav,
.bottom-nav {
	z-index: 1000;
}

.header--mobile {
	z-index: 1001;
}

.sidenav {
	background-color: #fff;
	width: var(--sidemenu-wd);
	padding: 2em 3em;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.company {
	width: 100%;
	margin-bottom: 2em;
}

.company__image {
	width: 100%;
	margin-bottom: 0.7em;
}

.company__name {
	font-size: 0.8em;
}

.sidenav__item {
	padding: 0.7em 0;
	display: block;
	color: var(--gray);
	position: relative;
}

.sidenav__item:hover {
	text-decoration: none;
}

.sidenav__item:hover {
	text-decoration: none;
	color: var(--primary-color);
}

.sidenav__item:hover i {
	text-decoration: none;
	color: var(--primary-color);
}

.sidenav__item--active {
	color: var(--primary-color);
	font-weight: 700;
}

.sidenav__item--active i {
	color: inherit;
}

.active-icon {
	display: none;
	position: relative;
}

.active-icon::before {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.sidenav__item--active .active-icon {
	display: block;
	position: absolute;
	left: -1.5em;
	top: 50%;
	transform: translateY(-50%);
}

.system-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: #fff;
	padding: 1em 3em;
	display: flex;
	flex-direction: row;
}

.system-name__logo {
	height: 100%;
	margin-right: 1em;
}

.system-name__logo > img {
	height: 100%;
}

.system-name__name {
	color: var(--black);
	display: flex;
	align-items: center;
	font-size: 0.7em;
	font-weight: 600;
}

.system-name__name .highlight {
	font-weight: 800;
	color: inherit;
	margin: 0 0.3em 0 0.2em;
}

header {
	padding: 1em 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--bg-color);
}

.page-title {
	color: var(--black);
	font-weight: 600;
}

.page-title > i {
	color: var(--primary-color);
}

.header__menu {
	display: flex;
	justify-content: flex-end;
	--image-ht: 20px;
}

.header__item {
	cursor: pointer;
	position: relative;
	/* transition: 0.3s; */
}

.header__item:hover {
	/* opacity: 0.5; */
}

.menu__icon {
	position: absolute;
	top: 16px;
	right: 0.5em;
}

.header__dropdown {
	position: relative;
}

.dropdown__item {
	position: absolute;
	top: 100%;
	right: 0.5em;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: var(--box-shadow);
	border: 1px solid gainsboro;
	display: none;
	cursor: auto;
}

.profile__menu .dropdown__item {
	min-width: 200px;
}

.profile__menu .dropdown__header {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.profile__menu .dropdown__name {
	text-align: left;
	border: none;
	color: var(--gray);
}

.dropdown__header .header__image-container {
	width: 40px;
	height: 40px;
}

.dropdown__header .header__image-container > .dropdown__logo {
	width: 100%;
	border-radius: 50%;
}

.dropdown__close {
	position: absolute;
	top: 1em;
	right: 1.5em;
	color: gainsboro;
	cursor: pointer;
}

.header__dropdown--active .dropdown__item {
	display: block;
}

.dropdown__header {
	text-align: center;
	border-bottom: 1px solid gainsboro;
}
.dropdown__logo {
	margin-bottom: 0.5em;
}

.dropdown__name {
	color: var(--black);
	border: 1px solid gainsboro;
	padding: 0.3em 0.7em;
	border-radius: 30px;
}

.dropdown__header {
	padding: 1.5em 1.5em 1em 1.5em;
}

.dropdown__header {
	padding-top: 1.5em;
	padding-bottom: 1em;
}

.dropdown__option {
	padding-top: 1em;
	padding-bottom: 1.5em;
}

.dropdown__option i {
	color: var(--primary-color);
}

.dropdown__option .branch__item {
	margin-bottom: 0;
	padding: 1em;
	cursor: pointer;
}

.dropdown__option .branch__item:hover {
	background-color: #eee;
}

.dropdown__option .branch__name {
	font-size: 0.7em;
}

.dropdown__logo {
	width: 80%;
}

.branch__menu {
	padding: 1em 2em 1em 1em;
}

.branch__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	margin-bottom: 1em;
}

.branch__item:last-child {
	margin-bottom: 0;
}

.branch__logo {
	height: 1em;
	margin-right: 0.7em;
	display: flex;
	align-items: center;
}

.branch__logo > img {
	height: 100%;
}

.profile__menu {
	display: flex;
	flex-direction: row;
	padding: 1em 2em 1em 1em;
}

.profile__image {
	height: var(--image-ht);
	/* padding-bottom: 100%; */
	margin-right: 0.7em;
	overflow: hidden;
}

.profile__image > img {
	border-radius: 50%;
	height: 100%;
	/* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}

.cart__menu {
	padding: 1em;
}

.cart__notif {
	position: relative;
}

.cart__notif__number {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-100%);
	background-color: #ff4444;
	height: 1.4em;
	width: 1.4em;
	border-radius: 50%;
	text-align: center;
	z-index: 10000;
}

.cart__notif__number > span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 0.8em;
}

.cart__menu i {
	color: var(--primary-color);
}

.notif__menu {
	padding: 1em;
}

.notif__menu i {
	color: var(--primary-color);
}

.cart {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 600px;
	z-index: 1001;
	background-color: #fff;
	box-shadow: var(--box-shadow);
	padding: 2em;
	transform: translateX(100%);
}

.cart.cart--display {
	transform: translateX(0);
}

.cart__title {
	margin-bottom: 1.5em;
	position: relative;
}

.cart__close-icon {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	color: var(--gray) !important;
	cursor: pointer;
}
.cart-table__titles {
	margin-bottom: 2em;
}

.cart-table__item {
	margin-bottom: 0.2em;
	position: relative;
}

.cart-table__delete-icon {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.cart__footer {
	display: inline;
	/*flex-direction: row;*/
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5em;
	box-shadow: var(--box-shadow);
	background-color: #fff;
}

.cart-table__total {
	margin-bottom: 0;
}

.cart-table__total > span {
	color: var(--black);
}

.cart__button {
	text-align: right;
}

/* ======================= mobile ================================= */

.bottom-nav {
	display: flex;
	flex-direction: row;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	justify-content: space-around;
	background-color: #fff;
	box-shadow: var(--box-shadow);
	padding-left: 50px;
}

.bottom__item {
	position: relative;
	padding-bottom: 10px;
    padding-top: 30px;
    width: 60px;
}

.bottom__item > i {
	color: var(--gray);
	transform: translate(-50%, -50%);
	font-size: 1.3em;
}

.bottom__item.bottom__item--active i,
.bottom__item.bottom__item--active .bottom__title {
	color: var(--primary-color);
}

.bottom__title {
	font-size: 0.7em;
	transform: translateX(-50%);
	text-align: center;
}

.header--mobile {
	height: 60px;
	background-color: #fff;
	box-shadow: var(--box-shadow);
	display: flex;
	flex-direction: row;
	align-items: center;
	/* justify-content: space-between; */
	padding: 0.5em 1em;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.search--mobile {
	display: flex;
	justify-content: center;
}

.search__mobile__container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	display: none;
}

.search__mobile__container.search__mobile__container--display {
	display: block;
}

.search-icon {
	position: absolute;
	left: 17px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray) !important;
}

.search--mobile button {
	border: none;
	padding-left: 3em;
	height: 40px;
	border-radius: 10px;
	background-color: #eee;
	width: 100%;
	text-align: left;
}

.header__item__mobile {
	display: flex;
	align-items: center;
	padding: 0 0.5em;
}

.header__item__mobile > i {
	color: var(--primary-color);
	font-size: 1.3em;
}

.header__item__mobile > .branch__image {
	/*border-radius: 50%;*/
	height: 30px;
	/*width: 30px;*/
}

/* ======================= mobile ================================= */

/* =========================================================================================

Shop Page

=========================================================================================== */

.portal-table {
	/* --width: 1200px;
	max-width: var(--width); */
}

.portal-table__header {
	width: 100%;
}

.portal-table__header {
	margin-bottom: 3em;
}

.portal-table__titles {
	display: flex;
	flex-direction: row;
	/* margin-bottom: 1.5em; */
}

.portal-table__container {
	/* display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between; */
}

.portal-table__container.portal-table__container--shadow .portal-table__titles,
.portal-table__container.portal-table__container--shadow .portal-table__item {
	padding: 1em 0.5em;
}

.portal-table__item {
	border-radius: 20px;
	border: none;
	margin-bottom: 1em;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}

.portal-table__container--shadow .portal-table__item {
	background: #ffffff;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}
.portal-table__column > input {
	border: none;
	border-radius: 30px;
	height: 100%;
	padding: 0 1em;
	background-color: var(--bg-color);
	height: 40px;
}

.portal-table__product {
	color: var(--black);
	font-weight: 600;
}

.portal-unit__unit {
	position: relative;
}

.unit__arrow {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
}

.portal-table__quantity {
	/* display: flex;
	flex-direction: row;
	align-items: center; */
	justify-content: space-between;
	position: relative;
}

.quantity__input {
	/* margin: 0 5px; */
	width: 100%;
	padding: 0 3em;
	height: 50px;
	text-align: center;
}

.quantity__signs {
	font-size: 1.7em;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.quantity__minus {
	left: 25px;
}

.quantity__plus {
	right: 25px;
}

.portal-table__button {
	display: flex;
	justify-content: center;
}

.portal-table__branch select {
	border: none;
	background-color: transparent;
}

.portal-table__status {
	color: var(--danger);
}

.ui-selectmenu-button {
	background-color: var(--bg-color) !important;
	border-radius: 30px;
	border: none !important;
	width: 100% !important;
	height: 100% !important;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: flex-end;
	padding-left: 1.5em;
	padding-right: 1.5em;
}

.ui-selectmenu-icon {
	display: none;
}

.ui-selectmenu-button:focus,
.portal-table input:focus {
	outline-color: transparent !important;
}

/* =========================================================================================

Checkout Page

=========================================================================================== */

.checkout__delete-icon {
	cursor: pointer;
}

.checkout__footer-container {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 9em 2em 0 calc(var(--sidemenu-wd) + 2em);
	/* width: 100%; */
}

.checkout__footer {
	background-color: #fff;
	padding: 1.5em 1.5em 2.5em;
	box-shadow: var(--box-shadow);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	justify-content: space-between;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
}

.receiver__name {
	margin-bottom: 0.5em;
}

.receiver__name input, .receiver__name textarea {
	color: var(--black);
	font-weight: 700;
	border: none;
	border-radius: 30px;
	width: 100%;
	padding: 0.5em 1em;
	background-color: rgba(220, 220, 220, 0.3);
}

.receiver__name select {
	border: none;
	color: var(--black);
	font-weight: 700;
	border-radius: 30px;
	padding: 0.5em 1em;
	background-color: rgba(220, 220, 220, 0.3);
}

.receiver__name select:focus {
	outline-color: transparent !important;
}

.checkout__total span {
	color: var(--black);
	font-weight: 700;
}

.receiver__input {
	background-color: #fff;
}

/* .checkout__button {
	padding-left: 3em;
	padding-right: 3em;
} */

.checkout__footer .footer__header {
	color: var(--black);
	font-weight: 700;
	position: relative;
}

.checkout__footer--display-icon,
.checkout__footer--close-icon {
	/* font-size: 1.5em; */
	position: absolute;
	top: 0;
	right: 25px;
	z-index: 1003;
}

.checkout__footer--display-icon {
	display: none;
}

.checkout__footer--close .checkout__footer--display-icon {
	display: block;
}

.checkout__footer--close .checkout__footer--close-icon {
	display: none;
}

.checkout__footer .footer__header {
	cursor: pointer;
}

/* =========================================================================================

PAyment Done Page

=========================================================================================== */

.payment-done__image {
	max-width: 40%;
}

.payment-done__title {
	color: var(--black);
	font-weight: 700;
}

@media (max-width:992px){
  .pager{
    visibility: hidden;
  }
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.page-item:last-child .page-link {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}
/* =========================================================================================

Order Page

=========================================================================================== */

.receive__button btn {
	background-color: var(--warning);
}

/* =========================================================================================

Inventry item Page

=========================================================================================== */

.inventory-item-page .portal-table__item {
	border-bottom: 1px solid gainsboro;
	border-radius: 0;
	padding-bottom: 1em;
}

.inventory-item-page .portal-table__titles {
	display: flex;
}

.item__details {
	padding: 1.5em;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: var(--box-shadow);
}

.item__content {
	margin-bottom: 0;
	color: var(--black);
	font-weight: 700;
}

.item__content > span {
	position: relative;
	color: inherit;
}

.quantity__decrease {
	color: var(--danger);
}

.quantity__increase {
	color: var(--success);
}

.inventory-item-page .portal-table__date {
	color: var(--black);
	font-weight: 600;
}

.quantity-adjust__container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 4em 2em 2em 2em;
	z-index: 1000000000000000000000000;
	display: none;
}

.quantity-adjust__container.quantity-adjust__container--display {
	display: block;
}

.quantity-adjust {
	text-align: center;
	padding: 1.3em;
	border-radius: 20px;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	margin: 0 auto;
	max-width: 250px;
	display: flex;
	flex-direction: column;
	z-index: 200000;
	position: relative;
}

.quantity-adjust__close-icon {
	position: absolute;
	top: 1.5em;
	right: 1.5em;
	cursor: pointer;
}

.quantity-adjust--overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.quantity-adjust__input {
	margin-bottom: 1.5em;
	border: none;
	border-radius: 30px;
	padding: 0.7em 1em;
	box-shadow: var(--box-shadow);
	text-align: center;
}

.quantity-adjust__icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.quantity-adjust__icon-plus {
	right: -1.5em;
	/* color: var(--success); */
}

.quantity-adjust__icon-minus {
	left: -1.5em;
	/* color: var(--danger); */
}

/* REPORT ORDER MODAL CONTAINER */

.report-order__container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 4em 2em 2em 2em;
	z-index: 1000000000000000000000000;
	display: none;
}
.report-order__container.report-order__container--display {
	display: block;
}
.report-order {
	text-align: center;
	padding: 1.3em;
	border-radius: 20px;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	margin: 0 auto;
	max-width: 500px;
	width: 500px;
	display: flex;
	flex-direction: column;
	z-index: 200000;
	position: relative;
}

.report-order__close-icon {
	position: absolute;
	top: 1.5em;
	right: 1.5em;
	cursor: pointer;
}

.report-order--overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -1;
}




/* jc */
.form-signin { max-width: 330px; margin: 170px auto 0; background: #fff; border-radius: 5px; -webkit-border-radius: 5px; }
.img-responsive { display: block; max-width: 100%; height: auto; }
.branch__item.branch_select.active { color: var(--primary-color); font-weight: 700; cursor: default; }
.page-item .page-link { color: var(--primary-color); }
.page-item.disabled .page-link { color: var(--primary-grey); }
.portal-table__item.cart-table__item { padding: 10px 0 10px 10px; align-items: center; }
.page-overlay { z-index: 999; position: fixed; top: 0; left: 0; right: 0; bottom: 0; display: none; background-color: rgba(0, 0, 0, 0); }
.link-style { color: var(--primary-color); font-weight: 600; }
.cart .cart__table { overflow-y: scroll; height: 84%; }
.portal-timeline__item.done .portal-timeline__node { border: 5px solid var(--primary-color); background-color: var(--primary-color); }
.portal-timeline__item.done .portal-timeline__title { display: block; color: var(--primary-color); font-weight: 600; }
.portal-timeline__line.done { background-color: var(--primary-color); }

.pos-container { height: 82vh; }
.pos-container > .row { height: 100%; position: relative; width: 100%; margin: 0;}
.pos-container .pos-item { margin: 5px; justify-content: center; height: 150px; background-color: var(--primary-color); color: white; }
.pos-container .pos-item .overlay { width: 100%; height: 100%; position: absolute; z-index: 2; background-color: rgba(0, 0, 0, 0.5); cursor: default; text-align: center; }
.pos-container .pos-item .overlay span { position: relative; top: 70%; font-size: 30px; font-weight: normal; letter-spacing: 5px; }

@media only screen and (min-width: 992px) { /* click event on ios devices are not working if there's hover */
	.pos-container .pos-item:hover { cursor: pointer; box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.3); position: relative; top: -2px; transition: 0.2s; color: var(--yellow); }
}

.pos-container .pos-cart { height: 100%; box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3); border-radius: 10px 10px; }
.pos-container .pos-cart .close-pos-cart { position: absolute; top: 2px; right: 6px; color: #fff; font-size: 20px; width: 20px; text-align: center; cursor: pointer; display: none; }
.pos-container .bg-primary { background-color: var(--primary-color) !important; }
.pos-container .pos-cart-header { height: 50px; position: absolute; width: 100%; margin-left: -15px; }
.pos-container .pos-cart-header > div { height: 100%; align-items: center; width: 100%; border-radius: 10px 10px 0 0; }
.pos-container .pos-cart-items { height: 80%; margin-top: 50px; overflow-y: scroll; overflow-x: hidden; }
.pos-container .pos-cart-items .remove-item { font-size: 20px; cursor: pointer; opacity: 0; }
.pos-container .pos-cart-items .row:hover > .remove-item { opacity: 1; padding-left: 20px; transition: 0.2s; }
.pos-container .pos-cart-footer { align-items: center; position: absolute; bottom: 0; height: 100px; font-size: 18px; width: 100%; border-radius: 0 0 10px 10px; }
.pos-item-list { flex: 0 0 64.666667%; max-width: 64.666667%; height: 100%; }
.pos-item-list > .row { height: 90%; overflow-y: scroll; overflow-x: hidden; justify-content: center; background-color: #fff; box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3); align-content: flex-start; }
.pos-item-list .footer-btns { position: absolute; bottom: 0; left: 0; }
.pos-cart-notif-number { position: absolute; top: 30%; right: 0 !important; transform: translateY(-100%); background-color: #ff4444; height: 2em; width: 2em; border-radius: 50%; text-align: center; z-index: 10000; }
.pos-cart-notif-number > span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 0.8em; }

.mobile-pos-cart-btn, .mobile-add-account-btn { display: none; color: #fff !important; position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3); }
.mobile-pos-cart-btn .fas { margin-top: 11px; font-size: 25px; margin-left: -4px; }
.mobile-add-account-btn .fas { margin-top: 11px; font-size: 25px; margin-left: -1px; }

#item_qty_modal input::-webkit-outer-spin-button, #item_qty_modal input::-webkit-inner-spin-button { -webkit-appearance: none !important; }

.font-size-2 { font-size: 2rem; }
.col-1-point-5 { flex: 0 0 12.5%; max-width: 12.5%; }
.col-2-point-5 { flex: 0 0 20.833333%; max-width: 20.833333% }
.jq-toast-single { margin-top: 60px !important; }
div.dt-buttons{ float: right; }
.table-striped tbody tr:nth-of-type(odd) { background-color: rgba(120, 111, 166, 0.1); }

.cart-page { position: relative; height: 83vh; }
.cart-page .list-group { height: 82%; overflow-y: scroll; }
.cart-page .remove-cart-item { font-size: 27px; background: none; border: none; }
/*.cart-page .remove-cart-item:hover { cursor: pointer; }*/
.cart-page .cart-footer{ position: absolute; bottom: 0; right: 0; left: 0; background-color: #fff; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3); }

.confirm-link { width: 80%; margin: 0 auto; }
.confirm-link-logo { width: 60%; margin: 0 auto; padding: 50px 0; text-align: -webkit-center; }

.height-50 { height: 50px; }
.bg-disabled { background-color: rgba(108, 117, 125, 0.4) !important; }
.text-primary { color: #10ac84 !important; }
.text-logo { color: #10ac84 !important; font-family: fantasy; }
.overflow-y-50h { overflow-y: scroll; height: 50vh; }

.stretch-text { letter-spacing: 0.3vw; }
@page { size: 2.7in 10in; margin: 5px; }

.progressbar li { list-style: none; display: inline-block; width: 30.33%; position: relative; text-align: center; cursor: pointer; }
.progressbar li:before { content: ""; width: 30px; height: 30px; line-height : 30px; border: 1px solid #ddd; border-radius: 100%; display: block; text-align: center; margin: 0 auto 10px auto; background-color: #fff; }
.progressbar li:after { content: ""; position: absolute; width: 100%; height: 1px; background-color: #ddd; top: 15px; left: -50%; z-index : -1; }
.progressbar li:first-child:after { content: none; }
.progressbar li.active { color: var(--primary-color); }
.progressbar li.active:before { content: '✓'; border-color: var(--primary-color); }
.progressbar li.active:after { background-color: var(--primary-color); }

/* switch/checkbox */
.switch { position: relative; display: inline-block; width: 60px; height: 34px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; }
.switch .slider:before { position: absolute; content: "N"; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; -webkit-transition: .4s; transition: .4s; text-align: center; padding-top: 2px; }
.switch input:checked + .slider { background-color: #574b90; }
.switch input:focus + .slider { box-shadow: 0 0 1px #2196F3; }
.switch input:checked + .slider:before { content: "Y"; -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); }

.switch2 {position: relative;display: inline-block;width: 60px;height: 34px;}
  
.switch2 input { opacity: 0;width: 0;height: 0;}
  
.slider2 {position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;-webkit-transition: .4s;transition: .4s;}
.slider2:before {position: absolute;content: "";height: 26px;width: 26px;left: 4px;bottom: 4px;background-color: white;-webkit-transition: .4s;transition: .4s;}
input:checked + .slider2 {background-color: #574b90;}
input:focus + .slider2 {box-shadow: 0 0 1px #2196F3;}
input:checked + .slider2:before {-webkit-transform: translateX(26px);-ms-transform: translateX(26px);transform: translateX(26px);}
.slider2.round {border-radius: 34px;}
.slider2.round:before {border-radius: 50%;}

tr.disabled { background-color: rgb(175, 175, 175, 0.6) !important; }

.child-navs { padding: 1px 0px 10px 0px; background-color: var(--bg-color); margin: 10px 0 0 0; }
.delete-row-btn { font-size: 20px; cursor: pointer; margin: 0 auto; }

input[type=file] { padding: 3px; }

.image_div { height: 300px; }
.image_div img { width: 100%; height: 88%; object-fit: contain; }

.logo-container { height: 120px; }
.logo-container img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.logo-container.h50 { height: 50px; }
