@charset "UTF-8";
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
.common-top {
  width: 100%;
  /* 컨테이너 */
  /* 의견 리스트 */
  /* 반응형 */
}
.common-top .common-top-container {
  margin: 0 auto;
}
.common-top .opinion-list {
  display: grid;
  row-gap: 55px;
}
@media screen and (max-width: 991.98px) {
  .common-top .opinion-list {
    row-gap: 5.5499495459vw;
  }
}
.common-top .opinion-item {
  display: flex;
  align-items: flex-start;
  gap: 23px;
}
@media screen and (max-width: 991.98px) {
  .common-top .opinion-item {
    gap: 8px;
  }
}
.common-top .opinion-item.is-reversed .opinion-bubble {
  margin-left: auto;
  background: #f9faff;
  border-color: #f4f4f4;
  text-align: right;
}
.common-top .opinion-item.is-reversed .opinion-avatar {
  background-image: url('../../images/Users/icon_smile_beam.svg');
  background-color: #F5F5F5;
}
.common-top .opinion-avatar {
  flex-shrink: 0;
  width: 67px;
  height: 67px;
  background-color: #f9faff;
  border-radius: 999px;
  background-image: url('../../images/Users/icon_smile.svg');
  background-size: 36px;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991.98px) {
  .common-top .opinion-avatar {
    width: 40px;
    height: 40px;
    background-size: 24px;
  }
}
.common-top .opinion-bubble {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  padding: 22px 31px;
  max-width: 72%;
  font-family: "Paperlogy", "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
}
@media screen and (max-width: 991.98px) {
  .common-top .opinion-bubble {
    max-width: 80%;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
  }
}
@media (max-width: 720px) {
  .common-top-inputwrap {
    grid-template-columns: 1fr;
  }
  .common-top-submit {
    width: 100%;
  }
}