.bg-opacity-75 {
  --bs-bg-opacity: 1;
}
.user-rating {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.user-rating .user-info {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.user-rating p {
  margin: 0;
  font-size: 14px;
  margin-top: 5px;
}

.custom-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  overflow: hidden;

  /* Для мобильных устройств */
  @media (max-width: 768px) {
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    bottom: 0;
    padding-bottom: 15px;
    padding-top: 15px;
  }
}

.custom-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%; /* Увеличьте ширину, чтобы усилить эффект блика */
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); /* Измените прозрачность */
  animation: shine 2s infinite linear;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Для десктопных устройств с шириной больше 768px */
@media (min-width: 769px) {
  .custom-button {
    width: 260px; /* Удалите фиксированную ширину */
    padding-left: 100px; /* Измените левый отступ */
    padding-right: 100px; /* Измените правый отступ */
  }
}

/* Slider */
.slick-slider .slick-prev,
.slick-slider .slick-next {
    display: none;
}

body {
    height: 200vh;
}
.custom-button-2 {
    position: fixed;
    right: 10px;
    bottom: 66px;
    width: 260px;
    display: none;
    background: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.custom-button-2.active {
    display: block;
}
.custom-button-2__body {
    position: relative;
    display: flex;
    height: 85px;
    align-items: center;
    padding: 5px 25px;
    box-sizing: border-box;
    width: 100%;

}
.custom-button-2__close {
    position: absolute;
    top: 5px;
    right: 5px;
}
.custom-button-2__close > svg {
    width: 10px;
    height: 10px;
    display: flex;
    flex-shrink: 0;
}
.custom-button-2__text {
    color: var(--bs-primary);
    font-size: 15px;
    line-height: 18px;
}
@media (max-width: 768px) {
    .custom-button-2 {
        width: 100%;
        left: 0;
        right: 0;
    }
}