.flex-container {
  display: flex;
  justify-content: space-between;
}

.flex-item.coupon {
  flex-grow: 2;
}

.flex-item.arrow {
  flex-grow: 1;
  flex-basis: 100px;
}

/* LG 이하에서는 arrow를 숨기고 coupon을 전체 너비로 설정 */
@media (max-width: 992px) {
  .flex-container {
    flex-direction: column;
  }

  .flex-item.arrow {
    display: none;
  }

  .flex-item.coupon {
    flex-grow: 1;
    width: 100%;
  }
}


.button-listly-color {
    background-color: #01A874 !important;
    border: 2px solid #01A874 !important;
}
.button-listly-color:hover {
    background-color: #FFFFFF !important;
    color: #01A874 !important;
    border: 2px solid #01A874 !important;
}

/* Rating Stars */
.rating-star-wrapper {
    align-items: center;
    color: #ffc300;
    display: inline-flex;
    vertical-align: middle;
}
.rating-star-line {
    display: flex;
}
.rating-star-fill {
    display: flex;
    overflow: hidden;
    position: absolute;
    top: 0;
}
.rating-star {
    fill: currentColor;
    flex-shrink: 0;
}