/* Initialize */
:root {
    /* Default Style */
    --background-color-light: #ffffff;
    --background-color-primary: #f5f5f5;
    --background-color-secondary: #eeeeee;
    --background-color-third: #dddddd;
    --text-color-primary: #444444;
    --text-color-secondary: #999999;
    /* Accent Colors */
    --accent-color-dark: #756AB6;
    --accent-color-primary: #AC87C5;
    --accent-color-third: #E0AED0;
    --accent-color-light: #FFE5E5;
    --accent-text-dark: var(--accent-color-light);
    --accent-text-primary: var(--accent-color-light);
    --accent-text-third: var(--accent-color-dark);
    --accent-text-light: var(--accent-color-dark);
    /* Default gap */
    --default-gap: 25px;
    /* Default shadow */
    --default-shadow-color: 0, 0, 0;
    --default-shadow-opacity: .1;
    --default-shadow-position: 0 0;
    --default-shadow-blur: 6px;
    --default-shadow-spread: 0;
    --default-shadow: var(--default-shadow-position) var(--default-shadow-blur) var(--default-shadow-spread) rgba(var(--default-shadow-color), var(--default-shadow-opacity));
    /* Layouts */
    --device-width: 100vw;
    --device-height: 100vh;
    /* Alert Colors */
    --success-background: #E0FBE2;
    --success-text: #55AD9B;
    --warning-background: #FFEBD4;
    --warning-text: #E8B86D;
    --error-background: #FFE1E1;
    --error-text: #D37676;
}
* {
    -webkit-box-sizing: border-box;
    -webkit-transition: all .15s ease-in-out;
    box-sizing: border-box;
    transition: all .15s ease-in-out;
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.6;
    background: var(--background-color-primary);
    color: var(--text-color-primary);
    position: relative;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
[class*='list-'] {
    margin: 0;
    padding: 0;
}
canvas.vanta-canvas {
    top: 0;
    bottom: 0;
}
.image-container {
    position: relative;
    overflow: hidden;
    background-color: var(--accent-color-dark);
    color: var(--accent-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    z-index: 1;
}
.image-container::after {
    content: '';
    clear: both;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
.overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.1);
}
.overlay .popup {
    background: var(--background-color-primary);
    padding: var(--default-gap);
    border-radius: 20px;
    box-shadow: var(--default-shadow);
}
.overlay.add-categories {
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.price-text::before {
    content: 'Rp';
    margin-right: 8px;
    clear: both;
}
.grecaptcha-badge {
    z-index: 9999;
}

/* icon Configurataion */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Material Symbols Rounded';
    font-size: 20px;
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 0,
        'opsz' 24
    ;
}

/* List */
[class*='list-'] {
    width: 100%;
    list-style-type: none;
    display: flex;
}
.list-column {
    flex-direction: column;
}
.list-row{
    flex-direction: row;
    align-items: center;
}

/* Link */
a.link {
    text-decoration: none;
    color: var(--accent-color-dark);
}

/* Buttons */
[class*='button-'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    min-height: 40px;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    border: 0;
    outline: 0;
    box-shadow: var(--default-shadow);
    cursor: pointer;
    margin: 0;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
[class*='button-']:hover,
button.swal2-styled:hover {
    box-shadow: 2px 2px 8px 0 rgba(var(--default-shadow-color), .3);
    transform: translateX(-2px) translateY(-2px);
}
[class*='button-']:hover::after,
button.swal2-styled:hover::after {
    content: '';
    clear: both;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: rgba(var(--default-shadow-color), var(--default-shadow-opacity));
    -webkit-animation: fadeIn .15s ease-in-out;
    animation: fadeIn .15s ease-in-out;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
[class*='button-'] * {
    position: relative;
    z-index: 2;
}
[class*='button-default-'] {
    padding: 0 var(--default-gap);
}
[class*='button-circle-'] {
    border-radius: 50% !important;
}
[class*='button-circle-'],
[class*='button-square-'] {
    width: 40px;
    height: 40px;
}
[class*='-round-'] {
    border-radius: 20px;
}
[class*='-noround-'] {
    border-radius: 6px;
}
[class*='-primary'] {
    background: var(--accent-color-primary);
    color: var(--accent-text-primary);
}
[class*='-primary-invert'] {
    background: var(--accent-text-primary);
    color: var(--accent-color-dark);
}
[class*='-errors'] {
    background: var(--error-background);
    color: var(--error-text);
}
[class*='-successes'] {
    background: var(--success-background);
    color: var(--success-text);
}
[class*='-warnings'] {
    background: var(--warning-background);
    color: var(--warning-text);
}
[class*='button-default-'] .icon {
    font-size: 16px;
}

/* Form */
.form {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.form .form-body {
    display: flex;
    flex-direction: column;
    gap: var(--default-gap);
    padding: var(--default-gap);
}
.form .form-footer {
    display: flex;
    width: 100%;
    padding: 0 var(--default-gap);
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.input-group {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 15px;
}
.input-group.rows {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.input-group.rows .label {
    flex-grow: 1;
}
.input-group .label {
    display: flex;
    position: relative;
}
.input-group .label.plain {
    height: 40px;
    flex-direction: row;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--accent-color-third);
}
.input-group .label .placeholder {
    position: absolute;
    top: 0;
    left: 20px;
    background: var(--background-color-primary);
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 10px;
    text-transform: uppercase;
    transform: translateY(-50%);
}
.input-group .label .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40px;
}
.input-group .label .icon.marker {
    left: auto;
    right: 0;
}
.input-group .label .input {
    width: 100%;
    border: 0;
    border-radius: 20px;
    padding: 0 0 0 45px;
    margin: 0;
    background: transparent;
    background-color: transparent;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
}
.input-group .label.plain .input {
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.input-group .label:has(.input:not(:placeholder-shown)) .placeholder,
.input-group .label:has(.input:focus) .placeholder {
    transform: translateY(-101%);
    left: 10px;
    background: transparent;
}
.input-group .label .input:focus {
    outline: 0;
}
.input-group .errorText {
    position: absolute;
    left: 20px;
    bottom: 0;
    font-size: 10px;
    color: var(--error-text);
}
.input-group .label.plain.text-mark {
    flex-direction: row;
    align-items: center;
}
.input-group .label.plain.text-mark .text {
    padding: 0 5px 0 10px;
    height: 100%;
    background: var(--background-color-primary);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    min-width: 130px;
}
.input-group .label.plain.text-mark .input {
    width: 100%;
    padding: 0 5px 0 135px;
}

/* Table */
.table {
    display: table;
    border-collapse: collapse;
    width: 100%;
    border-top: 4px double var(--background-color-third);
    border-bottom: 4px double var(--background-color-third);
}
.table thead th {
    border-bottom: 1px solid var(--background-color-third);
    text-align: left;
    padding: 10px;
}
.table tbody td {
    padding: 10px;
}
.table tbody tr:nth-child(even) {
    background: var(--background-color-secondary);
}
.table tbody tr:hover {
    background: var(--background-color-secondary);
}

/* Custom Sweet alert */
.swal2-icon {
    transform: scale(.6);
}
.swal2-popup {
    border-radius: 20px;
    background: var(--background-color-primary);
    background-color: var(--background-color-primary);
}
.swal2-title {
    font-size: 16px;
    font-weight: 500;
}
.swal2-html-container .list-column li {
    font-size: 12px;
    font-family: inherit;
    color: inherit;
}
button.swal2-styled {
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    overflow: hidden !important;
    box-shadow: var(--default-shadow) !important;
}

/* Topbar */
.topbar {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: var(--background-color-primary);
    box-shadow: var(--default-shadow);
    z-index: 100;
}
.topbar .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 60px;
    position: relative;
}
.topbar .section {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--default-gap);
}
.topbar .section.left {
    padding-left: var(--default-gap);
}
.topbar .section.right {
    padding-right: var(--default-gap);
}
#mobileMenuBtn {
    display: none;
}
.topbar .mobile-menu-btn.icon {
    font-size: 24px;
    font-variation-settings: 'wght' 400;
    cursor: pointer;
}
.topbar .web-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.topbar .web-logo .image-container {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.topbar .web-logo .title {
    font-family: 'Anta', sans-serif;
    font-size: 18px;
}
.topbar .section.right {
    flex-direction: row-reverse;
}
.topbar .icons {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.topbar .icons .notif-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.topbar .icons .notif-icons .icon {
    font-size: 20px;
    font-variation-settings: 'wght' 400;
}
.topbar .icons .notif-icons .dots {
    display: flex;
    width: 15px;
    height: 15px;
    font-size: 10px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--accent-color-dark);
    color: var(--accent-color-light);
    z-index: 2;
    position: absolute;
    bottom: 5px;
    right: 5px;
}
.topbar .icons .icon:hover {
    color: var(--accent-color-dark);
}
.topbar .users {
    display: block;
    cursor: pointer;
}
.topbar .users .image-container {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
#profilePopup {
    display: none;
}
#profilePopup.show {
    display: block;
}
.topbar .profile-popup {
    width: 150px;
    position: absolute;
    top: 70px;
    right: var(--default-gap);
    background: var(--background-color-primary);
    box-shadow: var(--default-shadow);
    border-radius: 10px;
    -webkit-animation: showBounce .4s ease-in-out;
    animation: showBounce .4s ease-in-out;
}
@keyframes showBounce {
    0% {
        top: 0;
        opacity: 0;
        transform: scale(0);
    }
    70% {
        top: 70px;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.topbar .profile-popup .logout-form {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}
.topbar .logout-form .popup-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    height: 40px;
    border: 0;
    outline: 0;
    margin: 0;
    padding: 0 var(--default-gap);
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-decoration: none;
    background: transparent;
    background-color: transparent;
    cursor: pointer;
}

/* Main */
.main {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 60px;
}
.main .wrapper {
    padding: var(--default-gap);
    display: flex;
    flex-direction: column;
    gap: var(--default-gap);
}
.main .section {
    width: 100%;
}
.main .section.grid {
    display: grid;
    grid-template-columns: 280px 1fr;
}
.main .content .grid-list {
    display: flex;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-radius: 60px;
    box-shadow: var(--default-shadow);
    position: relative;
}
.hero .image-container {
    width: 100%;
}
.hero .image-container::after {
    background: rgba(0,0,0,.5);
}
.hero .greeting {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}
.hero .greeting p.text,
.hero .greeting .promo-btn {
    color: #ffffff;
    text-align: center;
}
.hero .greeting p.text {
    font-size: 24px;
}
.hero .greeting .promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px var(--default-gap);
    font-size: 24px;
    text-decoration: none;
    letter-spacing: 1.2px;
    gap: 15px;
    border: 4px solid #ffffff;
    margin-top: var(--default-gap);
    border-radius: 10px;
}
.hero .greeting .promo-btn:hover {
    background: var(--accent-color-dark);
}
.hero .greeting .promo-btn .icon {
    font-size: 28px;
}

/* Topnav */
.topnav {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.topnav .left,
.topnav .right {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.topnav .left {
    flex-direction: row;
}
.topnav .right {
    flex-direction: row-reverse;
    gap: 0;
}
.topnav .left .product-count .num {
    font-weight: 600;
    color: var(--accent-color-dark);
    margin-right: 5px;
}
.topnav .left .product-count .num::before {
    content: '"';
    clear: both;
}
.topnav .left .product-count .num::after {
    content: '"';
    clear: both;
}
.topnav .right .toggle-btn {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.topnav .right .toggle-btn:hover {
    background: var(--background-color-secondary);
}
.topnav .right .toggle-btn.active {
    background: var(--background-color-third);
}

/* Sidenav */
.sidenav .product-filter {
    width: 100%;
    display: block;
    padding: var(--default-gap);
}
.sidenav .section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: var(--default-gap);
}
.sidenav .section .group {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.sidenav .section .group .label {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5px;
    position: relative;
    height: 30px;
    padding: 0 var(--default-gap);
}
.sidenav .section .group .label::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 4px;
    position: absolute;
    right: var(--default-gap);
}
.sidenav .section .group .label:has(.input:checked)::after {
    border-color: var(--accent-color-dark);
    background: var(--accent-color-light);
}
.sidenav .section .group .label .text {
    font-size: 12px;
}
.sidenav .section .group .label .input {
    display: none;
}

/* Products */
.products {
    margin-top: 10px;
    padding: 15px 0;
}
.products.grid-list {
    flex-direction: row;
    flex-wrap: wrap;
}
.products .list-item {
    width: 33.3333%;
    min-width: 200px;
    display: block;
    padding: 15px;
}
.products .list-item .item-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: var(--default-shadow);
    overflow: hidden;
    border-radius: 10px;
    padding-bottom: 10px;
}
.products .list-item .item-wrapper:hover {
    box-shadow: var(--default-shadow-position) 10px var(--default-shadow-spread) rgba(var(--default-shadow-color), .3);
}
.products .details {
    display: flex;
    flex-direction: column;
}
.products .image-container {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
}
.products .details .product_name {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 10px 10px 5px;
}
.products .details .product_name:hover {
    color: var(--accent-color-dark);
}
.products .details .price-text {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    padding: 5px 10px 10px;
}
.products .buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 10px 10px 0;
    border-top: 1px solid rgba(0,0,0,.1);
}
.products .buttons form:nth-child(1),
.products .buttons button.btn-nolog:nth-child(1) {
    flex-grow: 1;
}
.products .buttons form:nth-child(1) .order-now {
    width: 100%;
}
.no-product,
.no-data {
    width: 100%;
    padding: 15px;
    text-align: center;
    display: block;
}

/* User Pages */
.user-page {
    width: 100%;
    display: grid;
    grid-template-columns: 280px 1fr;
}
.user-page .main-content {
    display: block;
}
.user-page .main-content .title {
    width: 100%;
    padding: 10px var(--default-gap);
    border-bottom: 1px solid rgba(0,0,0,.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.user-page .main-content h3.title .text {
    font-size: 18px;
}

/* Sidebar  */
.sidebar {
    border-right: 1px solid rgba(0,0,0,.1);
}
#sidebarOverlay {
    display: none;
}

/* Cart */
.cart-list {
    width: 100%;
}
.cart-list li {
    width: 100%;
    padding: 10px 20px;
}
.cart-list .prod-cart {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    background: var(--background-color-light);
    box-shadow: var(--default-shadow);
    padding: 10px;
}
.cart-list .prod-cart .image-container {
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
    border: 2px solid var(--accent-color-third);
    border-radius: 6px;
}
.cart-list .prod-cart .text-container .product-name {
    font-weight: 600;
}
.cart-list .prod-cart .last-container {
    margin-left: auto;
    align-self: last baseline;
}
.cart-list .prod-cart .last-container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-list .prod-cart .last-container .qty-box {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}
.cart-list .prod-cart .last-container .qty-box .input {
    width: 50px;
    height: 26px;
    padding: 0 5px;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: inherit;
    color: inherit;
    font-family: inherit;
    border: 1px solid var(--accent-color-dark);
    background: transparent;
    background-color: transparent;
    margin: 0;
    border-radius: 6px;
    -moz-appearance: textfield;
    appearance: textfield;
}
.cart-list .prod-cart .last-container .qty-box .input::-webkit-outer-spin-button,
.cart-list .prod-cart .last-container .qty-box .input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-list .prod-cart .last-container .qty-box .input:hover,
.cart-list .prod-cart .last-container .qty-box .input:focus {
    outline: 0;
}

/* Footbar */
.footbar {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--default-gap);
    background: var(--background-color-light);
    margin-top: var(--default-gap);
}
.cart .footbar .cart-total {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--default-gap);
    position: relative;
}
.cart .footbar .cart-total .total-text,
.cart .footbar .cart-total .total {
    position: relative;
    font-size: 16px;
    font-weight: 600;
}
.cart .footbar .cart-total .total::before {
    content: 'Rp';
    margin-right: 10px;
    clear: both;
}
.cart .footbar .cart-total .total-text {
    margin-right: auto;
}
.cart-total .label {
    position: relative;
    max-width: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.cart-total .label::before {
    content: 'Rp';
    clear: both;
    display: block;
    position: absolute;
    left: 0;
    font-size: 16px;
    font-weight: 600;
}
.cart-total .label .saf {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}
.cart-total .input {
    width: 100%;
    height: 40px;
    text-align: right;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    background-color: transparent;
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
}
.cart-total .input:focus {
    border: 0;
    outline: 0;
}

/* Checkout */
.checkout .main-content {
    display: flex;
    flex-direction: column;
    gap: var(--default-gap);
    padding: var(--default-gap) 0;
}
.checkout .main-content .warnings {
    display: block;
    width: 100%;
    padding: 10px;
    border: 2px solid var(--warning-text);
    background: var(--warning-background);
    color: var(--error-text);
    border-radius: 6px;
}
.checkout .main-content .checkout-confirm-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--default-gap);
}
.checkout .main-content .checkout-confirm-list .progress {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 10px;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.checkout .main-content .checkout-confirm-list .progress .countdown {
    font-weight: 600;
}
.checkout .main-content .checkout-confirm-list .progress .progress-bar {
    height: 5px;
    border-radius: 2.5px;
    position: absolute;
    left: 5px;
    bottom: 5px;
    display: block;
}
.checkout .checkout-list {
    padding: calc(var(--default-gap) * 2);
}
.checkout .checkout-list .product-list-wrapper {
    display: flex;
    flex-direction: row;
    padding: 15px;
    gap: var(--default-gap);
    width: 100%;
}
.product-list-wrapper .image-container {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
}
.product-list-wrapper .checkout-item-detail .product-name {
    font-size: 14px;
    font-weight: 600;
}
.product-list-wrapper .checkout-item-detail .product-price {
    font-size: 12px;
    font-weight: 300;
}
.product-list-wrapper .checkout-item-detail .product-price span.x {
    font-weight: 600;
}
.checkout-list .total-prices {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: var(--default-gap);
    padding: 15px;
    border-top: 1px solid rgba(0,0,0,.1);
}
.checkout-info {
    display: block;
    width: 100%;
    padding: var(--default-gap);
    margin-bottom: var(--default-gap);
    border-radius: 10px;
    box-shadow: var(--default-shadow);
    background: var(--error-background);
    color: var(--error-text);
}

/* Get login */
.main.get-login {
    height: calc(var(--device-height) - 60px);
}
.get-login .wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.get-login .card-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--default-gap);
    gap: var(--default-gap);
    border-radius: 20px;
    box-shadow: var(--default-shadow);
}
.get-login .card-container .text p {
    text-align: center;
}

/* Product Detail */
.product .wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--default-gap);
}
.breadcrumb .list-row li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
}
.breadcrumb li,
.breadcrumb li .link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}
.breadcrumb li .link {
    gap: 6px;
}
.breadcrumb li .link .icon {
    font-size: 14px;
}
.product .split.details,
.product .split.details .left {
    display: grid;
    width: 100%;
}
.product .split.details {
    grid-template-columns: 50% 50%;
}
.product .split.details .left {
    grid-template-columns: 200px auto;
}
.product .product-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product .product-images .image-show.image-container {
    width: 100%;
    aspect-ratio: 1/1;
}
.product .product-images .image-show .image {
    object-fit: cover;
    transition: transform 0.1s ease-out, opacity 0.4s ease;
    opacity: 1;
}
.product .product-images .image-show .image.fade-in {
    opacity: 1;
}
.product .product-images .image-show .image.fade-out {
    opacity: 0;
}
.product .product-images .image-show .spinner {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color-light);
    border-top: 2px solid var(--accent-color-dark);
    border-radius: 50%;
    -webkit-animation: spin 1s linear;
    animation: spin 1s linear;
    z-index: 5;
    display: none;
}
#Overlay.overlay {
    align-items: center;
    justify-content: center;
}
.big-spinner {
    border-top: 6px solid var(--accent-color-dark);
    border: 6px solid var(--accent-color-third);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.icon.spins {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.product .split.details .image-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.product .split.details .image-list .image-grid.image-container {
    background: var(--accent-color-light) !important;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: border 0.2s ease-in-out;
    width: 18%;
    aspect-ratio: 1/1;
}
.product .split.details .image-list .image-grid.image-container .image {
    object-fit: cover;
    width: 100%;
    height: auto;
}
.image-grid.active {
    border-color: var(--accent-color-dark) !important;
}
.product .product-detail {
    padding: 0 var(--default-gap);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product .product-detail .product-name .text {
    font-size: 18px;
    font-weight: 600;
}
.product .product-detail .product-price .text {
    font-size: 14px;
    font-weight: 800;
}
.product .product-detail .product-desc {
    display: block;
    width: 100%;
    padding: 5px 10px;
    border-left: 2px solid var(--accent-color-dark);
    background: var(--background-color-secondary);
}
.icon.marker.spin {
    -webkit-animation: spins 1s linear;
    animation: spins 1s linear;
}
@keyframes spins {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
.product .split.details .order-now .form .form-body {
    padding: 0;
}
.product-rating .list-row {
    align-items: center;
    gap: 5px;
}
.product-rating .list-row li .icon {
    font-size: 28px;
    color: #E8B86D;
}
.product-rating .list-row li .icon.fill {
    font-variation-settings: 'FILL' 1;
}
.product-rating .avg-ratings,
.product-rating .raters {
    font-size: 14px;
    font-weight: 500;
}
.product-rating .list-row li:last-child::before {
    content: '/';
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
}
.product-rating .list-row li:last-child::after {
    content: 'Ulasan';
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
}
.product .content-tabs {
    margin-top: var(--default-gap);
}
.product .content-tabs .tab-btn {
    border-top: 1px solid var(--background-color-third);
    border-bottom: 1px solid var(--background-color-third);
}
.product .tab-btn .list-row {
    align-items: center;
    gap: 2px;
}
.product .tab-btn .list-row .tab-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    gap: 10px;
    width: 180px;
}
.product .tab-btn .list-row .tab-item.active {
    background: var(--background-color-third);
}
.product .tab-btn .list-row .tab-item:hover {
    background: var(--background-color-secondary);
}
.rating-form {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--default-shadow);
    background: var(--background-color-light);
}
.rating-form .rating .list-row {
    align-items: center;
    gap: 5px;
}
.rating-form .rating .list-row li {
    display: inline-flex;
    align-items: center;
}
.rating-form .rating .list-row li label {
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
}
.rating-form .rating .list-row li label .icon.fill {
    font-variation-settings: 'FILL' 1;
}
.rating-form .rating .list-row li label:has(.input) {
    cursor: pointer;
}
.rating-form .rating .list-row li label .icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #E8B86D;
    font-size: 28px;
}
.rating-form .rating .list-row li label .input {
    display: none;
}
.rating-form .rating:has(.disabled.rn5) .r5 .icon,
.rating-form .rating:has(.disabled.rn5) .r4 .icon,
.rating-form .rating:has(.disabled.rn5) .r3 .icon,
.rating-form .rating:has(.disabled.rn5) .r2 .icon,
.rating-form .rating:has(.disabled.rn5) .r1 .icon,
.rating-form .rating:has(.disabled.rn4) .r4 .icon,
.rating-form .rating:has(.disabled.rn4) .r3 .icon,
.rating-form .rating:has(.disabled.rn4) .r2 .icon,
.rating-form .rating:has(.disabled.rn4) .r1 .icon,
.rating-form .rating:has(.disabled.rn3) .r3 .icon,
.rating-form .rating:has(.disabled.rn3) .r2 .icon,
.rating-form .rating:has(.disabled.rn3) .r1 .icon,
.rating-form .rating:has(.disabled.rn2) .r2 .icon,
.rating-form .rating:has(.disabled.rn2) .r1 .icon,
.rating-form .rating:has(.disabled.rn1) .r1 .icon,
.rating-form .rating .list-row:has(#star5:checked) #label1 .icon,
.rating-form .rating .list-row:has(#star5:checked) #label2 .icon,
.rating-form .rating .list-row:has(#star5:checked) #label3 .icon,
.rating-form .rating .list-row:has(#star5:checked) #label4 .icon,
.rating-form .rating .list-row:has(#star5:checked) #label5 .icon,
.rating-form .rating .list-row:has(#star4:checked) #label1 .icon,
.rating-form .rating .list-row:has(#star4:checked) #label2 .icon,
.rating-form .rating .list-row:has(#star4:checked) #label3 .icon,
.rating-form .rating .list-row:has(#star4:checked) #label4 .icon,
.rating-form .rating .list-row:has(#star3:checked) #label1 .icon,
.rating-form .rating .list-row:has(#star3:checked) #label2 .icon,
.rating-form .rating .list-row:has(#star3:checked) #label3 .icon,
.rating-form .rating .list-row:has(#star2:checked) #label1 .icon,
.rating-form .rating .list-row:has(#star2:checked) #label2 .icon,
.rating-form .rating .list-row:has(#star1:checked) #label1 .icon {
    font-variation-settings: 'FILL' 1;
}
.rating-form .comment-box {
    display: block;
    width: 100%;
    margin-top: 15px;
    position: relative;
}
.rating-form .comment-box .label {
    display: block;
    max-width: 535px;
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 1px solid var(--accent-color-third);
    overflow: hidden;
    position: relative;
}
.rating-form .comment-box .label textarea {
    width: 100%;
    height: 150px;
    resize: none;
    border: 0;
    padding: 40px 10px 10px 10px;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: transparent;
    background-color: transparent;
}
.rating-form .comment-box .label textarea:focus {
    outline: 0;
}
.rating-form .comment-box .heads {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--background-color-secondary);
}
.rating-form .submit-button {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 0;
}

/* Tab Contents */
.tab-contents {
    padding: var(--default-gap) 0;
}