@import url('https://fonts.googleapis.com/css2?family=Nobile:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

/*
================== Global Variables
*/
:root {
    --base-color: #5455BB;
    --primary-color: #ff0000;
    --white: #fff;
    --black: #000;
    --gray: #434750;
    /* --global-font: "Nobile", sans-serif; */
    --global-font: Verdana, Arial, Helvetica, sans-serif;
}

body {
    font-family: var(--global-font);
}

.btn-black {
    background-color: #000;
    padding: 10px 15px;
    font-size: 15px;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
}

.announcement-bar {
    padding: 10px;
    background-color: #ffff00;
    font-weight: 700;
    font-size: 17px;
}

.container {
    width: 100%;
    margin: 0px auto;
    padding: 0 20px;
}

.top-stripe {
    background-color: #FFE41B;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-outer {
    background: #434750 url('/themes/skeleton/images/header-bg.png');
    background-repeat: repeat-x;
    background-position: center;
    background-size: cover;
    padding: 20px;
    position: relative;
}

.header-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.header-search {
    position: relative;
    width: 100%;
}


.header-bottom .adsearch {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFE41B;
    font-size: 14px;
}

.header-bottom .adsearch img {
    width: 35px;
    display: block;
}

.header-inner {
    padding: 0;
    position: relative;
}

.header-upper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.header-inner:after {
    position: absolute;
    content: '';
    width: 90px;
    height: 90px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: none;
    background: url('/themes/skeleton/images/decode-animation-dial.png');
    background-size: 100%;
}

.search_block_div {
    left: 0;
    background: #fff;
    padding: 34px 28px 28px;
    top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0;
    overflow-y: scroll;
    max-height: 750px;
    z-index: 3;
}

.search-product-list {
    gap: 20px;
}

.search-category-product {
    width: 100%;
}

.header-search-field {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-search-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search label {
    color: #9F9F9F;
    font-size: 14px;
    font-weight: 700;
}

.header-search input {
    background: #1A1C1F;
    border-radius: 8px;
    max-width: 990px;
    width: 100%;
    padding: 5px;
    color: var(--white);
    font-size: 13px;
}

.close-icon {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.header-menu-wrap {
    background: #8384CE;
    background-repeat: repeat-x;
    background-position: center;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-menu-wrap a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.header-menu-desktop {
    width: 100%;
    display: none;
    justify-content: center;
    gap: 20px;
}

.header-menu-wrap .header-menu-desktop a {
    color: var(--white);
}

/* Main Layout Outer =========================== */

.main-layout-outer {
    padding: 25px 0;
    display: grid;
    grid-gap: 40px;
    background-color: var(--white);
}

.default-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    border-radius: 8px;
    overflow: hidden;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

}

.sidebar-box h3 {
    position: relative;
    background: #434750;
    color: #FFFFFF;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
}

.sidebar-content {
    position: relative;
    background: #666A73;
    padding: 17px 21px;
}

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

.sidebar-content ul li {
    list-style-type: none;
}

.sidebar-content ul li a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.sidebar-content ul li ul {
    padding-left: 10px;
}

.sidebar-content ul li ul li a {
    padding-left: 10px;
    position: relative;
}

.sidebar-content ul li ul li a::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 5px;
}

.sidebar-content select {
    width: 100%;
    padding: 5px;
    font-size: 12px;
    color: #434750;
    border-radius: 8px;
    background-image: url('/themes/skeleton/images/arrow-down.png');
    background-size: 10px;
}

.sidebar-content p {
    color: #fff;
    font-size: 14px;
}

.sidebar-content.news-content p {
    margin-bottom: 5px;
}

.sidebar-content.news-content p:first-child {
    margin-bottom: 10px;
}

.sidebar-content.news-content p:last-child {
    margin-bottom: 0;
}

.sidebar-content.news-content a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

/* Footer Style =========================== */

.footer-outer {
    background: #8384CE;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #fff;
}

.footer-menu-block {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-menu-block a {
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    padding-left: 0px;
}

/* .footer-menu-block a::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 5px;
} */

.copyright-block span {
    font-size: 12px;
    font-weight: 700;
    padding-left: 0px;
    position: relative;
}

/* .copyright-block span::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 5px;
} */

/* Home Page Style =========================== */

.layout-body-content {
    padding: 0;
}

.inner-body {
    overflow: hidden;
    background: #FAFAFA;
    box-shadow: 2px 4px 4px 2px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 0 15px 15px 15px;
}

.manufacture-detailed-logos ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    text-align: center;
}

.manufacture-detailed-logos li {
    list-style-type: none;
    text-align: center;
}

.manufacture-detailed-logos li a {
    display: block;
    color: #434750;
    font-size: 12px;
}

.manufacture-detailed-logos li a:hover {
    text-decoration: underline;
}

.manufacture-detailed-logos li img {
    display: block;
    width: 100%;
}

.cart-count-wrap {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 3;
}

.cart-count-item {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
}

.account-link {
    border-top: solid 1px #999999;
    padding-top: 5px;
    margin-top: 10px;
}

.account-link a {
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    padding-left: 10px;
}

.account-link a::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 5px;
}

.login-wrap {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
}

.login-form label {
    display: block;
}

.login-form input {
    width: 100%;
    margin-bottom: 15px;
    padding: 5px;
    color: #000;
    border-radius: 8px;
    font-weight: 400;
}

.IconBtn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    padding-left: 10px;
    position: relative;
}

.IconBtn::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 5px;
}

.default-content-wrap {
    margin-top: 0;
    padding: 15px 16px;
    background: #666A73;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;

}

.featured-product-wrap {
    margin-top: 22px;
}

.default-content-wrap>h2 {
    color: #F4FF08;
    font-size: 16px;
    font-weight: 700;
    padding: 0 5px 20px 24px;
    display: block;
}

.default-content-inner {
    margin: 0px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.featured-product-wrap ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 20px;
}

.featured-product-wrap ul li {
    text-align: center;
    font-size: 12px;
}

.product-image {
    text-align: center;
}

.product-image img {
    display: block;
    margin: 0px auto;
}

.product-content {
    display: flex;
    flex-direction: column;
}

.product-content .ProductTitle {
    font-weight: 700;
    color: #434750;
}

.product-content .ProductTitle:hover {
    text-decoration: underline;
}

.product-content span {
    color: #9B8D8D;
    font-weight: bold;
}

span.color-red {
    color: #f00;
}

span.cutPrice {
    color: #5455BB;
    text-decoration: line-through;
}

.breadcrumb-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.admin-edit-button {
    font-size: 12px;
    background: #f00;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
}

.blog-post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 20px 0 0 0 !important;
    justify-content: center;
    text-decoration: none;
}

.blog-post-tags .post-tag {
    background: #424242;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.blog-post-search-filter-container {
    max-width: 400px;
    width: 100%;
    margin: 0px auto;
    display: flex;
}

.blog-post-search-filter-container input[type="search"] {
    appearance: auto;
    padding: 5px 5px;
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 14px;
}

.blog-post-search-filter-container button {
    padding: 5px 15px;
    background-color: #878C90;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
}

.blog-posts-grid {
    display: grid;
    gap: 1rem;
    margin: 40px 0 0 0;
}

.blog-post-card {
    width: 100%;
    background: #f3f3f3;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-post-card .blog-post-tags {
    margin: 5px 0 !important;
    justify-content: start;
}

.blog-post-card h3 {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0;
}

.blog-post-card img.blog-post-image {
    width: 100%;
}

.post-image {
    text-align: center;
}

.post-image img {
    margin: 0px auto;
}

.post-detail-wrap h2.post-title {
    text-align: center;
    color: #000;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-post-content h2 {
    font-size: 1.5em;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}

.post-back-button svg {
    width: 21px;
}

.single-post-content .wp-block-button a.wp-block-button__link {
    background: #515151;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    padding: 5px 10px;
    display: inline-flex;
    margin-bottom: 10px;
}

.product-grid {
    grid-row-gap: 30px;
}

.product-card h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin-top: 0;
    margin-bottom: 5px;
}

.product-description {
    margin-top: 5px;
}

.product-description p {
    margin: 0;
    font-size: 14px;
    color: #4a4a4a;
}

.productContent h3 {
    font-size: 20px;
    color: #282828;
    margin-top: 0;
    margin-bottom: 5px;
}

.productContent span.truncate {
    font-size: 16px;
    color: #4a4a4a;
}

.productContent .price-qty-wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px #919191;
}

.productContent .price-qty-wrap .product-price {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.productContent .price-qty-wrap .product-price .price-wrap {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.product-quantity {
    font-size: 13px;
    gap: 10px;
    display: flex;
    align-items: center;
}

.product-quantity select {
    display: block;
    width: 100%;
    border: solid 1px #a5a5a5;
    padding-left: 5px;
    background-color: #fff;
}

.cartBtn {
    display: block;
    text-align: center;
    background-color: #6f37bb;
    padding: 5px;
    color: #fff;
    border-radius: 4px;
}

.cartBtnWrap {
    margin-top: 10px;
}

ul.cargo-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: auto;
    padding: 0;
    line-height: 1;
}

ul.cargo-pagination li {
    display: block;
}

ul.cargo-pagination li span,
ul.cargo-pagination li a {
    padding: 5px;
    color: #666A73;
    display: flex;
    align-items: center;
}

.decode-instantly{
    display:inline-block;
    padding:20px 40px;
    background:#f00;
    border-radius:20px;
    width:auto;
    color:#fff;
    font-weight:bold;
}
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }

    .header-search {
        width: 80%;
    }

    .footer-outer {
        flex-direction: row;
        gap: 20px;
    }

    .featured-product-wrap ul,
    .manufacture-detailed-logos ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-category-list {
        width: 18%;
    }

    .active-search-list {
        width: 79%;
    }

    .search-product-list {
        gap: 0;
    }

    .search-product-list .search-category-product {
        width: 33.33%;
        padding: 10px;
    }

    .main-layout-outer {
        display: grid;
        grid-template-columns: 18% 60% 18%;
        gap: 2%;
    }

    .main-layout-outer:not(:has(> :nth-child(3))) {
        grid-template-columns: 20% 77%;
    }

    .inner-body {
        padding: 0 25px 25px 25px;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-menu-block {
        margin-bottom: 0;
        gap: 15px;
    }

}


@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }

    .header-inner:after {
        display: block;
    }

    .header-inner {
        padding: 0 0 0 110px;
    }

    .header-bottom {
        flex-wrap: nowrap;
        gap: 2%;
    }

    .header-menu-desktop {
        display: flex;
    }

    .footer-menu-block,
    .footer-outer {
        flex-wrap: nowrap;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .productImage {
        width: 40%;
    }

    .productContent {
        width: 60%;
    }

}

@media (min-width: 1200px) {
    .container {
        padding-left: 66px;
        padding-right: 66px;
    }

    .header-outer {
        padding: 48px 152px 48px 152px;
    }

    .header-upper{
        padding-left: 63px;
    }

    .header-logo {
        width: 580px;
    }

    .header-menu-desktop {
        gap: 32px;
    }

    .inner-body {
        padding: 0 48px 48px 48px;
    }

    .footer-menu-block {
        gap: 30px;
    }

}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}
