#comment-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  position: fixed;
  transition: 0.3s ease;
}
#comment-modal.act {
  z-index: 20;
  opacity: 1;
}
#comment-modal .modal {
  position: relative;
  z-index: 1;
  max-width: 96vw;
  max-height: 96vh;
  height: 670px;
  width: 470px;
  background: #fff;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  padding: 0 30px 30px;
  border-radius: 12px;
}
#comment-modal .modal::-webkit-scrollbar {
  display: none;
}
#comment-modal .modal .title {
  padding-top: 30px;
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px dashed #c7c7c7;
  margin-bottom: 35px;
}
#comment-modal .modal .title p {
  color: #393939;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  letter-spacing: 1.25px;
}
#comment-modal .modal .title button {
  color: #4b4b4b;
}
#comment-modal .modal .comment {
  width: 100%;
  margin-bottom: 36px;
}
#comment-modal .modal .comment > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
#comment-modal .modal .comment > div .user {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  flex-grow: 1;
}
#comment-modal .modal .comment > div .user img {
  border-radius: 50%;
  width: 30px;
  aspect-ratio: 1/1;
}
#comment-modal .modal .comment > div .user div p:first-of-type {
  color: #393939;
}
#comment-modal .modal .comment > div .user div p:last-of-type {
  color: #9b9b9b;
}
#comment-modal .modal .comment > div .stars {
  display: flex;
  align-items: center;
  -moz-column-gap: 1px;
       column-gap: 1px;
}
#comment-modal .modal .comment > div .stars .star {
  width: 10px;
  height: 10px;
  background-image: url("../images/icon/icon_green_star_stroke.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
#comment-modal .modal .comment > div [data-rating="1"] .star:nth-child(-n+1),
#comment-modal .modal .comment > div [data-rating="2"] .star:nth-child(-n+2),
#comment-modal .modal .comment > div [data-rating="3"] .star:nth-child(-n+3),
#comment-modal .modal .comment > div [data-rating="4"] .star:nth-child(-n+4),
#comment-modal .modal .comment > div [data-rating="5"] .star:nth-child(-n+5) {
  background-image: url("../images/icon/icon_green_star.svg");
}
#comment-modal .modal .comment > p {
  color: #393939;
  text-align: left;
  margin-top: 12px;
}
#comment-modal .close-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.7);
}