.content__question {
  font-size: 22px;
  color: #1d1a1a;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  flex-shrink: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  min-height: 0;
  overflow: visible;
}
.content__rate-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.rate__emoji-image {
  width: 140px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rate__phrase {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
  margin-top: 25px;
  min-height: 56px;
}

.rate__stars-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 20px;
  flex-shrink: 0;
  margin-top: 20px;
}

.rate__stars-item {
  cursor: pointer;
}

.slider-wrapper {
  width: 100%;
  padding: 0 10px;
  margin-top: 20px;
  position: relative;
  flex-shrink: 0;
}

.custom-slider {
  width: 100%;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.custom-slider__track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: #efefef;
  border-radius: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.custom-slider__progress {
  position: absolute;
  height: 6px;
  background: #cf1317;
  border-radius: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  transition: width 0.1s ease;
}

.custom-slider__thumb {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: grab;
  transition: left 0.2s ease;
  left: calc(100% - 20px);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(207, 19, 23, 0.12);
  animation: thumbPulse 3s infinite alternate ease-in-out;
  will-change: box-shadow;
}

.custom-slider__thumb:active {
  cursor: grabbing;
}

.custom-slider__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

@keyframes thumbPulse {
  0% {
    box-shadow: 0 0 0 6px rgba(207, 19, 23, 0.12);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(207, 19, 23, 0.12);
  }
  100% {
    box-shadow: 0 0 0 6px rgba(207, 19, 23, 0.12);
  }
}
