:root {
    --color-primary-sky: rgb(33, 150, 243);
    --color-primary-sky-hover: rgb(33, 128, 249);
    --color-muted: rgb(24, 32, 24);
    --color-muted-hover: rgb(40, 62, 38);

    --color-test: rgb(237, 108, 27);
    --color-black: hsl(0, 0%, 13%);
    --color-gray: hsl(0, 0%, 33%);
    --color-primary: rgb(51, 108, 31);
    --color-primary-hover: rgba(52, 108, 31, 0.9);
    --color-warning: rgb(204, 149, 0);
    --color-danger: rgb(248, 0, 0);
    --color-success: rgb(3, 141, 12);
    --color-green: rgb(7, 146, 13);
    --color-hr-content: rgb(190, 190, 190);
    --fs-1: 1.563rem;
    --fs-2: 1.375rem;
    --fs-3: 1.25rem;
    --fs-4: 1.125rem;
    --fs-5: 1rem;
    --fs-6: 0.938rem;
    --fs-7: 0.875rem;
    --fs-8: 0.813rem;
    --fs-9: 0.75rem;
    --fs-10: 0.688rem;
    --fs-11: 0.625rem;

    --cultured: hsl(0, 0%, 93%);
    --white: hsl(0, 100%, 100%);

    --shadow-medium: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

}

.custom-tooltip {
  --bs-tooltip-bg: rgba(29, 29, 29, 0.8);
  --bs-tooltip-color: var(--bs-white);
}

s, del { text-decoration: line-through; }
a {
    color: var(--color-primary);
}


a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

.fs-xxs { font-size: 0.6rem !important; }
.fs-xs { font-size: 0.7rem !important; }
.fs-sm { font-size: 0.8rem !important; }
.fs-md { font-size: 0.9rem !important; }
.fs-lg { font-size: 1.1rem !important; }
.fs-xl { font-size: 1.4rem !important; }
.fs-xxl { font-size: 1.8rem !important; }

.fw-xs { font-weight: 300 !important; }
.fw-sm { font-weight: 400 !important; }
.fw-md { font-weight: 500 !important; }
.fw-lg { font-weight: 600 !important; }
.fw-xl { font-weight: 700 !important; }

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

.btn-primary {
    background-color: var(--color-primary) !important;
    border: 1px solid rgba(196, 196, 196, 0.8);
}

.btn-primary:hover {
    background-color: var(--color-primary) !important;
    border: 1px solid rgba(220, 220, 220, 0.45);
}

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

.bg-cover-custom {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.bg-shadow-white {
    background: #ffffff75;
}

.bg-shadow-darkgreen {
    background: rgba(0, 24, 2, 0.90);
}

li.page-item.active a {
    background: var(--color-primary) !important;
    background-color: var(--color-primary) !important;
    color: #FFF !important;
}

.nav-avatar-xxs { max-height: 1.28rem; }
.text-bottom-menu { font-size: 0.7rem; }
@media (min-width: 992px) {
    .nav-avatar-xxs { max-width: 1.8rem; }
    .text-bottom-menu { font-size: 0.9rem; }
}

.header-small { font-size: var(--fs-10); }
.bottom-avatar-profile h4 {
    font-size: var(--fs-8);
    margin-bottom: 1px;
}

.card-category {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 4px 0px;
    border: 1px dotted hsla(245, 43%, 48%, 0.25);
    padding: 0.2rem;
    font-size: 0.84rem;
}

.card-dashboard {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px dotted hsla(245, 43%, 48%, 0.25);
    padding: 0.2rem;
    font-size: 1rem;
}

.count-state {
    font-size: 1.28rem;
    font-weight: 600;
}

.animate-none {
    animation: none;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-zooming {
    animation: zoomInOut 2s ease-in-out infinite;
}

.animate-flash {
    animation: flash 500ms ease infinite alternate;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ping {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1.2);
    }
}

@keyframes bounce {
    70% {
        transform: translateY(0%);
    }

    80% {
        transform: translateY(-15%);
    }

    90% {
        transform: translateY(0%);
    }

    95% {
        transform: translateY(-7%);
    }

    97% {
        transform: translateY(0%);
    }

    99% {
        transform: translateY(-3%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

@keyframes flash {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


.cursor-pointer {
    cursor: pointer;
}

.icon-circle-md {
    padding: 0.4rem 0.7rem;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: "Noto Sans Thai", sans-serif;
    line-height: 1.6;
    color: rgb(21, 21, 21);
    font-size: 0.896rem;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Noto Sans Thai", sans-serif;
}

a {
    text-decoration: none;
}

main {
    padding: 5rem 0;
}

footer {
    padding-top: 4rem;
}


/* Loader Styles start here */
.loader-wrapper {
    --line-width: 5px;
    --curtain-color: #FFFFFE;
    --outer-line-color: #FFFFFE;
    --middle-line-color: #ffe25f;
    --inner-line-color: #b28800;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
}

.swaploader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-top-color: var(--outer-line-color);
    border-radius: 100%;
    z-index: 2001;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--outer-line-color);
    border-radius: 100%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

.loader:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--inner-line-color);
    border-radius: 100%;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--middle-line-color);
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: var(--curtain-color);
    width: 51%;
    height: 100%;
    z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
    left: 0
}

.loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
    visibility: hidden;
    /* transform: translateY(-100%);
    transition: all .3s 1s ease-out; */
}


/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-align: center;
}


/* --- preloader-floating-circles --- */
.preloader-floating-circles {
    position: relative;
    width: 80px;
    height: 80px;
    margin: auto;
    transform: scale(0.6);
    -o-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
}

.preloader-floating-circles .f_circleG {
    position: absolute;
    background-color: white;
    height: 14px;
    width: 14px;
    border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    animation-name: f_fadeG;
    -o-animation-name: f_fadeG;
    -ms-animation-name: f_fadeG;
    -webkit-animation-name: f_fadeG;
    -moz-animation-name: f_fadeG;
    animation-duration: 0.672s;
    -o-animation-duration: 0.672s;
    -ms-animation-duration: 0.672s;
    -webkit-animation-duration: 0.672s;
    -moz-animation-duration: 0.672s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

.preloader-floating-circles #frotateG_01 {
    left: 0;
    top: 32px;
    animation-delay: 0.2495s;
    -o-animation-delay: 0.2495s;
    -ms-animation-delay: 0.2495s;
    -webkit-animation-delay: 0.2495s;
    -moz-animation-delay: 0.2495s;
}

.preloader-floating-circles #frotateG_02 {
    left: 9px;
    top: 9px;
    animation-delay: 0.336s;
    -o-animation-delay: 0.336s;
    -ms-animation-delay: 0.336s;
    -webkit-animation-delay: 0.336s;
    -moz-animation-delay: 0.336s;
}

.preloader-floating-circles #frotateG_03 {
    left: 32px;
    top: 0;
    animation-delay: 0.4225s;
    -o-animation-delay: 0.4225s;
    -ms-animation-delay: 0.4225s;
    -webkit-animation-delay: 0.4225s;
    -moz-animation-delay: 0.4225s;
}

.preloader-floating-circles #frotateG_04 {
    right: 9px;
    top: 9px;
    animation-delay: 0.509s;
    -o-animation-delay: 0.509s;
    -ms-animation-delay: 0.509s;
    -webkit-animation-delay: 0.509s;
    -moz-animation-delay: 0.509s;
}

.preloader-floating-circles #frotateG_05 {
    right: 0;
    top: 32px;
    animation-delay: 0.5955s;
    -o-animation-delay: 0.5955s;
    -ms-animation-delay: 0.5955s;
    -webkit-animation-delay: 0.5955s;
    -moz-animation-delay: 0.5955s;
}

.preloader-floating-circles #frotateG_06 {
    right: 9px;
    bottom: 9px;
    animation-delay: 0.672s;
    -o-animation-delay: 0.672s;
    -ms-animation-delay: 0.672s;
    -webkit-animation-delay: 0.672s;
    -moz-animation-delay: 0.672s;
}

.preloader-floating-circles #frotateG_07 {
    left: 32px;
    bottom: 0;
    animation-delay: 0.7585s;
    -o-animation-delay: 0.7585s;
    -ms-animation-delay: 0.7585s;
    -webkit-animation-delay: 0.7585s;
    -moz-animation-delay: 0.7585s;
}

.preloader-floating-circles #frotateG_08 {
    left: 9px;
    bottom: 9px;
    animation-delay: 0.845s;
    -o-animation-delay: 0.845s;
    -ms-animation-delay: 0.845s;
    -webkit-animation-delay: 0.845s;
    -moz-animation-delay: 0.845s;
}

@keyframes f_fadeG {
    0% {
        background-color: black;
    }

    100% {
        background-color: white;
    }
}

@-webkit-keyframes f_fadeG {
    0% {
        background-color: black;
    }

    100% {
        background-color: white;
    }
}


/* --- preloader-eight-spinning --- */
.preloader-eight-spinning {
    width: 72px;
    margin: 0px auto;
    font-size: 0;
    position: relative;
    transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    animation: cssload-clockwise 6.9s linear infinite;
    -o-animation: cssload-clockwise 6.9s linear infinite;
    -ms-animation: cssload-clockwise 6.9s linear infinite;
    -webkit-animation: cssload-clockwise 6.9s linear infinite;
    -moz-animation: cssload-clockwise 6.9s linear infinite;
}

.preloader-eight-spinning:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 39px;
    height: 39px;
    border: 6px solid #e5e5e5;
    border-radius: 100%;
    -o-border-radius: 100%;
    -ms-border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.preloader-eight-spinning:after {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    right: 0;
    width: 39px;
    height: 39px;
    border: 6px solid #e5e5e5;
    border-radius: 100%;
    -o-border-radius: 100%;
    -ms-border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.preloader-eight-spinning .cssload-lt,
.preloader-eight-spinning .cssload-rt,
.preloader-eight-spinning .cssload-lb,
.preloader-eight-spinning .cssload-rb {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 39px;
    height: 19px;
    opacity: 1;
}

.preloader-eight-spinning .cssload-lt:before,
.preloader-eight-spinning .cssload-rt:before,
.preloader-eight-spinning .cssload-lb:before,
.preloader-eight-spinning .cssload-rb:before {
    position: absolute;
    content: "";
    width: 39px;
    height: 39px;
    border-top: 6px solid #574357;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    border-radius: 100%;
    -o-border-radius: 100%;
    -ms-border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.preloader-eight-spinning .cssload-lt {
    margin-right: -6px;
    animation: cssload-lt 2.3s linear -2300ms infinite;
    -o-animation: cssload-lt 2.3s linear -2300ms infinite;
    -ms-animation: cssload-lt 2.3s linear -2300ms infinite;
    -webkit-animation: cssload-lt 2.3s linear -2300ms infinite;
    -moz-animation: cssload-lt 2.3s linear -2300ms infinite;
}

.preloader-eight-spinning .cssload-lt:before {
    top: 0;
    left: 0;
    animation: cssload-not-clockwise 1.15s linear infinite;
    -o-animation: cssload-not-clockwise 1.15s linear infinite;
    -ms-animation: cssload-not-clockwise 1.15s linear infinite;
    -webkit-animation: cssload-not-clockwise 1.15s linear infinite;
    -moz-animation: cssload-not-clockwise 1.15s linear infinite;
}

.preloader-eight-spinning .cssload-rt {
    animation: cssload-lt 2.3s linear -1150ms infinite;
    -o-animation: cssload-lt 2.3s linear -1150ms infinite;
    -ms-animation: cssload-lt 2.3s linear -1150ms infinite;
    -webkit-animation: cssload-lt 2.3s linear -1150ms infinite;
    -moz-animation: cssload-lt 2.3s linear -1150ms infinite;
}

.preloader-eight-spinning .cssload-rt:before {
    top: 0;
    right: 0;
    animation: cssload-clockwise 1.15s linear infinite;
    -o-animation: cssload-clockwise 1.15s linear infinite;
    -ms-animation: cssload-clockwise 1.15s linear infinite;
    -webkit-animation: cssload-clockwise 1.15s linear infinite;
    -moz-animation: cssload-clockwise 1.15s linear infinite;
}

.preloader-eight-spinning .cssload-lb {
    margin-right: -6px;
    animation: cssload-lt 2.3s linear -1725ms infinite;
    -o-animation: cssload-lt 2.3s linear -1725ms infinite;
    -ms-animation: cssload-lt 2.3s linear -1725ms infinite;
    -webkit-animation: cssload-lt 2.3s linear -1725ms infinite;
    -moz-animation: cssload-lt 2.3s linear -1725ms infinite;
}

.preloader-eight-spinning .cssload-lb:before {
    bottom: 0;
    left: 0;
    animation: cssload-not-clockwise 1.15s linear infinite;
    -o-animation: cssload-not-clockwise 1.15s linear infinite;
    -ms-animation: cssload-not-clockwise 1.15s linear infinite;
    -webkit-animation: cssload-not-clockwise 1.15s linear infinite;
    -moz-animation: cssload-not-clockwise 1.15s linear infinite;
}

.preloader-eight-spinning .cssload-rb {
    animation: cssload-lt 2.3s linear -575ms infinite;
    -o-animation: cssload-lt 2.3s linear -575ms infinite;
    -ms-animation: cssload-lt 2.3s linear -575ms infinite;
    -webkit-animation: cssload-lt 2.3s linear -575ms infinite;
    -moz-animation: cssload-lt 2.3s linear -575ms infinite;
}

.preloader-eight-spinning .cssload-rb:before {
    bottom: 0;
    right: 0;
    animation: cssload-clockwise 1.15s linear infinite;
    -o-animation: cssload-clockwise 1.15s linear infinite;
    -ms-animation: cssload-clockwise 1.15s linear infinite;
    -webkit-animation: cssload-clockwise 1.15s linear infinite;
    -moz-animation: cssload-clockwise 1.15s linear infinite;
}

@keyframes cssload-clockwise {
    0% {
        transform: rotate(-45deg);
    }

    100% {
        transform: rotate(315deg);
    }
}

@-webkit-keyframes cssload-clockwise {
    0% {
        -webkit-transform: rotate(-45deg);
    }

    100% {
        -webkit-transform: rotate(315deg);
    }
}

@keyframes cssload-not-clockwise {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(-315deg);
    }
}

@-webkit-keyframes cssload-not-clockwise {
    0% {
        -webkit-transform: rotate(45deg);
    }

    100% {
        -webkit-transform: rotate(-315deg);
    }
}

@keyframes cssload-lt {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    26% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    76% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes cssload-lt {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    26% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    76% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}


/* preloader-square-swapping  */
.preloader-square-swapping {
  margin: 30px auto;
  width: 19px;
  height: 19px;
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}
.preloader-square-swapping .cssload-square-part {
  position: absolute;
  width: 19px;
  height: 19px;
  z-index: 1;
  animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -o-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -ms-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -moz-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.preloader-square-swapping .cssload-square-green {
  background: #03e6ff;
  right: 0;
  bottom: 0;
  animation-direction: alternate-reverse;
  -o-animation-direction: alternate-reverse;
  -ms-animation-direction: alternate-reverse;
  -webkit-animation-direction: alternate-reverse;
  -moz-animation-direction: alternate-reverse;
}
.preloader-square-swapping .cssload-square-pink {
  background: #00842a;
  left: 0;
  top: 0;
}
.preloader-square-swapping .cssload-square-blend {
  background: #75517d;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  animation: blend-anim 0.92s ease-in infinite;
  -o-animation: blend-anim 0.92s ease-in infinite;
  -ms-animation: blend-anim 0.92s ease-in infinite;
  -webkit-animation: blend-anim 0.92s ease-in infinite;
  -moz-animation: blend-anim 0.92s ease-in infinite;
}

@keyframes blend-anim {
  0% {
    transform: scale(0.01, 0.01) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
            animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  50% {
    transform: scale(1, 1) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
            animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  100% {
    transform: scale(0.01, 0.01) rotateY(0);
  }
}
@-webkit-keyframes blend-anim {
  0% {
    -webkit-transform: scale(0.01, 0.01) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  50% {
    -webkit-transform: scale(1, 1) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  100% {
    -webkit-transform: scale(0.01, 0.01) rotateY(0);
  }
}
@keyframes cssload-part-anim {
  0% {
    transform: translate3d(-10px, -10px, 0);
  }
  100% {
    transform: translate3d(10px, 10px, 0);
  }
}
@-webkit-keyframes cssload-part-anim {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0);
  }
  100% {
    -webkit-transform: translate3d(10px, 10px, 0);
  }
}


/* preloader-dot-circle-rotator */
.preloader-dot-circle-rotator {
  position: relative;
  width: 12px;
  height: 12px;
  left: 46%;
  left: calc(50% - 6px);
  left: -o-calc(50% - 6px);
  left: -ms-calc(50% - 6px);
  left: -moz-calc(50% - 6px);
  border-radius: 12px;
  background-color: rgb(0, 106, 18);
  transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  animation: cssload-loader 1.15s ease-in-out infinite;
  -o-animation: cssload-loader 1.15s ease-in-out infinite;
  -ms-animation: cssload-loader 1.15s ease-in-out infinite;
  -webkit-animation: cssload-loader 1.15s ease-in-out infinite;
  -moz-animation: cssload-loader 1.15s ease-in-out infinite;
}
.preloader-dot-circle-rotator:before {
  content: "";
  position: absolute;
  background-color: rgb(0, 195, 255);
  top: 0px;
  left: -24px;
  height: 12px;
  width: 12px;
  border-radius: 12px;
}
.preloader-dot-circle-rotator:after {
  content: "";
  position: absolute;
  background-color: rgb(0, 195, 255);
  top: 0px;
  left: 24px;
  height: 12px;
  width: 12px;
  border-radius: 12px;
}

@keyframes cssload-loader {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes cssload-loader {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
  }
}

/* ---------- GOOGLE TRANSLATE ---------- */
#google_translate_element {
    display: none;
}

.skiptranslate {
    display: none;
    margin: 0px 0px 0px -900px !important;
}

.skiptranslate iframe {
    display: none;
    height: 0px !important;
    z-index: -112;
}


.avatar-sxs {
    max-width: 1.24rem;
}

.avatar-xxs {
    max-width: 2rem;
}

.avatar-xs {
    max-width: 3rem;
}

.avatar-sm {
    max-width: 4rem;
}

.avatar-md {
    max-width: 6rem;
}

.avatar-lg {
    max-width: 8rem;
}

.avatar-xl {
    max-width: 10rem;
}

.avatar-xxl {
    max-width: 12rem;
}

.text-icon {
    display: flex;
    align-items: center;
    align-content: center;
}

.modal-content {
    padding-left: 6px;
    padding-right: 6px;
}

.heading-primary {
    font-size: 1.68rem;
}

.navbar a {
    color: var(--color-muted);
}

.navbar a:hover {
    color: var(--color-muted-hover);
}

.navbar-content-start,
.navbar-content-center,
.navbar-content-end {
    padding: 4px;
}

.navbar-brand-img {
    width: auto;
    height: auto;
    max-width: 210px;
    max-height: 45px;
}

.navbar-items-ms {
    margin-left: 1.4rem;
}


.menu-mobile {
    position: fixed;
    left: 0;
    bottom: 0;
    display: grid;
    align-content: center;
    width: 100%;
    height: 4rem;
    background: #ffffff;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.menu-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: -2rem;
}

.menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    padding-top: 6px;
    color: var(--color-black);
}

.menu-link.is-active {
    position: relative;
    color: var(--color-teal-800);
    transition: all 0.35s ease;
}

.menu-icon {
    font-size: 1.35rem;
    line-height: 1;
    color: inherit;
}

.menu-name {
    display: none;
    padding-top: 4px;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.25;
    visibility: hidden;
    text-transform: capitalize;
}

@media only screen and (min-width: 360px) {
    .menu-name {
        display: block;
        visibility: visible;
    }
}

@media only screen and (min-width: 576px) {
    .menu-list {
        justify-content: center;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
    }
}

@media only screen and (min-width: 768px) {
    .menu-mobile {
        position: relative;
        align-content: center;
        top: 6px;
        right: 0;
        width: auto;
        height: 3rem;
        background: none;
        box-shadow: none;
    }

    .text-bottom-menu { color: var(--white); }

    .menu-link.is-active::before {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 2rem;
        height: 2px;
        border: none;
        outline: none;
        background: var(--color-teal-800);
    }

    .menu-link:hover {
        color: var(--color-teal-800);
        transition: all 0.35s ease;
    }

    .menu-icon {
        display: none;
        visibility: hidden;
    }

    .menu-name {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
        margin-bottom: 0.2rem;
    }
}

.signup-form {
    max-width: 45rem;
    width: 100%;
}

.floating-input-login {
    padding-left: 1.8rem !important;
}

.input-icon {
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    color: #323232;
}

.input-icon-signup {
    position: absolute;
    top: 0.8rem;
    right: 1.4rem;
    color: #323232;
}

.input-icon-password {
    cursor: pointer;
}

.form-btn-custom {
    padding: 1rem 2rem;
    border: none;
    background: var(--color-primary-sky);
    color: #fff;
    border-radius: 1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.24rem;
}

.btn-signup {
    align-self: flex-end;
    width: 100%;
    margin-top: 2rem;
    box-shadow: 0 1rem 2rem #00000025;
}

.btn-signup:active {
    box-shadow: none;
}

.btn-signup:hover {
    background: var(--color-primary-sky-hover);
}

.header-hr {
    margin-bottom: 2rem;
    color: var(--color-muted);
}

.header-hr-content {
    margin-bottom: 1rem;
    color: var(--color-hr-content);
}

.header-subtitle {
    margin-bottom: .625rem;
    font-size: 1.1rem;
    color: var(--color-muted);
}

.heading-secondary {
    font-size: 1.8rem;
}

.footer {
    width: 100%;
}

.footer section {
    align-items: center;
    justify-content: center;
}

.footer section a {
    margin: 1rem 1.4rem;
    color: var(--color-muted);
    opacity: 0.6;
}

.footer section a:hover {
    color: var(--color-muted-hover);
}

.footer-link {
    margin: 1rem 2rem;
}

.footer a.social-link {
    font-size: 1.48rem;
    color: #222222;
}

.footer a.social-link:hover {
    color: #030303;
}

.footer .copyright {
    font-size: 0.865rem;
}

@media (max-width:620px) {
    .footer section {
        justify-content: left;
        display: block !important;
        padding: 0 1rem;
    }

    .footer section:nth-child(2) a {
        display: block;
    }

    .footer section .copyright {
        margin: 0 20px;
    }

}

.footer section a.img-social-link {
    color: var(--color-primary);
    opacity: 1;
}

.img-social-link img {
    max-width: 2rem;
    opacity: 1;
}


/*--------------------------------------------------------------
# Shop items
--------------------------------------------------------------*/
.items-shop-list .shop-item {
    border-radius: 10px;
    border: 1px solid #eef0ef;
}

.shop-item img {
    border-radius: 10px 10px 0 0;
}

.shop-content {
    padding: 15px;
}

.shop-content h3 {
    font-weight: 600;
    font-size: 1.12rem;
}

.shop-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.shop-content h3 a:hover {
    color: var(--color-muted-hover);
}

.shop-content p {
    font-size: 0.825rem;
    color: var(--color-muted);
}

.shop-content h4 {
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

.shop-content .price,
.shop-content .points {
    margin: 0;
    font-weight: 600;
    font-size: .96rem;
    color: #353535;
}

.shop-content .price span {
    display: block;
}

.shop-content .small {
    font-weight: 400;
}

.btn-pricing {
    border: none;
    background: var(--color-primary);
    color: #fff;
    padding: .1rem .8rem;
    border-radius: 1rem;
    cursor: pointer;
    font-weight: 500;
}

.btn-pricing:active {
    box-shadow: none;
}

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

.btn-disabled,
.btn-disabled:hover,
.btn-disabled:active {
    background: #c8c8c8;
    color: #1e1e1e;
}

.btn-pricing.btn-fit { width: 100% !important; }


/*--------------------------------------------------------------
# Hero Header
--------------------------------------------------------------*/
.hero {
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: -180px bottom, center, center;
    background-size: cover, cover, auto;
    padding: 2rem 0rem;
}

.hero-subtitle {
    color: hsl(39, 100%, 52%);
    font-size: 1.8rem;
    margin-block-end: 15px;
}

.hero-title {
    font-size: 2.8rem;
    margin-block-end: 20px;
}

.hero-text {
    font-size: 1.5rem;
    margin-block-end: 30px;
}

.btn-hero {
    background: var(--gradient-2);
    background-size: 200%;
    padding: 12px 35px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 0 25px;
    transition: var(--transition-2);
}

.btn-hero:hover,
.btn-hero:focus {
    background-position: right;
}



.dz-clickable {
    border-radius: 5px;
    border: 1px dashed rgb(0, 115, 255) !important;
}

.dz-remove {
    margin-top: 4px;
    color: #fff !important;
    background-color: var(--color-danger);
    border-radius: 15px;
    border-color: var(--color-danger);
    box-shadow: unset;
    font-size: 0.78rem;
}

.dropzone_image_preview {
    width: 100%;
    max-width: 136px !important;
}


/* ---------- LIST GROUP RADIO ---------- */
.list-group-radio .list-group-item {
    cursor: pointer;
    border-radius: .5rem;
}

.list-group-radio .form-check-input {
    z-index: 2;
    margin-top: -.5em;
}

.list-group-radio .list-group-item:hover,
.list-group-radio .list-group-item:focus {
    background-color: var(--bs-secondary-bg);
}

.list-group-radio .form-check-input:checked+.list-group-item {
    background-color: var(--bs-body);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary);
}

.list-group-radio .form-check-input[disabled]+.list-group-item,
.list-group-radio .form-check-input:disabled+.list-group-item {
    pointer-events: none;
    filter: none;
    opacity: .5;
}

.list-group-radio-img {
    margin-top: 4px;
    max-width: 48px;
}

.form-check-input:checked+.form-checked-content {
    opacity: .5;
}

.form-check-input-placeholder {
    border-style: dashed;
}

[contenteditable]:focus {
    outline: 0;
}

.form-select-custom {
    border-radius: 0.4rem !important;
    padding: 0rem 0.4rem !important;
    border: 1px solid #e8e8e8;
}

.form-select-custom select:focus {
    outline: none;
    border: none !important;
    border-width: 0 !important;
    background-color: none !important;
    background: none !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -o-box-shadow: none !important;
    -ms-box-shadow: none !important;
}

.form-checkbox-custom {
    display: block;
    padding: 4px 0px;
}

.form-checkbox-custom input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-checkbox-custom label {
    position: relative;
    cursor: pointer;
}

.form-checkbox-custom label:before {
    content: '';
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #0079bf;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 0.64rem;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.form-checkbox-custom input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0.18rem;
    left: 0.56rem;
    width: 0.4rem;
    height: 1rem;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check-label {
    margin-top: 0.24rem;
    margin-left: 0.4rem;
}

.form-check-input {
    cursor: pointer;
    border: 1px solid #a8a8a8;
    padding: 0.7rem;
}

.form-check-input:checked {
    background-color: #3387ee;
    border-color: #a8a8a8;
}

.quantity-input-wmax {
    max-width: 7rem;
    padding: 0.45rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.quantity-input-w100 {
    width: 100%;
    padding: 0.45rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}


/**
* ----------
* TAGS
* ---------- */
.tags {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.tags li {
    float: left;
}

.tag {
    background: #eee;
    border-radius: 3px 0 0 3px;
    color: #585858;
    display: inline-block;
    height: 1.6rem;
    line-height: 1.4rem;
    padding: 3px 20px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
}

.tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.tag::after {
    background: #fff;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eee;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}

.tag:hover {
    background-color: rgb(191, 199, 222);
    color: rgb(28, 28, 28);
}

.tag:hover::after {
    border-left-color: rgb(191, 199, 222);
}

.themed-grid-col {
    padding-top: .75rem;
    padding-bottom: .75rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0.25rem;
    border: 1px solid rgba(85, 44, 249, 0.3);
}


.boxselect {
    width: 100% !important;
}

.border-dot {
    border: 1px dotted #4e45ae !important;
}

.border-dot-light {
    border: 1px dotted hsla(245, 43%, 48%, 0.25) !important;
}

.cartsidebar-img {
    max-width: 48px;
}

.list-shop-img-sm {
    max-width: 6rem;
}

.list-shop-img-lg {
    max-width: 12rem;
}

.list-shop-img {
    max-width: 8rem;
}

.tab-nav-custom {
    margin-bottom: 0.44rem;
}

.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 52px;
    height: 25px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
    cursor: pointer;
}

.form-switch-toggle {
    position: relative;
}

.switch-toggle-checkbox {
    max-width: 60px !important;
}

.toggle-switch:before,
.toggle-switch:after {
    content: "";
}

.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: 1px;
    transition: left 0.25s;
}

.form-switch-toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.switch-toggle-checkbox:checked+.toggle-switch {
    background: #56c080;
}

.switch-toggle-checkbox:checked+.toggle-switch:before {
    left: 30px;
}

.switch-toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.switch-toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}


.nav-scroller {
    position: relative;
    z-index: 2;
    min-height: 4.8rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    width: auto;
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-scroller::-webkit-scrollbar {
    width: 0.14rem;
}

.nav-scroller::-webkit-scrollbar-track {
    background: var(--white);
    border-left: 1px solid var(--cultured);
}

.nav-scroller::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 80%);
    border: 0.14rem solid var(--white);
    border-radius: 10px;
}

.nav-scroller::-webkit-scrollbar-thumb:hover {
    background: hsl(0, 0%, 70%);
}

.page-item > a {
    border-color: var(--color-primary) !important;
    color: var(--color-primary);
}

/* SLIDER SLICK */
.hero-carousel {
    margin-top: -4.98rem;
}
.carousel-slider img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}

.carousel-slider .slick-dots {
  bottom: 15px;
}
.carousel-slider .slick-dots li button:before {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.carousel-slider .slick-dots li.slick-active button:before {
  color: #333;
}
.carousel-slider .slick-dots li button:focus {
  outline: none;
}
.carousel-slider .slick-dots li button:hover:before {
  color: #555;
}

@media only screen and (max-width: 768px) {
    .hero-carousel {
        margin-top: -0.8rem;
    }
}

/* Deal Product List */
.deal-product-list .checked,
.item-content .checked {
    color: rgb(255, 165, 0);
}

.deal-product-list .unchecked,
.item-content .unchecked {
    color: rgb(180, 180, 180);
}

.deal-product-list>.prevArrowBtn,
.deal-product-list>.nextArrowBtn {
    position: absolute;
    z-index: 222;
    border: 1px solid var(--color-primary);
    width: 2.45rem;
    height: 2.45rem;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 2.625rem;
    text-align: center;
    color: var(--color-primary);
    cursor: pointer;
}
.deal-product-list>.prevArrowBtn {
    top: 45%;
    left: -0.05rem;
    border-radius: 50%;
}
.deal-product-list>.nextArrowBtn {
    top: 45%;
    right: 0;
    border-radius: 50%;
}

.deal-product-list>.slick-list {
    padding: 0 0 0 0 !important;
}

.deal-product-list .slick-dots li.slick-active button {
    background: linear-gradient(162.41deg, var(--color-primary) 1.77%, var(--color-primary-hover) 92.78%);
}

.deal-product-list .slick-dots li button:focus,
.deal-product-list .slick-dots li button:hover {
    outline: none;
    background: linear-gradient(162.41deg, var(--color-primary) 1.77%, var(--color-primary-hover) 92.78%);
}

.deal-product-list .slick-dots li button {
    width: 100%;
    height: 5px;
    background-color: #c1c3c5;
    display: unset;
    padding: 0;
}

.deal-product-list .slick-dots li {
    margin: 10px;
}

.deal-product-list .slick-dots li button::before {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    top: -8px;
    left: 0;
    border-radius: 0;
    border: none;
    transform: unset;
}

.deal-product-list .slick-dots {
    display: block;
    width: 100%;
    padding-left: 0;
    bottom: -25%;
}


/*
.deal-product-list .card::after,
.deal-product-list .card::before {
    left: 0;
    z-index: -1;
    width: 100%;
    content: "";
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    transition: 500ms all ease;
}

*/
.deal-product-list .deal-img {
    max-width: 100%;
    border: 0.08rem solid var(--color-primary);
    border-radius: 10px;
}

.deal-product-list h3.card-title {
    font-size: var(--fs-5);
}

.deal-product-list .card-list {
    margin-left: 3px;
    margin-right: 3px;
    padding: 5px;
}
.deal-product-list .card-item-list {
    padding: 5px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    border-radius: 8px;
}
.deal-product-list .card-item-content {
    padding: 8px 4px;
}


.price-box span {
    display: block;
}
.product-price {
    font-weight: 600;
}
.price-befor {
    margin-top: -0.25rem;
}
.price-befor del {
    color: #a52a2a;
}



/* cookie-consent-popup */
#cookie-consent-popup {
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 4000;
}

.popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.popup-content h4 {
    margin: 0;
    font-size: 1rem;
}

.popup-content p {
    margin: 0 20px 0 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.popup-content a {
    color: #4da6ff;
    text-decoration: underline;
}

.buttons button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 4px;
}

.buttons button:hover {
    opacity: 0.8;
}

#deny-cookies {
    background-color: #f44336;
}




/* BOX Heading */
.heading-box {
  margin-top: 18px;
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 6px;
  box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
  -moz-box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
  -webkit-box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
}

.heading-box h2 {
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.2rem 0.2rem;
}

.heading-all-view {
    padding: 0.2rem 0.2rem;
}

.category-item {
    position: relative;
    border-radius: 1rem;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.category-item img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    transform: scale(1.1);
    transition: transform 0.5s, opacity 0.5s;
}

.category-item img:hover {
    transform: scale(1);
    transition: transform 0.5s, opacity 0.5s;
}

.category-content {
    position: absolute;
    bottom: 0;
    background: #000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(54, 54, 54, 0.84) 50%, rgba(89, 89, 89, 0) 100%);
    color: #f1f1f1;
    width: 100%;
    padding: 6px;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.bg-gd-primary {
    background: #fd681d;
    background: radial-gradient(circle,rgba(51, 108, 31) 50%, #96c785 100%);
}

.bg-gd-secondary {
    background: #f2f2f2;
    background: radial-gradient(circle,rgba(242, 242, 242, 1) 40%, rgba(255, 255, 255, 1) 100%);
}

.bg-gd-searching {
    background: #fd681d;
    background: radial-gradient(circle,rgba(253, 104, 29, 1) 50%, rgba(252, 176, 69, 0.9) 100%);
}

.header-marquee {
    /*
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 3rem;
    padding: .25rem .45rem;
    overflow-x: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px dotted hsla(245, 43%, 48%, 0.25); */
    padding: .25rem .45rem;
    overflow: hidden;
    border-radius: 4px;
    border-top: 1px dotted hsla(245, 43%, 48%, 0.25);
    border-bottom: 1px dotted hsla(245, 43%, 48%, 0.25);
    display: flex;
}

.track-marquee {
  /* position: absolute; */
  white-space: nowrap;
  padding: 4px 8px;
  /*
  will-change: transform;
  animation: marquee 12s linear infinite;
  padding: .25rem .45rem; */
}

.track-marquee .content-marquee {
    display: inline-block;
    margin-right: 1rem;
}

/*
@keyframes marquee {
  from { transform: translateX(20%); }
  to { transform: translateX(-100%); }
}
*/

.card-item {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.item-content {
    padding: 6px;
    border-radius: 1rem;
}
.item-content-detail {
    padding: 8px 4px;
    /* border: 1px dotted #000; */
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    text-align: center;
    width: 100%;
}
.item-content-title {
    font-size: 0.8rem;
    font-weight: 500;
    word-wrap: break-word;
}

.item-content-image {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.item-content-discount-left {
    position: absolute;
    bottom: 0;
    left: 0;
    min-height: 1.6rem;
    min-width: 3rem;
    padding: 4px;
    font-weight: 400;
    font-size: .8rem;
    color: #FFF;
    text-shadow: 0 0 2px #230000;
    border-top-right-radius: 67.5px;
    background: rgba(255, 0, 0, 0.7);
}
.item-content-reward {
    position: absolute;
    top: 4px;
    margin: auto;
    padding: 2px 4px;
    border-radius: 4px;
    width: 100%;
}
.item-content-reward .icon,
.item-content-reward .text {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 5px;
    padding: 2px 8px;
}
.item-content-reward .icon {
    color: rgb(255, 196, 0);
}
.item-content-reward .text {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.item-content-image img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.5s, opacity 0.5s;
}
.item-content-image img:hover {
    transform: scale(1.1);
    transition: transform 0.5s, opacity 0.5s;
}
.card-item .item-image {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}




.circuler-progress .percent {
    position: relative;
    background: #fff;
    display: flex;
    width: 145px;
    height: 145px;
    align-items: center;
    justify-content: center;
}

.circuler-progress svg {
    transform: rotate(-90deg);
}

.circuler-progress circle {
    fill: none;
    
}

.circuler-progress circle:first-child {
    stroke: rgb(230, 230, 230);
   stroke-width: 20;
}
.circuler-progress circle:nth-child(2) {
    stroke: rgb(211, 247, 211);
    stroke-width: 10;
}

.circuler-progress circle:last-child {
    stroke: rgb(0, 128, 0);
    stroke-width: 6;
    stroke-dasharray: calc(1 * 100 * 3.1416);
    transition: stroke-dashoffset 0.5s ease;
}

.percentage-status {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color:#999;
    text-align: center;
}

.percentage-status div {
    font-size: 1.4rem;
    text-transform: uppercase;
    line-height: 0.8rem;
}
.percentage-status span {
    font-size: 0.72rem;
    text-transform: uppercase;
}



.order-card {
    border-radius: 12px;
    transition: transform 0.2s;
}

.order-card:hover {
    transform: scale(1.01);
}

.order-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.order-card .product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #ddd;
}

.order-card .order-status {
    font-size: 0.85rem;
    padding: 0.15rem 0.7rem;
    border-radius: 20px;
}

.order-card .status-success {
    background-color: #e7f5ed;
    color: #198754;
}

.order-card .status-pending {
    background-color: #fff3cd;
    color: #ffc107;
}

.order-card .status-cancel {
    background-color: #f8d7da;
    color: #dc3545;
}



.box-transaction .transaction-card {
    border-left: 6px solid;
    transition: transform 0.2s;
}

.box-transaction .transaction-card:hover {
    transform: scale(1.01);
    cursor: pointer;
}

.box-transaction .deposit {
    border-color: #198754;
}

.box-transaction .withdraw {
    border-color: #dc3545;
}

.box-transaction .amount-deposit {
    color: #198754;
    font-weight: bold;
}

.box-transaction .amount-withdraw {
    color: #dc3545;
    font-weight: bold;
}


.marquee-container {
   width: 100%;
   background-color: none;
   padding: 1px 0;
 }

 .marquee-content {
   display: flex;
   animation: marquee 3s linear infinite;
 }

 @keyframes marquee {
   0% {
     transform: translateX(100%);
   }

   100% {
     transform: translateX(-100%);
   }
 }

 /* Optional: Pause animation on hover */
 .marquee-container:hover .marquee-content {
   animation-play-state: paused;
 }




.more-content {
  display: none;
}

#loadmore {
    color: var(--color-muted);
    display: block;
    /* border: 1px solid rgba(96, 96, 96, 0.25); */
    transition: .3s;
}
#loadmore:hover {
  color: var(--color-primary-hover);
  text-decoration: none;
}

.end-more-content {
  color: #000 !important;
  background-color: transparent !important;
  pointer-events: none;
}


.search-wrapper {
  width: 100%;
  max-width: 40rem;
  margin: 2rem auto;
}

.search-wrapper .box-message {
    border-radius: 2rem;
    border: 2px solid rgba(242, 242, 242, 0.8);
    background: rgba(242, 242, 242, 0.7);
    padding: 0.34rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

.search-label {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: +1.3px;
  margin-bottom: 10px;
  text-align: center;
  color: #f1f1f1;
}

.search-bar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#search_query_input {
  width: 100%;
  height: 2.8rem;
  background: none;
  outline: none;
  border: 2px solid #f2f2f2cc;
  border-radius: 1.625rem;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 1rem;
  color: #f1f1f1;
}

#search_query_submit {
  width: 3.5rem;
  height: 2.8rem;
  margin-left: -3.5rem;
  background: none;
  border: none;
  outline: none;
}

#search_query_submit:hover {
  cursor: pointer;
}