.newRecommendations__bloc {
    margin: 0;
    padding: 0;
}

.newRecommendations__bloc ul {
    display: flex;
}

.newRecommendations__bloc .swiper-container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 2rem -2rem;
    padding: 0 4rem;
}

.newRecommendations__bloc .swiper-wrapper {
    align-items: flex-start;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.newRecommendations__bloc .grid-tile {
    padding-bottom: 2rem;
    display: flex;
}

.newRecommendations__bloc .grid-tile .product-name {
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newRecommendations__bloc .grid-tile .product-tile-bottom {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.newRecommendations__bloc .grid-tile .product-tile-bottom p {
    margin-bottom: 0;
}

.newRecommendations__bloc .grid-tile .product-tile-bottom .product-pricing {
    flex-direction: column;
}

.newRecommendations__bloc .grid-tile .product-tile-bottom .product-pricing .product-sales-price {
    margin-right: .4rem;
}

.newRecommendations__bloc .grid-tile .product-tile-bottom .product-pricing .product-promotion-flag {
    margin-top: 0;
    margin-left: .8rem;
}

.newRecommendations__bloc .grid-tile .quickview-newproducttile {
    align-self: flex-start;
}

.newRecommendations__bloc .swiper-scrollbar {
    top: calc(100% - .4rem);
    left: 0;
    height: 0.2rem;
    width: 100%;
    background: #f3f3f3;
    border-radius: 2px;
    cursor: pointer;
    transition: all .2s;
}

.newRecommendations__bloc .swiper-scrollbar:hover,
.newRecommendations__bloc .swiper-scrollbar:focus,
.newRecommendations__bloc .swiper-scrollbar:active {
    height: 0.4rem;
    transform: translateY(-.1rem);
    transition: all .2s;
}

.newRecommendations__bloc .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: #002E5E;
    border-radius: 2px;
} 

.newRecommendations__bloc .swiper-scrollbar .swiper-scrollbar-drag:hover,
.newRecommendations__bloc .swiper-scrollbar .swiper-scrollbar-drag:focus,
.newRecommendations__bloc .swiper-scrollbar .swiper-scrollbar-drag:active {
    height: 0.4rem;
    transform: translateY(-.1rem);
    transition: all .2s;
}

.newRecommendations__bloc .swiper-buttons {
    display: none;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.newRecommendations__bloc .swiper-buttons .swiper-button-next,
.newRecommendations__bloc .swiper-buttons .swiper-button-prev {
    position: absolute;
    top: calc(100% / 2);
    z-index: 1;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    color: #002E5E;
    backdrop-filter: blur(2px);
    transition: all .2s;
    transform: translateY(-50%);
}

.newRecommendations__bloc .swiper-buttons .swiper-button-next:before,
.newRecommendations__bloc .swiper-buttons .swiper-button-prev:before {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600 !important;
    color: #002E5E;
    text-align: center;
}

.newRecommendations__bloc .swiper-buttons .swiper-button-next:hover,
.newRecommendations__bloc .swiper-buttons .swiper-button-prev:hover,
.newRecommendations__bloc .swiper-buttons .swiper-button-next:focus,
.newRecommendations__bloc .swiper-buttons .swiper-button-prev:focus {
    background: rgba(255,255,255,1);
    transition: all .5s;
}

.newRecommendations__bloc .swiper-buttons .swiper-button-next.swiper-button-disabled,
.newRecommendations__bloc .swiper-buttons .swiper-button-prev.swiper-button-disabled {
    display: none;
}

.newRecommendations__bloc .swiper-button-prev {
    left: 6rem;
    transform: rotate(180deg);
}

.newRecommendations__bloc .swiper-button-next {
    right: 6rem;
}

@media screen and (min-width: 1024px) {
    .newRecommendations__bloc .recom-calloutMsg,
    .newRecommendations__bloc .recom-calloutMsg p {
        font-size: 3.4rem;
        line-height: 4rem;
    }

    .newRecommendations__bloc .swiper-container {
        margin: 4rem -4rem;
            padding: 0 4rem;
    }

    .newRecommendations__bloc .grid-tile .product-tile-bottom .product-pricing {
        flex-direction: column;
    }

    .newRecommendations__bloc .grid-tile .product-tile-bottom .product-pricing .product-sales-price {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    .newRecommendations__bloc .swiper-buttons {
        display: flex;
    }
}