@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
/*@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");*/
:root {
  --background: #f5f5f5;
  --background-shade: #f2f9f2;
  --bg: #1bb834;
  --bg-thick: #16a32e;
  --bg-shade: #b9ffc5;
  --color: #212529;
  --solid: #fff;
  --cast: #ccc;
  --text-cast: #777;
  --green: #05941d;
}
::selection {
  background-color: var(--bg-shade);
}
::-moz-selection {
  background-color: var(--bg-shade);
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background-color: var(--background);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--bg);
  box-shadow: 0 0 5px 0 inset rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--bg-thick);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
*:focus {
  outline: none !important;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  background-color: var(--background);
  color: #4a4a4a;
}
h6 {
  font-size: 1.1rem;
}
.sticky-top {
  position: sticky;
  top: 0;
  width: 100%;
}
.ix {
  position: relative;
  display: inline-block;
}
.ix-2x {
  font-size: 1.2em;
}
.ix-3x {
  font-size: 2.5em;
}
.rotate-90 {
  rotate: 90deg;
  display: inline-block;
}
.rotate-180 {
  rotate: 180deg;
  display: inline-block;
}
.rotate-270 {
  rotate: 270deg;
  display: inline-block;
}
.navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 -1px 8px -2px #d7d7d7;
  display: flex;
  margin: 0;
  padding: 0;
  background-color: #fff;
  z-index: 1;
}
.navigation .nav-link {
  padding: 12px 8px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  position: relative;
}
.navigation .nav-link.active {
  color: var(--green);
}
.navigation .nav-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -4px);
  width: 70%;
  height: 6px;
  background-color: transparent;
  border-radius: 6px;
}
.navigation .nav-link.active:before {
  background-color: var(--green);
}
.navigation .nav-link span {
  display: block;
}
.navigation .ix {
  font-size: 1.3rem;
  padding: 6px 0;
}
#page {
  padding: 6px 1rem 72px;
  overflow: auto;
  /*  min-height: calc(100vh - 133px);*/
}
#success,
#success2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.cursor-pointer {
  cursor: pointer !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
form label {
  font-weight: 500;
}
.form-control,
.form-select {
  padding: 0.6rem 1rem;
  background-color: transparent;
}
.bold {
  font-weight: 500;
}
.flex-space {
  display: flex;
  justify-content: space-between;
}
.cart-count {
  position: absolute;
  top: 10%;
  right: 8px;
  background-color: #d41023;
  color: #fff;
  border-radius: 6px;
  font-size: 0.6rem;
  padding: 0 4px;
  display: block;
  z-index: 1;
}
.sliding {
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 1rem;
  padding: 6px 0;
}
.sliding::-webkit-scrollbar {
  display: none;
}
.btn {
  padding-top: 0.56rem;
  padding-bottom: 0.56rem;
}
.btn:not(.border):not(.border-top):not(.border-bottom):not(.border-start):not(
    .border-end
  ),
.btn:active,
.btn:focus {
  outline: none !important;
  border-color: transparent !important;
}
.x-card {
  position: relative;
  width: 100%;
  max-width: 200px;
  display: inline-block;
  box-shadow: 0 3px 16px -3px #e1e1e1;
  background-color: #fff;
  margin-bottom: 24px;
  border-radius: 8px;
}
.x-card .img {
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
}
.x-card .img img {
  max-width: 100%;
  max-height: 125%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.x-card a.link {
  display: block;
}
.hover:hover {
  background-color: rgba(0, 0, 0, 0.025);
}
.x-card .name-tag {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 100px;
}
.sliding .x-card {
  border-radius: 12px;
  margin: 0;
}
.sliding .x-card:not(:last-child) {
  margin-right: 12px;
}
.x-card .starred {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 36px;
  height: 36px;
  padding-top: 2px;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 50%;
}
.x-card .discount {
  position: absolute;
  top: 20px;
  left: 14px;
  /*  top: 20px; right: 14px;*/
  background-color: rgba(255, 255, 255, 0.9);
  color: red;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 2px 6px;
}
.x-card .btn {
  background-color: var(--green);
  color: #fff;
  border-color: transparent !important;
}
.x-card .btn:active {
  background-color: #04840d;
}

.money:before {
  content: "N";
  padding-right: 3px;
  text-decoration: line-through;
  text-decoration-style: double;
  font-weight: bold;
}
#page-title {
  display: none;
  color: transparent;
}
.btn.btn-supreme,
.btn.btn-supreme:hover,
.btn.btn-supreme:focus {
  background-color: var(--green);
  color: #fff !important;
  position: relative;
}
.btn-outline-supreme {
  box-shadow: 0 0 0 1px var(--bg-thick) inset;
  background-color: var(--solid);
  color: var(--bg-thick);
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.6s ease;
}
.btn-supreme:hover,
.btn-supreme:focus,
.btn-supreme:active {
  background-color: #16a32e !important;
}
.btn-supreme:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: rotate(0deg) translateY(-50%);
  animation: spin 0.8s linear infinite reverse;
  transition: all 0.6s ease;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-color: transparent #fff #fff transparent;
}
@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(359deg);
  }
}
@keyframes swell {
  from {
    width: 16px;
    height: 16px;
  }
  to {
    width: 24px;
    height: 24px;
  }
}
.btn-supreme.loading:after {
  opacity: 1;
}
#processing {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  transition: opacity 0.4s ease-in;
}
#processing.active {
  opacity: 1;
  z-index: 1;
}
.text-supreme {
  color: var(--green);
}
.item-card {
  position: relative;
  margin-bottom: 12px;
  border-radius: 12px;
  height: 120px;
  padding: 10px 8px;
  box-shadow: 0 2px 3px 0px #e9e9e9;
  background-color: #fff;
}
.item-card.item-card-2 {
  border: 1px solid #efefef;
  box-shadow: none;
  border-radius: 0;
  max-height: 140px;
}
.item-card .closer {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.1rem 0.65rem;
  font-size: 1.5rem;
  color: inherit;
  /*  border: 1px solid #000;*/
}
.item-card .cart-img {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.item-card.item-card-2 .cart-img,
.item-card.item-card-2 .cart-img img {
  border-radius: 0 !important;
}
.item-card .counting,
.item-card .countr {
  display: inline-block;
  width: 24px;
  height: 24px;
  box-shadow: 0 0 2px 1px #444;
  text-align: center;
  border-radius: 50%;
  color: #888;
}
.item-card .counting {
  cursor: pointer;
  user-select: none;
}
.item-card .countr {
  border: none;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 2px;
  color: inherit;
  font-size: 1.3rem;
  min-width: 2.5rem;
}
#modalY {
  position: fixed;
  top: 0;
  left: 0;
  bottom: -100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /*  transform: translateY(101%);*/
  opacity: 0;
  top: 100%;
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.4s ease, bottom 0.2s ease;
}
#modalY.shown {
  opacity: 1;
  top: 0;
  bottom: 0;
  /*  transform: translateY(0);*/
}
#modalY .content {
  /*position: absolute;
  bottom: 0; left: 0; right: 0;*/
  border-radius: 24px 24px 0 0;
  width: 100%;
  background-color: #fff;
}
#modalY .content > h6 {
  padding: 1rem 24px;
}
.text-small {
  font-size: 0.86em;
}
.line-through {
  text-decoration: line-through;
  padding-left: 8px;
  color: #747474;
}
.note {
  position: relative;
  border-radius: 6px;
  padding: 12px;
  font-size: 0.92rem;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 2px solid #05941d;
  background: #fff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.note.bg-light {
  background-color: #f1f1f1 !important;
}
.note .note-time {
  padding-top: 12px;
  color: #9a9a9a;
  font-size: 0.8rem;
}
.accordion {
  display: block;
  border-radius: 6px;
  border: 1px solid #e2e2e2;
  overflow: hidden;
  margin-bottom: 4px;
}
.accordion a {
  display: flex;
  color: inherit;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-weight: 500;
}
.accordion a i {
  font-size: 0.7em;
  transition: all 0.3s ease;
  transform: translateY(10%);
}
.accordion a.active i {
  transform: rotate(90deg);
}
.accordion .menu {
  display: block;
  max-height: 0;
  overflow: auto;
  transition: all 0.3s ease;
}
.accordion .menu.active {
  max-height: 200px;
}
.accordion .menu a {
  font-weight: normal;
}
p {
  margin-bottom: 0;
}
a {
  text-decoration: none !important;
}
a.link {
  color: inherit;
  display: inline-block;
}
a.linker {
  position: relative;
  background-color: inherit !important;
  color: inherit !important;
  display: block;
  padding: 1rem 0;
}
a.linker:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}
a.linker.active:after {
  content: "\2714";
  position: absolute;
  top: 50%;
  right: 12px;
  color: #15a42d;
  transform: translateY(-50%);
}
.cast {
  box-shadow: 0 1px 8px -1px #ccc;
}
#load {
  text-align: center;
  padding: 24px;
  min-width: 300px;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform-origin: top;
  transform: scaleY(0) translateX(-50%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
}
#load.in {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.3);
}
.checkmark {
  width: 7em;
  height: 7em;
  margin: auto;
  position: relative;
  margin-bottom: 24px;
}
.checkmark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #fcc300;
  border-radius: 25%;
}
.checkmark.draw:after {
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
  opacity: 1;
  box-shadow: 5px -5px 5px #000;
  height: 3.5em;
  width: 1.5em;
  border-radius: 0 4px 0 0;
  transform-origin: left top;
  border-right: 7px solid #5cb85c;
  border-top: 7px solid #5cb85c;
  content: "";
  left: 1.5em;
  top: 3.5em;
  position: absolute;
}
.pay-banner {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 8px 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
.pay-banner .pay-strip {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.pay-banner .pay-strip p {
  white-space: nowrap;
  position: relative;
}
.pay-banner .pay-strip p span,
.pay-banner .pay-strip p:after {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 2px 1px #333;
}
.pay-banner .pay-strip p.active span,
.pay-banner .pay-strip p:after {
  box-shadow: none;
}
.pay-banner .pay-strip p.active:after {
  content: "\2713";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  box-shadow: 0 0 0 1px var(--green);
  transform: translateY(-50%);
  background-color: var(--green);
  color: #fff;
}
.pay-track {
  padding: 0 24px;
}
.pay-track .section {
  position: relative;
  padding-left: 24px;
  height: 90px;
  margin-bottom: 8px;
  color: #8f8f8f;
}
.pay-track .section:before,
.pay-track .section:after {
  position: absolute;
  top: 4px;
  left: 0;
  transform: translateX(-50%);
}
.pay-track .section:before {
  content: "\2714";
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9a9a9a;
}
.pay-track .section.active:before {
  background-color: var(--green);
  color: #fff;
  padding-right: 1px;
  border: none;
}
.pay-track .section:not(:last-child):after {
  content: "";
  width: 2px;
  top: 24px;
  bottom: 0;
  background-color: #9a9a9a;
}
.pay-track .section p {
  font-weight: 500;
}
.pay-track .section.active p:first-child {
  color: #444;
}
.link-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid #d8d8d8;
  color: inherit;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.small-min-margin {
  margin: 0 -1rem;
}
.link-2 span {
  display: flex;
  align-items: center;
}
.link-2 span .ix {
  font-size: 1.2em;
  padding-right: 1rem;
}
.link-2 span + i {
  font-size: 0.8rem;
}
.crumbs {
  display: none;
}
#nav-container {
  display: none;
}
#nav-container.active {
  display: block;
}
.nav-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  z-index: -1;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
.nav-content.active {
  position: relative;
  max-height: none;
  opacity: 1;
  z-index: 1;
}
.nav-content .heading {
  display: none;
}
#search-sm {
  position: sticky;
  top: 60px;
  background-color: #fff;
  z-index: 99;
}
@media screen and (max-width: 992px) {
  .navigation .nav-link .cart-count {
    display: none !important;
    opacity: 0 !important;
  }
  .navigation.hidden {
    display: none;
  }
  #success.noflex,
  #success2.noflex {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  #topbar {
    margin-bottom: 24px;
  }
  #page {
    padding-bottom: 12px;
  }
  .bg-lg-white {
    background-color: #fff;
  }
  .nav-content {
    background-color: var(--solid);
    padding: 1rem;
  }
  .crumbs {
    display: block;
    font-weight: 500;
  }
  .crumbs i.ix {
    display: inline-block;
    padding: 0 8px;
    font-size: 0.8rem;
    color: initial !important;
  }
  .crumbs span:last-child {
    color: var(--green);
  }
  .navigation {
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
  }
  .navigation .nav-link:before {
    display: none;
  }
  .navigation .nav-link {
    display: inline-flex;
    align-items: center;
    width: auto;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  .navigation .nav-link span {
    display: inline-block;
    padding-left: 6px;
  }
  .navigation .ix {
    font-size: 1.1rem;
    padding: 6px 0;
  }
  .navigation .cart-count {
    top: 0;
    right: 0;
    transform: translateX(50%);
    line-height: 1.5;
    padding: 0 4px !important;
  }
  a.linker {
    padding: 12px;
  }
  a.linker.active {
    padding-right: 2.5rem;
  }
  .item-card {
    height: 160px;
  }
  .pay-banner {
    background-color: transparent;
  }
  .pay-banner .pay-strip p:not(:last-child) {
    width: 100%;
  }
  .pay-banner .pay-strip p:not(:last-child):before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100px;
    right: 12px;
    transform: translateY(-50%);
    height: 1px;
    background-color: #979797;
  }
  .pay-banner .pay-strip p.active:before {
    background-color: var(--green);
  }
  .pay-track {
    max-width: 320px;
    border-radius: 6px;
    margin-left: auto;
    box-shadow: 0 1px 3px -1px #ccc;
  }
  .cart-img {
    width: 100%;
  }
  .cart-img img {
    max-height: 100%;
  }
  #success,
  #success2 {
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #success > div,
  #success2 > div {
    overflow: hidden;
    background-color: #fff;
    display: block;
    border-radius: 12px;
    position: relative;
    min-height: 400px;
    min-width: 480px;
    max-width: 520px;
  }
  .small-fix {
    position: relative !important;
    background-color: transparent !important;
    z-index: 0;
  }
  .small-min-margin {
    margin: 0;
    height: 100%;
  }
  #nav-container {
    position: relative;
    display: block;
  }
  #naver {
    padding: 1.2rem;
    border-radius: 1rem;
    border: 1px solid #efefef;
    background-color: var(--solid);
  }
  #naver .link-2 {
    border-width: 0;
    border-radius: 8px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #naver .link-2:not(:last-child) {
    border-width: 0 0 1px 0;
  }
  #naver .link-2.active {
    background-color: #e9f7ef;
    color: var(--green);
    border: none;
  }
  #naver .link-2 i:not(span i) {
    display: none;
  }
  .nav-content {
    border: 1px solid #e9e9e9;
    border-radius: 1rem;
    padding: 2rem 1.2rem;
  }
  .nav-content.first {
    max-height: none;
    opacity: 1;
    z-index: 1;
  }
  .nav-content .heading {
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9e9e9;
  }
}
@media screen and (min-width: 1200px) {
  .navigation .nav-link {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
@media screen and (min-width: 1366px) {
  .navigation .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
