﻿.suggestsearch {
    position: absolute;
    top: calc( 100% + 10px);
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    max-height: 70vh;
}

    .suggestsearch::-webkit-scrollbar {
        width: 6px;
    }

@media (min-width: 576px) {
    .suggestsearch {
        transform: translateX(0%);
        right: 0;
    }
}

.suggestsearch .product-list-suggest {
    padding: 15px 10px;
}

    .suggestsearch .product-list-suggest .row {
        margin: 0 -5px;
    }

    .suggestsearch .product-list-suggest [class*='col-'] {
        padding: 0 5px;
        margin-bottom: 10px;
    }

.suggestsearch .product-item {
    display: flex;
    padding: 15px 0;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
}

    .suggestsearch .product-item + .product-item {
        border-top: thin solid #008f4f;
    }

    .suggestsearch .product-item:hover .box-content .title {
        color: #fff;
    }

    .suggestsearch .product-item .box-img .img {
        width: 100%;
        height: 100%;
    }

    .suggestsearch .product-item .box-content {
        text-align: center;
        margin-top: 10px;
        padding: 0 10px;
        flex: 1;
    }

        .suggestsearch .product-item .box-content .title {
            color: #000;
            font-size: 14px;
            line-height: 20px;
            transition: .3s all ease-in-out;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-weight: 600;
        }

        .suggestsearch .product-item .box-content .des {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

            .suggestsearch .product-item .box-content .des * {
                color: #000 !important;
                font-size: 11px !important;
                font-weight: 400 !important;
            }

.productsearchresults {
    background-color: #fff;
}

    .productsearchresults .product-page [class*='col-'] {
        margin-bottom: 30px;
    }

.search-product-wrapper .product-item {
    padding: 30px 0;
    display: flex;
}

    .search-product-wrapper .product-item .box-img {
        flex: 0 0 420px;
        max-width: 420px;
    }

        .search-product-wrapper .product-item .box-img .img {
            width: 100%;
            height: 100%;
        }

    .search-product-wrapper .product-item .box-content {
        margin-top: 10px;
        padding-left: 65px;
    }

        .search-product-wrapper .product-item .box-content .title {
            color: #000;
            font-size: 24px;
            font-weight: 700;
            line-height: 28px;
        }

        .search-product-wrapper .product-item .box-content .des {
            color: #000;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
        }
