@charset "UTF-8";
:root {
  --color-white: #FFFFFF;
  --color-light: #F9F9F9;
  --color-grey: #D6D6D6;
  --color-black: #212121;
  --color-red: #ED1927;
  --color-yellow: #FBB144;
  --size-sm: 576px;
  --size-md: 768px;
  --size-lg: 992px;
  --size-xl: 1200px;
  --size-xxl: 1400px;
  --star-size: 24px;
  --star-color: #D6D6D6;
  --star-background: #fc0;
}

.bg-white {
  background-color: var(--color-white) !important;
}

.bg-light {
  background-color: var(--color-light) !important;
}

.bg-grey {
  background-color: var(--color-grey) !important;
}

.bg-red {
  background-color: var(--color-red) !important;
}

.bg-yellow {
  background-color: var(--color-yellow) !important;
}

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

.text-white {
  color: var(--color-white) !important;
}

.text-light {
  color: var(--color-light) !important;
}

.text-grey {
  color: var(--color-grey) !important;
}

.text-red {
  color: var(--color-red) !important;
}

.text-yellow {
  color: var(--color-yellow) !important;
}

.opacity {
  opacity: 0.5;
}

.rounded-md {
  border-radius: 0.5rem;
}

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

.flex-center {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.col-md_custom {
  flex: 0 0 auto;
  width: 20%;
}
@media only screen and (max-width: 600px) {
  .col-md_custom {
    width: 50%;
  }
}

h1 {
  font-size: 32px;
  line-height: 140%;
  font-weight: 600;
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 28px;
  line-height: 140%;
  font-weight: 600;
}
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 24px;
  line-height: 140%;
  font-weight: 600;
}
@media only screen and (max-width: 600px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 20px;
  line-height: 140%;
  font-weight: 600;
}
@media only screen and (max-width: 600px) {
  h4 {
    font-size: 16px;
  }
}

.title {
  color: var(--color-red);
  border-bottom: 3px solid var(--color-red);
  padding-bottom: 4px;
}

.fw-bold {
  font-weight: 600 !important;
}

a {
  text-decoration: none;
  color: var(--color-black);
}
a > * {
  color: inherit;
}

.link {
  color: var(--color-red);
  font-weight: 600;
  background-color: transparent;
}

#readmore, #readless {
  color: var(--color-red);
  font-weight: 600;
}

.btn {
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  font-weight: 500;
}
.btn.btn-primary {
  background-color: var(--color-red) !important;
  color: var(--color-white);
}
.btn.btn-secondary {
  background-color: var(--color-grey);
  color: var(--color-black);
}
.btn.btn-small {
  padding: 8px 16px;
}

label {
  font-weight: 600;
}

.img-logo {
  height: 80px;
}

.img-square {
  aspect-ratio: 1/1;
  -o-object-position: center;
     object-position: center;
}

.card {
  background: var(--color-white);
  border: none;
  border-radius: 8px;
  box-shadow: 0px 4px 12px #d0d0d0;
}
.card .card-header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-light);
  border-radius: 16px 16px 0 0;
  padding: 16px;
}

.nav-pills .nav-link {
  border-radius: 8px 8px 0 0;
  background-color: var(--color-light);
  color: var(--color-black);
  border-bottom: 1px solid var(--color-yellow);
}
.nav-pills .nav-link.active {
  background-color: var(--color-yellow);
  font-weight: 600;
}

.pagination .page-item {
  border-radius: 6px;
}
.pagination .page-item.active {
  background-color: var(--color-red);
}
.pagination .page-item.active .page-link {
  color: var(--color-white);
}
.pagination .page-item.disabled i {
  color: var(--color-grey) !important;
}
.pagination .page-item .page-link {
  border: 0;
  background-color: transparent;
  color: var(--color-black);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--color-black) !important;
  font-size: 16px;
}
@media only screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}
body header .logo {
  height: 60px;
}
@media screen and (max-width: 576px) {
  body header .logo {
    height: 32px;
  }
}
body header .dropdown-menu {
  width: 500px;
  background-color: transparent;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 600px) {
  body header .dropdown-menu {
    width: 100%;
    overflow: auto;
  }
}
body header .dropdown-menu.dropdown_user {
  width: 300px;
  max-width: 80vw;
}
body header .dropdown-menu.dropdown_user li {
  border-bottom: 1px solid var(--color-light);
}
body header .dropdown-menu.dropdown_user li:last-child {
  border-bottom: none;
}
body header .dropdown-menu.dropdown_user li a.dropdown-item {
  padding: 16px;
}
body header .update {
  max-height: 200px;
  width: 100%;
  overflow: auto;
}
@media only screen and (max-width: 600px) {
  body header .update {
    max-height: 400px;
    overflow: auto;
  }
}
body main {
  margin-top: 100px;
}
body main section.slider {
  position: relative;
}
body main section.slider .banner {
  position: relative;
  display: flex;
  align-items: center;
  aspect-ratio: 3/1;
  padding: 64px;
  border-radius: 16px;
  overflow: hidden;
  background-position: right;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  body main section.slider .banner {
    aspect-ratio: 2/3;
    padding: 24px;
  }
}
body main section.slider .banner .banner_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
body main section.slider .banner .banner_inner {
  width: 75%;
}
body main section.slider .banner .banner_inner > a {
  position: absolute;
  bottom: 24px;
  right: 64px;
}
@media only screen and (max-width: 600px) {
  body main section.slider .banner .banner_inner > a {
    right: 24px;
  }
}
body main section.slider .banner .banner_inner > a::before {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: -24px;
  bottom: -24px;
  filter: blur(10px);
  background-color: rgba(33, 33, 33, 0.3529411765);
  z-index: -1;
}
@media only screen and (max-width: 600px) {
  body main section.slider .banner .banner_inner {
    width: 100% !important;
  }
}
body main section.slider .banner.banner_video {
  padding: 0;
  display: inherit;
}
body main section.slider .banner.banner_video .banner_video_modal {
  position: relative;
  height: 100%;
}
body main section.slider .banner.banner_video .banner_video_overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body main section.slider .banner.banner_video .banner_video_overlay a {
  height: 64px;
  width: 64px;
  background-color: var(--color-red);
}
body main section.slider .banner.banner_video .banner_video_overlay a i {
  margin-top: -10px;
  margin-left: 5px;
  font-size: 48px;
  color: var(--color-white);
}
body main section.slider .carousel-indicators {
  position: absolute;
  left: 64px;
  bottom: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
}
@media only screen and (max-width: 600px) {
  body main section.slider .carousel-indicators {
    left: 24px;
  }
}
body main section.slider .carousel-indicators::before {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 0;
  bottom: 0;
  height: 24px;
  filter: blur(10px);
  background-color: rgba(33, 33, 33, 0.3098039216);
  z-index: -1;
}
body main section.flash-sale .title_flash-sale {
  width: 175px;
}
body main section.flash-sale .produk_flash-sale {
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--color-white);
  min-width: 160px;
  max-width: 160px;
}
@media only screen and (max-width: 600px) {
  body main section.kategori img {
    width: 100px !important;
  }
}
body main section.detail .col-video {
  position: relative;
}
body main section.detail .col-video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid red; /* Segitiga play */
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
body main section.detail .detail-video {
  aspect-ratio: 1/1;
}
body main .produk {
  border-radius: 8px;
  background-color: var(--color-light);
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  body main .produk .card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
body main .produk img {
  aspect-ratio: 1/1;
}
body main .produk .bagde_seller {
  font-size: 12px;
  padding: 4px 8px;
  letter-spacing: 0.024rem;
}
body main .kategori .list-group-item {
  padding: 1rem;
  border: 0;
}
body main .kategori .list-group-item.active {
  border-radius: 8px;
  background-color: var(--color-yellow);
  font-weight: 600;
}
body main .konfirm_pembayaran {
  max-width: 500px;
}
body footer a {
  color: inherit;
}
@media screen and (max-width: 576px) {
  body footer {
    margin-bottom: 78px;
  }
}
body .auth .card {
  width: 75%;
}
@media only screen and (max-width: 600px) {
  body .auth {
    padding-top: 32px;
    align-items: start !important;
  }
  body .auth .auth_img {
    position: absolute;
    width: 100%;
    bottom: 0;
  }
  body .auth .card {
    width: 100%;
  }
}
body .error_page .error_page_img {
  max-width: 400px;
}

.input-group.quantity {
  border: 1px solid var(--color-grey);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
}
.input-group.quantity input::-webkit-outer-spin-button,
.input-group.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.input-group.quantity input[type=number] {
  border: 0;
  width: 50px;
  text-align: center;
}
.input-group.quantity input[type=button] {
  box-shadow: none;
  border: 0;
  background-color: transparent;
  padding: 8px;
  width: 40px;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
}
.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--color-yellow) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-favorite .bi-heart-fill {
  display: none;
}
.btn-favorite.active .bi-heart-fill {
  display: block;
}
.btn-favorite.active .bi-heart {
  display: none;
}

.btn-trash, .btn-favorite {
  font-size: 24px;
}
.btn-trash.btn-sm, .btn-favorite.btn-sm {
  font-size: 14px !important;
}

table.table-keranjang tr th, table.table-keranjang tr td {
  background-color: var(--color-light);
  padding: 14px;
}

.modal.modal-video .modal-body {
  height: 80vh !important;
  max-height: inherit;
}
.modal .modal-body {
  max-height: 75vh;
  overflow: auto;
}

.timeline ul li {
  list-style: none;
  position: relative;
}
.timeline ul li::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--color-grey);
  border-radius: 50%;
  top: 16px;
  left: 64px;
}
.timeline ul li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  border: 1px solid var(--color-grey);
  left: 70px;
  top: 31px;
}
.timeline ul li:last-child {
  padding-bottom: 0 !important;
}
.timeline ul li:last-child::after {
  display: none;
}
.timeline ul li .date {
  width: 50px;
}

.rating:focus-within {
  border-color: #274D68;
}
.rating > label {
  vertical-align: bottom;
  padding: 0.2rem;
  color: #274D68;
  background-color: #E1ECF4;
  border: 1px solid #274D68;
  border-radius: 0.2rem;
  margin: 0 0 0 1rem;
}
.rating > span > label {
  float: left;
}
.rating input, .rating label > span {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.rating span label:before {
  content: "★";
  display: inline-block;
  font-size: 1.6rem;
  width: 1.4rem;
  text-align: center;
  color: var(--color-yellow); /* All stars start out with color */
}
.rating span label:hover:before {
  font-size: 1.8rem;
}
.rating input:checked ~ label:before {
  color: #919191; /* Grey out stars after the checked option */
}
.rating > span:hover > label:before {
  color: var(--color-yellow); /* Recolor all stars on the parent span's hover */
}
.rating input:hover ~ label:before {
  color: #919191; /* Grey out stars after the hovered star */
}

.mobile_action {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  width: 100vw;
}

.keranjang_wishlist {
  min-width: 400px;
}
@media only screen and (max-width: 600px) {
  .keranjang_wishlist {
    min-width: 200px;
  }
  .keranjang_wishlist img {
    width: 100% !important;
  }
}

.chat {
  min-height: 400px;
}
.chat .chat_bubble {
  max-width: 80%;
}
@media only screen and (max-width: 600px) {
  .chat .chat_bubble {
    max-width: 90%;
  }
}

.popup-chat button {
  color: inherit;
  background-color: transparent;
  border: 0;
  outline: 0 !important;
  cursor: pointer;
}
.popup-chat button.chatbox-open {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 52px;
  color: #fff;
  background-color: var(--color-red);
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  margin: 16px;
}
.popup-chat button.chatbox-close {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 52px;
  color: #fff;
  background-color: var(--color-red);
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  margin: 16px calc(2 * 16px + 52px) 16px 16px;
}
.popup-chat textarea {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  height: calc(16px + 16px / 2);
  padding: 0 calc(16px / 2);
  font-family: inherit;
  font-size: 16px;
  line-height: calc(16px + 16px / 2);
  background-color: none;
  border: 0;
  outline: 0 !important;
  resize: none;
  overflow: hidden;
}
.popup-chat .chatbox-popup {
  display: flex;
  position: absolute;
  box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
  flex-direction: column;
  z-index: 2;
  display: none;
  bottom: calc(2 * 16px + 52px);
  right: 16px;
  width: 377px;
  height: auto;
  background-color: #fff;
  border-radius: 16px;
}
.popup-chat .chatbox-popup .chatbox-popup__header {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 16px;
  color: var(--color-black);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey);
  align-items: center;
  justify-content: space-around;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
.popup-chat .chatbox-popup .chatbox-popup__header .chatbox-popup__avatar {
  margin-top: -32px;
  background-color: #0360a5;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.popup-chat .chatbox-popup .chatbox-popup__main {
  box-sizing: border-box;
  width: 100%;
  padding: calc(2 * 16px) 16px;
  line-height: calc(16px + 16px / 2);
}
.popup-chat .chatbox-popup .chatbox-popup__footer {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 16px;
  border-top: 1px solid #ddd;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 0;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}
.popup-chat .chatbox-panel {
  display: flex;
  position: absolute;
  box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
  flex-direction: column;
  z-index: 2;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  width: 377px;
  background-color: #fff;
}
.popup-chat .chatbox-panel .chatbox-panel__header {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 16px;
  color: var(--color-black);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey);
  align-items: center;
  justify-content: space-around;
  flex: 0 0 auto;
}
.popup-chat .chatbox-panel .chatbox-panel__main {
  box-sizing: border-box;
  width: 100%;
  padding: calc(2 * 16px) 16px;
  line-height: calc(16px + 16px / 2);
  flex: 1 1 auto;
}
.popup-chat .chatbox-panel .chatbox-panel__footer {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 16px;
  border-top: 1px solid #ddd;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 0;
  flex: 0 0 auto;
}/*# sourceMappingURL=style.css.map */

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(#0000 10%,#f03355) content-box;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),
    radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
  animation:l4 1s infinite steps(10);
}
@keyframes l4 {to{transform: rotate(1turn)}}
