﻿* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-page-primary: #ffffff;
    --bg-page-secondary: #f3f3f3;
    --bg-page-tertiary: #9ede24;
    --btn-primary: #FFC107;
    --btn-secondary: #aaaaaa;
    --btn-danger: #e51c2f;
    --btn-warning: #ff5a00;
    --btn-success: #37d637;
    --btn-info: #37d6bc;
    --text-primary: #212529;
    --text-secondary: #f3f3f3;
    --text-tertiary: #68635d;
    --text-sub: #FFC107;
}

.bg-page-primary {
    background-color: var(--bg-page-primary);
}
.bg-page-secondary {
    background-color: var(--bg-page-secondary);
}
.bg-page-tertiary {
    background-color: var(--bg-page-tertiary);
}

.text-primary {
    color: var(--text-primary) !important;
}
.text-secondary {
    color: var(--text-secondary) !important;
}
.text-tertiary {
    color: var(--text-tertiary) !important;
}
.text-sub {
    color: var(--text-sub) !important;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary)
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text-primary);
    background-color: rgb(111 111 111 / 50%);
    border: 1px solid rgb(111 111 111 / 50%);
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}

.menu {
    position: relative;
    width: 80%;
    z-index: 9999;
}

.my-navbar {
    width: 100%;
    padding: 20px 20px;
    position: absolute;
    top: 20px;
    left: 0;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-secondary);
    text-align: center;
}

    .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
        color: var(--text-sub);
    }

.nav-item .nav-link {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0px 10px;
    position: relative;
}

    .nav-item .nav-link:hover {
        color: var(--text-sub) !important;
    }

    .nav-item .nav-link:before {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        transform: scaleX(0);
        transition: 0.2s;
        content: "";
        transform-origin: center;
        background-color: var(--text-sub);
    }

    .nav-item .nav-link:hover:before {
        transform-origin: right;
        transform: scaleX(1);
    }

.navbar-scroll {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-page-tertiary);
    padding: 5px 20px !important;
    transition: all .7s ease;
    animation: scroll 0.6s 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.btn-login {
    background-color: var(--btn-primary);
    color: var(--text-secondary);
    padding: 0.3rem 2rem;
    font-weight: 700;
}

.bg-light-grey {
    background-color: var(--bg-page-secondary);
}

.align_center {
    align-self: center;
}

.footer {
    background-color: var(--bg-page-tertiary);
    border-radius: 40px 40px 0 0;
    margin-top: -2rem;
}

.btn-sosmed-footer {
    padding: 3px !important;
}

.text-grey {
    color: var(--text-secondary) !important;
}

.search-wrapper {
    position: relative;
    margin-right: 0.66667rem;
    width: 100%;
}
    .search-wrapper .input-holder {
        height: 42px;
        width: 100%;
        overflow: hidden;
        position: relative;
        border-radius: 50px;
        background: #FFFFFF;
        transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
    }
        .search-wrapper .input-holder .search-input {
            width: 100%;
            padding: 0 70px 0 20px;
            opacity: 1;
            position: absolute;
            top: 0;
            left: 0;
            background: transparent;
            box-sizing: border-box;
            border: none;
            outline: none;
            transform: translate(0, 60px);
            transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
            transition-delay: 0.3s;
            font-size: .88rem;
            top: -3rem;
            color: var(--text-primary);
        }
        .search-wrapper .input-holder .search-icon {
            width: 42px;
            height: 42px;
            border: none;
            padding: 0;
            outline: none;
            position: relative;
            z-index: 2;
            float: right;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            background: var(--btn-primary);
            border-radius: 30px;
        }
            .search-wrapper .input-holder .search-icon span {
                width: 22px;
                height: 22px;
                display: inline-block;
                vertical-align: middle;
                position: relative;
                transform: rotate(45deg);
                transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
            }
                .search-wrapper .input-holder .search-icon span::before {
                    width: 4px;
                    height: 11px;
                    left: 9px;
                    top: 13px;
                    border-radius: 2px;
                    background: white;
                    position: absolute;
                    content: '';
                }
                .search-wrapper .input-holder .search-icon span::after {
                    width: 14px;
                    height: 14px;
                    left: 4px;
                    top: 0;
                    border-radius: 16px;
                    border: 2px solid white;
                    position: absolute;
                    content: '';
                }

.header-left-img {
    bottom: 15%;
    width: 50%;
    position: absolute;
    left: 25%;
}

.artikel-title{
    color: var(--text-primary);
}
.artikel-text{
    color: var(--text-tertiary);
}

#navbar-search {
    width: 100%;
}

.pilih-lokasi-pengiriman {
    width: 90%;
    height: 40px;
    box-shadow: 0 1.5px 9px -3px #212529;
    position: relative;
    z-index: 2;
    background-color: #fff;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 30px;
    font-size: 12px;
    margin-bottom: 10px;
    color: #0d0d0d !important;
    border: 1px solid #cfcfcf;
    border-radius: 11px !important;
    margin-top: 1rem;
}
    .pilih-lokasi-pengiriman .lokasi_pengiriman {
        width: 100%;
        text-align: center;
        display: flex;
    }
.text-ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100% !important;
    display: block !important;
    overflow: hidden;
}

@media only screen and (max-width: 600px) {
    .btn-sosmed-footer img {
        width: 50% !important;
    }

    .search-wrapper {
        width: 100%;
    }

        .search-wrapper .input-holder {
            width: 100%;
        }
    #navbar-search {
        width: 60%;
    }

    .header-left-img {
        position: relative;
    }

}







.quantity-container {
    display: flex;
    align-items: center;
    width: fit-content;
}

.quantity-input {
    width: 40px;
    height: 20px;
    text-align: center;
}

    .quantity-input:: -webkit-outer-spin-button, .quantity-input:: -webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.quantity-button {
    background-color: var(--btn-primary);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    width: 25px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.rounded-m {
    border-radius: 15px !important;
}

.bg-highlight {
    background-color: var(--bg-page-tertiary) !important;
}

.minus, .plus, .cancel {
    width: 40px;
    height: 30px;
    background: var(--bg-page-primary);
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--btn-primary);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 25px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-secondary);
}

.minus, .plus {
    background-color: var(--btn-primary);
}

.number_input {
    height: 30px;
    width: 100px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--btn-primary);
    border-radius: 0;
    display: inline-block;
    vertical-align: middle;
    color: var(--text-primary) !important;
}

.btn_inverse_black {
    border: 1px solid;
    background-color: var(--btn-secondary);
    width: 100%;
    color: var(--text-secondary);
}

.btn_black {
    border: 1px solid;
    color: var(--text-secondary);
    background-color: var(--btn-primary);
    width: 100%;
}

.modal {
    margin-top: 5rem;
}


.input-style-1 {
    position: relative;
}

.input-style-1.has-icon .input-icon {
    position: absolute;
    z-index: 10;
    margin-top: 20px;
    margin-left: 0px;
}

.input-style-1.has-icon .input-style-1-active {
    color: var(--text-primary);
    transform: translateX(-25px);
    transition: all 150ms ease;
}
.input-style-1.has-icon span {
    margin-left: 25px;
}
.input-style-1 span {
    color: var(--text-primary);
    font-weight: 500;
    position: absolute;
    font-size: 10px;
    margin-top: -3px;
    opacity: 0;
    transition: all 250ms ease;
}
span.input-style-1-active {
    opacity: 1;
    padding-right: 10px !important;
    right: auto !important;
}
.input-style-1-inactive {
    color: var(--text-tertiary) !important;
}
.input-style-1-active {
    opacity: 1 !important;
}
.input-style-1 input {
    font-size: 13px;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin-bottom: 10px;
    border: none;
    background-color: var(--bg-page-primary);
    border-bottom: solid 1px rgba(0,0,0,0.08);
    transition: all 250ms ease;
    color: var(--text-primary);
}
.input-style-1.has-icon input {
    padding-left: 30px;
}
.input-style-1.has-icon .input-style-1-active {
    color: black !important;
}

.input-style-1 span {
    color: var(--text-primary);
}

.field-icon {
    float: right;
    margin-left: -25px !important;
    margin-top: -35px !important;
    position: relative !important;
    z-index: 2;
}
a {
    text-decoration: none !important;
}
.theme-light .color-theme {
    color: var(--text-primary) !important;
}

.btn-keranjang {
    background-color: #d3d3d300;
    border: 0;
    padding: 0.5rem 1rem;
    font-size: x-large;
    position: relative;
    color: white;
    z-index: 99999;
}
.count_keranjang {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: medium;
    background-color: gold;
    padding: 1px 8px;
    border-radius: 50%;
}

.hr-dotted {
    border-top: 2px dotted var(--text-primary);
}
.text-jowara {
    color: var(--text-tertiary);
}

.toggle {
    margin-top: 0 !important;
    width: auto !important;
    height: auto !important;
    min-width: 3.125rem !important;
    min-height: 1.938rem !important;
    padding: 0.25rem 0.5rem !important;
    font-size: .25rem !important;
    line-height: 1.5 !important;
    border-radius: 0.2rem !important;
}
.toggle-on.btn {
    padding-right: 1rem !important;
    padding: 0.25rem 0.5rem;
    font-size: .75rem;
    line-height: 2;
}
.toggle-off.btn {
    padding-left: 1rem !important;
    padding: 0.25rem 0.5rem;
    font-size: .75rem;
    line-height: 2;
}
.btn-success {
    background-color: var(--btn-success);
    border-color: var(--btn-success);
    color: var(--text-secondary);
}
.btn-primary {
    background-color: var(--btn-primary);
    border-color: var(--btn-primary);
    color: var(--text-secondary);
}
.btn-jowara {
    background-color: var(--btn-warning);
    border-color: var(--btn-warning);
    color: var(--text-secondary);
}
.btn-warning {
    background-color: var(--btn-warning);
    border-color: var(--btn-warning);
    color: var(--text-secondary);
}
.btn-info {
    background-color: var(--btn-info);
    border-color: var(--btn-info);
    color: var(--text-secondary);
}
.btn-danger {
    background-color: var(--btn-danger);
    border-color: var(--btn-danger);
    color: var(--text-secondary);
}
.btn-block {
    display: block;
    width: 100%;
}
.text-right {
    text-align: right;
}
.form-group {
    margin-bottom: 1rem;
}


/* custom radio */

.customRadio input[type="radio"] {
    position: absolute;
    left: -9999px;
}

    .customRadio input[type="radio"] + label {
        position: relative;
        padding: 3px 0 0 40px;
        cursor: pointer;
        font-weight: 900;
    }

        .customRadio input[type="radio"] + label:before {
            content: '';
            background: #fff;
            border: 2px solid var(--btn-primary);
            height: 25px;
            width: 25px;
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .customRadio input[type="radio"] + label:after {
            content: '';
            background: var(--btn-primary);
            width: 15px;
            height: 15px;
            border-radius: 50%;
            position: absolute;
            top: 5px;
            left: 5px;
            opacity: 0;
            transform: scale(2);
            transition: transform 0.3s linear, opacity 0.3s linear;
        }

    .customRadio input[type="radio"]:checked + label:after {
        opacity: 1;
        transform: scale(1);
    }



.list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.voucher {
    display: flex;
    /* width: 146px; */
    border: 1px solid var(--btn-secondary);
    margin: 3px 5px;
    min-width: 377px;
}

    .voucher .no {
        width: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--btn-secondary);
        color: var(--bg-page-primary);
        box-shadow: 0px 0px 1px 1px #009688;
    }

    .voucher .content {
        width: 242px;
        padding: 3px 6px;
    }

        .voucher .content .kode {
            font-weight: 900;
        }

        .voucher .content .nilai {
            font-size: 13px;
        }

        .voucher .content .atribute {
            display: flex;
            font-size: 13px;
        }

            .voucher .content .atribute .limit {
                margin: 0px 5px;
            }

    .voucher .button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .voucher .button div {
            margin: 1px 4px;
        }

        .voucher .button .edit {
        }

        .voucher .button .del a {
            color: var(--btn-danger);
        }

.buttoninfo {
    font-size: 12px;
    width: 86%;
    background: var(--btn-info);
    border: none;
}

.bg-highlight, .page-item.active a {
    background-color: var(--bg-page-tertiary) !important;
}
.btn.accordion-btn {
    text-align: left !important;
    padding: 15px 17px;
    font-size: 13px;
    font-weight: 700;
}
.color-white {
    color: #fff !important;
}
.accordion-icon {
    float: right;
    transition: all 250ms ease;
    margin-top: 5px;
}
.theme-light .bg-theme {
    background-color: #fff !important;
}
.list-custom-small {
    line-height: 50px;
}
    .list-custom-small a i:last-child {
        float: right;
        font-size: 20px;
        font-style: normal;
    }
    .list-custom-small i {
        line-height: 50px;
    }
    .list-custom-small a {
        color: #1f1f1f;
        font-weight: 500;
        font-size: 13px;
        border-bottom: solid 1px rgba(0,0,0,0.05);
    }