/*-- Use For Custom Styling --*/

/* ===================================
Google font
====================================== */

@import url("https://fonts.googleapis.com/css?family=Open+Sans:100,200,400,500,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:100,200,400,500,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,400,500,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap");

:root {
    --brand-primary: #5d623f;
    --brand-green-200: #F1F8E9;
    --brand-green-dark: #1B5E20;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #424242;
    background-size: cover;
}

/*main wrapper */
.main-wrapper {
    background-color: inherit;
    max-width: 1440px;
    margin: 0px auto;
    background-color: #f2f5f7;
    color: #424242;
}

.container-full {
    margin-left: auto;
    margin-right: auto;
    /* padding-left: 1rem;
    padding-right: 1rem; */
    width: 100%;
}

/* Small devices */
@media (min-width: 576px) {
    .container-full {
        max-width: 540px;
    }
}

/* Tablets */
@media (min-width: 768px) {
    .container-full {
        max-width: 960px;
    }
}

/* Laptops */
@media (min-width: 992px) {
    .container-full {
        max-width: 1080px;
    }
}

/* Large desktops */
@media (min-width: 1240px) {
    .container-full {
        max-width: 1280px;
    }
}

a {
    color: #424242;
    text-decoration: none !important;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #1565c0;
}

p {
    font-size: 13px;
    font-family: inherit;
    color: #424242;
    line-height: 1.5;
    font-weight: 400;
}

.text-primary {
    color: #5d623f !important;
}

.text-white {
    color: #FFFFFF !important;
}

.text-secondary {
    color: #ddae11 !important;
}

.text-gray {
    color: #757575 !important;
}

.text-light-gray {
    color: #bdbdbd !important;
}

.text-blue {
    color: #1565c0 !important;
}

.text-xx-large {
    font-size: 36px;
}

.text-x-large {
    font-size: 24px;
}

.text-large {
    font-size: 20px;
}

.text-medium {
    font-size: 14px;
}

.text-small {
    font-size: 12px;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 680;
}

blockquote {
    color: #424242;
    font-size: inherit;
    border-left: 5px solid #ccc;
    padding: 0.5em 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 500;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

hr.primary {
    max-width: 80px;
    border: 2px solid #5d623f;
}

hr.white {
    max-width: 80px;
    border: 2px solid #ffffff;
}

.swal2-confirm {
    background-color: #5d623f !important;
}

.font-size-10 {
    font-size: 10px !important
}

.font-size-11 {
    font-size: 11px !important
}

.font-size-12 {
    font-size: 12px !important
}

.font-size-13 {
    font-size: 13px !important
}

.font-size-14 {
    font-size: 14px !important
}

.font-size-15 {
    font-size: 15px !important
}

.font-size-16 {
    font-size: 16px !important
}

.font-size-17 {
    font-size: 17px !important
}

.font-size-18 {
    font-size: 18px !important
}

.font-size-20 {
    font-size: 20px !important
}

.font-size-22 {
    font-size: 22px !important
}

.font-size-24 {
    font-size: 24px !important
}

.fw-medium {
    font-weight: 500
}

.fw-semibold {
    font-weight: 600
}

/*========================================
Header & Navigation Menu
 =========================================*/
header {
    position: relative;
    width: 100%;
    z-index: 999;
}

.header-layer {
    overflow: visible;
}

/* keep rounded corners on the top-most bar only */
.header-layer>.bg-primary:first-child {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

/* Auth buttons */
.auth-buttons .btn {
    border-radius: 999px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: .7rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s ease;
}

/* Login (outline) */
.btn-auth-login {
    color: #ffffff;
    border: 1px solid #ddae11;
    background: transparent;
}

.btn-auth-login:hover {
    background: #ddae11;
    color: white;
}

/* Register (filled) */
.btn-auth-register {
    background: #ddae11;
    color: white;
    border: 1px solid #ddae11;
}

.btn-auth-register:hover {
    background: #5d623f;
    border: 1px solid #ddae11;
    color: white;
}

/* Mobile */
@media (max-width: 576px) {
    .header-layer .bg-primary .container-full>.d-flex {
        align-items: flex-start !important;
        flex-wrap: wrap;
        gap: .75rem;
    }

    .header-layer img[alt="TARIC"] {
        height: 54px !important;
    }

    .auth-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
    }

    .auth-buttons .btn {
        flex: 1 1 0;
        justify-content: center;
        min-width: 0;
        padding: 5px 10px;
        font-size: .72rem;
        line-height: 1.15;
        white-space: nowrap;
    }
}

.header-layer .navbar .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.header-layer .navbar .nav-item.active>.nav-link {
    font-weight: 600;
    opacity: 1;
}

/* ==============================
   NAVBAR BASE
============================== */

.navbar {
    padding: 6px 0;
    background-color: #ddae11;
    border-radius: 0;
}

/* Brand */

.navbar-brand {
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
}

.navbar-brand img {
    height: 90px;
    object-fit: contain;
    transform: scale(1.1);
}

.navbar-brand:hover {
    color: #fff !important;
    background: transparent;
}


/* ==============================
   NAV ITEMS
============================== */

.navbar-nav .nav-item {
    padding: 0 12px;
}

/* Default link */

.navbar-nav .nav-link {
    font-family: inherit;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .2s ease;
    padding: .75rem .75rem;
}

/* Hover / Focus / Active */

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-item.active .nav-link {
    color: #212121 !important;
    background: transparent !important;
}


/* ==============================
   OPTIONAL UNDERLINE ANIMATION
============================== */

.navbar-nav .nav-link {
    position: relative;
}

/* underline for normal links only, not dropdown toggles */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    /* underline styles */
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-item.active .nav-link:not(.dropdown-toggle)::after {
    width: 70%;
}

/* =========================================
   Bootstrap 5.3 Navbar Dropdown (Clean)
========================================= */
/* Scope everything to navbar only */
.navbar .nav-item.dropdown {
    position: relative;
}

/* Dropdown toggle (language link) */
.navbar .nav-link.dropdown-toggle {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #ffffff !important;
    /* if your navbar text is white */
}

/* IMPORTANT: don't use hover-open styles; keep click behavior */
.navbar .nav-item.dropdown:hover {
    background: transparent;
    cursor: pointer;
}

/* Dropdown menu */
.navbar .dropdown-menu {
    min-width: 220px;
    padding: .5rem;
    border: 1px solid #eceef1;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

    /* Remove old hacks */
    margin: 0 !important;
    transform: translate3d(0, 10px, 0);
    /* nice spacing below toggle */
    z-index: 1050;
    /* Bootstrap-friendly layer */
}

/* Respect dropdown-menu-end alignment */
.navbar .dropdown-menu.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* Arrow (optional) */
.navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #eceef1;
    border-top: 1px solid #eceef1;
    transform: rotate(45deg);
}

/* Dropdown items */
.navbar .dropdown-item {
    border-radius: 10px;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #2b2b2b !important;
    padding: .55rem .75rem;
    transition: background .15s ease, color .15s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(221, 174, 17, 0.18);
    /* matches #ddae11 */
    color: #1f1f1f !important;
}

.dropdown-menu .dropdown-item {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #2b2b2b !important;
    padding: .55rem .75rem;
    transition: background .15s ease, color .15s ease;
}

/* =========================================
   Search Bar
========================================= */
/* search bar */
.inner-addon {
    position: relative;
    display: flex;
    min-width: 100px;
}

.inner-addon .fa {
    position: absolute;
    padding: 10px;
    pointer-events: none;
}

.inner-addon .fas {
    position: absolute;
    padding: 10px;
    pointer-events: none;
}

.inner-addon input[type="text"] {
    border-color: #78909c !important;
    color: #212121 !important;
    font-size: 14px !important;
    font-weight: 500;
}

.inner-addon input[type="text"]:focus {
    border-color: #1565c0 !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.search-faq {
    border-color: #78909c !important;
    color: #212121 !important;
    border: 1px solid grey;
    font-size: 12px !important;
    border-radius: 4px;
    height: 30px;
    width: 100%;
    padding: 2px 30px;
    outline: 0;
}

.search-faq:hover,
.search-faq:focus {
    border: 1px solid #009688;
    background-color: white;
}

#left-fa {
    left: 0px;
}

#right-fa {
    right: 0px;
}

.right-addon .fas {
    right: 0px;
}

.left-addon input {
    padding-left: 30px;
}

.right-addon input {
    padding-right: 30px;
}

/* =========================
   HERO BACKGROUND VIDEO
========================= */
.hero-video {
    position: relative;
    width: 100%;
    height: 72vh;
    /* match your old carousel height */
    min-height: 420px;
    overflow: hidden;
    /* border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; */
}

/* Video fills the container */
.hero-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for readability + brand feel */
.hero-video__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 55%, rgba(0, 0, 0, .45) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .35) 100%);
}

/* Content */
.hero-video__content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* push to bottom */
    justify-content: center;
    /* center horizontally */
    padding-bottom: 3rem;
    /* space from bottom */
    text-align: center;
}

.hero-video__box {
    max-width: 760px;
    color: #fff;
    padding: 1rem;
}

.hero-video__box .d-flex {
    justify-content: center;
}

.hero-title {
    font-weight: 600;
    letter-spacing: .02em;
    margin: 0 0 .5rem 0;
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.hero-subtitle {
    margin: 0 0 1rem 0;
    font-size: clamp(.95rem, 1.4vw, 1.15rem);
    opacity: .95;
}

/* Buttons */
.btn-hero-primary {
    background: #ddae11;
    border: 1px solid #ddae11;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: .55rem 1rem;
}

.btn-hero-primary:hover {
    background: #5d623f;
    border-color: #5d623f;
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: .55rem 1rem;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* Mobile: avoid heavy video decoding if you want */
@media (max-width: 576px) {
    .hero-video {
        height: 55vh;
    }

    .hero-video__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55));
    }
}

/*=====================================
Carousel slide
==================================== */
.carousel {
    width: 100%;
    height: 100%;
    z-index: 99;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 72vh;
    object-fit: cover;
}

/*=====================================
Page wrapper
==================================== */
section {
    width: 100%;
}

.page-wrapper {
    min-height: 600px;
    height: auto;
    background-color: #f2f5f7;
    border-left: 1px solid #f2f5f7;
    border-right: 1px solid #f2f5f7;
    color: #424242;
}

.page-title-box {
    background-color: #fafafa;
    background-image: url("../img/banner-taric.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #eceef1;
    text-align: center;
    position: relative;
    padding: 20px 10px;
}

/* Subtle overlay for text contrast over images */
.page-title-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .25), rgba(0, 0, 0, .25));
    pointer-events: none;
}

.page-title-box>* {
    position: relative;
}

.page-title-box h4 {
    font-weight: 600;
    font-size: 24px;
    color: #FFF;
    text-transform: uppercase;
    position: relative;
}

.page-title-box .page-title-right>ol {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.page-title-box .page-title-right>ol li {
    color: #fff;
    font-weight: 500;
    display: inline-block;
    font-size: 12px;
    padding: 0 10px;
    position: relative;
}

.page-title-box .page-title-right>ol li a {
    color: #ddae11;
}

.page-title-box .page-title-right>ol li::before {
    content: "/";
    position: absolute;
    right: -2px;
    top: 1px;
}

.page-title-box .page-title-right>ol li:last-child:before {
    display: none;
}


/*==================================================
Page content
===================================================*/
.page-content {
    width: 100%;
    left: 0;
    padding: 0 10px;
    margin: 20px 0 10px 0;
}

.page-content ul {
    margin: 0;
    padding: 0;
}

.page-content ol {
    font-weight: 300;
    font-size: 15px !important;
    text-align: justify !important;
}

.page-content li {
    font-weight: 300;
    font-size: 15px !important;
    text-align: justify !important;
}

.page-content blockquote {
    font-weight: 300;
    text-align: justify !important;
}

.page-content img {
    display: block;
    width: 100%;
    padding: 0 10px 0 10px !important;
    object-fit: cover;
}

@media (max-width: 480px) {
    .page-content {
        width: 100%;
        left: 0;
        margin: 20px 0 10px 0;
    }

    .page-content img {
        display: block;
        width: 100%;
        padding: 0 4px 0 4px !important;
        object-fit: cover;
    }
}

/*==================================================
Tabs
===================================================*/
.nav-tabs {
    padding: 8px;

    display: flex;
    justify-content: center;
}

.nav-tabs .nav-item .nav-link {
    background-color: #fff;
    border: 2px solid #eee;
    color: #424242;
    margin: 0 8px;
    border-radius: 20px;
    font-weight: 500;
}

.nav-tabs .nav-item .nav-link:hover {
    background-color: #5d623f;
    color: #fff;
}

.nav-tabs .nav-link.active {
    background-color: #5d623f;
    border: 2px solid #ddae11;
    color: #fff;
}

/*Home background */
.home-img {
    position: relative;
    width: 100%;
    height: 45vh;
}

.home-img .bg-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url("../img/geometry.png");
    background-size: cover;
    background-position: 50% 50%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.home-img .btn {
    font-size: 28px;
    opacity: 0.9;
}

.bg-header {
    width: 100% !important;
    height: 120px !important;
}

.bg-header img {
    position: relative;
    width: 100%;
    height: 120px !important;
    background-image: url("../img/banner-taric.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    background-position: 50% 50%;
}

/* Show Hide report type */
.report-hide-show {
    display: none !important;
}

.card-product-detail .border-top {
    border-top-color: rgba(0, 0, 0, .06) !important;
}

.bg-success-subtle {
    background: rgba(25, 135, 84, .12) !important;
}

.bg-danger-subtle {
    background: rgba(220, 53, 69, .12) !important;
}

/* ===========================
   HortiMarket Listing UI
=========================== */

.hm-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.hm-card-header {
    padding: .85rem 1rem;
    border-bottom: 1px solid #eef2f6;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.hm-card-header.bg-primary {
    border-bottom: none;
}

.hm-page-header-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1.15rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(93, 98, 63, .10);
    border-radius: 0 0 1.5rem 1.5rem;
    background: linear-gradient(135deg, #31482a 0%, #5d623f 52%, #7d8455 100%);
    box-shadow: 0 18px 40px rgba(37, 56, 29, 0.08);
    overflow: hidden;
    position: relative;
}

.hm-page-header-card::before,
.hm-page-header-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hm-page-header-card::before {
    width: 10rem;
    height: 10rem;
    top: -3rem;
    right: -2rem;
}

.hm-page-header-card::after {
    width: 7rem;
    height: 7rem;
    bottom: -2rem;
    left: -1rem;
}

.hm-page-header-main {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.hm-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .55rem;
    padding: .42rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.hm-page-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.hm-page-copy {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: .92rem;
}

.hm-page-breadcrumb-wrap {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hm-page-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hm-page-breadcrumb .breadcrumb-item,
.hm-page-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.88);
    font-size: .82rem;
    font-weight: 500;
}

.hm-page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.55);
}

.hm-page-breadcrumb a {
    color: #fff;
}

.hm-page-breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hm-page-breadcrumb a i {
    margin-right: .25rem;
}

.hm-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0;
}

.hm-label {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: .35rem;
    color: #2b2b2b;
}

.hm-help {
    font-size: 11px;
    color: #6c757d;
}

.hm-divider {
    border-top: 1px dashed #dee2e6;
    margin: 12px 0;
}

@media (min-width: 992px) {
    .hm-sticky {
        position: sticky;
        top: 92px;
    }
}

@media (max-width: 767.98px) {
    .hm-page-header-card {
        flex-direction: column;
        align-items: stretch;
    }

    .hm-page-breadcrumb-wrap {
        width: 100%;
    }

    .hm-page-breadcrumb {
        width: 100%;
        border-radius: 14px;
    }
}

/* Toolbar */
.hm-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1rem;
    border-radius: 14px;
    background: rgba(93, 98, 63, .06);
    border: 1px solid rgba(93, 98, 63, .12);
    margin-bottom: 12px;
}

.hm-toolbar h5 {
    margin: 0;
    font-weight: 800;
    font-size: 14px;
    color: #2b2b2b;
}

.hm-badge {
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    padding: .25rem .55rem;
}

/* Product cards */
.hm-product {
    border-radius: 14px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .04);
}

.hm-product:hover {
    transform: translateY(-2px);
    border-color: rgba(221, 174, 17, .55);
    box-shadow: 0 14px 26px rgba(0, 0, 0, .10);
}

.hm-product-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.hm-product-body {
    padding: .85rem .9rem;
}

.hm-product-title {
    font-weight: 800;
    font-size: 14px;
    margin: 0;
    color: #1f1f1f;
}

.hm-product-meta {
    font-size: 12px;
    color: #6c757d;
}

.hm-price {
    font-weight: 900;
    font-size: 13px;
    color: #5d623f;
}

.hm-footer {
    padding: .75rem .9rem;
    border-top: 1px solid #eef2f6;
    background: #fff;
}

.hm-btn {
    border-radius: 999px;
    padding: .45rem 1rem;
    font-weight: 800;
    font-size: 12px;
}


/* ===========================
   Checkout UI Enhancements
=========================== */
.checkout-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.checkout-section-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #2b2b2b;
    margin: 0;
}

.checkout-section-title i {
    color: #ddae11;
}

.checkout-label {
    font-weight: 600;
    font-size: 12px;
    color: #424242;
    margin-bottom: .35rem;
}

.checkout-hint {
    font-size: 11px;
    color: #6c757d;
}

.checkout-divider {
    border-top: 1px dashed #dee2e6;
    margin: 12px 0;
}

/* Payment method tiles */
.pay-tile {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: .75rem .85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    cursor: pointer;
    transition: all .18s ease;
    background: #fff;
}

.pay-tile:hover {
    border-color: rgba(221, 174, 17, .55);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .06);
    transform: translateY(-1px);
}

.pay-tile .left {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.pay-tile .badge-type {
    font-size: 10px;
    font-weight: 700;
    border-radius: 999px;
    padding: .25rem .5rem;
    background: rgba(93, 98, 63, .12);
    color: #5d623f;
}

.pay-tile input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #5d623f;
}

/* Selected tile */
.pay-tile.is-active {
    border-color: #ddae11;
    background: rgba(221, 174, 17, .10);
}

/* Summary */
.summary-card {
    background: #5d623f;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.summary-card .hm-steps ol li {
    border-bottom: 1px dashed rgba(255, 255, 255, .22);
    font-weight: 500;
    font-size: 12px;
    padding: 10px 0;
    color: #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .22);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    font-size: 12px;
}

.summary-value {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}

.summary-total {
    padding-top: .75rem;
    margin-top: .25rem;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.summary-total .summary-label,
.summary-total .summary-value {
    font-size: 13px;
}

/* Sticky on desktop */
@media (min-width: 992px) {
    .sticky-summary {
        position: sticky;
        top: 90px;
    }
}

/* CTA footer */
.checkout-actions {
    display: flex;
    justify-content: flex-end;
    gap: .6rem;
    padding-top: .5rem;
}


/* HortiMarket confirmation helpers */
.hm-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hm-kv {
    border: 1px solid #eceef1;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
}

.hm-kv__label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
}

.hm-kv__value {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
}

.hm-item-row {
    border: 1px solid #eceef1;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
}

.hm-summary>div {
    border-bottom: 1px dashed rgba(255, 255, 255, .18);
}

.hm-summary>div:last-child {
    border-bottom: 0;
}


/* ===== HortiMarket RFQ (Order Request Offer) UI ===== */
.hm-form-card {
    border: 1px solid #eef0f3;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.hm-form-card .card-header {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: #fff;
    border-bottom: 0;
}

.hm-form-card .card-body {
    /* fix body padding */
    padding: 14px 16px !important;
}

@media (min-width: 992px) {
    .sticky-panel {
        position: sticky;
        top: 90px;
    }
}

.hm-side-stack {
    display: grid;
    gap: 12px;
}


/*==================================================
Login Card
===================================================*/
.login-card {
    width: 100%;
    min-height: 400px;
    padding: 4px 20px;
    background: #ffffff;
    border-radius: 10px;
    /* border-top: solid 5px #022859;
    border-bottom: solid 5px #1565c0; */
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-box-shadow: 0 0 2em #ccc;
    -webkit-box-shadow: 0 0 2em #ccc;
    box-shadow: 0 0 2em #ccc;
}

.bg-login-card {
    margin: auto;
    min-height: 400px;
    padding: 4px 20px;
    background: #ffffff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-box-shadow: 0 0 2em #ccc;
    -webkit-box-shadow: 0 0 2em #ccc;
    box-shadow: 0 0 2em #ccc;
}

.bg-login-image {
    min-height: 400px;
    background: url("../img/geometry.png");
    background-position: center;
    background-size: cover;
}

/*==================================
Card
==================================*/
.card {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #eee;
}

.card .card-flat {
    border: 0 !important;
    margin: 6px 0;
}

.cards_landscape_wrap-2:hover {
    background: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    /* margin-top: 5px; */
    opacity: 0.9;
}

.card-primary {
    border: 2px solid #ddae11;
    background-color: #5d623f;
    color: #fff;
}

.card .card-header {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: inherit;
    border-bottom: 0;
}

.card .card-header h3 {
    font-size: 18px;
    font-weight: 700;
    padding: 6px 0 0 8px;
    line-height: 1.5;
    text-align: left;
    text-transform: uppercase;
    color: #212121;
}

.card .card-header h5 {
    font-size: 16px;
    font-weight: 600;
    padding: 6px 0 0 8px;
    line-height: 1.5 !important;
    text-align: left;
    text-transform: uppercase;
    color: #424242 !important;
}

.card .card-header h5 a {
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
}

.card .card-header h5 a:hover {
    color: inherit;
}

.card .card-body {
    margin: 0;
    padding: 0;
    border: 0;
}

.card-img-top {
    width: 100%;
    height: 16vh;
    object-fit: cover;
}

.card-body h5.card-title {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 0;
    line-height: 1.5 !important;
    text-align: left;
    color: #212121;
}

.card-body h6.card-title {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 0;
    line-height: 1.5 !important;
    text-align: left;
    color: #212121 !important;
}

.card-body p.content {
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 6px !important;
    text-align: left !important;
    color: #424242 !important;
    line-height: 1.5 !important;
}

.card .card-footer {
    border-radius: 0 !important;
    margin: 4px;
    padding: 0;
    background-color: #ffffff;
    border: 0;
}

/* Dashboard card */
.dashboard-card {
    height: 100%;
}

.dashboard-card .card-header h5 {
    margin: 0;
    /* remove extra space in header */
}

.dashboard-card .card-body {
    display: flex;
    flex-direction: column;
    padding-bottom: .75rem;
    /* optional: control bottom padding */
}

.dashboard-card .card-body> :last-child {
    margin-bottom: 0 !important;
    /* remove margin of last element */
}

.dashboard-card .card-title {
    margin-bottom: 0;
    /* remove extra gaps */
}

.date-time {
    margin-bottom: 0;
    /* remove extra gaps */
}

.chart-box {
    height: 340px !important;
    /* pick a constant height that looks good */
}

/* ==================================
Item
==================================*/
.item-wr {
    width: 98%;
    margin: 4px 4px;
    padding: 4px 8px;
    display: flex;
    background-color: #F5F5F5;
    border: 1px solid #CFD8DC;
}

.item-wr .item-1 {
    flex-basis: 32%;
    background-size: cover;
    background-position: center;
}

.item-wr .item-1 img {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.item-wr .item-2 {
    flex-basis: 72%;
    padding-left: 8px;
}

.item-wr .item-3 {
    flex-basis: 12%;
}

.item-wr h6 {
    font-size: 12px !important;
}

.item-wr a {
    color: #424242;
}

.item-wr a:hover {
    color: #1565c0;
    text-decoration: none;
}

.item-wr p.content {
    line-height: 16px;
    font-size: 12px !important;
    max-lines: 2;
    word-break: break-all;
    white-space: normal;
}

.item-wr:last-child {
    margin-bottom: 0 !important;
}

.date-time {
    border: 1px solid #ddae11;
    font-size: 11px !important;
    font-weight: 600;
    padding: 6px;
}

.date-time:hover {
    border: 1px solid #ddae11;
    background-color: #ddae11;
    color: #fff;
    font-size: 11px !important;
    font-weight: 600;
    padding: 6px;
}

/*===tips ====*/
.tip-wr {
    width: 98%;
    margin: 8px 4px;
    padding: 8px;
    display: flex;
    background-color: #fafafa;
    border: 1px solid #f5f5f5;
}

.tip-wr .item-1 {
    flex-basis: 30%;
    background-size: cover;
    background-position: center;
}

.tip-wr .item-1 img {
    width: 100%;
    border-radius: 5px;
    height: auto;
    object-fit: cover;
}

.tip-wr .item-2 {
    flex-basis: 70%;
    padding-left: 8px;
}

.tip-wr h6 {
    font-size: 12px !important;
}

.tip-wr a {
    color: #212121;
}

.tip-wr a:hover {
    color: #1565c0;
    text-decoration: none;
}

.tip-wr p.content {
    line-height: 16px;
    font-size: 12px !important;
    max-lines: 2;
    word-break: break-all;
    white-space: normal;
}

/* .tip-wr h6 {
  font-size: 12px !important;
}
.tip-wr{
  background-color: #fafafa;
}

.tip-wr a {
  color: #212121;
}

.tip-wr a:hover {
  color: #DDAE11;
  text-decoration: none;
} */

/*===========================
    8.BINDUZ MAIN POST css
===========================*/
.binduz-er-main-posts-item {
    height: 100%;
    background-color: #FFFFFF;
    border: 1px solid #CFD8DC;
    margin-bottom: 16px;
}

.binduz-er-main-posts-item .binduz-er-trending-news-list-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.binduz-er-main-posts-item .binduz-er-trending-news-list-box .binduz-er-thumb {
    /* min-width: 100%;
    height: auto;*/
    margin-right: 0;
    border-radius: 0;
    flex-shrink: 0;
}

.binduz-er-main-posts-item .binduz-er-trending-news-list-box .binduz-er-thumb img {
    width: 100%;
    transition: all linear 0.2s;
}

@media (max-width: 767px) {
    .binduz-er-main-posts-item .binduz-er-trending-news-list-box .binduz-er-thumb {
        margin-bottom: 0;
    }
}

.binduz-er-main-posts-item .binduz-er-trending-news-list-box .binduz-er-content {
    border-top: 0px;
    /* padding-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
    border-radius: 0 0 10px 10px; */
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .binduz-er-main-posts-item .binduz-er-trending-news-list-box .binduz-er-content {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 20px;
    }
}

.binduz-er-main-posts-item .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title .binduz-er-title {
    margin-bottom: 5px;
}

.binduz-er-main-posts-item .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date {
    margin-left: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .binduz-er-main-posts-item .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date {
        margin-left: 4px;
    }
}

.binduz-er-main-posts-item .binduz-er-trending-news-list-box:hover .binduz-er-thumb img {
    transform: scale(1.1);
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-categories {
    display: inline-block;
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-categories a {
    display: inline-block;
    background: #5d623f;
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0 15px;
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date {
    display: inline-block;
    margin-left: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date {
        margin-left: 5px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date {
        margin-left: 5px;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date {
        margin-left: 0px;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date {
        margin-left: 20px;
        margin-top: 0px;
    }
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date span {
    font-size: 12px !important;
    color: #757575;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-meta-item .binduz-er-meta-date span {
        font-size: 11px !important;
    }
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title {
    padding-top: 8px;
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title .binduz-er-title {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
    max-lines: 2;
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title p {
    font-size: 12px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title .binduz-er-title {
        font-size: 14px;
        line-height: 24px;
        max-lines: 2;
    }

    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title p {
        font-size: 12px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title .binduz-er-title {
        font-size: 14px;
        max-lines: 2;
    }

    .binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title p {
        font-size: 12px;
    }
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title .binduz-er-title a {
    color: #212121;
}

.binduz-er-trending-news-list-box .binduz-er-content .binduz-er-trending-news-list-title .binduz-er-title a:hover {
    color: #1565c0;
}

.binduz-er-trending-news-list-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.binduz-er-trending-news-list-box:hover .binduz-er-content .binduz-er-meta-item .binduz-er-meta-categories a {
    background: #ddae11;
    color: #fff;
}


.training-title {
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.375;
    /* Bootstrap h6-safe */
    max-height: calc(1.375em * 2);
    text-overflow: ellipsis;
}


/*sub menu */
ul.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 40px;
}

ul.sub-menu li {
    /* border-bottom: 1px solid #DDAE11; */
    margin: 0;
    padding: 0 25px 0 0;
}

ul.sub-menu li a {
    width: 95%;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    font-family: inherit;
    border-bottom: 1px solid #ddae11;
    text-decoration: none !important;
    border-left: 3px solid transparent;
    display: inline-block;
    text-align: left;
    padding: 10px 0 10px 4px;
}

/* ul.sub-menu li:last-child a{
    border-bottom: none;
} */

ul.sub-menu li:hover>a {
    border-left-color: #ddae11;
}

ul.sub-menu li.current-cat:hover>a,
ul.sub-menu li.current-cat>a {
    border-left-color: #ddae11;
}

.filter-data {
    width: 100%;
    min-height: 480px;
    height: auto;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #eeeeee;
}

.filter-chart {
    display: none;
    width: 100% !important;
    min-height: 480px;
    height: auto;
}

.intro-text {
    height: inherit;
}

.intro-text p {
    text-align: center;
    padding: 200px 0;
    font-size: 12px;
}

#failed-message p {
    text-align: center;
    padding: 200px 0;
    font-size: 12px;
}

.data-sources {
    margin: 10px 0;
}

.data-sources p {
    font-size: 10px !important;
}

/*single post */
.stm_post_info {
    position: relative;
    margin: 0 0 50px;
}

.stm_post_info .post_thumbnail {
    position: relative;
    margin: 0 0 22px;
}

.stm_post_info .post_thumbnail img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    transition: all linear 0.5s;
}

.stm_post_info .post_excerpt {
    position: relative;
    margin: 0 0 28px;
}

.stm_post_details {
    position: relative;
    margin: 0;
}

.stm_post_details ul {
    float: left;
    width: 70%;
    margin: 0;
    padding: 0;
}

.stm_post_details ul li {
    position: relative;
    float: left;
    color: #757575;
    list-style: none;
    margin: 0 0 0 20px;
    padding: 0 0 0 21px;
    font-size: 12px !important;
}

.stm_post_details ul li:before {
    width: 1px;
    height: 12px;
    background: #ddd;
    position: absolute;
    left: 0;
    top: 3px;
}

.stm_post_details ul li:first-child {
    margin: 0;
    padding: 0;
}

.stm_post_details ul li:first-child:before {
    display: none;
}

.stm_post_details ul li i {
    color: #757575;
    font-size: 12px;
    vertical-align: baseline;
    margin: 0 5px 0 0;
}

.stm_post_details .right-span {
    float: right;
    width: 30%;
    font-size: 13px !important;
    margin: -3px 0 0;
    text-align: right;
}

.stm_post_details .right-span .fa {
    color: #757575;
    font-size: 12px;
    margin: 0 8px 0 0;
}

.stm_post_details .comments_num {
    float: right;
    width: 30%;
    font-size: 13px;
    margin: -3px 0 0;
    text-align: right;
}

.stm_post_details .comments_num a {
    color: #777;
}

.stm_post_details .comments_num .fa {
    color: #757575;
    font-size: 16px;
    margin: 0 8px 0 0;
}

.stm_post_details span {
    color: #757575;
}

.stm_post_details .download {
    float: right;
    width: 30%;
    font-size: 13px;
    margin: -3px 0 0;
    text-align: right;
}

.stm_post_details img {
    max-width: 100%;
    height: auto;
    display: block;
}

.stm_post_details iframe {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.stm_post_details ul li:before,
ul.comment-list .children>li:before {
    content: "";
}

.post-content p {
    color: #424242;
    text-align: justify;
    font-family: inherit;
    font-size: 14px !important;
    font-weight: 400;
}

.binduz-er-sidebar-latest-post-box {
    margin-top: 0px;
}

.binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item {
    background-color: #FFFFFF;
    border: 1px solid #CFD8DC;
    margin-bottom: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item {
        display: block;
    }
}

.binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item .binduz-er-thumb {
    max-width: 120px;
    height: 100%;
    margin-right: 30px;
    overflow: auto;
}

.binduz-er-thumb img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item .binduz-er-thumb {
        margin-right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item .binduz-er-thumb {
        margin-bottom: 10px;
    }
}

.binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item .binduz-er-content span {
    font-size: 12px;
    color: #757575;
}

.binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item .binduz-er-content .binduz-er-title {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item .binduz-er-content .binduz-er-title {
        font-size: 12px;
        line-height: 22px;
    }
}

.binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item .binduz-er-content .binduz-er-title a {
    color: #212121;
}

.binduz-er-sidebar-latest-post-box .binduz-er-sidebar-latest-post-item .binduz-er-content .binduz-er-title a:hover {
    color: #1565c0;
}


/*==================================================
card 
===================================================*/
.card-product {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-list li a {
    display: block;
    padding: 4px 0;
    color: #495057
}

.product-view-nav.nav-pills .nav-item {
    margin-left: 4px
}

.product-view-nav.nav-pills .nav-link {
    width: 36px;
    height: 36px;
    font-size: 16px;
    padding: 0;
    line-height: 36px;
    text-align: center;
    border-radius: 50%
}

.product-ribbon {
    position: absolute;
    right: 0;
    top: 0
}

.product-detail-imgs .nav .nav-link {
    margin: 7px 0
}

.product-detail-imgs .nav .nav-link.active {
    background-color: #f6f6f6
}

.product-color a {
    display: inline-block;
    text-align: center;
    color: #495057
}

.product-color a .product-color-item {
    margin: 7px
}

.product-color a.active,
.product-color a:hover {
    color: #556ee6
}

.product-color a.active .product-color-item,
.product-color a:hover .product-color-item {
    border-color: #556ee6 !important
}

.visa-card .visa-logo {
    line-height: .5
}

.visa-card .visa-pattern {
    position: absolute;
    font-size: 385px;
    color: hsla(0, 0%, 100%, .05);
    line-height: .4;
    right: 0;
    bottom: 0
}

.checkout-tabs .nav-pills .nav-link {
    margin-bottom: 24px;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03)
}

.checkout-tabs .nav-pills .nav-link.active {
    background-color: #556ee6
}

.checkout-tabs .nav-pills .nav-link .check-nav-icon {
    font-size: 36px
}

.email-leftbar {
    width: 236px;
    float: left;
    padding: 20px;
    border-radius: 5px
}

.email-rightbar {
    margin-left: 260px
}

.chat-user-box p.user-title {
    color: #343a40;
    font-weight: 500
}

.chat-user-box p {
    font-size: 12px
}

/*==================================================
Data Filtering
===================================================*/
#filtering .card {
    margin-bottom: 2px;
    border: 0;
}

#filtering .card .card-header {
    border: 0;
    margin: 0;
    padding: 0;
    border-radius: 2px;
}

#main #filtering .card .card-header .btn-header-link {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    display: block;
    text-align: left;
    background: #5d623f;
    padding: 10px;
}

#main #filtering .card .card-header .btn-header-link:hover {
    color: #ddae11;
}

#filtering .card .card-header .btn-header-link:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: left;
}

#filtering .card .card-header .btn-header-link.collapsed {
    background: #5d623f;
    color: #fff;
}

#filtering .card .card-header .btn-header-link.collapsed:after {
    content: "\f105";
}

#filtering .card .collapsing {
    height: auto;
    max-height: 180px;
    background: #f5f5f5;
    overflow-y: auto;
    margin: 0 !important;
    padding: 0 !important;
}

#filtering .card .collapse {
    border: 0;
    margin: 0 !important;
    padding: 0 !important;
}

#filtering .card .collapse.show {
    height: auto;
    max-height: 180px;
    background: #f5f5f5;
    overflow-y: auto;
    margin: 0 !important;
    padding: 0 !important;
}

#filtering .card ul.listing {
    list-style: none;
    margin: 0;
    padding: 8px;
}

#filtering .card ul.listing li {
    margin: 0;
    padding: 2px;
    font-size: 12px;
    font-weight: 500;
    color: #5d623f;
}

.listing li.hide {
    display: none;
}

.faq-search .search-faq {
    width: 100%;
}

/*Non accordion menu*/
#report .card {
    margin-bottom: 2px;
    border: 0;
}

#report .card .card-header {
    border: 0;
    margin: 0;
    padding: 0;
    border-radius: 2px;
}

#report .card .card-header .btn-header-link {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    display: block;
    text-align: left;
    background: #5d623f;
    padding: 10px;
}

#report .card .card-header .btn-header-link:hover {
    color: #ddae11;
}

/* This will work on Firefox */
.collapse {
    scrollbar-width: 0.8vw;
    scrollbar-color: #ddae11 #ddae11;
}

/* Targtes on Chrome, Edge, and Safari */
.collapse::-webkit-scrollbar {
    width: 0.8vw;
    height: 3.4vh;
}

.collapse::-webkit-scrollbar-track {
    background: inherit;
}

.collapse::-webkit-scrollbar-thumb {
    background-color: #ddae11;
    border-radius: 20px;
    border: 2px solid #ddae11;
}

img.production-img {
    width: 100% !important;
    margin: 10px auto;
    -o-object-fit: contain;
    object-fit: contain;
    transform: scale(1);
    z-index: 10;
}

/*==================================================
Button
===================================================*/
.bg-primary {
    background-color: #5d623f !important;
}

.bg-secondary {
    background-color: #ddae11 !important;
}

.bg-light-blue-grey {
    background-color: #e3f2fd !important;
}

.bg-light-blue-grey:hover {
    background-color: #64b5f6 !important;
}

.bg-light-grey {
    background-color: #fafafa;
}

.bg-grey {
    background-color: #eeeeee;
}

.bg-dark-200 {
    background-color: #2f4050;
}

.bg-dark-100 {
    background-color: #293846;
}

.bg-dark-50 {
    background-color: #556270;
}

.bg-blue {
    background-color: #1565c0 !important;
}

.bg-dark-blue {
    background-color: #0d47a1 !important;
}

.bg-teal {
    background-color: #00897b;
}

.bg-dark-teal {
    background-color: #004d40;
}

.bg-light-grey {
    background-color: #f2f5f7 !important;
}

.bg-light-grey-1 {
    background-color: #fafafa !important;
}

.bg-primary-subtle {
    background-color: #EEF3E5 !important;
}

.bg-danger-subtle {
    background-color: #FFCDD2 !important;
}

/*==================================================
Button
===================================================*/
.btn {
    font-size: 13px;
    font-weight: 400;
}

.btn-xss {
    padding: .12rem .30rem;
    font-size: .750rem;
    background: rgba(25, 103, 210, 0.07);
    line-height: 1.4;
    border-radius: 2px;
    color: #1967D2;
    transition: all 300ms ease;
}

.btn.btn-primary {
    background: #5d623f;
    color: #fff;
    border: 1px solid #5d623f;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary.active {
    background: #5d623f;
    border: 1px solid #5d623f;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn.btn-outline-primary {
    color: #5d623f;
    border: 1px solid #5d623f;
}

.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:active,
.btn.btn-outline-primary.active {
    background: #5d623f;
    border: 1px solid #5d623f;
    color: #ffffff;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn.btn-secondary {
    background: #ddae11;
    color: #fff;
    border: 1px solid #ddae11;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary.active {
    background: #ddae11;
    border: 1px solid #ddae11;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn.btn-outline-secondary {
    color: #ddae11;
    border: 1px solid #ddae11;
}

.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus,
.btn.btn-outline-secondary:active,
.btn.btn-outline-secondary.active {
    background: #ddae11;
    border: 1px solid #ddae11;
    color: #ffffff;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn.btn-login-primary {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn.btn-login-primary:hover,
.btn.btn-login-primary:focus,
.btn.btn-login-primary:active,
.btn.btn-login-primary.active {
    background: #ddae11;
    border: 1px solid #ffffff;
    color: #ffffff;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.export-btn {
    color: #5d623f !important;
}

.active-filter {
    color: #ddae11 !important;
}

.btn-add-import {
    background-color: #ddae11 !important;
    color: #fff;
}

/*===============================================
Tables
===============================================*/

table.table {
    margin: 10px 0;
    border-collapse: collapse;
    /* table-layout: fixed; */
    width: 100%;
}

table.table th {
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    color: #424242;
    padding: 10px !important;
    background: #FFFFFF;
    border: 1px solid #e3e3e3;
}

table.table td {
    font-size: 12px;
    /* vertical-align: top; */
    background: #fff;
    color: #424242;
    font-weight: 400;
    border-bottom: 1px solid #e3e3e3;
    padding: 8px !important;
}

table.table td a {
    text-decoration: none !important;
    font-weight: normal !important;
}

table.table th a {
    text-align: right;
    text-decoration: none !important;
    font-weight: normal !important;
}

table.table td i {
    font-size: 14x;
    font-weight: 500;
}

/* .table tr:nth-child(odd) td {
    background-color: #fff;
}

.table tr:nth-child(even) td {
    background-color: #e8f5e9;
} */

/*==================================================
Footer
===================================================*/
.footer {
    background: linear-gradient(180deg, #5d623f 0%, #53593a 100%);
    border-top: 4px solid #ddae11;
    color: #fff;
}

.footer .footer-title {
    padding-bottom: 12px;
    font-family: inherit;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

.footer .footer-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 44px;
    background-color: rgba(221, 174, 17, 0.95);
}

.footer .footer-top {
    padding: 44px 0 28px;
}

.footer .footer-brand-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 22px;
    backdrop-filter: blur(6px);
}

.footer .footer-title--brand {
    margin-top: 6px;
}

.footer .footer-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

.footer .footer-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer .footer-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer .footer-chip:hover,
.footer .footer-chip:focus {
    color: #25381d !important;
    background: #ddae11;
    border-color: #ddae11;
}

.footer strong {
    font-weight: 700 !important;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer li {
    margin-top: 8px;
    padding-top: 0;
    line-height: 1.6;
}

.footer li a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    display: inline-block;
    position: relative;
    padding-left: 14px;
    text-decoration: none;
}

.footer ul li a:hover,
.footer ul li a:focus {
    color: #ddae11 !important;
    text-decoration: none;
}

.footer ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 4px;
    width: 4px;
    background-color: rgba(221, 174, 17, 0.95);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 999px;
}

.footer .footer-app-block {
    margin-top: 4px;
}

.footer .footer-app-label {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer .app {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .footer-store-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 180px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
}

.footer .footer-store-link i {
    font-size: 18px;
    color: #ddae11;
}

.footer .footer-store-link span {
    font-size: 13px;
    font-weight: 500;
}

.footer .footer-store-link:hover,
.footer .footer-store-link:focus {
    color: #fff !important;
    border-color: rgba(221, 174, 17, 0.55);
    transform: translateY(-1px);
}

.footer .footer-top .footer-share {
    display: inline-block;
}

.footer .footer-top .footer-share ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
}

.footer .footer-top .footer-share ul li {
    list-style: none;
    display: inline-block;
}

.footer .footer-top .footer-share ul li+li {
    margin-left: 10px;
}

.footer .footer-top .footer-share ul li a {
    font-size: 16px;
    display: block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease 0s;
    padding-left: 0;
}

ul .nav-item a:hover {
    color: #ddae11 !important;
}

.footer .footer-top .footer-share ul li a:hover {
    background-color: #ddae11;
    color: #25381d;
    border-color: #ddae11;
}

.footer .footer-top .footer-share ul li a:after {
    background: none;
}

/* footer bottom */
.footer .footer-bottom {
    border-top: 1px solid rgba(221, 174, 17, 0.25);
    text-align: left !important;
    padding: 18px 0 22px;
}

.footer .footer-bottom .copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 400;
}

.footer .footer-bottom .copyright p:hover,
.footer .footer-bottom .copyright p:focus {
    color: #fff;
}

img.footer-img {
    width: 98px !important;
    width: auto;
    margin: 0 0 10px;
    -o-object-fit: contain;
    object-fit: contain;
    transform: none;
    z-index: 10;
}

.footer .footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    text-decoration: none;
}

.footer .footer-bottom-links a:hover,
.footer .footer-bottom-links a:focus {
    color: #ddae11 !important;
}

@media (max-width: 767.98px) {
    .footer .footer-top {
        padding: 32px 0 20px;
    }

    .footer .footer-brand-card {
        padding: 20px 18px;
    }

    .footer .footer-store-link {
        max-width: 100%;
    }
}

.footer-modal {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    right: 0;
    border: none;
    border-radius: 12px 12px 0 0 !important;
}

/*=============================================
Icons
============================================*/

i.fa-production {
    content: "";
    background-image: url("../icons/farmer.png");
    width: 36px;
    height: 36px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-processing {
    content: "";
    background-image: url("../icons/processing.png");
    width: 36px;
    height: 36px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
    filter: brightness(0) invert(1);
}

i.fa-market-trends {
    content: "";
    background-image: url("../icons/monitor.png");
    width: 36px;
    height: 36px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-weather {
    content: "";
    background-image: url("../icons/rainy-day.png");
    width: 36px;
    height: 36px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-logistics {
    content: "";
    background-image: url("../icons/logistics.png");
    width: 36px;
    height: 36px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-consumption {
    content: "";
    background-image: url("../icons/diet.png");
    width: 36px;
    height: 36px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-inputs {
    content: "";
    background-image: url("../icons/agronomy.png");
    width: 36px;
    height: 36px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-consumption-sm {
    content: "";
    background-image: url("../icons/diet.png");
    width: 20px;
    height: 25px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-production-sm {
    content: "";
    background-image: url("../icons/farmer.png");
    width: 20px;
    height: 25px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-trading-sm {
    content: "";
    background-image: url("../icons/checkout.png");
    width: 20px;
    height: 25px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
    filter: brightness(0) invert(1);
}

i.fa-table-chart-1 {
    content: "";
    background-image: url("../icons/table-chart.png");
    width: 56px;
    height: 56px;
    display: inline-block;
    background-size: cover;
}

i.fa-bar-chart-1 {
    content: "";
    background-image: url("../icons/bar-chart.png");
    width: 56px;
    height: 56px;
    display: inline-block;
    background-size: cover;
}

i.fa-line-chart-1 {
    content: "";
    background-image: url("../icons/line-chart.png");
    width: 56px;
    height: 56px;
    display: inline-block;
    background-size: cover;
}

i.fa-stacked-bar-chart-1 {
    content: "";
    background-image: url("../icons/stacked-chart.png");
    width: 56px;
    height: 56px;
    display: inline-block;
    background-size: cover;
}

i.fa-pie-chart-1 {
    content: "";
    background-image: url("../icons/pie-chart.png");
    width: 56px;
    height: 56px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-map-chart-1 {
    content: "";
    background-image: url("../icons/map-chart.png");
    width: 56px;
    height: 56px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-playstore {
    content: "";
    background-image: url("../icons/play-store.svg");
    width: 40px;
    height: 40px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-appstore {
    content: "";
    background-image: url("../icons/app-store.svg");
    width: 40px;
    height: 40px;
    color: #fff !important;
    display: inline-block;
    background-size: cover;
}

i.fa-presentation {
    content: "";
    background-image: url("../icons/presentation.png");
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: cover;
}

i.fa-pdf {
    content: "";
    background-image: url("../icons/pdf.png");
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: cover;
}

i.fa-vid {
    content: "";
    background-image: url("../icons/play-button.png");
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: cover;
}

i.fa-read {
    content: "";
    background-image: url("../icons/read.svg");
    width: 32px;
    height: 32px;
    color: #5d623f !important;
    display: inline-block;
    background-size: cover;
}

.fa-read:hover {
    opacity: 0.8;
}

/* =============================
 Video Training
 ==============================*/
.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.9;
    transition: 0.3s ease;
    background-color: transparent;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.contain {
    position: relative;
}

.play-icon {
    position: absolute;
    color: black;
    font-size: 2rem;
    cursor: pointer;
    padding-left: 45%;
    bottom: 40%;
}

/* ===============================
 RESEARCH AND PUBLICATION
=================================*/
.research {
    width: 100% !important;
}

.research img {
    width: 100% !important;
    height: 300px;
}

.research h6 {
    margin-top: 5% !important;
    word-break: break-all;
    white-space: normal;
}

.research h6 a:hover {
    color: #ddae11;
    text-decoration: none;
}

.research .content {
    width: 100%;
    margin-top: 1% !important;
    float: left;
    word-break: break-all;
    white-space: normal;
}

.button {
    background-color: #5d623f;
    /* Green */
    border: none;
    color: white;
    padding: 10px 27px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
}

.button:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
        0 17px 50px 0 rgba(0, 0, 0, 0.19);
    color: white;
}

.status-pill {
    display: inline-block;
    padding: .10rem .5rem;
    font-size: .60rem;
    border-radius: 50rem;
    font-weight: 500;
}

.status-info {
    background: #BBDEFB;
    color: #1565C0;
}

.status-success {
    background: #e6f4ea;
    color: #4CAF50;
}

.status-pending {
    background: #fff4e6;
    color: #b76e00;
}

.status-failed {
    background: #fdecea;
    color: #c53030;
}

/*pagination */
ul.pagination>li.page-item>a {
    background-color: white;
    color: #5d623f;
}

ul.pagination>li.page-item>a:focus,
ul.pagination>li.page-item>a:hover,
ul.pagination>li.page-item>span:focus,
ul.pagination>li.page-item>span:hover {
    color: #5a5a5a;
    background-color: #eee;
    border-color: #ddd;
}

ul.pagination>li.active>a {
    color: white;
    background-color: #5d623f !important;
    border: solid 1px #5d623f !important;
}

ul.pagination>li.page-item .active>a:hover {
    background-color: #5d623f !important;
    border: solid 1px #5d623f;
}

/*error templates */
.error-template {
    padding: 40px 15px;
    text-align: center;
}

.error-actions {
    margin-top: 15px;
    margin-bottom: 15px;
}

.error-actions .btn {
    margin-right: 10px;
}

/* custom cluster icon */
.custom-clustericon {
    background: var(--cluster-color);
    color: #fff;
    border-radius: 100%;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.custom-clustericon::before,
.custom-clustericon::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background: var(--cluster-color);
    opacity: 0.2;
    border-radius: 100%;
}

.custom-clustericon::before {
    padding: 7px;
}

.custom-clustericon::after {
    padding: 14px;
}

.custom-clustericon-1 {
    --cluster-color: #d32f2f;
}

.custom-clustericon-2 {
    --cluster-color: #ff9b00;
}

.custom-clustericon-3 {
    --cluster-color: #ff6969;
}

.error-main {
    background-color: #fff;
    margin-top: 40px;
    padding: 20px;
}

.error-main h1 {
    font-weight: bold;
    color: #444444;
    font-size: 80px;
    text-shadow: 2px 4px 5px #6e6e6e;
}

.error-main h6 {
    color: #42494f;
    font-size: 20px;
}

.error-main p {
    color: #9897a0;
    font-size: 15px;
}

/*===============================================
Map
===============================================*/
#map {
    height: 100%;
    /* width: 100%; */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    z-index: 100;
}

.leaflet-container {
    width: 100% !important;
    height: 560px !important;
}

.info {
    height: auto;
    width: 200px !important;
    padding: 6px 8px;
    font: 14px;
    background: white;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.info h4 {
    margin: 0 0 5px;
    color: #777;
}

.legend {
    text-align: left;
    line-height: 18px;
    color: #555;
}

.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}

.my-custom-icon {
    width: 40px !important;
    height: 40px !important;
    padding: 10px 0;
    text-align: center;
    border-radius: 18px;
    text-align: center;
    color: #ffffff;
    background-color: #78909c;
    font-size: 10px;
    font-weight: 600;
}

.my-custom-icon-none {
    width: 0px !important;
    height: 0px !important;
    color: transparent;
    background-color: transparent;
}


/*payments */
.payment-methods ul {
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    /* columns: 2; 
    -webkit-columns: 2;
    -moz-columns: 2; */
}

.payment-methods ul li {
    margin: 4px 0;
    height: 48px !important;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff !important;
    border: 1px solid #e0e0e0;
}

.payment-methods ul li img {
    float: right;
    width: 48px !important;
    height: 36px !important;
    padding: 4px 10px;
}

.payment-methods ul li span {
    padding: 0 0 0 10px;
    font-size: 14px;
    font-weight: 600;
}

/* sidebar container */
.sb-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    overflow: hidden;
    border: 1px solid rgba(93, 98, 63, .10);
}

.sb-header {
    background: linear-gradient(160deg, #5D623F 0%, #7A8350 100%);
    color: #ffffff;
    padding: 1rem;
}

.sb-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.sb-profile {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.sb-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .30);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.sb-profile-copy {
    min-width: 0;
}

.sb-eyebrow {
    display: block;
    margin-bottom: .2rem;
    color: rgba(255, 255, 255, .80);
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
}

.sb-role-list {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .55rem;
}

.sb-role-chip {
    display: inline-flex;
    align-items: center;
    padding: .2rem .5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #ffffff;
    font-size: .72rem;
    font-weight: 600;
}

.sb-section-label {
    padding: .85rem 1rem .25rem;
    color: #7d8562;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sb-nav .nav-link {
    display: flex;
    align-items: center;
    gap: .64rem;
    padding: .48rem .9rem;
    border: 1px solid transparent;
    color: #424242;
    border-radius: .5rem;
    transition: all .2s ease;
    margin-bottom: .35rem;
}

.sb-nav .nav-link:hover {
    background: #f7f9f2;
    color: #5D623F;
    border-color: rgba(93, 98, 63, .10);
    transform: translateY(-1px);
}

.sb-nav .nav-link.active {
    background: #EEF3E5;
    color: #5D623F;
    border-color: rgba(93, 98, 63, .16);
    box-shadow: inset 3px 0 0 #5D623F;
}

.sb-link-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: .8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f6ef;
    color: #5D623F;
    flex-shrink: 0;
}

.sb-nav .nav-link.active .sb-link-icon {
    background: #dfe9cc;
}

.sb-link-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
}

.sb-link-title {
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.2;
}

.sb-link-meta {
    color: #6f7562;
    font-size: .72rem;
    font-weight: 500;
    margin-top: .1rem;
    line-height: 1.3;
}

.sb-link-badge {
    min-width: 1.6rem;
    height: 1.6rem;
    padding: 0 .4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    color: #ffffff;
    font-size: .78rem;
    font-weight: 600;
    flex-shrink: 0;
}

.sb-footer {
    border-top: 1px dashed #e9ecef;
    padding: .95rem 1rem 1rem;
    font-size: .875rem;
    color: #6c757d;
    background: #fbfcf8;
}

.sb-footer-line {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #4f5638;
    font-weight: 600;
}

.sb-footer-meta {
    margin-top: .3rem;
    color: #7c826c;
    font-size: .78rem;
}

/* Mobile: make sidebar full-width; desktop: fixed width */
/* @media (min-width: 992px) {
    .sb-container {
        width: 260px;
    }
} */

@media (max-width: 991.98px) {
    .sb-container {
        margin-bottom: 1rem;
    }
}

/*avatar */
.avatar-xs {
    height: 2rem;
    width: 2rem
}

.avatar-sm {
    height: 3rem;
    width: 3rem
}

.avatar-md {
    height: 4.5rem;
    width: 4.5rem
}

.avatar-lg {
    height: 6rem;
    width: 6rem
}

.avatar-xl {
    height: 7.5rem;
    width: 7.5rem
}

.avatar-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #EEF3E5;
    color: #fff;
    font-weight: 500;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.avatar-group,
.avatar-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}


/* Global pagination theme */
/* Base */
.pagination .page-link {
    color: #5D623F;
    font-size: 12px !important;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.pagination .page-link:hover {
    color: #5D623F;
    background-color: #e9f2ff;
    border-color: #bed8ff;
}

/* Active page */
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #5D623F;
    border-color: #5D623F;
}

/* Disabled */
.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
}
