@charset "UTF-8";
.search-by-json {
    width: 100%;
    position: relative;
}
.search-by-json .list-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-block: .5rem;
}
.search-by-json .d-none {
    display: none !important;
}
.search-by-json .show-hide {
    transition: all .7s;
}
.search-by-json .fast-hide {
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}
.search-by-json .fast-show {
    opacity: 1;
    visibility: visible;
}
.search-by-json .input {
    position: relative;
}
.search-by-json .input input {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    background: transparent;
    padding: 8px 34px 8px 25px;
    color: #212121;
    font-size: 13px;
}
.search-by-json .input input::placeholder {
    color: #808080;
}
.search-by-json .input .empty {
    font-size: 15px;
    position: absolute;
    top: 24px;
    left: 18px;
    cursor: pointer;
    color: #820808;
    transition: 0.4s ease;
}
.search-by-json .input .empty:hover {
    color: #dc1111;
}
.search-by-json .input .icon {
    position: absolute;
    top: 18px;
    right: 22px;
    padding: 4px;
    cursor: pointer;
    color: var(--color1);
    font-size: 24px;
}
.search-by-json .input .icon img {
    width: 20px;
}
.search-by-json .body {
    position: absolute;
    z-index: 99999;
    width: 100%;
    background: #FFF;
    border-radius: 16px;
    text-align: center;
    padding: clamp(16px, 3vw, 32px);
    /*overflow-y: auto;*/
    /*-webkit-overflow-scrolling: auto;*/
    /*scrollbar-color: var(--color1) #C2D2E4;*/
    /*scrollbar-width: thin !important;*/
    min-height: 486px;
    margin-top: 1rem;
    overflow: hidden;
}
/* width */
.search-by-json .body::-webkit-scrollbar {
    height: 4px !important;
    width: 3px !important;
}
/* Track */
.search-by-json .body::-webkit-scrollbar-track {
    background: #eae8e4 !important;
    height: 4px !important;
}
/* Handle */
.search-by-json .body::-webkit-scrollbar-thumb {
    background: rgb(123, 123, 123) !important;
    height: 4px !important;
}
/* Handle on hover */
.search-by-json .body::-webkit-scrollbar-thumb:hover {
    background: var(--color1);
}
.search-by-json .body .default p {
    text-align: center;
    padding-top: 10px;
    color: #8b8b8b;
}
.search-by-json .body .default img {
    margin-top: clamp(32px, 3vw, 40px);
    border-radius: clamp(24px, 3vw, 32px);
}
.list-category ul,
.search-by-json .body .default .popular,
.search-by-json .body .is-search {
    text-align: right;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.search-by-json .body .default .popular {
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    align-items: start;
}
.menu-popular ul {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-right: 0;
}
.search-by-json .body .default .popular .title-popular {
    font-size: 15px;
    color: #828282;
}
.search-by-json .body .default .popular .menu-popular ul,
.search-by-json .body .is-search .list-category ul {
    margin: 10px 0;
}
/*.search-by-json .body .default .popular .menu-popular ul li,*/
/*.search-by-json .body .is-search .list-category ul li {*/
/*    border-radius: 5px;*/
/*    color: var(--color1);*/
/*    background: #ebfaf4;*/
/*    text-align: center;*/
/*    display: inline-block;*/
/*    margin: 0 2px;*/
/*}*/
.search-by-json .body .default .popular .menu-popular ul li:first-child,
.search-by-json .body .is-search .list-category ul li:first-child {
    margin-right: 0;
}
.search-by-json .body .default .popular .menu-popular ul li:last-child,
.search-by-json .body .is-search .list-category ul li:last-child {
    margin-left: 0;
}
.search-by-json .body .default .popular .menu-popular ul li a,
.search-by-json .body .is-search .list-category ul li a {
    padding: 10px;
    color: var(--gray1);
    border-radius: 12px;
    min-width: clamp(122px, 12vw, 184px);
    border: 1px solid var(--gray4);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 2vw, 16px);
    transition: 0.4s;
}
.search-by-json .body .default .popular .menu-popular ul li a:hover,
.search-by-json .body .is-search .list-category ul li a:hover {
    background: var(--color2);
    color: white;
}
.search-by-json .body .not-found {
    color: #959595;
    font-size: 17px;
    margin-top: 50px;
}
.search-by-json .body .is-search {
    padding: 5px;
}
.search-by-json .body .is-search .category {
    margin-bottom: 25px;
}
.search-by-json .body .is-search .title-category, .search-by-json .body .is-search .title-products {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--black);
}
.search-by-json .body .is-search .list-products .item {
    display: grid;
    grid-template-columns: 2fr 8fr 3fr;
    padding: 8px 12px;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    background: #EFF7FA;
}
.search-by-json .body .is-search .list-products .item:hover {
    color: var(--color1)
}
.search-by-json .body .is-search .list-products .item .img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-by-json .body .is-search .list-products .item .img img {
    width: 75px;
}
.search-by-json .body .is-search .list-products .item .title {
    font-weight: bold;
    font-size: 14px;
}
.search-by-json .body .is-search .list-products .item .price {
    text-align: left;
}
.search-by-json .body .is-search .list-products .item .price .discount {
    display: inline;
    background: #d53343;
    color: #FFF;
    padding: 5px;
    border-radius: 5px;
    margin-left: 5px;
}
.search-by-json .body .is-search .list-products .item .woocommerce-Price-amount bdi {
    font-size: 14px;
}
.search-by-json .body .is-search .list-products .item del .woocommerce-Price-amount bdi {
    font-size: 12px;
}
.search-by-json .body .is-search .list-products .item .woocommerce-Price-currencySymbol {
    font-size: 13px;
    font-weight: normal;
}
.search-by-json .body .is-search .list-products .item del .woocommerce-Price-amount bdi .woocommerce-Price-currencySymbol {
    font-size: 10px;
    font-weight: normal;
}
@media screen and (min-width: 768px) {
    .search-by-json .body {
        width: 100%;
    }
}
@media screen and (min-width: 992px) {
    .search-by-json .body {
        width: 175%;
    }
}
@media screen and (min-width: 1400px) {
    .search-by-json .body {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .search-by-json .body .is-search .list-products .item {
        display: grid;
        grid-template-columns: 2fr 6fr;
        grid-template-rows: repeat(2, auto);
        gap: 0 10px;
    }
    .search-by-json .body .is-search .list-products .item .img {
        grid-area: 1 / 1 / 3 / 2;
    }
    .search-by-json .body .is-search .list-products .item .title {
        grid-area: 1 / 2 / 2 / 3;
    }
    .search-by-json .body .is-search .list-products .item .price {
        grid-area: 2 / 2 / 3 / 3;
    }
}
@media screen and (max-width: 576px) {
    .search-by-json .body {
        width: 160%;
        max-width: calc(100% - 30px);
        right: 50%;
        transform: translateX(50%);
    }
    .search-by-json .body .default p {
        font-size: 13px;
    }
    .search-by-json .body .default .popular .menu-popular ul li a, .search-by-json .body .is-search .list-category ul li a {
        font-size: 12px;
    }
    .search-by-json .list-products {
        grid-template-columns: 1fr;
    }
}