/*
// .tmb-products-carousel
*/
.tmb-products-carousel--location--product {
    margin-top: 32px;
}
.tmb-products-carousel__header {
    display: flex;
    align-items: center;
}
.tmb-products-carousel__title {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.2;
    margin: 0;
}
.tmb-products-carousel__header + .tmb-products-carousel__carousel {
    margin-top: 1rem;
}
.tmb-products-carousel__header-arrows {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-grow: 1;
    flex-shrink: 0;
}
.tmb-products-carousel__title + .tmb-products-carousel__header-arrows {
    margin-left: 12px;
}
.tmb-products-carousel__header-arrows:before {
    content: '';
    height: 2px;
    background: #f2f2f2;
    flex-grow: 1;
    flex-shrink: 0;
    margin-right: 12px;
    min-width: 32px;
}
.tmb-products-carousel__swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}
.tmb-products-carousel__swiper-slide > * {
    flex-grow: 1;
}
.tmb-products-carousel__swiper-slide > * + * {
    margin-top: 8px;
}
.tmb-products-carousel .swiper-button-next,
.tmb-products-carousel .swiper-button-prev {
    position: static;
    margin: 0;
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    padding: 0;
    height: 28px;
    width: 24px;
    background: #f2f2f2;
    color: #999;
    transition: all .12s;
}
.tmb-products-carousel .swiper-button-next:not(:disabled):hover,
.tmb-products-carousel .swiper-button-prev:not(:disabled):hover {
    background: var(--tm-button-primary--default--bg-color);
    color: var(--tm-button-primary--default--font-color);
}
.tmb-products-carousel .swiper-button-next:not(:disabled):active,
.tmb-products-carousel .swiper-button-prev:not(:disabled):active {
    transition-duration: 0s;
    background: var(--tm-button-primary--hover--bg-color);
    color: var(--tm-button-primary--hover--font-color);
}
.tmb-products-carousel .swiper-button-next {
    margin-left: 4px;
}
.tmb-products-carousel .swiper-button-next:after,
.tmb-products-carousel .swiper-button-prev:after {
    content: none;
}
.tmb-products-carousel .swiper-button-prev:disabled,
.tmb-products-carousel .swiper-button-next:disabled {
    cursor: default;
}

@media (min-width: 420px) {
    .tmb-products-carousel__title {
        font-size: 1.25rem;
    }
}
@media (min-width: 1080px) {
    .tmb-products-carousel__swiper-slide > * + * {
        margin-top: 12px;
    }
}
@media (min-width: 1200px) {
    .tmb-products-carousel--location--product {
        margin-top: 44px;
    }
}
