@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

*,
:after,
:before {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0px;
    /*    color: #687188;*/
    color: #687188;
    font-size: 16px;
}

a {
    text-decoration: none;
}

.navbar-nav > li {
    margin-left: 5px;
    margin-right: 5px;
    /* text-transform: uppercase; */
    /*    font-size: 16px;*/
    color: #221b40;
    font-weight: normal;
}

.navbar-nav > li a {
    /* text-transform: uppercase; */
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    /* letter-spacing: 0.05em; */
}

.nav-link {
    background: none;
    border: 0;
    color: #33354d;
    display: block;
    font-size: 16px;
    font-weight: normal;
    /* font-family: "Oswald", sans-serif; */
    /*    padding: var(--si-nav-link-padding-y) var(--si-nav-link-padding-x);*/
    text-decoration: none;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
        border-color 0.2s ease-in-out;
}

.nav-link.categori {
    font-size: 15px;
    font-weight: normal;
}

.nav-link:hover {
    color: #dc3545;
}

a,
a:focus,
a:active {
    text-decoration: none;
    /*    font-size: 16px;*/
    outline: none;
    color: #33354d;
    /*    color: white;*/
}

a:hover {
    color: #dc3545;
}

p {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

p {
    /*    color: #687188;*/
    color: #687188;
    line-height: 28px;
    margin-bottom: 25px;
}

h1 {
    /* font-family: "Oswald", sans-serif; */
    font-family: "Poppins", sans-serif;
    /* color: #221b40; */
    /* color: #252525; */
    color: #33354d;
}

h2 {
    color: #0f2f4e !important;
}

h3 {
    /* font-family: "Oswald", sans-serif; */
    font-family: "Poppins", sans-serif;
    line-height: 32px;
    font-weight: 500;
    /* color: #33354d; */
    color: #0f2f4e;
}

h4 {
    /* color: #333; */
    color: #0f2f4e !important;
}

h5 {
    color: #0f2f4e !important;
}

h6.judul {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-nav .nav-link.active {
    color: #dc3545 !important;
}

.card-img-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.navigation {
    display: flex;
    align-items: center;
    border-top: 6px solid #d60e96;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #ffffff;
    background-color: #001e2b;
}

ul li a.cart:hover {
    text-decoration: none;
    color: #d60e96;
}

ul li a.cart .cart-basket {
    font-size: 0.6rem;
    position: absolute;
    top: -6px;
    right: -5px;
    width: 15px;
    height: 15px;
    color: #fff;
    background-color: #418deb;
    border-radius: 50%;
}

#backToTopBtn {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: none;
    padding: 10px 15px;
    font-size: 16px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

#backToTopBtn:hover {
    background-color: black;
    color: white;
}

/* Product Grid */

.product-grid {
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.product-grid .product-image {
    overflow: hidden;
    position: relative;
}

.product-grid .product-image a.image {
    display: block;
}

.product-grid .product-image img {
    width: 100%;
    height: auto;
}

.product-grid .product-image .pic-1 {
    transition: all 0.3s ease 0s;
}

.product-grid .product-image:hover .pic-1 {
    transform: translateX(100%);
}

.product-grid .product-image .pic-2 {
    width: 100%;
    height: 100%;
    transform: translateX(-101%);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
}

.product-grid .product-image:hover .pic-2 {
    transform: translateX(0);
}

.product-grid .product-sale-label {
    color: #fff;   
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1px 1px;
    position: absolute;
    top: 2px;
    left: 6px;
}



.product-grid .product-like-icon {
    color: #696969;
    font-size: 22px;
    line-height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.product-grid .product-like-icon:hover {
    color: #192a56;
}

.product-grid .product-like-icon:before,
.product-grid .product-like-icon:after {
    content: attr(data-tip);
    color: #fff;
    background-color: #000;
    font-size: 12px;
    line-height: 18px;
    padding: 7px 7px 5px;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 15px;
    transition: all 0.3s ease 0s;
}

.product-grid .product-like-icon:after {
    content: "";
    height: 15px;
    width: 15px;
    padding: 0;
    transform: translateX(-50%) rotate(45deg);
    right: auto;
    left: 50%;
    top: 15px;
    z-index: -1;
}

.product-grid .product-like-icon:hover:before,
.product-grid .product-like-icon:hover:after {
    visibility: visible;
    top: 30px;
}

.product-grid .product-links {
    width: 170px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transition: all 0.3s ease 0s;
}

.product-grid:hover .product-links {
    bottom: 40px;
    opacity: 1;
}

.product-grid .product-links li {
    display: inline-block;
    margin: 0 2px;
}

.product-grid .product-links li a {
    color: #fff;
    background: #111111;
    font-size: 16px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease 0s;
}

.product-grid:hover .product-links li a:hover {
    background: #333;
}

.product-grid .product-content {
    text-align: left;
    padding: 15px 0 0;
}

.product-grid .title {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 8px;
}

.product-grid .title a {
    color: #333;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.product-grid .title a:hover {
    color: #212121;
}

.product-grid .price {
    color: #212121;
    font-size: 16px;
    font-weight: 600;
}

.price {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
}

.product-grid .price span {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    margin: 0 5px 0 0;
}

.product-card:first-child button {
    background-color: #e84118;
}

.product-cart button {
    border: 0;
    /*    border-radius: 0 0 10px 10px;*/
    color: white;
    cursor: pointer;
    background: #e84118;
    margin-top: 15px;
    padding: 1em;
    /* text-transform: uppercase; */
    transition: all linear 0.3s;
    width: 100%;
}

.product-cart button:hover {
    font-weight: 500;
    color: yellow;
    /*
    letter-spacing: .1em;
}
*/
}

.active > .page-link,
.page-link.active {
    z-index: 3;
    color: white;
    background-color: #212121;
    border-color: #212121;
}

.btn-primary {
    background: #111111 !important;
    border: 1px solid #1e2223;
    padding: 5px 25px 5px 25px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-outline-gray-400 {
    color: #c1c7c6;
    border-color: #c1c7c6;
}

.btn-icon-wishlist {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 0.92969rem;
    font-weight: 400;
    height: 2.5rem;
    justify-content: center;
    padding: 0;
    /* position: relative; */
    width: 2.5rem;
}

.btn-outline-gray-400:hover {
    color: #dc3545 !important;
    border-color: #c1c7c6;
}

.card-img-container {
    overflow: hidden;
}

.card-img-container img {
    transition: transform 0.4s ease;
}

.card-img-container:hover img {
    transform: scale(1.1);
    /* zoom in */
}

.page-link {
    color: #212121;
}

.card {
    border-width: 0;
    /* -webkit-box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.125);
  -moz-box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.125);
  box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.125);

  background: #ffffff; */
    background-color: white;
    box-shadow: 0px 8px 24px 0 rgba(242, 29, 40, 0.15);
    -webkit-box-shadow: 0px 8px 24px 0 rgba(242, 29, 40, 0.15);
    -moz-box-shadow: 0px 8px 24px 0 rgba(242, 29, 40, 0.15);
    transition: filter 0.2s ease-in-out;
    /* margin-bottom: 20px; */
    /* margin: 10px; */
}

.card-img img {
    max-width: 100%;
    transition: all 1s;
}

.card-img .img-wrapper {
    overflow: hidden;
}

,
card-img img:hover {
    transform: scale(1.1);
}

.bg-pattern {
    background-image: linear-gradient(rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.91)),
        url("../images/pattern.jpg");
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

/* feature card */
.feature-card {
    position: relative;
    color: white;
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg-ornament.png");
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.5s ease;
}

/* overlay color */
.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    /* black with 40% opacity */
    z-index: -1;
}

/* Zoom effect on hover */
.feature-card:hover::before {
    transform: scale(1.1);
}

.feature-content {
    position: absolute;
    /* top: 20%;
  left: 10%; */
    max-width: 80%;
    text-align: center;
}

.feature-content h6 {
    letter-spacing: 2px;
    color: red;
    font-size: 16px;
}

.feature-content h1 {
    font-weight: 600;
}

.btn-shop {
    background-color: white;
    color: black;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 0;
}

.btn-shop:hover {
    background-color: #f8f9fa;
    border-color: red;
}

.btn-detail {
    background-color: #dc3545;
    color: #ffffff;
    border: 1px solid #dc3545;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background-color: #ffffff;
    color: #dc3545;
}

/* End feature card */

@media screen and (max-width: 990px) {
    .product-grid {
        margin: 0 0 30px;
    }
}

/* End */

.gading {
    background-color: #e9e4dc;
}

@media (min-width: 992px) {
    .navbar li {
        margin-left: 0.1em;
        /* margin-right: 1em; */
    }
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.text-body-secondary {
    color: #6c727f !important;
}

.fs-xs {
    font-size: 0.75rem !important;
}

.text-body-emphasis {
    color: #33354d !important;
    font-size: 15px;
}

/* Profile Picture */

.profile-pic {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
}

.profile-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.profile-menu .dropdown-menu {
    right: 0;
    left: unset;
}

.profile-menu .fa-fw {
    margin-right: 10px;
}

.toggle-change::after {
    border-top: 0;
    border-bottom: 0.3em solid;
}

.contact-pic {
    display: inline-block;
    vertical-align: middle;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
}

.contact-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Input Form */

.shopping-cart {
    padding-bottom: 50px;
}

.shopping-cart.dark {
    background-color: #f6f6f6;
}

.shopping-cart .content {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    background-color: white;
}

.shopping-cart .block-heading {
    padding-top: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.shopping-cart .block-heading p {
    text-align: center;
    max-width: 420px;
    margin: auto;
    opacity: 0.7;
}

.shopping-cart .dark .block-heading p {
    opacity: 0.8;
}

.shopping-cart .block-heading h1,
.shopping-cart .block-heading h2,
.shopping-cart .block-heading h3 {
    margin-bottom: 1.2rem;
    color: #3b99e0;
}

.shopping-cart .items {
    margin: auto;
}

.shopping-cart .items .product {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.shopping-cart .items .product .info {
    padding-top: 0px;
    text-align: center;
}

.shopping-cart .items .product .info .product-name {
    font-weight: 600;
}

.shopping-cart .items .product .info .product-name .product-info {
    font-size: 14px;
    margin-top: 15px;
}

.shopping-cart .items .product .info .product-name .product-info .value {
    font-weight: 400;
}

.shopping-cart .items .product .info .quantity .quantity-input {
    margin: auto;
    /* width: 80px; */
}

.shopping-cart .items .product .info .price {
    margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
}

.shopping-cart .summary {
    border-top: 2px solid #5ea4f3;
    background-color: #f7fbff;
    height: 100%;
    padding: 30px;
}

.shopping-cart .summary h3 {
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
}

.shopping-cart .summary .summary-item:not(:last-of-type) {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shopping-cart .summary .text {
    font-size: 1em;
    font-weight: 600;
}

.shopping-cart .summary .price {
    font-size: 1em;
    float: right;
}

.shopping-cart .summary button {
    margin-top: 20px;
}

.rounded-circle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

::-webkit-input-placeholder {
    font-size: 16px;
    color: #687188;
}

:-moz-placeholder {
    /* Firefox 18- */
    font-size: 16px;
    color: #687188;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 16px;
    color: #687188;
}

/* Overriding styles */

::-webkit-input-placeholder {
    font-size: 16px !important;
    color: #687188;
}

:-moz-placeholder {
    /* Firefox 18- */
    font-size: 16px !important;
    color: #687188;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 16px !important;
    color: #687188;
}

/* Form */

.no-arrow {
    -moz-appearance: textfield;
}

.no-arrow::-webkit-inner-spin-button {
    display: none;
}

.no-arrow::-webkit-outer-spin-button,
.no-arrow::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.required {
    color: #ff5b4a !important;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.53rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4e5562;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cad0d9;
    border-radius: 0.5rem;
    box-shadow: unset;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* End Form */

@media (min-width: 768px) {
    .shopping-cart .items .product .info {
        padding-top: 25px;
        text-align: left;
    }

    .shopping-cart .items .product .info .price {
        font-weight: bold;
        font-size: 16px;
        top: 17px;
    }

    .shopping-cart .items .product .info .quantity {
        text-align: center;
    }

    .shopping-cart .items .product .info .quantity .quantity-input {
        padding: 4px 10px;
        text-align: center;
    }
}

/* Maintenance Mode */
.maintenance {
    display: block;
    position: fixed;
    z-index: -4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.maintenance-item {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg0 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-img1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item.active {
    color: #fd5631;
}

/* Table  */

table td,
table th {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.mask-custom {
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-clip: padding-box;
    box-shadow: 10px 10px 10px rgba(46, 54, 68, 0.03);
}

/* Card */
.card-img-overlay-custom {
    /* background-color: rgba(0, 0, 0, 0.8);  */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.card {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.form-check-input:checked {
    border-color: #181d25;
    color: #212121;
}

.form-check-input {
    border-color: #181d25;
}

/* Check Box Custom */
.form-check-input:checked {
    background-color: #fff;
    border-color: #000;
}

.form-check-input:checked::before {
    color: #000 !important;
}

.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3e%3cpath fill='black' d='M13.485 1.929a1 1 0 0 1 1.414 1.414l-8.485 8.485a1 1 0 0 1-1.414 0L1.1 8.343a1 1 0 1 1 1.414-1.414l3.072 3.071 7.899-7.899z'/%3e%3c/svg%3e");
    background-size: 10px 10px;
}

/*  En check box */


@media screen and (max-width: 600px) {
    .carousel-item img {
        height: 20vh;
    }

    .mblmt5 {
        margin-top: 0px !important;
    }S

    .mblpy5 {
        padding-top: 10px !important;
    }

    .mblmb4 {
        margin-bottom: 0px !important;
    }

    h1 {
        font-size: 24px;
    }

    h3.mb-4 {
        margin-bottom: 10px !important;
        margin-top: 20px;
    }

    h6 {
        font-size: 14px;
    }

    .col-sm-6 {
        margin-bottom: 20px !important;
    }

    .mb-4 {
        margin-bottom: 0px !important;
    }

    .mblcontact {
        margin-bottom: 20px;
    }

    .mb-5 {
        margin-bottom: 20px !important;
    }

    .pb-2 {
        padding-bottom: 10px !important;
    }

    .p-5 {
        padding: 10px !important;
    }

    .pb-5 {
        padding-bottom: 0px !important;
    }

    .pt-5 {
        padding-top: 10px !important;
    }

    .mt-5 {
        margin-top: 10px !important;
    }

    .ps-0 {
        padding-left: 10px !important;
    }

    .mbl-ctc {
        margin-top: 30px !important;
    }
}



.btn-cart {
    background-color: #333d4c;
    border: none;
}

.btn-cart:hover {
    background-color: #f55266 !important;
    color: #ffffff !important;
}

.btn i {
    font-size: 16px;
    color: #333d4c;
}

.btn i:hover {
    font-size: 16px;
    color: #ffffff !important;
}

.pic-history {
    width: 50px;
    height: 50px;
}

.btn {
    /* text-transform: uppercase; */
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    /* letter-spacing: 0.05em; */
}

.btn-secondary {
    color: #333d4c;
    background: #eef1f6;
    border-color: #eef1f6;
    hover-color: #181d25;
    hover-background: #e0e5eb;
    hover-border-color: #e0e5eb;
    active-color: #333d4c;
    active-background: #e0e5eb;
    active-border-color: #e0e5eb;
    disabled-color: #333d4c;
    disabled-background: #eef1f6;
    disabled-border-color: #eef1f6;
}

.btn a {
    /* text-transform: uppercase; */
    font-family: "Oswald", sans-serif;
}

.btn-outline-secondary {
    border-color: #087096;
}

.btn-outline-secondary:hover {
    color: white !important;
}

.btn-danger:hover {
    color: white !important;
}

/* Dropdown Menu */
.flag {
    width: 20px;
    height: 14px;
    margin-right: 10px;
    object-fit: cover;
}

.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #f0f4f8;
    color: black;
}