:root {
  --kBackgroundColor: #d4ffcc;
  --kPrimaryColor: #0e5c00;
  --kPrimaryLightColor: #93ff80;
  --kDarkColor: #0d0d0d;
  --kError: #ff0303;
  --kBlack: #262626;
  --kGrey: #666666;
  --kWhite: #ffffff;
  --kYellow: #f9e900;
  --kRed: red;
  --kLine: #cccccc;
  --kOutline: #d2d3d7;
  --kPopupBlack: #202124;
  --kAlmostWhite: #f1f1f1;
  --kBlue: blue;
}

html,
body {
  margin: 0px;
  font-weight: 100;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0px;
  font-weight: 100;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
b {
  font-family: Alata;
  color: var(--kPrimaryColor);
}

p,
span,
small,
td,
i,
li,
label {
  font-family: DidactGothic;
  color: var(--kPrimaryColor);
}

ul {
  display: block;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.red-btn {
  background-color: var(--kRed) !important;
  color: var(--kWhite) !important;
}

@font-face {
  font-family: Alata;
  src: url(fonts/Alata-Regular.ttf);
  font-weight: bold;
}

@font-face {
  font-family: DidactGothic;
  src: url(fonts/DidactGothic-Regular.ttf);
  font-weight: 100;
}

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

::-webkit-scrollbar-track {
  box-shadow: none;
}

::-webkit-scrollbar-thumb {
  background: #7abf00;
  border-radius: 30px;
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb:horizontal {
  height: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e5e5e5;
}

.black {
  background-color: var(--kBlack);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

.logo {
  font-family: Alata;
  font-size: 45px;
  color: var(--kPrimaryColor);
  font-weight: bold;
  letter-spacing: -3px;
}

.horizontal-list {
  list-style: none;
  padding: 0px;
  padding-top: 10px;
}

.horizontal-list li {
  padding: 0px 15px;
  display: inline-block;
}

.center {
  text-align: center;
}

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

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

.horizontal-list li span {
  font-size: 30px;
  color: var(--kPrimaryColor);
  font-weight: bold;
  cursor: pointer;
}

.leftright {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  min-height: calc(100vh - 100px);
  box-sizing: border-box;
}

.leftright .left {
  width: 50%;
  padding: 15px;
}

.leftright .left div {
  width: 100%;
  max-width: 600px;
}

.leftright .right {
  width: 50%;
  padding: 15px;
}

.leftright .right img {
  width: calc(100% - 100px);
}

.chip {
  background-color: var(--kPrimaryColor);
  padding: 8px 23px;
  border-radius: 30px;
  font-family: DidactGothic;
  color: var(--kWhite);
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.sub-page-title {
  font-size: 50px;
  font-family: DidactGothic;
  color: var(--kBlack);
  margin-bottom: 15px;
}

.page-title {
  font-size: 70px;
  font-family: Alata;
  color: var(--kBlack);
  line-height: 75px;
}

.section-title {
  font-size: 50px;
  font-family: Alata;
  color: var(--kPrimaryColor);
  margin-bottom: 30px;
}

.category-card {
  width: 100%;
  max-width: 250px;
  display: inline-flex;
  margin: 15px;
  align-items: center;
  justify-content: start;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--kWhite);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: top;
  position: relative;
}

.category-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  margin: 10px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
}

.category-card .card-title {
  font-size: 20px;
  font-family: Alata;
  color: var(--kPrimaryColor);
  padding: 10px;
  text-align: left;
}

.category-card .footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin-top: 10px;
}

.category-card .more-options {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--kBlack);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: none;
}

.category-card .more-options h3 {
  color: var(--kWhite);
  text-transform: uppercase;
  padding: 10px;
  width: 50%;
  text-align: center;
}

.category-card .more-options h3:first-child {
  border-right: 1px solid var(--kWhite);
}

.category-card:hover .more-options {
  display: flex;
}

.product-card {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  background: var(--kWhite);
  border-radius: 5px;
  margin: 10px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
  vertical-align: top;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card .card-title {
  font-size: 18px;
  margin: 0px 10px 10px;
}

.product-card .price {
  font-size: 16px;
  font-family: Alata;
  color: var(--kPrimaryColor);
  padding: 10px;
}

.product-card .card-desc {
  font-size: 14px;
  font-family: DidactGothic;
  color: var(--kPrimaryColor);
  margin: 0px 10px 10px;
}

.product-card .footer {
  border-top: 1px solid var(--kPrimaryColor);
  padding-top: 10px;
}

.product-card .icon-button {
  width: 220px;
  border-radius: 0px;
  padding: 10px;
}

.product-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  margin: 10px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.1);
}

.product-card .icon-more-option {
  display: inline-block;
  position: relative;
}

.product-card .icon-more-option:hover span {
  display: block;
}

.product-card .icon-more-option span {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--kError);
  color: var(--kWhite);
  font-size: 15px;
  cursor: pointer;
  padding: 5px;
  border-radius: 30px;
}

.product-card .more-options {
  background-color: var(--kBlack);
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.product-card .more-options h3 {
  color: var(--kWhite);
  text-transform: uppercase;
  padding: 10px;
  width: 50%;
  text-align: center;
}

.product-card .more-options h3:first-child {
  border-right: 1px solid var(--kWhite);
}

.product-card:hover .more-options {
  display: flex;
}

.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kPrimaryColor);
  padding: 0px 15px;
  border-radius: 30px;
  cursor: pointer;
}

.icon-button span {
  font-size: 17px;
  color: var(--kWhite);
  pointer-events: none;
}

.icon-button p {
  color: var(--kWhite);
  font-family: DidactGothic;
  padding: 10px;
  font-size: 15px;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
}

.drawer-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  display: none;
  align-items: stretch;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  box-sizing: border-box;
  justify-content: end;
  z-index: 1;
}

.drawer {
  width: 100%;
  max-width: 50%;
  box-sizing: border-box;
  background-color: var(--kWhite);
  position: relative;
}

.drawer-overlay .drawer .emptybag {
  width: 100%;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box;
  display: none;
}

.drawer-overlay .drawer .emptybag span {
  font-size: 100px;
  color: var(--kPrimaryColor);
  margin-bottom: 30px;
}

.drawer-overlay .drawer .emptybag p {
  font-size: 20px;
  color: var(--kPrimaryColor);
  font-family: DidactGothic;
}

.drawer-overlay .drawer .filledbag {
  text-align: center;
}

.drawer-overlay .drawer .filledbag h2 {
  font-family: Alata;
  font-size: 20px;
  padding: 15px;
  color: var(--kPrimaryColor);
  box-sizing: border-box;
}

.drawer-overlay .drawer .filledbag .bag {
  width: 100%;
  table-layout: fixed;
  text-align: left;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.drawer-overlay .drawer .scroll-table {
  height: calc(100vh - 200px);
  overflow: scroll;
}

.drawer-overlay .drawer .filledbag .bag thead td {
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
  font-size: 13px;
  color: #3e3e3e;
  position: sticky;
  top: 0;
  background: var(--kWhite);
}

.drawer-overlay .drawer .filledbag .bag td {
  padding: 10px;
  vertical-align: top;
}

.drawer-overlay .drawer .filledbag .bag td small {
  display: block;
  padding-top: 5px;
  color: var(--kGrey);
}

.drawer-overlay .drawer .filledbag .bag .wider-td {
  width: 20%;
  text-align: center;
}

.drawer-overlay .drawer .filledbag .bag .wide-td {
  width: 15%;
  text-align: right;
}

.drawer-overlay .drawer .filledbag .right {
  text-align: right;
}

.drawer-overlay .drawer .footer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
}

.drawer-overlay footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: var(--kWhite);
  border-top: 1px solid #e5e5e5;
}

.drawer-overlay footer .icon-button {
  padding: 5px;
  color: var(--kWhite);
  border-radius: 0px;
  cursor: pointer;
}

.drawer-overlay footer .icon-button span {
  font-size: 25px;
}

.drawer-overlay footer .icon-button p {
  font-size: 25px;
  text-transform: uppercase;
  color: var(--kWhite);
  font-family: Alata;
}

.drawer-overlay .drawer .bag .quantity-table {
  width: 100%;
  table-layout: fixed;
  max-width: 85px;
  margin: auto;
}

.drawer-overlay .drawer .bag .quantity-table td {
  padding: 0px;
  vertical-align: middle;
}

.drawer-overlay .drawer .bag .quantity-table td span {
  cursor: pointer;
  font-size: 15px;
  vertical-align: middle;
}

.drawer-overlay .drawer .bag .quantity-table td p {
  vertical-align: middle;
}

.drawer-overlay .drawer .bag .quantity-table td:first-child span {
  color: var(--kRed);
  font-weight: bold;
}

.drawer-overlay .drawer .bag .quantity-table td:last-child span {
  color: var(--kPrimaryColor);
  font-weight: bold;
}

.drawer-overlay .drawer .bag .remove-icon-button {
  display: flex;
  width: 100%;
  max-width: 60px;
  align-items: center;
  justify-content: space-around;
  color: var(--kGrey);
  margin: auto;
  padding: 5px;
  box-sizing: border-box;
  cursor: pointer;
}

.drawer-overlay .drawer .bag .remove-icon-button span {
  font-size: 10px;
  pointer-events: none;
}

.drawer-overlay .drawer .bag .remove-icon-button p {
  pointer-events: none;
  font-size: 9px;
  text-transform: uppercase;
}

.badge-holder {
  position: relative;
}

.badge {
  display: none;
  background-color: var(--kRed);
  color: var(--kWhite);
  font-family: Alata;
  font-size: 10px;
  position: absolute;
  top: -10px;
  right: 5px;
  border-radius: 50px;
  padding: 2px 6px;
  box-sizing: border-box;
  text-align: center;
  border: 2px solid #ffffff;
}

.account-module {
  width: 100%;
  max-width: 650px;
  border: 3px solid var(--kPrimaryLightColor);
  border-radius: 5px;
  padding: 20px;
  margin: 30px auto;
  text-align: left;
  box-sizing: border-box;
  position: relative;
}

.account-module .sno-heading {
  font-size: 15px;
  text-transform: uppercase;
  font-family: Alata;
  color: var(--kPrimaryColor);
  margin-bottom: 15px;
}

.account-module .heading {
  color: var(--kPrimaryColor);
  font-size: 20px;
  margin-bottom: 5px;
}

.account-module .description {
  color: var(--kPrimaryColor);
  font-size: 13px;
  margin-bottom: 15px;
}

.account-module table {
  width: 100%;
  table-layout: fixed;
}

.account-module table td {
  vertical-align: top;
}

.account-module .mobilenumber-table td:first-child {
  width: 100px;
  position: relative;
}

.account-module .mobilenumber-table td:first-child input {
  padding-left: 35px;
}

.account-module .mobilenumber-table .countrycode-plus {
  position: absolute;
  top: 43px;
  left: 10px;
  font-size: 20px;
  color: var(--kBlack);
}

.input {
  text-align: left;
  width: 100%;
}

.input small {
  font-family: DidactGothic;
  font-size: 15px;
  color: var(--kPrimaryColor);
  display: block;
  margin-bottom: 10px;
}

.input input {
  font-family: Alata;
  font-size: 15px;
  color: var(--kBlack);
  padding: 10px;
  background-color: var(--kWhite);
  border-radius: 3px;
  margin-bottom: 5px;
  display: block;
  border: 0px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--kLine);
}

.input select {
  font-family: Alata;
  font-size: 15px;
  color: var(--kBlack);
  padding: 10px;
  background-color: var(--kWhite);
  border-radius: 3px;
  margin-bottom: 5px;
  display: block;
  border: 0px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.input .error {
  font-family: Alata;
  font-size: 12px;
  color: var(--kRed);
  margin-bottom: 15px;
}

.input .input-error {
  border-bottom: 2px solid var(--kRed);
}

.input input[type="radio"] {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}

.circle-button {
  padding: 10px 20px;
  background-color: var(--kPrimaryColor);
  color: var(--kWhite);
  border-radius: 5px;
  border: 0px;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  font-size: 15px;
  font-family: Alata;
  display: inline-block;
}

.outline-button {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid var(--kPrimaryColor);
  color: var(--kPrimaryColor);
  border-radius: 5px;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  font-size: 15px;
  font-family: Alata;
  display: inline-block;
}

.or-divider {
  width: 100%;
  box-sizing: border-box;
  margin: 15px 0px 20px;
  position: relative;
  text-align: center;
}

.or-divider hr {
  border: 0px;
  border-bottom: 1px solid var(--kPrimaryColor);
  margin-bottom: -11px;
}

.or-divider p {
  font-size: 15px;
  color: var(--kPrimaryColor);
  background-color: var(--kBackgroundColor);
  padding: 0px 25px;
  display: inline-block;
  font-family: DidactGothic;
}

.checkbox-text {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.checkbox-text p {
  font-size: 15px;
  color: var(--kPrimaryColor);
  padding-left: 10px;
}

.dual-button {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.text-button {
  font-size: 15px;
  font-family: DidactGothic;
  border: 0px;
  background-color: transparent;
  display: inline-block;
  color: var(--kPrimaryColor);
  margin-right: 20px;
  cursor: pointer;
}

.viewonly input {
  pointer-events: none;
  background: transparent;
  cursor: none;
  padding: 0px;
}

.address-card {
  width: 100%;
  max-width: 200px;
  background-color: var(--kWhite);
  border-radius: 10px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  padding: 15px;
  position: relative;
  margin: 10px;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}

.address-card small {
  font-size: 13px;
  margin-bottom: 5px;
}

.address-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.address-card span {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
}

.account-module .viewonly .mobilenumber-table .countrycode-plus {
  top: 33px;
}

.viewonly .heading,
.viewonly .description,
.viewonly .circle-button,
.viewonly .password-form {
  display: none;
}

.orders-card {
  width: 100%;
  max-width: 200px;
  background-color: var(--kWhite);
  border-radius: 5px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  padding: 15px;
  position: relative;
  margin: 10px;
  display: inline-block;
  text-align: left;
  cursor: pointer;
  vertical-align: top;
}

.orders-card small {
  font-size: 13px;
  margin-bottom: 5px;
}

.orders-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.toast {
  position: fixed;
  top: 30px;
  right: 30px;
  font-family: Alata;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  background: var(--kPrimaryColor);
  outline: 1px solid var(--kOutline);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  color: var(--kWhite);
  display: none;
  box-sizing: border-box;
  z-index: 10;
}

.icon-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid var(--kPrimaryColor);
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.icon-outline-button span {
  font-size: 20px;
  font-weight: bold;
}

.icon-outline-button h3 {
  padding-left: 10px;
  font-size: 13px;
  text-transform: uppercase;
}

.icon-toggle-button {
  display: inline-flex;
  padding: 10px 15px;
  align-items: center;
  justify-content: center;
  background: var(--kWhite);
  border-radius: 30px;
  margin: 5px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.icon-toggle-button span {
  font-weight: bold;
  padding-right: 10px;
  color: var(--kPrimaryColor);
  vertical-align: middle;
  font-size: 20px;
  padding-top: 5px;
}

.icon-toggle-button h3 {
  color: var(--kPrimaryColor);
}

.icon-toggle-button-container .active {
  background-color: var(--kPrimaryColor);
}

.icon-toggle-button-container .active h3,
.icon-toggle-button-container .active span {
  color: var(--kWhite);
}

.checkout-view {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
}

.checkout-view .left {
  padding: 30px;
}

.checkout-view .left .title {
  font-size: 35px;
}

.checkout-view .right {
  padding: 30px;
}

.checkout-view .right h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.checkout-view .right p {
  margin-bottom: 15px;
}

.checkout-view .right .circle-button {
  text-transform: uppercase;
  letter-spacing: 8px;
  width: 100%;
  max-width: none;
  padding: 20px 0px;
  border-radius: 10px;
  outline: 1px solid var(--kOutline);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

.circle-button:hover {
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.2),
    0 1px 18px 0 rgba(0, 0, 0, 0.2);
}

.no-product {
  width: 100%;
  height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.no-product span {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 15px;
}

.no-product h1 {
  margin-bottom: 50px;
  font-size: 30px;
}

.no-product .circle-button {
  text-transform: uppercase;
  letter-spacing: 5px;
}

.order-processing {
  width: 100%;
  height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.order-processing img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  object-fit: contain;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 50%;
  background: var(--kWhite);
}

.order-processing i {
  font-size: 20px;
  display: block;
  font-weight: bold;
}

.order-placed {
  width: 100%;
  height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.order-placed span {
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 15px;
}

.order-placed h1 {
  margin-bottom: 50px;
  font-size: 40px;
}

.order-placed .circle-button {
  border: 2px solid var(--kPrimaryColor);
  color: var(--kPrimaryColor);
  background: transparent;
  font-size: 16px;
  text-transform: uppercase;
}

.address-list-container .active {
  border: 2px solid var(--kPrimaryColor);
}

.address-list-container .active span {
  display: block;
}

.receipt {
  background: var(--kWhite);
  box-sizing: border-box;
  display: block;
  border-radius: 10px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  margin: 15px;
  border: 5px dashed var(--kBackgroundColor);
  text-align: center;
  vertical-align: top;
  transition: transform 1s linear;
  position: relative;
  cursor: pointer;
}

.receipt .place-icon {
  font-size: 100px;
  font-weight: bold;
}

.receipt .title {
  font-size: 30px;
  font-weight: bold;
}

.receipt .title-price {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}

.receipt .leftrighttext {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 10px;
  flex-direction: column;
}

.receipt .leftrighttext p {
  font-size: 16px;
  color: var(--kGrey);
  margin-bottom: 4px;
}

.receipt .leftrighttext h3 {
  font-size: 19px;
}

.receipt .leftrighttext .hightlight {
  background: var(--kPrimaryColor);
  padding: 5px 10px;
  border-radius: 10px;
  color: var(--kWhite);
  font-size: 19px;
  text-align: center;
}
.receipt .leftrighttext .special-hightlight {
  background: var(--kBackgroundColor);
  padding: 5px 10px;
  border-radius: 10px;
  color: var(--kPrimaryColor);
  font-size: 19px;
  text-align: center;
}

.receipt .leftrighttext select,
.receipt .leftrighttext input {
  font-size: 16px;
  padding: 5px;
  background: var(--kWhite);
  outline: none;
  font-family: Alata;
  color: var(--kPrimaryColor);
  border: 1px solid var(--kPrimaryColor);
}

.receipt .leftrighttext input {
  width: 80px;
}

.receipt .leftrighttext .pickupotp-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.receipt .leftrighttext button {
  font-size: 16px;
  padding: 7px 14px;
  background: var(--kBlack);
  outline: none;
  font-family: DidactGothic;
  color: var(--kWhite);
  margin-left: 8px;
  border: 0px;
  cursor: pointer;
  border-radius: 30px;
}

.receipt .leftrighttext.address-block {
  align-items: start;
  text-align: left;
}

.receipt .leftrighttext.address-block h3 {
  max-width: 600px;
}

.receipt hr {
  border: 0px;
  border-bottom: 1px solid var(--kLine);
  margin: 0px;
}

.receipt table {
  width: 100%;
  box-sizing: border-box;
  table-layout: fixed;
}

.receipt table thead td {
  color: var(--kBlack);
  text-transform: uppercase;
  font-size: 15px;
}

.receipt table td {
  padding: 10px;
  width: 30%;
  text-align: center;
}

.receipt table td small {
  color: var(--kBlack);
  font-size: 10px;
  display: block;
}

.receipt table td:first-child {
  text-align: left;
  width: 70%;
}

.receipt table td:last-child {
  text-align: right;
}

.receipt table td .outline-button {
  padding: 5px;
  background: var(--kRed);
  outline: none;
  font-family: Alata;
  color: var(--kWhite);
  cursor: pointer;
  border: 0px;
  border-radius: 3px;
}

.receipt table td .outline-button.positive {
  background: var(--kPrimaryColor);
}

.receipt .material-symbols-outlined {
  font-size: 25px;
  margin: auto;
  text-align: center;
  cursor: pointer;
  padding: 10px;
}

.receipt table td b {
  display: block;
}

.receipt table td .quantity {
  font-size: 22px;
}

.receipt table .photo-td {
  display: flex;
  align-items: center;
  justify-content: start;
}

.receipt table .photo-td img {
  width: 120px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 4px;
}

.receipt .lessarrow {
  float: right;
  color: var(--kBlack);
}

.receipt .basic-details {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.receipt .more-details {
  position: fixed;
  background: var(--kWhite);
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin-top: 0px;
  border: 1px solid var(--kLine);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  z-index: 1;
  overflow-y: scroll;
  width: 100%;
  max-width: 80%;
  border-left: 3px solid var(--kPrimaryColor);
}

.no-orderreceipt {
  width: 100%;
}

.no-orderreceipt span {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 15px;
}

.no-orderreceipt h1 {
  margin-bottom: 50px;
  font-size: 30px;
}

.no-orderreceipt .circle-button {
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 0px;
}

.weight-list-container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.weight-list-container span {
  font-size: 20px;
  color: var(--kBlack);
}

.weight-list-container div:first-child {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
}

.weight-list-container div:first-child p {
  font-size: 16px;
  pointer-events: none;
}

.weight-list-container div:first-child h3 {
  pointer-events: none;
  font-size: 16px;
}

.weight-list-container div:first-child .dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.weight-list {
  width: 100%;
  left: 0px;
  bottom: 40px;
  box-sizing: border-box;
  position: absolute;
  background-color: var(--kWhite);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: var(--kPrimaryLightColor);
  border-top-right-radius: 10px;
}

.weight-list li {
  padding: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.weight-list li:hover {
  background-color: var(--kPrimaryLightColor);
}

.search-bar {
  width: 100%;
  max-width: 600px;
  border-radius: 60px;
  background: var(--kWhite);
  display: flex;
  align-items: center;
  justify-content: start;
  margin: auto;
  box-sizing: border-box;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin-bottom: 50px;
}

.search-bar span {
  font-size: 25px;
  color: var(--kPrimaryColor);
  font-weight: bold;
  padding: 20px 15px 15px 25px;
}

.search-bar input {
  border: 0px;
  padding: 5px 20px;
  border-left: 1px solid var(--kLine);
  font-size: 20px;
  color: var(--kPopupBlack);
  font-weight: bold;
  font-family: Alata;
  outline: none;
  width: 100%;
}

.splash {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: var(--kBackgroundColor);
  z-index: 2;
}

.splash img {
  width: 150px;
}

.product-view {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
}

.product-view .big-picture {
  width: 100%;
  height: calc(100vh - 200px);
  object-fit: contain;
  object-position: center;
  background: var(--kWhite);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.product-view .pictures-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-view .pictures-list img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  margin: 10px;
  border-radius: 10px;
  background: var(--kWhite);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

.product-view .pictures-list .active {
  border: 1px solid var(--kPrimaryColor);
}

.product-view .left {
  width: 60%;
  box-sizing: border-box;
  padding: 0px 15px;
}

.product-view .right {
  text-align: left;
  width: 40%;
  padding: 15px;
  box-sizing: border-box;
}

.product-view .right .producttitle {
  font-size: 35px;
  margin-bottom: 15px;
}

.product-view .right .description {
  font-size: 16px;
  margin-bottom: 15px;
}

.product-view .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-view .footer h3 {
  font-size: 30px;
  font-family: Alata;
  margin-right: 35px;
}

.product-view .icon-button {
  text-transform: uppercase;
  letter-spacing: 8px;
  width: 100%;
  max-width: none;
  padding: 10px;
  border-radius: 10px;
  outline: 1px solid var(--kOutline);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

.product-view .icon-button span {
  font-size: 25px;
}

.product-view .icon-button p {
  font-size: 20px;
}

.weights {
  margin-bottom: 15px;
}

.weights li {
  display: inline-block;
  margin: 10px;
  border-radius: 5px;
  padding: 10px 15px;
  box-sizing: border-box;
  background: var(--kWhite);
  cursor: pointer;
  text-align: center;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  position: relative;
}

.weights li p,
.weights li h3 {
  pointer-events: none;
}

.weights li p {
  font-size: 13px;
}

.weights .active {
  border: 1px solid var(--kPrimaryColor);
}

.weights .deleteicon {
  display: none;
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kError);
  color: var(--kWhite);
  font-size: 15px;
  cursor: pointer;
  padding: 5px;
  border-radius: 30px;
}

.weights li:hover .deleteicon {
  display: block;
}

.screen-loader {
  display: flex;
  width: 100%;
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
}

.screen-loader .loader {
  background-color: var(--kWhite);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  border-radius: 100px;
}

.long-content {
  padding: 0px 10px;
}

.long-content div {
  width: 100%;
  max-width: 1000px;
  padding: 15px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  margin: 30px auto;
  border-radius: 10px;
  background-color: var(--kWhite);
  box-sizing: border-box;
}

.long-content h1,
.long-content p,
.long-content ul,
.long-content h2 {
  margin-bottom: 15px;
}

.long-content a {
  font-family: Alata;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  background-color: var(--kPrimaryColor);
  color: var(--kWhite);
  padding: 5px 10px 7px;
  border-radius: 30px;
}

.long-content ul {
  list-style: circle;
  padding-left: 15px;
}

footer {
  background: var(--kPopupBlack);
  padding: 30px 10px;
  width: 100%;
  text-align: center;
}

footer p,
footer span {
  color: var(--kWhite);
}

.login-view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  box-sizing: border-box;
  text-align: center;
  margin: auto;
  height: 100vh;
}

.login-view .login-view-child {
  border-radius: 5px;
  width: 100%;
  padding: 15px;
}

.login-view .heading {
  margin-bottom: 30px;
}

.login-view .circle-button {
  margin-bottom: 0px;
}

.orders-list {
  margin-top: 30px;
  text-align: center;
}

.orders-list .title {
  display: block;
  font-size: 20px;
  font-family: DidactGothic;
}

.group-header {
  display: inline-block;
  width: 100%;
  max-width: 21%;
  padding: 10px;
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  vertical-align: middle;
  border: 1px solid var(--kOutline);
}

.group-header.opened {
  background-color: var(--kPrimaryColor);
}

.group-header.opened h3,
.group-header.opened span {
  color: var(--kWhite);
}

.group-header span {
  font-size: 25px;
  cursor: pointer;
}

.group-header .total-count {
  font-family: "Alata";
  font-weight: 100;
  font-size: 40px;
  color: var(--kPrimaryColor);
}

.group-header .lessarrow {
  transform: rotate(180deg);
}

.section-break {
  border: 0px;
  border-bottom: 1px solid var(--kPrimaryLightColor);
  margin: 50px 0px;
}

.category-list,
.products-list,
.allpictures-list,
.sectionview {
  display: flex;
  align-items: start;
  justify-content: space-between;
  min-height: 100vh;
}

.allorders-list {
  min-height: 100vh;
}

.category-list .header,
.products-list .header,
.allorders-list .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px;
}

.category-list .left,
.products-list .left {
  width: 100%;
}

.category-list .right,
.products-list .right {
  text-align: center;
}

.radio {
  display: inline-block;
  margin: 10px;
  box-sizing: border-box;
}

.demo-stripe {
  background-color: var(--kRed);
  color: var(--kWhite);
  position: fixed;
  bottom: 30px;
  left: 0px;
  z-index: 999;
  text-align: center;
  font-size: 20px;
  font-family: "Alata";
  padding: 10px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  display: block;
}

.demo-stripe b {
  color: var(--kWhite);
  white-space: nowrap;
}

.all-list {
  display: flex;
  align-items: start;
  justify-content: center;
}

.all-list .sideActionPanel {
  width: 17%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.all-list .sideActionPanel .logo {
  height: 80px;
  margin: 10px;
}

.all-list .sideActionPanel h3 {
  margin-bottom: 15px;
  display: none;
}

.all-list .sideActionPanel .menu {
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: left;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.all-list .sideActionPanel .menu.selected {
  background: var(--kPrimaryLightColor);
}

.all-list .sideActionPanel .menu:hover {
  background: var(--kPrimaryLightColor);
}

.all-list .sideActionPanel .menu span {
  margin-right: 15px;
  width: 24px;
}

.all-list .sideActionPanel .aside-footer {
  text-align: center;
  font-size: 13px;
  padding: 16px;
}

.all-list .content-list {
  border-left: 1px solid var(--kPrimaryLightColor);
  width: 85%;
  background-color: var(--kAlmostWhite);
}

.header h2 {
  font-size: 30px;
}

.floating-edit-form {
  position: fixed;
  margin: 0px;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: var(--kAlmostWhite);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px;
  overflow: scroll;
  padding: 15px;
}

.floating-edit-form .content {
  width: 100%;
  max-width: 450px;
  margin: auto;
}

.floating-edit-form.top {
  align-items: start;
}

.floating-edit-form .header {
  margin: 10px 0px;
}

.floating-edit-form .header span {
  font-size: 24px;
  width: 24px;
  cursor: pointer;
}

.highlight {
  transform: scale(1.3);
}

#cameraModule {
  text-align: center;
  margin: 20px;
}

#cameraStream,
#pictureCanvas {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
  object-fit: cover;
}

#pictureCanvas {
  width: 400px;
  height: 400px;
}

.allpictures-list .circle-button {
  margin: 16px;
}

.allpictures-list .content {
  margin: 16px;
}

.search-container {
  background: var(--kWhite);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 16px;
  box-sizing: border-box;
}

.search-container input {
  padding: 15px;
  border: 0px;
  width: 100%;
  font-size: 20px;
  outline: none;
}

.search-container button {
  background: var(--kPrimaryColor);
  padding: 18px 20px;
  color: var(--kWhite);
  border: 0px;
  font-size: 16px;
  border-radius: 0px;
  cursor: pointer;
}

.print-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--kPrimaryColor);
  margin-top: 32px;
}

.print-button:hover {
  background: var(--kBlack);
  color: var(--kWhite);
}

.receipt .print-button span {
  margin-right: 8px;
  padding: 0px;
  color: inherit;
  pointer-events: none;
}

.receipt .print-button p {
  color: inherit;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
}

.printable .receipt {
  margin: 0px;
  padding: 0px;
  border: 0px;
  box-shadow: none;
  color: var(--kBlack);
}

.printable .receipt .leftrighttext {
  padding: 3px;
}

.printable .receipt h3,
.printable .receipt p,
.printable .receipt td,
.printable .receipt b {
  font-size: 13px;
  color: inherit;
  padding: 0px;
}

.printable .receipt thead td {
  padding: 5px 0px;
}

.printable .asap-logo {
  font-family: Alata;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -3px;
  text-align: left;
  margin-bottom: 8px;
}

.printable .asap-logo small {
  font-size: 11px;
  letter-spacing: 0px;
}

.printable .receipt .leftrighttext .printable-ordercode {
  font-size: 20px;
}

.priceupdateview {
  padding: 24px;
  box-sizing: border-box;
}

.priceupdateview button {
  margin-bottom: 16px;
}

.priceupdateview .statustext {
  font-size: 20px;
}

.priceupdateview .statustext span {
  margin-right: 12px;
  vertical-align: middle;
}

.priceupdateview .statustext b {
  vertical-align: middle;
}

.order-type,
.order-value {
  margin: 12px;
}

.order-value input {
  margin-bottom: 12px;
}

.flex-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
.product-photo-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.product-photo-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.btn {
  padding: 6px 12px;
  margin-top: 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.upload-btn {
  background: #007bff;
  color: #fff;
}
.choose-btn {
  background: #28a745;
  color: #fff;
  margin-left: 8px;
}

.side-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  background: #f9f9f9;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  padding: 1rem;
  overflow-y: auto;
  z-index: 999;
}
.side-panel.active {
  right: 0;
}
.side-panel h2 {
  margin-top: 0;
}
.search-box {
  width: 100%;
  padding: 8px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.placeholder {
  text-align: center;
  color: #888;
  padding: 2rem 0;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}
.photo-card {
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}
.photo-card.selected {
  border-color: #007bff;
}
.upload-photo-btn {
  margin-top: 1rem;
  background: #007bff;
  color: #fff;
  width: 100%;
}

.add-product-container {
  display: block;
  text-align: right;
  margin: 8px;
}

.sideDrawer {
  position: fixed;
  z-index: 2;
  background-color: var(--kAlmostWhite);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  padding: 10px;
  border-left: 3px solid var(--kPrimaryColor);
  width: 100%;
  max-width: 45%;
  top: 0px;
  bottom: 0px;
  right: 0px;
  overflow: scroll;
}

.sideDrawer .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sideDrawer .header span {
  cursor: pointer;
  padding: 5px;
}

.sideDrawer input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
  margin-right: 16px;
  text-align: center;
  border: 1px solid var(--kLine);
  border-radius: 30px;
  outline: none;
}

.sideDrawer table {
  width: 100%;
}

.sideDrawer table td {
  width: 20%;
  text-align: center;
  color: var(--kBlack);
  border-bottom: 1px solid var(--kLine);
  padding: 4px;
}

.sideDrawer table td:first-child {
  text-align: left;
  width: 35%;
}

.sideDrawer .input-button-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sideDrawer table td small {
  color: var(--kBlack);
}

.receipt .leftrighttext.row-flex {
  flex-direction: row;
  justify-content: space-between;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

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

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--kWhite);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--kPrimaryColor);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--kPrimaryColor);
}

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

.slider.round {
  border-radius: 34px;
}

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

.single-line-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.porter-block {
  border: 2px dashed var(--kBlue);
  padding: 8px;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 8px;
  display: flex;
  flex-direction: column;
  text-align: left;
  background-color: var(--kBlue);
}

.porter-block .logo {
  width: 100px;
  padding: 10px;
  border-radius: 5px;
  background: var(--kWhite);
}

.porter-block h3 {
  color: var(--kWhite);
}

.receipt .porter-block button,
.receipt .porter-block a {
  background: var(--kWhite);
  color: var(--kBlue);
  font-family: Alata;
}

.porter-block hr {
  width: 100%;
  margin: 8px;
}

.porter-block h3,
.porter-block h4,
.porter-block div {
  width: 100%;
  color: var(--kWhite);
}
.porter-block b {
  color: var(--kWhite);
}
.turnOffProductTable .product-picture-code,
.addAnotherProductTable .product-picture-code {
  display: flex;
  align-items: center;
  justify-content: start;
}

.turnOffProductTable .product-picture-code img,
.addAnotherProductTable .product-picture-code img {
  width: 100px;
  margin-right: 8px;
  border-radius: 3px;
}

.card-view {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  padding: 10px;
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
  text-align: center;
  box-sizing: border-box;
  background: var(--kPrimaryColor);
  vertical-align: middle;
  border: 1px solid var(--kOutline);
}

.card-view * {
  color: var(--kWhite);
}

.card-view .total-count {
  font-size: 50px;
}

.sectionview .content {
  width: 100%;
  height: 100vh;
}

.sectionview .header {
  margin: 16px;
}

.new {
  padding: 2px 8px;
  font-size: 12px;
  background: var(--kRed);
  border-radius: 30px;
  margin: 16px;
  color: var(--kWhite);
  text-transform: uppercase;
}

.store-analytics {
  overflow: scroll;
}

.store-analytics .products-list-card {
  border: 1px solid var(--kLine);
  margin: 8px;
  border-radius: 8px;
  display: inline-block;
  background: var(--kWhite);
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-analytics .products-list-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}

.store-analytics .products-list-card h2 {
  font-size: 16px;
  max-width: 150px;
  margin-left: 8px;
}

.store-analytics .side-heading {
  margin: 8px;
}

@media only screen and (max-width: 1200px) {
  .product-view .right .producttitle {
    font-size: 30px;
  }

  .product-view .right .icon-button p {
    font-size: 15px;
  }

  .product-view .footer h3 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 992px) {
  .leftright {
    display: block;
    width: 100%;
    min-height: auto;
    margin-bottom: 50px;
  }

  .leftright .right {
    display: none;
  }

  .leftright .left {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .leftright .left div {
    max-width: none;
  }

  .chip {
    font-size: 13px;
  }

  .page-title {
    font-size: 50px;
    line-height: 55px;
  }

  .sub-page-title {
    font-size: 30px;
  }

  .product-view .right .producttitle {
    font-size: 25px;
  }

  .product-view .right .icon-button p {
    font-size: 14px;
  }

  .product-view .right .icon-button span {
    font-size: 20px;
  }

  .product-view .footer h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  header {
    padding: 0px 15px;
  }

  .drawer {
    max-width: 80%;
  }

  .checkout-view {
    display: block;
  }

  .checkout-view .left,
  .checkout-view .right {
    display: block;
  }

  .section-title {
    font-size: 40px;
    margin-top: 15px;
  }

  .search-bar {
    margin: 30px 0px;
  }

  .product-view {
    display: block;
  }

  .product-view .left,
  .product-view .right {
    display: block;
    width: 100%;
    text-align: center;
  }

  .product-view .big-picture {
    height: 50vh;
    margin-top: 20px;
  }

  .product-view .right .producttitle {
    font-size: 20px;
  }

  .product-view .right .icon-button p {
    font-size: 10px;
    font-weight: bold;
  }

  .product-view .right .icon-button span {
    font-size: 15px;
  }

  .product-view .footer h3 {
    font-size: 18px;
  }

  .receipt {
    max-width: none;
    margin: 15px 0px;
  }

  .group-header {
    max-width: 44%;
  }

  .receipt .basic-details {
    display: block;
  }

  .receipt .leftrighttext {
    flex-direction: row;
    justify-content: space-between;
  }
  .space-aside {
    padding: 0px 10px;
  }
  .all-list .sideActionPanel .menu {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .categories-container {
    padding: 0px 10px;
  }

  .category-card {
    margin: 10px 0px;
  }

  .drawer-overlay .drawer .filledbag .bag td:first-child p {
    font-size: 13px;
  }

  .section-title {
    font-size: 35px;
  }

  .category-list,
  .products-list {
    display: block;
  }

  .category-list .left,
  .products-list .left {
    display: block;
    width: 100%;
  }

  .orders-list .title,
  .group-header .total-count {
    font-size: 15px;
  }

  .logo {
    font-size: 30px;
  }

  .circle-button {
    font-size: 15px;
    padding: 7px 15px;
  }

  .section-break {
    margin: 30px 0px;
  }

  .all-list .sideActionPanel .menu span {
    margin: 0px;
  }

  .all-list .sideActionPanel .menu p {
    display: none;
  }

  .all-list .sideActionPanel .menu {
    justify-content: center;
  }

  .group-header {
    max-width: none;
    margin: 10px 0px;
  }
  .all-list .sideActionPanel .logo {
    height: 55px;
  }
  .search-container {
    margin: 10px 0px;
  }
  .receipt .leftrighttext p {
    text-align: left;
  }
  .receipt .more-details {
    max-width: none;
  }
}

@media only screen and (max-width: 425px) {
  .horizontal-list li span {
    font-size: 25px;
  }

  .logo {
    font-size: 35px;
  }

  .drawer {
    max-width: 90%;
  }

  .section-title {
    font-size: 30px;
  }

  .horizontal-list li {
    padding: 0px 10px;
  }

  .weights li {
    padding: 5px 10px;
    margin: 5px;
  }

  .weights li p {
    font-size: 11px;
  }

  .weights li h3 {
    font-size: 15px;
  }

  .product-view .right .icon-button p {
    letter-spacing: 5px;
  }
}

/* Last CSS */

.nomargin-bottom {
  margin-bottom: 0px;
}

.hide {
  display: none;
}

.sure-hide {
  display: none !important;
}
