:root {
  color-scheme: light dark;
  --brand-font: "Noto Sans Bengali", sans-serif;
  --brand-primary: #10B981;
  --brand-secondary: #ED1C24;
  --brand-tertiary: #F0FDF9;
  --brand-generic-red: #FF5722;
  --brand-generic-green: #4CAF50;
  --brand-generic-yellow: #FFC107;
  --brand-highlight: rgba(227, 227, 92, 0.5);
  --brand-generic-white: #ffffff;
  --brand-font-c900: light-dark(#101010, #EEEEEE);
  --brand-font-c600: light-dark(#868f9f, #7b7b7b);
  --brand-font-alt-c900: light-dark(#EEEEEE, #101010);
  --brand-font-alt-c600: light-dark(#7b7b7b, #868f9f);
  --brand-border: light-dark(#D9D9D9, #2f3b37);
  --brand-fg-primary: light-dark(#059669, #34d399);
  --brand-bg-primary: light-dark(#ffffff, #0a0f0d);
  --brand-bg-secondary: light-dark(#FBFEFD, #111c18);
  --brand-bg-tertiary: light-dark(#E2F5EC, #1a2420);
  --toggle-display-light: block;
  --toggle-display-dark: none;
}

:root.dark {
  --toggle-display-light: none;
  --toggle-display-dark: block;
}

/* Scrollbar Styling */
/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-bg-tertiary) rgba(255, 255, 255, 0);
}

/* Works on Chrome/Edge/Safari */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  border: 0px solid rgba(255, 255, 255, 0);
  background-color: var(--brand-bg-tertiary);
}

::-webkit-scrollbar-corner {
  background: rgba(255, 255, 255, 0);
}

/* Generic Viewport Width for Grouping - v1.0.0 */
.vw-100, .vw-50, .vw-33 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.vw-100.center, .vw-50.center, .vw-33.center {
  justify-content: center;
}

.vw-100.right, .vw-50.right, .vw-33.right {
  justify-content: right;
}

.vw-100.left, .vw-50.left, .vw-33.left {
  justify-content: left;
}

.vw-100 {
  width: 100%;
}

.vw-50 {
  width: 50%;
}

.vw-33 {
  width: 33.333%;
}

@media (max-width: 768px) {
  .vw-50 {
    width: 100%;
  }
  .vw-33 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .vw-33 {
    width: 100%;
  }
}
[data-attr=article-page] [data-attr=page-banner], [data-attr=article-details-page] [data-attr=page-banner] {
  background-image: url("/asset/image/page-banner/article.jpg");
}

[data-attr=doc-page] [data-attr=page-banner] {
  background-image: url("/asset/image/page-banner/doc.png");
}

[data-attr=courses-page] [data-attr=page-banner] {
  background-image: url("/asset/image/page-banner/courses.png");
}

[data-attr=books-page] [data-attr=page-banner] {
  background-image: url("/asset/image/page-banner/books.png");
}

[data-attr=app-download-page] [data-attr=page-banner] {
  background-image: url("/asset/image/page-banner/books.png");
}

[data-attr=contact-us-page] [data-attr=page-banner] {
  background-image: url("/asset/image/page-banner/contact-us.png");
}

[data-attr=checkout-page] [data-attr=page-banner] {
  background-image: url("/asset/image/page-banner/checkout.png");
}

[data-attr=page-banner] {
  z-index: -1;
  width: 100%;
  height: 148px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-attr=page-banner]::before {
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(27, 47, 66, 0.6);
}
[data-attr=page-banner] [data-attr=banner-content] {
  inset: 0;
  margin: auto;
  width: fit-content;
  position: absolute;
  text-align: center;
  height: fit-content;
  color: var(--brand-font-alt-c900);
}
[data-attr=page-banner] [data-attr=banner-content] #main-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
}
[data-attr=page-banner] [data-attr=banner-content] #bottom-text {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
  line-height: 17px;
}
@media (min-width: 744px) {
  [data-attr=page-banner] {
    height: 326px;
  }
  [data-attr=page-banner] [data-attr=banner-content] #main-title {
    font-size: 40px;
    line-height: 43px;
  }
  [data-attr=page-banner] [data-attr=banner-content] #bottom-text {
    font-size: 15px;
    margin-top: 8px;
    line-height: 18px;
  }
}
@media (min-width: 1240px) {
  [data-attr=page-banner] {
    top: -66px;
    height: 374px;
  }
  [data-attr=page-banner] [data-attr=banner-content] #main-title {
    font-size: 48px;
    line-height: 51px;
  }
  [data-attr=page-banner] [data-attr=banner-content] #bottom-text {
    font-size: 16px;
    margin-top: 12px;
    line-height: 19px;
  }
}

[data-attr=section-title] {
  margin: 0 auto;
  max-width: 505px;
  text-align: center;
  width: fit-content;
}
[data-attr=section-title] #section-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto -12px;
}
[data-attr=section-title] #title {
  gap: 8px;
  display: flex;
  font-size: 28px;
  font-weight: 700;
  line-height: 31px;
  height: fit-content;
  align-items: center;
  flex-direction: column;
  text-transform: capitalize;
}
[data-attr=section-title] #text {
  font-weight: 500;
  margin: 10px auto 0;
  color: var(--text-col-4);
}
@media (min-width: 744px) {
  [data-attr=section-title] {
    max-width: unset;
  }
  [data-attr=section-title] #section-icon {
    width: 56px;
    height: 56px;
    margin-bottom: -16px;
  }
  [data-attr=section-title] #title {
    font-size: 36px;
    line-height: 39px;
  }
  [data-attr=section-title] #title::after {
    width: 34px;
    height: 4px;
  }
  [data-attr=section-title] #text {
    max-width: 572px;
  }
}
@media (min-width: 1240px) {
  [data-attr=section-title] #section-icon {
    width: 72px;
    height: 72px;
    margin-bottom: -22px;
  }
  [data-attr=section-title] #title {
    gap: 12px;
    font-size: 48px;
    line-height: 51px;
  }
  [data-attr=section-title] #title::after {
    width: 64px;
    height: 6px;
  }
  [data-attr=section-title] #text {
    max-width: 636px;
    margin: 10px auto 0;
  }
}

/* Generic body style */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--brand-font);
  color: var(--brand-font-c900);
  background-color: var(--brand-bg-primary);
}

body:has(popup-notification) {
  overflow: hidden;
}

[data-section=size] {
  max-width: 1440px;
  margin: 0 auto 0 auto;
}

[data-gap=side-gap] {
  margin: 0 auto;
  gap: 0 16px 0 16px;
  width: calc(100% - 32px);
}
@media (min-width: 744px) {
  [data-gap=side-gap] {
    gap: 0 32px 0 32px;
    width: calc(100% - 64px);
  }
}

[data-padding=y-axis] {
  padding: 48px 0;
  min-height: calc(100% - 96px);
}
@media (min-width: 744px) {
  [data-padding=y-axis] {
    padding: 64px 0;
    min-height: calc(100% - 128px);
  }
}
@media (min-width: 1240px) {
  [data-padding=y-axis] {
    padding: 96px 0 64px;
    min-height: calc(100% - 160px);
  }
}

[data-attr=p-text] {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
@media (min-width: 744px) {
  [data-attr=p-text] {
    font-size: 15px;
    line-height: 20px;
  }
}

/* Styles For Editable Item Placeholder */
.editable-item[contenteditable=true] {
  cursor: text;
  outline: none;
  display: block;
  position: relative;
}
.editable-item[contenteditable=true]::before {
  width: 100%;
  opacity: 40%;
  position: absolute;
  content: "";
  bottom: -4px;
  border-bottom: 2px solid var(--brand-font-alt-c600);
}
.editable-item[contenteditable=true]:empty {
  width: 100%;
  min-width: 200px;
}
.editable-item[contenteditable=true]:empty::before {
  bottom: unset;
  white-space: nowrap;
  padding-bottom: 4px;
  padding-bottom: 4px;
  content: attr(data-placeholder);
}

.skeleton {
  opacity: 0.7;
  border-width: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 8px !important;
}
.skeleton::before {
  content: "" !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999999 !important;
  border-radius: 0 !important;
  position: absolute !important;
  background-size: 0% !important;
  background-image: none !important;
  animation: skeleton-loading 1s linear infinite alternate !important;
}
.skeleton::after {
  display: none !important;
}

@keyframes skeleton-loading {
  0% {
    background-color: rgb(224, 236, 236);
  }
  100% {
    background-color: rgb(240, 243, 245);
  }
}
body:has(.open-hidden-cart) {
  overflow: hidden;
}

#hidden-cart-section {
  top: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999999;
  transform: translateX(100%);
  transition: all 500ms ease;
  background-color: rgba(0, 0, 0, 0.5);
}
#hidden-cart-section.fade-out {
  animation: fade-out 500ms ease forwards;
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#hidden-cart-section.open-hidden-cart {
  transform: translateX(0) !important;
  animation: fade-in 500ms ease forwards;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#hidden-cart-section.open-hidden-cart .hidden-wrapper-container {
  transform: translateX(0) !important;
}
#hidden-cart-section .hidden-wrapper-container {
  padding: 16px;
  margin-left: auto;
  position: relative;
  height: calc(100% - 32px);
  transition: all 500ms ease;
  transform: translateX(100%);
  max-width: 664px;
  background-color: var(--brand-bg-primary);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
}
#hidden-cart-section .cart-close-btn {
  top: 32px;
  right: 16px;
  width: 20px;
  height: 20px;
  display: block;
  cursor: pointer;
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(45deg);
  background-image: url("/asset/icon/close.svg");
}
#hidden-cart-section .hidden-wrapper-logo {
  width: 124px;
  margin-top: -10px;
  margin-bottom: 24px;
}
#hidden-cart-section .hidden-wrapper-logo img {
  width: 100%;
  height: 100%;
}
#hidden-cart-section .item-list-container {
  width: 100%;
  overflow-y: auto;
  height: calc(100vh - 32px - 110px - 24px);
}
@media (min-width: 744px) {
  #hidden-cart-section .hidden-wrapper-container {
    padding: 16px 32px;
    height: calc(100% - 32px);
    max-width: 632px;
  }
  #hidden-cart-section .cart-close-btn {
    top: 40px;
    right: 32px;
  }
  #hidden-cart-section .hidden-wrapper-logo {
    width: 140px;
  }
}

.cart-item {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--brand-border);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item[data-type=Course] .item-info::before {
  background-image: url("/asset/icon/cart/Course.svg");
}
.cart-item[data-type=Book] .item-info::before {
  background-image: url("/asset/icon/cart/Book.svg");
}
.cart-item[data-type=Book] .data-box .inputs {
  display: flex;
}
.cart-item[data-formate=Digital] .data-box .inputs {
  display: none;
}
.cart-item .item-info {
  gap: 16px;
  display: flex;
  align-items: center;
}
.cart-item .item-info::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--brand-primary);
}
.cart-item .item-info .info {
  width: calc(100% - 16px - 38px - 24px);
}
.cart-item .item-info .info .item-name {
  margin: unset;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item .item-info .info .others-info {
  gap: 16px;
  display: flex;
}
.cart-item .item-info .info .others-info .item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-font-alt-c600);
}
.cart-item .item-info .info .others-info .item-formate {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-font-alt-c600);
}
.cart-item .item-info .item-remove-btn {
  width: 24px;
  height: 24px;
  background-size: 60%;
  opacity: 0.5;
  transition: all 350ms ease;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/cart/cross.svg");
}
.cart-item .item-info .item-remove-btn:hover {
  opacity: 1;
}
.cart-item .data-box {
  gap: 16px;
  display: flex;
  margin-top: 16px;
  flex-direction: column;
}
.cart-item .data-box .inputs {
  gap: 16px;
  display: none;
  align-items: center;
}
.cart-item .data-box .inputs .available-quantity {
  width: 140px;
}
.cart-item .data-box .inputs .available-quantity .quantity {
  padding: 4px 2px;
  display: flex;
  border-radius: 18px;
  align-items: center;
  width: calc(100% - 8px - 2px);
  height: 28px;
  justify-content: space-between;
  border: 1px solid var(--brand-border);
}
.cart-item .data-box .inputs .available-quantity .quantity[disabled=true] {
  position: relative;
  opacity: 0.5;
}
.cart-item .data-box .inputs .available-quantity .quantity .qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 16px;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--brand-primary);
}
.cart-item .data-box .inputs .available-quantity .quantity .qty-btn.plus {
  background-image: url("/asset/icon/cart/plus.svg");
}
.cart-item .data-box .inputs .available-quantity .quantity .qty-btn.minus {
  background-image: url("/asset/icon/cart/minus.svg");
}
.cart-item .data-box .inputs .available-quantity .quantity .qty {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
.cart-item .data-box .coupon-box {
  width: 100%;
  position: relative;
}
.cart-item .data-box .coupon-box [name=coupon] {
  margin: 0;
  --input-wrapper-padding-xr: 16px;
  --wrapper-height-lg: 38px;
  --wrapper-height-sm: 38px;
  --input-container-height: 38px;
}
.cart-item .data-box .coupon-box bitl-button {
  top: 0;
  right: 0;
  z-index: 1;
  width: fit-content;
  position: absolute;
  --btn-padding-y-lg: 11px;
  --btn-padding-y-sm: 11px;
}
@media (min-width: 480px) {
  .cart-item .data-box {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  .cart-item .data-box {
    flex-direction: column;
  }
}
@media (min-width: 1100px) {
  .cart-item .data-box {
    flex-direction: row;
  }
}

* {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
a:focus {
  border: 0;
  outline: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

img, a {
  display: block;
}

body {
  background-image: unset;
}
body:has([data-action=tapped]) ::-webkit-scrollbar {
  width: 4px;
}
body:has([data-action=tapped]) {
  overflow: hidden;
}
@media screen and (min-width: 744px) {
  body:has([data-action=tapped]) {
    padding-top: 63.6px;
    overflow: unset;
  }
}
@media screen and (min-width: 744px) {
  body:has([data-action=tapped]) #header-e02 {
    top: 0;
    z-index: 99999;
    position: fixed;
  }
}
body:has([data-action=tapped]) #header-e02 [data-attr=menu-icon] .hamburger-menu > .menu-bar:nth-child(1) {
  transform: rotate(-45deg) translateY(45.5%);
}
body:has([data-action=tapped]) #header-e02 [data-attr=menu-icon] .hamburger-menu > .menu-bar:nth-child(2) {
  transform: scale(0);
}
body:has([data-action=tapped]) #header-e02 [data-attr=menu-icon] .hamburger-menu > .menu-bar:nth-child(3) {
  transform: rotate(45deg) translateY(-45.5%);
}
body:has([data-action=tapped]) #header-e02 [data-attr=menu-items-wrapper] {
  transform: translateX(0) !important;
  transition: transform 500ms ease;
}

#header-e02 {
  width: 100%;
  z-index: 999;
  position: sticky;
  user-select: none;
  height: fit-content;
  transition: height 500ms ease;
  font-family: "Urbanist", sans-serif;
}
#header-e02[data-current-device=small] {
  background-color: transparent;
  top: 0;
}
#header-e02 #small-device[data-attr=wrapper] {
  margin: 0 auto;
  padding: 10px 16px;
  width: calc(100vw - 32px);
  height: 28px;
  background-color: #ffffff;
  border-bottom: 1px solid #D9D9D9;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=brand-logo] {
  height: 28px;
  width: 114px;
  position: relative;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=brand-logo] img {
  width: 100%;
  height: 100%;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=brand-logo] a {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] {
  gap: 16px;
  display: flex;
  align-items: center;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] [data-attr=cart-icon] {
  width: 20px;
  height: 23px;
  cursor: pointer;
  position: relative;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] [data-attr=cart-icon] .icon {
  width: 100%;
  height: 100%;
  fill: var(--brand-primary);
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] [data-attr=cart-icon] .count {
  top: 13px;
  right: -6px;
  width: 9px;
  height: 9px;
  padding: 4px;
  font-size: 12px;
  line-height: 9px;
  border-radius: 8px;
  text-align: center;
  position: absolute;
  color: #ffffff;
  background-color: var(--brand-primary);
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] [data-attr=cart-icon] .count:empty {
  display: none;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] [data-attr=menu-icon] {
  width: 22px;
  height: 16px;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] [data-attr=menu-icon] .hamburger-menu .menu-bar {
  stroke: var(--brand-primary);
  transform-origin: center;
  transition: transform 250ms ease;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] {
  right: 0;
  top: 50px;
  z-index: 99999;
  position: fixed;
  overflow-y: auto;
  padding: 24px 20px;
  transform-origin: right;
  width: calc(100% - 40px);
  height: calc(100vh - 88px);
  transform: translateX(100vw);
  transition: transform 500ms ease;
  background-color: #ffffff;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] {
  width: 100%;
  min-height: 100%;
  height: fit-content;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=contact-link] {
  margin: 0 0 24px;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=contact-link] .contact {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid #D9D9D9;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=contact-link] .contact::before {
  inset: 0;
  content: "";
  width: 20px;
  margin: auto 0;
  position: absolute;
  background-repeat: no-repeat;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=contact-link] .contact:last-child {
  border-bottom: none;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=contact-link] .contact:nth-child(1)::before {
  background-image: url("/asset/icon/header/call.svg");
  height: 20px;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=contact-link] .contact:nth-child(2)::before {
  background-image: url("/asset/icon/header/mail.svg");
  height: 16px;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=contact-link] .contact a {
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
  color: #1F1F1F;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=buttons] {
  gap: 20px;
  display: flex;
  align-items: center;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=buttons] [data-attr=btn] {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  padding: 12px 36px;
  white-space: nowrap;
  border-radius: 20px;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=buttons] [data-attr=btn]:nth-child(1) {
  color: #ffffff;
  background-color: var(--brand-primary);
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=buttons] [data-attr=btn]:nth-child(2) {
  line-height: 14px;
  color: var(--brand-primary);
  background-color: transparent;
  border: 1px solid var(--brand-primary);
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] {
  width: 100%;
  display: flex;
  z-index: 99999;
  margin: 48px 0 64px;
  height: fit-content;
  flex-direction: column;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item {
  height: 43px;
  position: relative;
  border-bottom: 1px solid #D9D9D9;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item::after {
  content: "";
  top: 0;
  bottom: 0;
  width: 4px;
  left: -28px;
  height: 24px;
  margin: auto 0;
  position: absolute;
  transform-origin: left;
  border-radius: 0 2px 2px 0;
  transition: all 350ms ease;
  background-color: var(--brand-primary);
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item.focus::after, #header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item:hover::after {
  left: -20px;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item.focus a, #header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item:hover a {
  color: var(--brand-primary);
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item a {
  font-size: 15px;
  font-weight: 600;
  line-height: 43px;
  color: #1F1F1F;
}
#header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item:last-child {
  border-bottom: unset;
}
@media screen and (min-width: 744px) {
  #header-e02 #small-device[data-attr=wrapper] {
    padding: 14px 32px;
    width: calc(100vw - 64px);
    height: 34px;
  }
  #header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=brand-logo] {
    height: 36px;
    width: 148px;
  }
  #header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] {
    gap: 24px;
  }
  #header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] [data-attr=cart-icon] {
    width: 22px;
    height: 28px;
  }
  #header-e02 #small-device[data-attr=wrapper] [data-attr=header-content] [data-attr=header-icons] [data-attr=menu-icon] {
    width: 24px;
    height: 18px;
  }
  #header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] {
    top: 64px;
    width: 320px;
    height: calc(100vh - 113px);
  }
  #header-e02 #small-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=top-section] [data-attr=buttons] [data-attr=btn] {
    padding: 12px 40px;
  }
}
#header-e02[data-current-device=large] {
  top: -50px;
  height: 120px;
  overflow: unset;
}
#header-e02 #large-device[data-attr=wrapper] {
  width: 100%;
  padding: 12px 0;
  height: 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=brand-logo] {
  height: 28px;
  min-width: 78px;
  max-width: 116px;
  position: relative;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=brand-logo] img {
  width: 100%;
  height: 100%;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=brand-logo] a {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] {
  display: flex;
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] [data-attr=side-section] {
  gap: 36px;
  display: flex;
  align-items: center;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] [data-attr=side-section] [data-attr=contact-link] {
  display: flex;
  align-items: center;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] [data-attr=side-section] [data-attr=contact-link] .contact {
  position: relative;
  padding: 0 16px 0 44px;
  border-right: 1px solid #D9D9D9;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] [data-attr=side-section] [data-attr=contact-link] .contact::before {
  top: 0;
  bottom: 0;
  left: 16px;
  content: "";
  height: 18px;
  margin: auto 0;
  position: absolute;
  background-repeat: no-repeat;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] [data-attr=side-section] [data-attr=contact-link] .contact:last-child {
  border-right: none;
  padding-right: unset;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] [data-attr=side-section] [data-attr=contact-link] .contact:nth-child(1)::before {
  background-image: url("/asset/icon/header/call.svg");
  width: 22px;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] [data-attr=side-section] [data-attr=contact-link] .contact:nth-child(2)::before {
  background-image: url("/asset/icon/header/mail.svg");
  width: 24px;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=header-content] [data-attr=side-section] [data-attr=contact-link] .contact a {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 24px;
  color: #1F1F1F;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] {
  gap: 32px;
  height: 68px;
  display: flex;
  padding: 0 32px;
  margin-top: 14px;
  align-items: center;
  width: calc(100% - 64px);
  background-color: transparent;
  transition: background-color 350ms linear;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper].header-animation-on-scroll {
  animation: height-anm 250ms ease;
}
@keyframes height-anm {
  0% {
    height: 0;
  }
  100% {
    height: 68px;
  }
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] {
  width: 100%;
  display: flex;
  margin: 0 auto;
  padding: 24px 0;
  max-width: 1440px;
  align-items: center;
  height: calc(100% - 48px);
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=brand-logo] {
  height: 36px;
  min-width: 148px;
  max-width: 148px;
  position: relative;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] {
  gap: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  height: fit-content;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item {
  position: relative;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item::after {
  content: "";
  left: 0;
  right: 0;
  top: 25px;
  width: 28px;
  height: 3px;
  margin: 0 auto;
  position: absolute;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
  background-color: var(--brand-primary);
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item.focus::after, #header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item:hover::after {
  transform: scaleX(1);
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=menu] .item a {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.4px;
  color: #1F1F1F;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] {
  gap: 28px;
  display: flex;
  align-items: center;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] [data-attr=cart-icon] {
  width: 20px;
  height: 23px;
  cursor: pointer;
  position: relative;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] [data-attr=cart-icon] .icon {
  width: 100%;
  height: 100%;
  fill: var(--brand-primary);
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] [data-attr=cart-icon] .count {
  top: 12px;
  right: -6px;
  width: 9px;
  height: 9px;
  padding: 4px;
  font-size: 12px;
  line-height: 9px;
  border-radius: 8px;
  text-align: center;
  position: absolute;
  color: #ffffff;
  background-color: var(--brand-primary);
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] [data-attr=cart-icon] .count:empty {
  display: none;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] [data-attr=buttons] {
  gap: 28px;
  display: flex;
  align-items: center;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] [data-attr=buttons] [data-attr=btn] {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  padding: 12px 28px;
  white-space: nowrap;
  border-radius: 22px;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] [data-attr=buttons] [data-attr=btn].infill {
  padding: 12px 0;
  line-height: 20px;
  color: var(--brand-primary);
  background-color: transparent;
}
#header-e02 #large-device[data-attr=wrapper] [data-attr=menu-items-wrapper] [data-attr=content] [data-attr=button-section] [data-attr=buttons] [data-attr=btn].fill {
  color: #ffffff;
  background-color: var(--brand-primary);
}

#footer-ed-01 {
  padding: 32px 0 16px 0;
  background-color: var(--brand-tertiary);
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] {
  width: 100%;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] [data-attr=brand-logo] {
  width: 196px;
  height: 92px;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] [data-attr=brand-logo] img {
  width: 100%;
  height: 100%;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] [data-attr=social-link] {
  gap: 24px;
  display: flex;
  margin-top: 12px;
  align-items: center;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] [data-attr=social-link] a {
  width: 40px;
  height: 40px;
  font-size: 0px;
  color: transparent;
  position: relative;
  border-radius: 20px;
  background-color: rgba(152, 180, 171, 0.35);
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] [data-attr=social-link] a::before {
  content: "";
  inset: 0;
  width: 22px;
  height: 22px;
  margin: auto;
  position: absolute;
  background-repeat: no-repeat;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] [data-attr=social-link] a:nth-child(1)::before {
  background-image: url("/asset/icon/footer/facebook.svg");
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] [data-attr=social-link] a:nth-child(2)::before {
  background-image: url("/asset/icon/footer/instagram.svg");
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] [data-attr=social-link] a:nth-child(3)::before {
  background-image: url("/asset/icon/footer/youtube.svg");
  height: 16px;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] {
  height: 100%;
  display: block;
  margin: 32px 0;
  min-height: 128px;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content {
  width: 100%;
  height: 100%;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content h4 {
  width: 100%;
  display: flex;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(152, 180, 171, 0.35);
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content h4::after {
  content: "";
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  transition: transform 350ms ease;
  background-image: url("/asset/icon/footer/plus-icon.svg");
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content:nth-child(3) h4 {
  border-bottom: none;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items {
  height: 0;
  margin-left: -13px;
  transform: scaleY(0);
  transform-origin: top;
  transition: height 350ms ease;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .path-link, #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .contact-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  padding: 12px 6px;
  color: var(--brand-font-c900);
  border-bottom: 1px solid rgba(152, 180, 171, 0.35);
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .path-link:last-child, #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .contact-link:last-child {
  border-bottom: none;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .contact-link {
  gap: 12px;
  display: flex;
  align-items: center;
  border-bottom: none;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .contact-link::before {
  content: "";
  width: 16px;
  background-repeat: no-repeat;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .contact-link:nth-child(1)::before {
  background-image: url("/asset/icon/footer/call.svg");
  height: 16px;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .contact-link:nth-child(2)::before {
  background-image: url("/asset/icon/footer/mail.svg");
  height: 14px;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .contact-link:nth-child(3)::before {
  background-image: url("/asset/icon/footer/location.svg");
  width: 18px;
  height: 22px;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content:has(.show) h4 {
  border-bottom: none;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content:has(.show) h4::after {
  transform: rotate(225deg);
  transition: transform 350ms ease;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content:has(.show) .items {
  padding: 0 14px;
  min-height: 136px;
  transform: scaleY(1);
  padding-bottom: 16px;
  transform-origin: top;
  transition: transform 350ms ease;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=payment-options] {
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  flex-direction: column;
  border: 1px solid rgba(152, 180, 171, 0.35);
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=payment-options] .desktop-image, #footer-ed-01 [data-attr=content-wrapper] [data-attr=payment-options] .mobile-image {
  width: 100%;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=payment-options] .mobile-image {
  display: none;
}
@media screen and (max-width: 720px) {
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=payment-options] .desktop-image {
    display: none;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=payment-options] .mobile-image {
    width: 100%;
    margin: auto;
    display: block;
    max-width: 378px;
  }
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=copyright-section] {
  gap: 16px;
  display: flex;
  margin-top: 32px;
  align-items: center;
  flex-direction: column;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=copyright-section] .copyright-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  color: var(--brand-font-c600);
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=copyright-section] [data-attr=bitlaab] {
  display: flex;
  align-items: center;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=copyright-section] [data-attr=bitlaab] a {
  gap: 6px;
  display: flex;
  font-size: 0px;
  color: transparent;
  align-items: center;
}
#footer-ed-01 [data-attr=content-wrapper] [data-attr=copyright-section] [data-attr=bitlaab] a::after {
  content: "";
  width: 84px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/footer/bitlaab.svg");
}
@media screen and (min-width: 744px) {
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] {
    gap: 32px;
    height: 100%;
    display: flex;
    margin: 32px 0;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content {
    width: 100%;
    height: 100%;
    position: unset;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content h4 {
    display: none;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items {
    height: 100%;
    margin-left: unset;
    transform: scale(1);
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .path-link, #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .items .contact-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=copyright-section] {
    margin-top: 48px;
    flex-direction: row;
    justify-content: flex-start;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=copyright-section] .copyright-text {
    font-size: 14px;
    line-height: 17px;
    text-align: start;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=copyright-section] [data-attr=bitlaab] a::after {
    width: 95px;
    height: 24px;
  }
}
@media screen and (min-width: 1240px) {
  #footer-ed-01 {
    padding: 48px 0 24px;
  }
  #footer-ed-01 [data-attr=content-wrapper] {
    max-width: 1352px;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] {
    gap: 96px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    justify-content: center;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=brand-section] {
    max-width: 212px;
    margin-top: 36px;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] {
    width: 100%;
  }
  #footer-ed-01 [data-attr=content-wrapper] [data-attr=footer-content] [data-attr=links-section] .content .contact-link {
    white-space: nowrap;
  }
  #footer-ed-01 [data-attr=payment-options] {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #footer-ed-01 [data-attr=payment-options] .options {
    margin-top: unset;
  }
}
