/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

p :root {
    --main-color: #d3af40;
    --secondary-color: #0c6304;
    --content-border-radius: 10px;
    --content-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    --content-container-margin: 1rem 0 1rem 0;
    --submit-btn-color: #66c8ff;
    --submit-btn-hover-color: #32abf2;
    --back-btn-color: rgb(128, 128, 128);
    --back-btn-hover-color: rgb(90, 90, 90);
}

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Poppins", sans-serif;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

/* .hidden,
[hidden] {
    display: none !important;
} */

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
    (-webkit-min-device-pixel-ratio: 1.25),
    (min-resolution: 1.25dppx),
    (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Solid border */
hr.solid {
    border-top: 3px solid rgb(122, 121, 121);
}

/* Loader */
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.blockMsg {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent !important;
    border: none !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* product filter */
.product-filter-category {
    margin-top: 1rem;
}

/* vertical line */
.vertical-line {
    border-left: 6px solid gray;
    border-width: 3px;
    height: 50px;
}

/*Button disabled - CSS color class*/
.btn-disable {
    cursor: not-allowed;
    pointer-events: none;
    color: #c0c0c0 !important;
    background-color: #ffffff !important;
}

#root {
    display: flex;
    flex-direction: column;
    background-color: #fbfbfb;
}

footer {
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-top: 10vh;
}

#navigation > li > a {
    font-size: 1rem;
    font-weight: bold;
}

.btn.btn-submit {
    background-color: var(--submit-btn-color);
    margin-top: 2rem;
    color: white;
    padding: 0.5rem 3rem 0.5rem 3rem;
    font-weight: bold;
}

.btn.btn-auth.btn-submit {
    width: 40%;
}

.btn.btn-auth.btn-back {
    width: 40%;
    background: linear-gradient(to bottom right, #2d2d2d, #7b7c7b);
}

.btn.btn-submit:hover {
    background-color: var(--submit-btn-hover-color);
}

.btn.btn-back {
    background-color: var(--back-btn-color);
    margin-top: 2rem;
    color: white;
    padding: 0.5rem 3rem 0.5rem 3rem;
    font-weight: bold;
}

.btn.btn-auth {
    background: linear-gradient(to bottom right, #14690a, #64ad5b);
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.5;
    outline: transparent;
    padding: 0 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
}
.btn.btn-auth:not([disabled]):focus,
.btn.btn-auth:not([disabled]):hover {
    color: #fff;
    box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 30%);
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}

.btn.btn-back:hover {
    background-color: var(--back-btn-hover-color);
    color: white;
}

/* Pagination */
.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination a.active {
    background-color: #4caf50;
    color: white;
    border-radius: 5px;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
    border-radius: 5px;
}

.search-form {
    display: flex;
    background-color: white;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 1rem;
}

.search-form.product-search {
    box-shadow: var(--content-box-shadow);
}

.search-form.product-search input {
    font-size: small;
}

.search-form .btn-secondary {
    background-color: transparent;
    color: grey;
    border: none;
}

.search-form .btn-secondary:hover {
    background-color: transparent;
    color: grey;
}

.search-form .btn-secondary:active {
    background-color: transparent !important;
    color: grey;
}

.search-form .btn-secondary:visited {
    background-color: transparent;
    color: grey;
}

.search-input {
    border-radius: 1rem;
    border-width: 0;
    padding: 10px;
    width: 100%;
}

.search-input:focus {
    outline: none;
}

.header-btn-container {
    width: 18%;
    display: flex;
    justify-content: space-around;
}

.header-btn-container button {
    all: unset;
}

.header-btn-container i {
    font-size: 1.8rem;
    color: white;
}

.header-btn-container i:hover {
    color: rgb(237 234 201);
}

.navbar {
    /* background-color: var(--main-color); */
    background: linear-gradient(
        180deg,
        rgba(231, 193, 84, 1) 12%,
        rgba(233, 198, 96, 1) 25%,
        rgba(237, 208, 123, 1) 47%
    );
}

.header-no-data {
    display: flex;
    justify-content: center;
}

.logo-img {
    width: 10rem;
}

.mandatory-attribute {
    color: red;
}

.main {
    display: flex;
    align-self: center;
    flex-direction: column;
    width: 90%;
    margin-top: 7rem;
    flex: 1;
    min-height: 100vh;
}

/* Not Found Element  */
.content-not-found-container {
    background-color: rgb(212, 212, 212);
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-left: 5%;
}

.not-found-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.gold-information-container {
    display: flex;
    flex: 1;
    width: 100%;
    border-radius: var(--content-border-radius);
    margin: var(--content-container-margin);
    padding: 10px;
    /* height: 20rem; */
    /* background-color: var(--main-color); */
    justify-content: space-between;
    box-shadow: var(--content-box-shadow);
}

.gold-information {
    background-color: white;
    border-radius: 0.5rem;
    width: 100%;
    height: 20em;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    margin: 20px;
}

.gold-information .title {
    color: gray;
    font-weight: 600;
}

.buyback-price-wrapper {
    width: 98%;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    height: 100%;
    background-color: #eccf7b;
    height: 12rem;
    border-radius: var(--content-border-radius);
    padding: 10px;
}

.gold-information img {
    width: 100%;
    border-radius: var(--content-border-radius);
}

.buyback-price-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #eccf7b;
    box-shadow: inset 0 0 6px #eccf7b;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.buyback-price-wrapper::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

.buyback-price-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #eccf7b;
    box-shadow: inset 0 0 6px #eccf7b;
    background-color: #c8c8c8b6;
}

.buyback-price {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid;
}

.buyback-price p {
    width: 50%;
    margin: auto;
}

.price {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* gold price table  */
#lm-antam-prices-table th {
    text-align: center;
    vertical-align: middle;
}
#lm-antam-prices-table td {
    text-align: center;
    vertical-align: middle;
}

.gold-price-table-container {
    margin: var(--content-container-margin);
    height: 20em;
}

.gold-price-table-container table {
    border-collapse: collapse;
    border-radius: var(--content-border-radius);
    overflow: hidden;
    background-color: #fff3cd;
    box-shadow: var(--content-box-shadow);
}

.gold-price-table-container table tbody {
    height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}

.gold-price-table-container table {
    display: flex;
    flex-flow: column;
    height: 100%;
    width: 100%;
}
.gold-price-table-container table thead {
    flex: 0 0 auto;
    width: calc(100% - 0.9em);
}
.gold-price-table-container table tbody {
    flex: 1 1 auto;
    display: block;
    overflow-y: scroll;
}
.gold-price-table-container table tbody tr {
    width: 100%;
}
.gold-price-table-container table thead {
    display: table;
    table-layout: fixed;
}

.gold-price-table-container .price-decrease {
    color: red;
}

.gold-price-table-container .price-increase {
    color: rgb(0, 149, 255);
}

/* gold price table scrollbar */
.gold-price-table-container table tbody::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #fff3cd;
}

.gold-price-table-container table tbody::-webkit-scrollbar {
    width: 12px;
    background-color: #fff3cd;
}

.gold-price-table-container table tbody::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff3cd;
}

.landing-page-menu-container {
    width: 100%;
    background-color: white;
    /* box-shadow: var(--content-box-shadow); */
    border-radius: var(--content-border-radius);
    margin: var(--content-container-margin);
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}

.menu {
    background-color: #7dd876;
    border-radius: var(--content-border-radius);
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 1rem;
    transition: width 2s, height 2s, background-color 2s, transform 2s;
}

.count-menu {
    background-color: antiquewhite;
    padding: 5px 10px;
    display: flex;
    align-self: flex-start;
    border-bottom-right-radius: 5px;
}

.count-menu span {
    color: #797979;
    font-size: 13px;
}

.menu img {
    width: 5rem;
}

.menu p:nth-of-type(1) {
    font-size: larger;
    font-weight: 900;
    color: #1b4557;
}

.menu p:nth-of-type(2) {
    font-weight: 900;
    color: white;
    height: 20px;
}

.menu:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: #3bb832c9;
}

.available-product-container {
    margin: var(--content-container-margin);
}

.avaliable-product-wrapper {
    display: flex;
    flex-direction: row;
}

.avaliable-product-gludug-wrapper {
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    overflow-x: scroll;
    align-items: center;
}

/* available scrollbar */
.avaliable-product-gludug-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #fff3cd;
}

.avaliable-product-gludug-wrapper::-webkit-scrollbar {
    height: 10px;
    background-color: #fff3cd;
}

.avaliable-product-gludug-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    background-color: #fbab14;
}

.available-product {
    display: flex;
    position: relative;
    flex-direction: column;
    box-shadow: var(--content-box-shadow);
    width: 18%;
    height: 470px;
    background-color: white;
    border-radius: var(--content-border-radius);
    /*align-items: center;*/
    margin: 1.1rem;
}

.clickable.product-name {
    cursor: pointer;
    font-size: 15px;
}

.gludug-img-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 18%;
    height: 420px;
    align-items: center;
    margin: 1.1rem;
    justify-content: center;
    flex: none;
}

.gludug-img-wrapper img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: var(--content-border-radius);
    border-top-right-radius: var(--content-border-radius);
    cursor: pointer;
}

.available-gludug-product {
    display: flex;
    position: relative;
    flex-direction: column;
    box-shadow: var(--content-box-shadow);
    width: 18%;
    height: 400px;
    background-color: white;
    border-radius: var(--content-border-radius);
    align-items: center;
    margin: 1.1rem;
    flex: none;
}

.available-gludug-product .product-detail-container span {
    height: 50px;
}

.available-gludug-product img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: var(--content-border-radius);
    border-top-right-radius: var(--content-border-radius);
    cursor: pointer;
    height: 250px;
}

/* .available-product p:nth-of-type(1) {
  margin-top: 0.5rem;
  overflow: hidden;
  width: 95%;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
} */

/* .available-product p:nth-of-type(2) {
  font-weight: bold;
} */

.product-price {
    color: var(--main-color);
    font-weight: bold;
}

.available-product img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: var(--content-border-radius);
    border-top-right-radius: var(--content-border-radius);
    cursor: pointer;
    height: 270px;
}

.product-detail-container {
    /*margin-left: 20px;
    margin-top: 10px;*/
    height: 200px;
    padding: 10px;
}

.product-detail-container span {
    display: inline;
    /*height: 50px;*/
    height: auto;
}

.quantity-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    /* border: ; */
    position: absolute;
    bottom: 50px;
    left: 0;
}

.quantity {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.buy-item-container {
    display: flex;
    flex-direction: row;
    background-color: var(--main-color);
    position: absolute;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 1rem 1rem;
    border-bottom-right-radius: var(--content-border-radius);
    border-bottom-left-radius: var(--content-border-radius);
    padding: 10px 0 10px 0;
}

.buy-item-container span {
    margin-left: 0.5rem;
    font-size: large;
}

.buy-item-container:hover {
    background-color: #fbab0cfc;
    cursor: pointer;
}

.social-media-container {
    margin: var(--content-container-margin);
}

.social-media-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.carrousel-wrapper {
    width: 49%;
}

.carousel-inner img {
    border-radius: 1rem;
    height: 400px;
}

.galeri-desc-container {
    width: 49%;
}

.copyrigt-container {
    /* background-color: var(--main-color); */
    background: linear-gradient(
        180deg,
        rgba(231, 193, 84, 1) 12%,
        rgba(233, 198, 96, 1) 25%,
        rgba(237, 208, 123, 1) 47%
    );
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 0.5rem;
    min-height: 50px;
}

.copyrigt-container p {
    color: #1b4557;
    font-weight: bold;
}

/* Login Page Style */
.root-login {
    height: 100vh;
    overflow: hidden;
}

.login-page.main {
    width: 100%;
    height: 100%;
    margin-top: 0rem;
    padding-top: 1rem;
    justify-content: space-between;
}

.login-page.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-page.logo-container img {
    width: 300px;
    margin-bottom: 1.5rem;
}

.login-form-container {
    background-color: var(--main-color);
    padding: 2rem 1rem 2rem 1rem;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-form .form-group {
    margin: 0.5rem 0 0.5rem 0;
    width: 30%;
}

.login-form .form-group .input-container {
    display: flex;
    background-color: #ffffff;
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: var(--content-box-shadow);
}

.input-container input {
    outline: none;
    border: none;
    width: 95%;
    margin-right: 10px;
}

.input-container span {
    cursor: pointer;
}

.input-container span:hover {
    opacity: 0.5;
}

.login-form .form-group .form-control {
    box-shadow: var(--content-box-shadow);
}

.login-form-label {
    font-weight: bold;
    color: #186019;
}

.login-element-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1rem 0;
}

.login-element-container h5 {
    cursor: pointer;
    margin: 1rem 0 1rem 0;
}

.login-element-container h5:hover {
    opacity: 0.6;
}

.login-cs-container {
    display: flex;
    width: 20%;
    align-self: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 1rem 0 1rem 0;
    padding: 0.5rem;
    border-radius: 10px;
    background-color: var(--submit-btn-color);
    cursor: pointer;
}

.login-cs-container:hover {
    background-color: var(--submit-btn-hover-color);
}

/* Shop List Page */
.shop-page-title {
    align-self: center;
    margin-top: 1rem;
}
.shop-content-container {
    width: 100%;
    background-color: white;
    box-shadow: var(--content-box-shadow);
    border-radius: var(--content-border-radius);
    margin: var(--content-container-margin);
    padding: 1rem;
}

.shop-content-container.search {
    width: 60%;
    align-self: center;
}

.shop-search-input-container {
    background-color: rgb(230, 230, 230);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.shop-search-input-container span {
    color: rgb(128, 126, 126);
}

.shop-search-input-container input {
    border: none;
    background-color: transparent;
}

.shop-search-input-container input:focus {
    outline: none;
    width: 98%;
}

.shop-content-container.shop-list {
    position: relative;
}

.shop-list-container .shop-name {
    font-weight: bold;
}

.shop-list-container .shop-detail {
    display: flex;
}

.shop-list-container .shop-detail p:first-child {
    margin-right: 0.5rem;
}

.shop-status-img {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 1rem;
    width: 50px;
}

/* forgot password page style */

.forgot-pass-page.main {
    height: 100vh;
    margin-top: 0rem;
    overflow: hidden;
}

.forgot-pass-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 50%;
    background-color: var(--main-color);
    box-shadow: var(--content-box-shadow);
    border-radius: var(--content-border-radius);
    margin: var(--content-container-margin);
    margin-top: 5%;
    padding: 1rem;
}

.forgot-pass-content-container .page-title {
    color: white;
}

.forgot-pass-form .form-group {
    width: 400px;
    margin: 0.5rem 0 0.5rem 0;
}

.forgot-pass-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgot-pass-btn-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.password-sent-notification {
    color: white;
    margin: 0.5rem 0 0.5rem 0;
}

.contact-us-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-top: 2rem;
    width: 90%;
}

.contact-us-container h6 {
    margin: 1rem 0 1rem 0;
}

.contact-us-container hr {
    width: 60%;
}

.contact-us-container .contact-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}

.contact-us-container .contact-detail p {
    font-weight: bold;
    color: rgb(128, 128, 128);
}

.contact-us-container .contact-detail p:nth-child(1) {
    width: 25%;
}

.contact-us-container .contact-detail p:nth-child(3) {
    margin-left: 0.5rem;
}

/* Transaction History Page */

.history-transaction.main {
    margin-top: 1.5rem;
}

.transaction-history-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 100%;
    background-color: white;
    box-shadow: var(--content-box-shadow);
    border-radius: var(--content-border-radius);
    margin: var(--content-container-margin);
    margin-top: 5%;
    padding: 1rem;
}

.history-transaction-detail-container {
    width: 90%;
}

.history-transaction-detail {
    display: flex;
    justify-content: space-between;
}

.history-btn-container {
    display: flex;
    align-self: flex-end;
}

/* product list page style */
.product-list-page-container {
    display: flex;
    flex-direction: row;
}

.product-list-page.main,
.my-asset-list-page.main {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    overflow: hidden;
}

.product-list-page.wrapper,
.my-asset-list-page.wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow-y: auto;
}

.my-asset-content-container {
    display: flex;
    border-radius: var(--content-border-radius);
    padding: 1rem;
    background-color: white;
    box-shadow: var(--content-box-shadow);
    width: 50%;
    margin: 0.5rem 0 0.5rem 0;
}

.product-content-container {
    display: flex;
    border-radius: var(--content-border-radius);
    padding: 1rem;
    background-color: white;
    box-shadow: var(--content-box-shadow);
    width: 40%;
    margin: 10px;
}

.product-list.product-img {
    width: 100px;
    height: 100px;
}

.product-list.product-detail-container,
.my-asset-list.my-asset-detail-container {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-right: 1rem;
}

.product-list.product-name,
.my-assset-list.my-assset-name {
    font-weight: bold;
}

.product-list.price {
    color: red;
    font-weight: bold;
    font-size: larger;
}

.my-asset-list.my-asset-detail-container.payment-transaction-receipt {
    width: 30%;
}
/* my asset page style */
.my-asset-content-container {
    flex-direction: column;
}

.my-asset-list.buyback-price-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 0.5rem 0 0.5rem;
    border-radius: 15px;
    align-items: center;
    background-color: rgba(245, 208, 39, 0.29);
}

.asset-value-container {
    display: flex;
    margin-top: 1rem;
    height: 10%;
    align-items: center;
}

.asset-value-container p {
    text-align: center;
    vertical-align: middle;
}

.asset-value {
    display: flex;
    border-radius: 20px;
    padding: 0.5rem;
    height: 100%;
    margin-left: 0.5rem;
    align-items: center;
}

.name-md {
    display: none;
}

.name-lg {
    display: block;
}

.img-product-small {
    width: 80%;
}

.asset-value.up {
    background-color: #9dffa1;
}

.asset-value.down {
    background-color: #fe9c9e;
}

.my-asset-list-page.pagination-container {
    display: flex;
    justify-content: center;
    margin: 10px 0 10px 0;
}

.my-asset.home-button-container {
    width: 50%;
    align-self: center;
    display: flex;
    justify-content: center;
}

/* History transaction page */
.history-transaction-asset {
    display: flex;
    justify-content: space-between;
    padding-left: 1rem;
}

.history-product-name {
    width: 60%;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-transaction-asset.price-detail {
    padding-left: 0;
}

.history-total-label {
    font-weight: bolder;
}

.form-group .select2-container--default .select2-selection--single {
    height: 40px;
    box-shadow: none;
    border: 1px solid #dadada !important;
    background: none;
    color: #959595;
    font-size: 14px;
    border-radius: 4px;
}

.select2-container--default .select2-selection--multiple {
    box-shadow: none;
    border: 1px solid #dadada !important;
    background: none;
    color: #959595;
    font-size: 14px;
    border-radius: 0;
    padding-bottom: 12px !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 3px !important;
    padding-right: 20px !important;
    padding-top: 5px;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__arrow {
    height: 45px !important;
}

.form-group
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 40px;
    padding-left: 1rem;
}

.form-group
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 40px;
}

.spinner-select {
    position: absolute;
    margin-top: 15px;
    margin-left: 10px;
}

.form-round {
    border-radius: 25px !important;
}

.label-round {
    color: var(--secondary-color) !important;
    font-weight: bold;
    padding-left: 1rem !important;
}

.btn-success {
    background: var(--secondary-color) !important;
}

.btn-success:hover {
    background: #0c6330 !important;
}

.history-navigation-container {
    display: flex;
    flex-direction: row-reverse;
    width: 80%;
}

/* PDP Page */
.pdp.chart-container {
    height: 300px;
    display: flex;
    justify-content: center;
}

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

.dropdown-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #eccf7b;
    box-shadow: inset 0 0 6px #eccf7b;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.dropdown-menu::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #eccf7b;
    box-shadow: inset 0 0 6px #eccf7b;
    background-color: #c8c8c8b6;
}

/* notifications */
.dropdown-menu-notification {
    max-height: 74vh;
    overflow-y: scroll;
}
.dropdown-menu-notification li,
.dropdown-menu-notification li a {
    white-space: normal;
    float: left;
    width: 100%;
    height: auto;
    word-wrap: break-word;
}
.notification-date {
    font-size: 10px;
}

.notification-title {
    font-size: small !important;
    font-weight: bold;
}

.read-this {
    background: #fbf1d0eb;
}

.delete-msg-btn-container {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

/* History buyback */
.my-asset-content-container.history-buyback {
    width: 60%;
}

.btn-buyback-history-container {
    display: flex;
    width: 60%;
    justify-content: flex-end;
}

.btn-transaction-history {
    width: 30%;
}
/* register member page style */

.forgot-pass-content-container.register-member {
    background-color: white;
}

.page-title.register-member-page {
    color: black;
}

.icon-item-counts {
    font-size: 12px;
    background: #ff0000;
    color: #fff;
    padding: 3px 5px;
    vertical-align: top;
    margin-left: -10px;
    border-radius: 50%;
}

/* update pin page */
.forgot-pass-btn-container.btn-pin-container {
    width: 100%;
}

.header-menu-container {
    position: absolute;
    right: 1rem;
    top: 10rem;
    background-color: #edd07b;
}

#avatar-icon {
    color: #ebcc71;
    padding: 10px 10px;
    background-color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-self: center;
}

.avatar-container {
    display: flex;
    flex-direction: row;
    background-color: #eac96a;
    margin-top: -10px;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 1rem;
}

.avatar-info-container {
    display: flex;
    flex-direction: column;
}

.avatar-info-container span {
    color: #4e4e4e;
}

.avatar-info-container span:nth-child(1) {
    font-weight: bold;
    font-size: large;
    letter-spacing: 1px;
}

.avatar-info-container span:nth-child(2) {
    font-weight: lighter;
    color: blanchedalmond;
}

.avatar-info.username {
    text-decoration: none;
}

.dropdown-toggle-menu-header:after {
    display: none !important;
}

.dropdown-header-menu[data-bs-popper] {
    top: 100%;
    right: 0;
    left: auto !important;
    margin-top: var(--bs-dropdown-spacer);
    width: 20%;
}

.list-header-menu > a > i {
    color: rgba(231, 193, 84, 1);
    font-size: 1.3rem;
}

.dropdown-item-menu-header {
    display: flex !important;
    flex-direction: row;
    padding: 12px !important;
    padding-left: 20px !important;
}

.dropdown-item-menu-header span {
    margin-left: 10px;
    color: #757575;
    font-weight: 100;
}

.dropdown-item:focus {
    background-color: #e9ecef !important;
}

.img-product-big {
    cursor: pointer;
}

.img-product-small {
    display: block;
}

/* Buyback page */

.buyback.asset-content {
    display: flex;
    align-items: center;
}

.buyback.asset-value-container {
    justify-content: space-between;
    width: 100%;
}

.buyback-waiting-status {
    background-color: #ffec60;
    padding: 0 10px 0 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* zakat */
.zakat-checkbox-container {
    border-radius: var(--content-border-radius);
    margin-top: 2rem;
    padding: 0.5rem;
    width: 50%;
    box-shadow: var(--content-box-shadow);
}

.zakat-ayat {
    font-family: "Josefin Sans", sans-serif;
}

.zakat-page-title {
    width: 50%;
}

.zakat-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.zakat-desc {
    text-align: center;
}

.transfer.home-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.profile-btn-container {
    display: flex;
    justify-content: space-between;
}

.btn-kirim-asset {
    display: flex;
    align-self: flex-end;
    margin-right: 50px;
}

.deposit-photo-container {
    margin-bottom: 0.5rem;
}

/* Below is media query section */
@media only screen and (max-width: 860px) {
    .gold-information-container {
        flex-direction: column;
        height: 40rem;
    }

    .gold-information {
        width: 100%;
        margin-top: 1rem;
    }

    .available-product {
        width: 30%;
    }

    .menu {
        width: 13em;
    }

    /* forgot password page */
    .forgot-pass-page.main {
        width: 100%;
    }

    .forgot-pass-form .form-group {
        width: 100%;
        margin: 0.5rem 0 0.5rem 0;
    }

    .forgot-pass-btn-container .btn {
        width: 45%;
        display: flex;
        justify-content: center;
    }

    /* Transaction History Page */

    .history-transaction.main {
        margin-top: 5rem;
    }

    .btn-transaction-history {
        width: 40%;
    }

    .history-transaction-asset.history-buyback p {
        font-size: smaller;
    }

    .my-asset-list.my-asset-detail-container.payment-transaction-receipt {
        width: 50%;
    }

    /* product list page style */
    .product-content-container {
        width: 90%;
    }

    .product-list-page.wrapper {
        height: 85vh;
    }

    /* my asset page */
    .my-asset-content-container {
        width: 98%;
    }

    .name-md {
        display: block;
    }

    .name-lg {
        display: none;
    }

    .img-product-big {
        width: 100%;
    }

    .img-product-small {
        width: 80%;
    }

    /* zalat page */
    .zakat-page-title {
        width: 100%;
        text-align: center;
    }

    /* notification */
    .delete-msg-btn-container {
        width: 90%;
    }
}

@media only screen and (max-width: 600px) {
    .gold-information {
        margin: 0;
    }
    .buyback-price-wrapper {
        height: 40rem;
    }
    #myChart {
        height: 40rem;
    }
    .menu {
        width: 30rem;
        margin: 5px;
    }

    .menu img {
        width: 3em;
    }

    .menu p:nth-of-type(1) {
        font-size: small;
    }

    .menu p:nth-of-type(2) {
        font-size: smaller;
    }

    .name-md {
        display: block;
    }

    .name-lg {
        display: none;
    }

    .img-product-small {
        width: 30%;
    }
}

@media only screen and (max-width: 550px) {
    .gold-price-table-container table {
        font-size: small;
    }

    .available-product {
        width: 50%;
    }

    .img-product-small {
        width: 30%;
    }
}

@media only screen and (max-width: 450px) {
    /* Not Found Element  */
    .content-not-found-container {
        margin: 5%;
        width: 90%;
    }
    .btn.btn-auth.btn-submit {
        width: 40%;
    }

    .btn.btn-auth.btn-back {
        width: 40%;
    }

    .main {
        min-height: 50vh;
    }
    .copyrigt-container {
        position: fixed;
        bottom: 0;
    }
    .search-form {
        display: none;
    }

    .avaliable-product-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .avaliable-product-gludug-wrapper {
        flex-direction: column;
    }

    .gludug-img-wrapper {
        width: 80%;
    }

    .available-gludug-product {
        width: 80%;
    }

    .available-product img {
        height: 200px;
    }

    .available-product {
        width: 80%;
        height: 400px;
    }

    .dropdown-toggle-menu-header i {
        display: none;
    }

    .icon-item-counts {
        display: none !important;
    }

    .header-btn-container {
        width: 120%;
        display: flex;
        justify-content: space-around;
    }

    .dropdown-menu {
        display: block;
        width: 100% !important;
        left: 0 !important;
        top: 8rem !important;
        overflow: scroll;
        height: 300px;
    }

    .list-header-menu > a > i {
        display: block !important;
    }

    .gold-price-table-container table {
        font-size: x-small;
    }

    .social-media-wrapper {
        flex-direction: column;
    }

    .carrousel-wrapper {
        width: 100%;
    }

    .carousel-inner img {
        height: 300px;
    }

    .galeri-desc-container {
        margin-top: 1rem;
        margin-bottom: 5rem;
        width: 100%;
    }

    .menu {
        width: 4.5em;
        padding: 10px;
        padding-bottom: 0;
    }

    .menu img {
        width: 1.8rem;
    }

    .menu p:nth-of-type(1) {
        font-size: x-small;
        font-weight: 900;
        color: #1b4557;
        margin-bottom: 10px;
    }
    .menu p:nth-of-type(2) {
        font-size: xx-small;
    }

    /* login page style */

    .asset-value-container span {
        font-size: small;
    }

    /* history transaction page */
    .my-asset-list.my-asset-detail-container h6 {
        font-size: small;
    }

    .my-asset-list.my-asset-detail-container.payment-transaction-receipt {
        width: 100%;
    }

    .my-asset-content-container.history-buyback {
        width: 95%;
    }

    .history-transaction-asset.history-transaction-asset {
        padding-left: 0;
        flex-direction: column;
    }

    .history-transaction-asset p {
        font-size: small;
    }

    .history-transaction-asset.history-transaction-asset .history-product-name {
        width: 90%;
    }

    .history-product-name {
        width: 55%;
    }

    .btn-buyback-history-container {
        width: 95%;
    }

    .btn-transaction-history {
        width: 60%;
    }

    .login-page.main {
        padding-top: 3rem;
        overflow: hidden;
        margin-top: 0rem;
        height: 100%;
    }

    .login-form .form-group {
        width: 90%;
    }

    .login-element-container {
        margin-top: 5rem;
    }

    .login-element-container h5 {
        font-size: large;
    }

    /* shop page style */
    .shop-page.main {
        width: 100%;
    }

    .shop-content-container.search {
        width: 100%;
    }

    .shop-content-container {
        border-radius: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .shop-content-container.shop-list {
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }

    /* forgot password page */
    .forgot-pass-page.main {
        width: 100%;
    }

    .forgot-pass-form .form-group {
        width: 100%;
        margin: 0.5rem 0 0.5rem 0;
    }

    .forgot-pass-content-container {
        margin-top: 15%;
        width: 95%;
    }

    .forgot-pass-btn-container {
        width: 70%;
    }

    .forgot-pass-btn-container .btn {
        width: 40%;
        display: flex;
        justify-content: center;
    }

    /*  */
    .contact-us-container hr {
        width: 100%;
    }

    .contact-us-container .contact-detail {
        width: 100%;
    }

    .contact-us-container .contact-detail p:nth-child(1) {
        width: 20%;
    }

    /* Transaction History Page */

    .btn.btn-submit.btn-history-buyback {
        padding: 0.5rem;
    }

    /* product list page style */
    .product-content-container {
        width: 90%;
    }

    .product-list-page-container {
        flex-direction: column;
    }

    /* my asset page */
    .my-asset-content-container {
        width: 98%;
    }

    .my-asset-list.my-asset-name {
        font-size: small;
    }

    .my-asset-list.buyback-price-container p {
        font-size: small;
    }

    .asset-value-container span {
        font-size: small;
    }

    /* buyback page */
    .buyback.asset-value-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .buyback.asset-content {
        margin-bottom: 0px;
    }

    .buyback-waiting-status {
        margin: 10px 0px 10px 0px;
    }

    .btn-buyback {
        margin-top: 10px;
    }

    /* zakat page */
    .zakat-checkbox-container {
        width: 100%;
        padding: 8px;
    }

    .zakat-page-title {
        width: 100%;
    }

    .zakat-content p {
        font-size: x-small;
    }

    /* Pagination */
    /* .my-asset-list-page.pagination-container {
        margin-bottom: 4rem;
    } */

    /* Product Filter */
    .product-filter-container h5 {
        font-size: small;
    }

    .search-form.product-search {
        display: flex;
    }

    /* notification */
    .delete-msg-btn-container {
        width: 90%;
    }
}

@media only screen and (max-width: 380px) {
    .menu {
        width: 4.4em;
    }

    /* login page style */
    /* #root {
        height: 100vh;
    } */
    .login-page.main {
        padding-top: 1rem;
        overflow: hidden;
        margin-top: 0rem;
        height: 100%;
    }

    .login-form .form-group {
        width: 90%;
    }

    .login-element-container {
        margin-top: 0rem;
    }

    .login-element-container h5 {
        font-size: medium;
    }

    /* product list page style */
    .product-content-container {
        width: 90%;
    }

    .product-list.product-name {
        font-size: medium;
    }
    .product-list.price {
        font-size: medium;
    }

    /* my asset page */
    .my-asset-content-container {
        width: 98%;
    }

    .my-asset-list.my-asset-name {
        font-size: small;
    }

    .my-asset-list.buyback-price-container p {
        font-size: small;
    }

    .asset-value-container span {
        font-size: small;
    }

    .name-md {
        display: block;
    }

    .name-lg {
        display: none;
    }

    .img-product-small {
        display: none;
    }
    /* history transaction page */
    .my-asset-list-page.wrapper.history-transaction {
        height: 75vh;
    }
    .asset-value-container span {
        font-size: small;
    }
}

.swiper-slide {
    align-self: stretch;
}

.invalid-feedback {
    color: #e74c3c;
}

.soft-shadow {
    box-shadow: 0 1px 4px rgba(141, 150, 170, 0.4);
}

.transfer-page .nav-tabs .nav-item .nav-link,
.transfer-page .nav-tabs .nav-link {
    color: #71717a;
}

.transfer-page .nav-tabs .nav-item.show .nav-link,
.transfer-page .nav-tabs .nav-link.active {
    border: 1px solid #9b7b2d;
    color: #9b7b2d;
    font-weight: 500;
}

.accordion .accordion-item .collapse {
    visibility: visible;
}

input[readonly],
select[readonly] {
    background-color: #e9ecef;
}

.card-feature:hover h5 {
    font-size: 24px;
}

.card-feature:hover h4 {
    font-size: 2rem;
}

.content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.card-feature:hover .content-overlay {
    opacity: 55%;
}

.select2-members .select2-container {
    width: 100% !important;
}

.banner-swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #d3af3f !important;
    opacity: 1;
    width: 0.75rem;
    height: 0.75rem;
}
.banner-swiper-pagination .swiper-pagination-bullet {
    background-color: #7d7d7d;
    opacity: 1;
    width: 0.75rem;
    height: 0.75rem;
    margin: 0 10px !important;
}
