/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 1 version
*/

.product-contents{
    margin-bottom: 40px;
}

.product-button-item {
    display: none;
}

.product-button {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    padding: 25px 15px 24px 15px;
    text-align: center;
    transition: all ease-in-out 0.1s;
}

.product-button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10px;
    background: #0465B0;
    z-index: 1;
}

.product-button__image {
    width: 100%;
    height: 165px;
    position: relative;
}

.product-button__image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-button__info {
    width: 100%;
    padding: 14px 0 6px;
    z-index: 2;
}

.product-button__info p {
    color: #030B12;
    font-weight: 700;
}

.product-buttons__wrap .row {
    justify-content: center;
}

.product-search-filter {
    margin-bottom: 30px;
}

.product-filter-option {
    margin-bottom: 25px;
}


.product-filter-option .choices__item{
    font-size: 16px;
    margin-top: 8px;
}

.product-search-col {
    display: flex;
    flex-direction: column-reverse;
}

.clear {
    margin: 20px 0 0;
    font-size: 18px;
    line-height: 1.5em;
    color: #02B4D7;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.product-search {
    position: relative;
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border-radius: 7px;
}

.product-search input {
    padding: 0 62px 0 20px;
    color: #2F2F2F;
    font-size: 18px;
    line-height: 1em;
    font-weight: 400;
    border: none;
    height: 50px;
    width: 100%;
    background: transparent;
    font-family: "Mulish", sans-serif;
}

.product-search input::-webkit-input-placeholder {
    opacity: 0.5;
    color: #2F2F2F;
}

.product-search input::-moz-placeholder {
    opacity: 0.5;
    color: #2F2F2F;
}

.product-search input:-ms-input-placeholder {
    opacity: 0.5;
    color: #2F2F2F;
}

.product-search input::-ms-input-placeholder {
    opacity: 0.5;
    color: #2F2F2F;
}

.product-search input::placeholder {
    opacity: 0.5;
    color: #2F2F2F;
}

.product-search button {
    position: absolute;
    top: 50%;
    right: 14px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #2F2F2F;
    padding-top: 2px;
}


.loadMore .btn::after {
    content: '\e904';
}

.product-buttons__wrap .row {
    gap: 25px 0;
}

.loadMore {
    margin: 25px 0 0;
}

@media (min-width: 600px) {
    .product-button {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .product-button {
        padding: 30px 20px 30px 20px;
    }

    .product-button__info {
        width: 100%;
        padding: 14px 0 6px;
        z-index: 2;
    }

    .product-search-col {
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .product-search-filter {
        margin-bottom: 45px;
    }

    .product-search {
        width: 400px;
    }

    .clear {
        margin: 0 0 0;
        font-size: 20px;
        text-align: right;
    }

    .product-buttons__wrap .row {
        gap: 32px 0;
    }

    .loadMore {
        margin: 32px 0 0;
    }
}

@media (min-width: 1200px) {
    .product-button:hover {
        background: #DAE8F3;
        box-shadow: 0px 0px 0px 2px #0465B0;
        transition: all ease-in-out 0.1s;
    }

    .product-search-col {
        flex-direction: row;
    }

    .product-search-filter {
        margin-bottom: 60px;
    }

    .product-search {
        width: 400px;
    }

    .clear {
        padding-right: 32px;
        width: calc(100% - 400px);
    }

    .product-filter-option {
        margin-bottom: 0;
    }

    .loadMore {
        margin: 40px 0 0;
    }
}