:root {
  --header-height: 72px;
}
:root button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
:root img {
  border-radius: 0.5rem;
}
:root .text {
  color: rgb(55, 65, 81);
}
:root .sub-text {
  color: rgb(75, 85, 99);
}
:root .text-click {
  cursor: pointer;
}
:root .text-click:hover {
  color: var(--bs-primary);
}
:root .form-control:focus {
  border-color: var(--bs-primary) !important;
  border-width: 2px;
  outline: none;
  box-shadow: none !important;
}
:root .fs-7 {
  font-size: 14px !important;
}
:root .fw-500 {
  font-weight: 500;
}
:root .btn-border {
  border: 1px solid #9ba3af;
}
:root .btn-border:hover {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}
:root .min-width-number {
  display: inline-block;
  min-width: 19px;
  text-align: center;
}
:root .title {
  font-weight: 600;
  line-height: 24px;
  color: rgb(75, 85, 99);
}
:root .form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
:root .dashed-divider {
  border-top: 1px dashed #e5e7eb;
  margin: 12px 0;
}

.overflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sol-header {
  position: fixed;
  top: 0;
  left: 0;
  min-height: var(--header-height);
  background-color: var(--bs-primary) !important;
  z-index: 3;
  width: 100vw;
  padding: 0 92px;
}
.sol-header .offcanvas {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}
.sol-header .offcanvas .mobile-icon {
  display: none;
}
.sol-header .container-fluid {
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sol-header .container-fluid .title {
  margin-right: auto;
}
.sol-header .container-fluid .title img {
  border-radius: 0.25rem;
}
.sol-header .container-fluid .title .text {
  display: none;
  color: white;
  margin-left: 4px;
}
.sol-header .container-fluid button,
.sol-header .container-fluid a {
  border-radius: 0.25rem;
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  height: 2.5rem;
  padding: 0 1.25rem;
  vertical-align: middle;
  line-height: 2.5rem;
  background-color: transparent;
  border: none;
}
.sol-header .container-fluid button:hover,
.sol-header .container-fluid a:hover {
  background: var(--bs-primary-dark) !important;
}
.sol-header .container-fluid .sol-btn-outlined {
  border: 1px solid rgb(156, 163, 175);
}
.sol-header .container-fluid .sol-btn-outlined:hover {
  border-color: white !important;
}

.sol-body {
  margin-top: var(--header-height);
  padding: 24px 92px;
  background-color: #f3f4f6;
}
.sol-body .sol-rating {
  color: #facc14;
}
.sol-body .sol-rating svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.product-price-old {
  display: flex;
  gap: 8px;
}

@media (max-width: 992px) {
  .product-price-old {
    flex-direction: column;
    gap: 4px;
  }
  #info-section {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .sol-body {
    padding: 12px !important;
    margin-top: 56px !important;
  }
  .sol-comments {
    margin-bottom: 12px;
  }
  .sol-header {
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    min-height: 56px;
  }
  .sol-header .container-fluid {
    width: auto !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .sol-header .container-fluid .title img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    border: 1px solid white;
  }
  .sol-header .container-fluid .title .text {
    display: inline-block !important;
  }
  .sol-header .offcanvas {
    padding-top: 56px;
    background-color: var(--bs-primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    align-items: flex-start;
    padding-left: 12px;
  }
  .sol-header .offcanvas a,
  .sol-header .offcanvas button {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
  }
  .sol-header .offcanvas .mobile-icon {
    display: inline;
  }
  .sol-header .navbar-toggler {
    height: 36px;
    padding: 2px;
    width: 36px;
    box-shadow: none !important;
  }
  .default-info {
    display: none;
  }
  .group-labels {
    position: sticky;
    z-index: 1;
    top: 56px;
  }
  .group-labels .list {
    background-color: #f9fafb !important;
    padding: 2px !important;
    display: flex;
    flex-direction: row;
    overflow: auto;
  }
  .group-labels .list .sol-menu-btn {
    width: auto !important;
    color: rgb(156, 163, 175) !important;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .group-labels .list .sol-menu-btn:hover {
    color: var(--bs-primary) !important;
    background-color: transparent !important;
  }
  .group-labels .list .sol-menu-btn.active {
    color: var(--bs-primary) !important;
    border-bottom: 2px solid var(--bs-primary);
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
  .group-labels .title {
    display: none;
  }
  #products .sol-search {
    display: none !important;
  }
  #payment {
    display: none;
  }
  #payment-float {
    display: block;
  }
  #payment-float-modal-trigger-btn {
    display: block !important;
  }
  #customer-info-btn {
    display: none !important;
  }
  #closeNavBarBtn {
    display: block !important;
    font-size: 20px;
    margin-left: auto;
  }
  #coupon-close-toggle-order-modal {
    display: block !important;
  }
  #coupon-close {
    display: none !important;
  }
  .coupon-pick-btn {
    display: none !important;
  }
  .coupon-pick-btn-toggle-modal {
    display: block !important;
  }
  .sol-menu-btn {
    white-space: nowrap;
  }
  .sol-info-card.bottom .overflow {
    white-space: initial;
  }
  .sol-info-card.bottom {
    border-top: 0px solid #e4e7eb !important;
    margin-left: -12px;
  }
  .sol-info-card.top {
    display: none !important;
  }
  #orderList {
    margin-left: 24px;
  }
  #orderList li {
    width: 260px !important;
    background-color: var(--bs-primary) !important;
  }
  #orderList li a {
    display: flex;
    flex-direction: column;
    color: white !important;
  }
}
@media (min-width: 993px) {
  #payment-float {
    display: none !important;
  }
  #payment-float-modal {
    display: none !important;
  }
  #payment-float-modal-trigger-btn {
    display: none !important;
  }
  #customer-info-btn {
    display: block !important;
  }
  #closeNavBarBtn {
    display: none !important;
  }
  #coupon-close-toggle-order-modal {
    display: none !important;
  }
  #coupon-close {
    display: block !important;
  }
  .coupon-pick-btn {
    display: block !important;
  }
  .coupon-pick-btn-toggle-modal {
    display: none !important;
  }
  .float-bottom-right {
    bottom: 24px !important;
    gap: 12px !important;
  }
}
#info-section .sol-carousel img {
  object-fit: cover;
  border-radius: 0.5rem;
}
#info-section .sol-carousel .carousel-indicators {
  margin-bottom: 8px;
}
#info-section .sol-carousel .carousel-indicators [data-bs-target],
#info-section .sol-carousel .sol-indicator {
  border: none !important;
  box-sizing: border-box !important;
  background-clip: border-box !important;
  display: inline-block;
  height: 8px !important;
  width: 8px !important;
  background-color: black;
  opacity: 0.6;
  border-radius: 50% !important;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
#info-section .sol-carousel .carousel-inner {
  border-radius: 0.5rem;
}
#info-section .sol-carousel .carousel-indicators .active {
  width: 16px !important;
  background-color: var(--bs-primary);
  opacity: 1;
  border-radius: 16px !important;
}
#info-section .sol-carousel .carousel-control-prev {
  opacity: 1 !important;
  height: 40px;
  width: 36px;
  bottom: unset;
  top: 50%;
  background: rgba(0, 0, 0, 0.7);
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  transform: translateY(-50%);
  padding-right: 6px;
}
#info-section .sol-carousel .carousel-control-prev .sol-control-prev {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg stroke='white' fill='white' stroke-width='0' viewBox='0 0 320 512' height='18px' width='18px' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z'%3E%3C/path%3E%3C/svg%3E");
}
#info-section .sol-carousel .carousel-control-next {
  opacity: 1 !important;
  height: 40px;
  width: 36px;
  bottom: unset;
  right: 0;
  top: 50%;
  background: rgba(0, 0, 0, 0.7);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  transform: translateY(-50%);
  padding-left: 6px;
}
#info-section .sol-carousel .carousel-control-next .sol-control-next {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg stroke='white' fill='white' stroke-width='0' viewBox='0 0 320 512' height='18px' width='18px' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z' %3E%3C/path%3E%3C/svg%3E");
}
#info-section .sol-carousel .carousel-item {
  transition-duration: 0.2s;
}
#info-section .sol-info-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: white;
  cursor: pointer;
}
#info-section .sol-info-card.bottom {
  border-top: 1px dashed #e4e7eb;
  border-radius: 0 0 0.5rem 0.5rem !important;
}
#info-section .sol-info-card + #info-section .sol-info-card {
  border-radius: 0 0 0.5rem 0.5rem;
  border-top: 1px dashed #e4e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
#info-section .sol-info-card .bold {
  font-weight: 600;
  line-height: 24px;
  color: rgb(75, 85, 99);
}
#info-section .sol-info-card .normal {
  color: rgb(75, 85, 99);
}
#info-section .sol-info-card .gray {
  color: rgb(156, 163, 175);
}
#info-section .sol-comments::-webkit-scrollbar {
  display: none;
}
#info-section .sol-card {
  cursor: pointer;
}
#info-section .sol-card .card-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: rgb(55, 65, 81);
}

#menu-section #group-labels {
  position: sticky;
  top: calc(var(--header-height) + 8px);
}
#menu-section .sol-menu-btn {
  color: rgb(55, 65, 81);
  text-decoration: none;
  width: 100%;
  font-size: 14px;
  display: block;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  border-radius: 0.5rem;
  font-weight: 500;
}
#menu-section .sol-menu-btn:hover {
  color: white;
  background-color: var(--bs-primary);
}
#menu-section .sol-search {
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  padding: 4px 6px;
}
#menu-section .sol-search:focus-within {
  border-color: var(--bs-primary) !important;
}
#menu-section .sol-search input {
  flex: 1;
  border: none;
  padding: 2px;
  color: rgb(55, 65, 81);
}
#menu-section .sol-search input:focus {
  outline: none;
}
#menu-section .sol-search .sol-clear {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20' width='20' viewBox='0 0 20 20' aria-hidden='true' focusable='false'%3E%3Cpath fill='%236B7280' d='M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z'%3E%3C/path%3E%3C/svg%3E");
}
#menu-section .btn-minus {
  border: none !important;
}
#menu-section .btn-minus:hover svg, #menu-section .btn-minus:active svg {
  fill: var(--bs-primary);
}
#menu-section .btn-plus {
  border: none !important;
}
#menu-section .btn-plus:hover svg {
  fill: var(--bs-primary-dark);
}
#menu-section .divider {
  height: 1px;
  width: 90%;
  margin: 8px auto;
  background-color: rgba(0, 0, 0, 0.1);
}

.sticky {
  position: fixed;
  top: var(--header-height);
  left: 24px;
}

#payment .btn-minus {
  background-color: rgb(243, 244, 246);
  color: #6a7280;
  padding: 4px 6px !important;
}
#payment .btn-minus:hover {
  background-color: rgb(170, 170, 170);
  color: #6a7280;
}
#payment .btn-plus {
  background-color: rgb(243, 244, 246);
  color: var(--bs-primary);
  padding: 4px 6px !important;
}
#payment .btn-plus:hover {
  background-color: rgb(170, 170, 170);
}

#payment-float {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
}
@media (max-width: 540px) {
  #payment-float {
    width: 94vw;
  }
}
.coupon-wrapper {
  border: 1px solid #dbe9fe;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  margin-bottom: 12px;
}
.coupon-wrapper .coupon {
  border-left: 8px solid var(--bs-primary);
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  display: flex;
  align-items: center;
}

.float-bottom-right {
  position: fixed;
  bottom: 72px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-bottom-right div {
  border: 2px solid #fff !important;
  border-radius: 50% !important;
}

.dropdown-menu {
  padding: 0 !important;
}

.dropdown-item {
  height: auto !important;
  color: #272727 !important;
  border-bottom: 1px solid #d2d2d2 !important;
  height: auto !important;
  color: #272727 !important;
  line-height: 18px !important;
  margin-top: 0px;
  padding: 8px 12px !important;
  font-weight: 400 !important;
}
.dropdown-item:hover {
  color: white !important;
}

/*# sourceMappingURL=home.css.map */
