.main {
    background-color: #f5f5f5;
}
.container>.main{
    overflow: visible;
}

.search-bar {
    background: #ffffff;
    height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-bar .left {
    position: relative;
    cursor: pointer;
    display: flex;
}

.search-bar .select{
    cursor: pointer;
    position: relative;
    margin-right: 30px;
}

.search-bar .value {
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.options {
    position: absolute;
    display: none;
}

.search-bar .left .select.expanded .options {
    display: block;
}

.search-bar .value::after {
    content: "";
    width: 10px;
    height: 6px;
    display: inline-block;
    margin-left: 10px;
    margin-top: -3px;
    vertical-align: middle;
    background: url("../images/icons/angle_down.svg") center/contain no-repeat;
    padding-top: 16px;
    padding-bottom: 16px;
}

.options {
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100% + 20px);
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    text-align: center;
    border-bottom: 2px solid #ff0000;
}

.options .item {
    line-height: 32px;
    display: block;
    padding-top: 6px;
    padding-bottom: 6px;
}

.options .item:hover {
    background-color: #ee4e5b;
    color: #fff;
}

.search-bar .right {
    width: 260px;
    flex: 0 0 auto;
    position: relative;
}

.search-bar .right input {
    height: 30px;
    line-height: 30px;
    padding-left: 10px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    display: block;
    width: 100%;
}

.search-bar .right .btn-search {
    width: 22px;
    height: 22px;
    top: 2px;
    right: 9px;
    position: absolute;
    background: url("../images/icons/search.svg") center/18px no-repeat;
    cursor: pointer;
    appearance: none;
    border: none;
    padding: 0;
}

.product-list {
    margin-top: 30px;
    margin-right: -30px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    align-items: stretch;
}

.product-list a {
    margin-right: 30px;
    width: calc(100% / 3 - 30px);
    flex: 0 0 auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fff;
}

.ie .product-list a{
    align-items: center;
}

.product-list a img {
    display: block;
    height: 180px;
    width: auto;
}

@supports (object-fit: contain) {

    .product-list a img {
        width: 100%;
        object-fit: contain;
    }
}

.products-main{
    width: 100%;
    overflow: hidden;
}


.products-main .wrapper {
    padding-bottom: 50px;
}

.product-info {
    width: 100%;
    background-color: #fff;
    padding: 16px 54px 16px 20px;
    position: relative;
}

.product-info::after {
    content: "";
    width: 27px;
    height: 11px;
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url("../images/icons/arr_right_red.svg");
    transition: .3s;
}

.product-info .title{
    line-height: 28px;
    height: 56px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.product-list a:hover .product-info::after{
    right: 12px;
}

@media (max-width: 960px) {

    .product-list a{
        width: calc(50% - 30px);
        flex: 0 0 auto;
    }
    .product-list a img{
        display: block;
        height: 50vw;
    }

}

@media (max-width: 750px) {
    .product-list a {
        width: calc(50% - 20px);
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .product-list{
        margin-right: -20px;
        margin-bottom: -20px;
    }
    .search-bar{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 640px) {
    .product-list{
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .product-list a {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .search-bar .left{
        flex: 0 0 auto;
    }
    .search-bar .right{
        flex: 0 1 auto;
    }
}
