

  
  .last-rewiews {
    max-width: 100%;
    float: right;
    height: auto;
    list-style: none;
    background: var(--color-bg-box);
    border-radius: 12px;
    padding: 5px;
    border: var(--color-box-border);
    box-shadow: var(--box-shadow-externa);
    overflow: hidden;          /* Чтобы контент не выходил за пределы контейнера */

  }
  
  .last-rewiews-body-all {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
  }
  
 
button.slick-next.slick-arrow.slick-disabled {
background: linear-gradient(180deg, #ff9a3800 0%, #5c5c5c85 100%)!important;
}
button.slick-next.slick-arrow.slick-disabled:before {
  background: transparent url("/static/icon-pages/x-solid.fdda6ee292c2.svg") no-repeat scroll 0 0;
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  bottom: 5px;
  padding: 0;
  left: 50%;
  right: 50%;
}

  .last-rewiew-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .last-rewiew-good-title {
    padding: 3px;
    grid-area: title;
  }
  
  .last-rewiew-good-title a {
    font-size: 14px;
    font-weight: 600;
    color: #5E5F65;
}
  
  
  .last-rewiews-body {
    display: grid;
    grid-template-columns: 55px calc(100% - 55px);
    grid-template-areas:
        "title title"
        "icon text"
        "date date";
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 8px;
    height: auto;
    background-position: right center;
    align-items: center;
    background: linear-gradient(180deg, #ecece9 0%, #e7e2de63 100%);
    align-content: center;
    justify-content: flex-start;
    margin-bottom: 3px;
}
  
  
  .last-rewiew-icon {
    grid-area: icon;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 35px;
    border-radius: 6px;
    margin: 6px;
  }
  
  
  
  .good-last-rewiew .last-rewiew-icon {
    background: rgba(90, 239, 114, 0.76);
    box-shadow: 0 0 0px 5px rgb(90 239 114 / 15%);
  }
  
  .bad-last-rewiew .last-rewiew-icon {
    background: rgba(239, 90, 90, 0.76);
    box-shadow: 0 0 0px 5px rgb(241 127 127 / 16%);
  }
  
  .good-last-rewiew .last-rewiew-icon:before {
    content: "";
    width: 29px;
    height: 29px;
    background-image: url("../icon-pages/good-rewiew.b0a4ad962fb2.svg");
    background-position: center;
    background-size: cover;
    display: block;
  }
  
  .bad-last-rewiew .last-rewiew-icon:before {
    content: "";
    width: 29px;
    height: 29px;
    background-image: url("../icon-pages/bad-rewiew.bb07efcea0ea.svg");
    background-position: center;
    background-size: cover;
    display: block;
  }
  
  .last-rewiew-body {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  
  .last-rewiew-text {
    grid-area: text;
    max-width: 340px;
    width: 100%;
    padding: 3px;
  }
  
  span.last-rewiew-date {
    color: black;
    font-size: 12px;
  }
  
  .last-rewiew-date {
    grid-area: date;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }

  @media (max-width: 760px) {
  .last-rewiews {
    width: 100%;
  }
  }

  .review_slider_container {
    scrollbar-width: none;
    scrollbar-color: #00aaff transparent;
    overflow: hidden;
    overflow-y: scroll;
    box-shadow: var(--box-shadow-interna);
    padding: 3px;
    border-radius: 8px;
}