.product-recommendations-title.large {
  font-size: calc(var(--title4-font-size) * 1.2);
}
.product-recommendations-title.small {
  font-size: calc(var(--title4-font-size) * 0.8);
}
.product-recommendations-title.medium {
  font-size: calc(var(--title4-font-size) * 1);
}

@media (min-width: 960px) {
  .slider-product-recommendations.no-slider-pc > .slider {
    flex-wrap: wrap;
  }
  .slider-product-recommendations.no-slider-pc
    .slider-product-recommendations__button {
    display: none;
  }
}

.slider-product-recommendations.no-slider-mobile > .slider {
  flex-wrap: wrap;
}

.slider-product-recommendations.no-slider-mobile
  .slider-product-recommendations__button {
  display: none;
}

@media (max-width: 959px) {
  .slider-product-recommendations > .slider.slider--mobile {
    margin-left: calc(var(--page-padding) * -1) !important;
    margin-right: calc(var(--page-padding) * -1) !important;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    scroll-padding-left: var(--page-padding);
  }

  .slider-product-recommendations > .slider.slider--mobile > .slider__slide {
    width: calc((200vw - var(--page-padding)) / (2 * var(--mobile-cols) + 1));
  }
}

.slider-product-recommendations__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(var(--color-page-background));
  border: 1px solid rgba(var(--color-entry-line));
  cursor: pointer;
  color: rgba(var(--color-text));
}

.slider-product-recommendations__button.previous {
  left: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.slider-product-recommendations__button.next {
  right: 0;
  transform: translate(50%, -50%) rotate(-90deg);
}

.slider-product-recommendations__button:disabled {
  color: rgba(var(--color-text), 0.3);
}

.slider-product-recommendations__button:hover:not(:disabled) {
  border-color: rgba(var(--color-text));
}

/* The ipad end responds to the mobile end in vertical screen */

/* @custom-media --tablet (max-width: 959px); */

/* @custom-media --gt-mobile (min-width: 751px); */

/* detectingScreen need to consider the configuration of the tablet */



.product-recommendations-cls .product-recommendations-title.medium {
    display: inline-block;
    width: 100%;
    color: rgb(51, 51, 51);
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
    /* font-family: "Poppin SemiBold"; */
    position: relative;
    text-align: center;
    margin: 0px auto 10px;
}

.product-recommendations-cls .card .card__content .product__title {
    display: block;
    /* font-family: "Poppin SemiBold"; */
    font-size: 16px;
    color: rgb(85, 85, 85);
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 5px;
    max-height: 44px;
    overflow: hidden;
    padding: 0px 5%;
}

.product-recommendations-cls .product-data-descriptive {
    font-size: 14px;
    color: rgb(153, 153, 153);
    display: block;
    line-height: 22px;
    text-overflow: ellipsis;
    transition: 0.5s;
    overflow: hidden;
    padding: 0px 10%;
    height: 22px;
}

.product-recommendations-cls .tags-items-product {
    display: none;
}

.product-recommendations-cls a.my_more1 {
    display: inline-block;
    line-height: 42px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    position: absolute;
    bottom: -200px;
    left: 10%;
    width: 80%;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0px 20px;
    background: #3d6be4;
    border-radius: 3px 3px 0px 0px;
    transition: .5s;
}

.product-recommendations-cls .product-card-wrapper.card:hover a.my_more1 {
    bottom: -20px;
}

.product-recommendations-cls .card .card__button {
    display: none;
}

.product-recommendations-cls .product-card-wrapper.card {
    position: relative;
    text-align: center;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(238, 238, 238);
    border-image: initial;
    padding: 10px 10px 20px;
    transition: 0.5s;
    overflow: hidden;
}

.product-recommendations-cls .product-card-wrapper.card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #3d6be4;
    border-image: initial;
    transform: unset;
}

.product-recommendations-cls .card .card__media>img {
    transition: .5s;
    top: unset;
    transform: unset;
}

.product-recommendations-cls .product-card-wrapper.card:hover .card__media>img {
    transform: scale(1.1);
}

.product-recommendations-cls .swiper-recom .swiper-wrapper {
    padding: 20px 0 40px;
    margin: 0;
}

#shopline-section-product-recommendations .section-padding {
    width: 94%;
}

@media screen and (max-width: 992px) {
    .product-recommendations-cls .product-recommendations-title.medium {
        font-size: 26px;
        text-transform: capitalize;
    }
}

@media screen and (max-width: 480px) {
    .product-recommendations-cls a.my_more1 {
        left: 50%;
        transform: translateX(-50%);
        z-index: 999999;
    }
}