* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #000;
  background: #f0f0f0;
  font-family: 'SamsungOne', Arial, Helvetica, sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

.review-writing-page {
  max-width: 684px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  padding: 24px;
}

.media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #888888;
}

.customer-review-writing {
  width: 100%;
}

.customer-review-writing__sub-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  line-height: 1.33;
}

.customer-review-writing__description-text {
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.33;
}

.customer-review-writing .form-wrap {
  margin-top: 16px;
}

.customer-review-writing__headline {
  position: relative;
}

.customer-review-writing__headline-title {
  display: block;
  font-family: 'SamsungSharpSans', 'SamsungOne', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-right: 40px;
  line-height: 1.33;
}

.customer-review-writing__product-container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

.customer-review-writing__product-image {
  position: relative;
  overflow: hidden;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.customer-review-writing__product-image-el {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-review-writing__product-image-el + .media-placeholder {
  display: none;
}

.customer-review-writing__product-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}

.customer-review-writing__product-sub-text {
  font-size: 18px;
  margin-top: 4px;
  color: #555;
  line-height: 1.33;
}

.customer-review-writing__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
}

.customer-review-writing__close .icon {
  width: 100%;
  height: 100%;
}

.customer-review-writing__rating {
  margin-top: 24px;
}

.customer-review-writing__rating-description {
  font-size: 14px;
  text-align: right;
  line-height: 1.33;
}

.customer-review-writing__rating-overall-text {
  margin-top: 8px;
}

.customer-review-writing__rating-overall-star {
  margin-top: 16px;
}

.customer-review-writing__rating-icon {
  display: flex;
}

.customer-review-writing__rating-icon-star {
  width: 32px;
  height: 32px;
  background: url('/hosthub/assets/resources/images/icon-review-rating-star.svg') no-repeat 50% 50%;
  background-size: 100% auto;
}

.customer-review-writing__rating-icon-star + .customer-review-writing__rating-icon-star {
  margin-left: 4px;
}

.customer-review-writing__rating-icon-star.selected {
  background-image: url('/hosthub/assets/resources/images/icon-review-rating-star-selected.svg');
}

.customer-review-writing__required-text {
  position: relative;
  margin-top: 16px;
  padding-left: 16px;
  font-size: 14px;
  color: #d62e2e;
  line-height: 1.33;
}

.customer-review-writing__required-text .icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  fill: #d62e2e;
  transform: translateY(-50%);
}

.customer-review-writing__evaluation-item {
  display: flex;
  gap: 16px;
}

.customer-review-writing__evaluation-item + .customer-review-writing__evaluation-item {
  margin-top: 12px;
}

.customer-review-writing__evaluation-text {
  display: flex;
  align-items: center;
  min-width: 192px;
  font-size: 18px;
}

.customer-review-writing__evaluation-text::before {
  content: '';
  width: 4px;
  height: 4px;
  margin: 0 6px 0 2px;
  background: #000;
  border-radius: 50%;
}

.customer-review-writing__keyword-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-review-writing__keyword-chips-item {
  position: relative;
}

.customer-review-writing__keyword-chips-item .input-keyword-chips {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  clip: rect(1px, 1px, 1px, 1px);
}

.customer-review-writing__keyword-chips-item .input-keyword-chips + label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 700;
  cursor: pointer;
}

.customer-review-writing__keyword-chips-item .input-keyword-chips + label::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.customer-review-writing__keyword-chips-item .input-keyword-chips:checked + label::after {
  border-color: #2189ff;
  border-width: 2px;
}

.customer-review-writing__keyword-chips-item .input-keyword-chips:focus + label {
  outline: 2px dotted #000;
}

.customer-review-writing__textarea .no-title.multi-line .text-field-v2__input-wrap {
  height: 48px;
}

.customer-review-writing__textarea .multi-line.no-title .text-field-v2__hint {
  font-size: 18px;
  line-height: 1.32;
  transform: translate(16px, 12px);
}

.customer-review-writing__textarea .text-field-v2__input-multi-line {
  padding: 12px 16px;
  font-size: 18px;
}

.customer-review-writing__textarea .multi-line .text-field-v2__input-wrap::after {
  border-color: #555;
}

.customer-review-writing__textarea .focus.multi-line .text-field-v2__input-wrap::after {
  border-width: 2px;
  border-color: #2189ff;
}

.customer-review-writing__textarea [data-text-length].multi-line .text-field-v2__text.text-length {
  color: #555;
}

.customer-review-writing__file-upload-text-wrap {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.customer-review-writing__file-upload-text-wrap .customer-review-writing__sub-title {
  margin-top: 0;
}

.customer-review-writing__file-upload-tooltip-area {
  margin-left: 8px;
}

.customer-review-writing__file-upload-tooltip-btn .icon {
  width: 17px;
  height: 17px;
}

.customer-review-writing__file-upload-tool {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.customer-review-writing__file-upload-item-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  padding-top: 4px;
}

.customer-review-writing__file-upload-item-wrap .uploaded-image {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 88px;
  height: 88px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.customer-review-writing__file-upload-item-wrap .delete-uploaded-file {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
}

.customer-review-writing__file-upload-item-wrap .delete-uploaded-file .icon {
  width: 10px;
  height: 10px;
}

.customer-review-writing__file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  clip: rect(1px, 1px, 1px, 1px);
}

.customer-review-writing__file-upload-input + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: url('/hosthub/assets/resources/images/icon-dashed-border-box.svg') no-repeat;
  background-size: 100%;
  cursor: pointer;
}

.customer-review-writing__file-upload-input + label .icon {
  width: 20px;
  height: 20px;
}

.customer-review-writing__file-upload-input:focus + label {
  outline: 2px dotted #000;
}

.customer-review-writing__input-wrap .text-field-v2__input {
  color: #555;
}

.customer-review-writing .text-field-v2__input {
  line-height: 24px;
  font-size: 18px;
  padding: 0 32px 8px 0;
}

.customer-review-writing__input-wrap .text-field-v2__input-icon.delete .icon {
  fill: #757575;
}

.customer-review-writing .text-field-v2__input-icon .icon {
  width: 16px;
  height: 16px;
  right: 8px;
  bottom: 4px;
}

.customer-review-writing__input-wrap .error .text-field-v2__hint {
  color: #000;
}

.customer-review-writing__locale .search-box {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  padding: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 4px 6px 14px 0 rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.customer-review-writing__locale .search-locate-list > li,
.customer-review-writing__locale .no-suggestions {
  padding: 8px 0;
  font-size: 16px;
}

.customer-review-writing__locale .search-locate-list button:hover,
.customer-review-writing__locale .search-locate-list button:active {
  opacity: 0.6;
}

.customer-review-writing__locale .text-field-v2.entering .search-box {
  display: block;
}

.customer-review-writing__yesorno .customer-review-writing__radio-input {
  display: flex;
  gap: 8px;
}

.customer-review-writing__yesorno .input-radio-wrap {
  position: relative;
}

.customer-review-writing__yesorno .btn-radio {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.customer-review-writing__yesorno .btn-radio + label {
  position: relative;
  display: inline-block;
  min-width: 72px;
  width: 100%;
  padding: 8px 16px;
  text-align: center;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 700;
  cursor: pointer;
}

.customer-review-writing__yesorno .btn-radio + label::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  pointer-events: none;
}

.customer-review-writing__yesorno .btn-radio:checked + label::after {
  border: 2px solid #2189ff;
}

.customer-review-writing__yesorno .btn-radio:focus + label {
  outline: 2px dotted #000;
}

.customer-review-writing__radio-item + .customer-review-writing__radio-item {
  margin-top: 12px;
}

.customer-review-writing__radio-item .checkbox-v3__label-text {
  font-size: 14px;
}

.customer-review-writing__terms {
  margin-top: 32px;
  border-top: 1px solid #ddd;
}

.customer-review-writing__terms-input {
  margin-top: 12px;
}

.customer-review-writing__terms-input .checkbox-v3__label {
  position: relative;
  padding-left: 20px;
}

.customer-review-writing__terms-input .checkbox-v3__label-box-wrap {
  position: absolute;
  top: 0;
  left: 0;
}

.customer-review-writing__terms-input .checkbox-v3__label-text {
  font-size: 14px;
  line-height: 1.33;
}

.customer-review-writing__terms-input .btn-text {
  color: #006bea;
  text-decoration: underline;
}

.customer-review-writing__terms-input .btn-text.btn-icon::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('/hosthub/assets/resources/images/icon-new-window-deep-blue.svg') 50% no-repeat;
  background-size: 100%;
}

.customer-review-writing__cta {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  background: #fff;
}

.customer-review-writing__cta .cta {
  flex: 1;
}

.customer-review-writing .cta--contained,
.customer-review-writing .cta--outlined {
  padding: 11px 24px 10px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.33;
}

.customer-review-writing__layer .popup__contents-wrap {
  width: 558px;
}

.components-customer-review-writing-guide-popup .popup__contents {
  border-radius: 20px;
  padding: 24px 0;
}

.components-customer-review-writing-guide-popup .popup__title {
  font-size: 24px;
  padding: 0 56px 16px 24px;
}

.components-customer-review-writing-guide-popup .popup__inner {
  padding: 0 24px;
}

.components-customer-review-writing-guide-popup .popup__close {
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
}

.customer-review-writing__layer .popup__title {
  font-size: 28px;
}

.customer-review-writing__layer-guide-title {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 700;
}

.customer-review-writing__layer-guide-title .icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.customer-review-writing__layer-guide-title .icon.best {
  fill: #00838f;
}

.customer-review-writing__layer-guide-title .icon.not-allowed {
  fill: #ef3434;
}

.customer-review-writing__layer-guide-title ~ .customer-review-writing__layer-guide-title {
  margin-top: 24px;
}

.customer-review-writing__layer-guide-list {
  margin-top: 8px;
}

.customer-review-writing__layer-guide-list:has(.customer-review-writing__layer-guide-image) {
  display: flex;
  gap: 16px;
}

.customer-review-writing__layer-guide-item {
  position: relative;
  padding-left: 12px;
  font-size: 18px;
}

.customer-review-writing__layer-guide-item::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 2px;
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

.customer-review-writing__layer-guide-item + .customer-review-writing__layer-guide-item {
  margin-top: 4px;
}

.customer-review-writing__layer-guide-image .image-title {
  font-size: 18px;
  color: #007d89;
}

.customer-review-writing__layer-guide-image .image-title.do-not {
  color: #d62e2e;
}

.customer-review-writing__layer-guide-image .image-wrap {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.customer-review-writing__layer .guide-image-placeholder {
  display: block;
  width: 120px;
  height: 120px;
  background: #888888;
}

.customer-review-writing-success-popup .popup__inner-wrap {
  margin-top: 0;
}

.customer-review-writing-success-popup.popup--alert .popup__btn-wrap .cta {
  width: 100%;
}

.customer-review-writing__submit-success {
  text-align: center;
}

.customer-review-writing__submit-success .icon {
  width: 48px;
  height: 48px;
}

.customer-review-writing__submit-success-text {
  margin-top: 16px;
  font-size: 18px;
}

.select-text-field {
  position: relative;
}

.select-text-field__hint {
  position: absolute;
  top: 11px;
  left: 16px;
  font-size: 14px;
  line-height: 1.33;
  font-weight: 700;
}

.select-text-field__select {
  position: relative;
  width: 100%;
  text-align: left;
}

.select-text-field__text {
  display: block;
  min-height: 40px;
  padding: 11px 42px 10px 16px;
  font-family: 'SamsungOne', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.33;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.select-text-field__text::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.select-text-field__text .select-popup__option-text {
  display: block;
  font-size: 14px;
  line-height: 1.33;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-text-field__icon {
  position: absolute;
  right: 16px;
  bottom: 11px;
  width: 18px;
  height: 18px;
  fill: #000;
}

.select-text-field__icon.up,
.select-text-field.open .select-text-field__icon.down {
  display: none;
}

.select-text-field.open .select-text-field__icon.up {
  display: inline;
}

.select-text-field.focus .select-text-field__text::after,
.select-text-field.selected .select-text-field__text::after,
.select-text-field.open .select-text-field__text::after {
  border-color: #000;
}

.select-text-field.selected .select-text-field__hint {
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.select-popup {
  visibility: hidden;
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.25);
  z-index: 501;
}

.select-popup__inner {
  padding: 16px 0;
}

.select-popup__option {
  position: relative;
  width: 100%;
}

.select-popup__option-text {
  display: inline-block;
  font-size: 16px;
  line-height: 1.33;
  word-break: break-word;
}

.select-popup__option-icon {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.select-popup__option.active {
  padding-right: 18px;
}

.select-popup__option.active .select-popup__option-icon {
  display: block;
}

.select-popup__option-wrap {
  padding: 4px 16px;
}

.select-popup__option[disabled],
.select-popup__option[disabled]:hover {
  cursor: initial;
}

.select-popup__option[disabled] .select-popup__option-text,
.select-popup__option[disabled]:hover .select-popup__option-text {
  opacity: 0.2;
}

.select-popup__option:hover .select-popup__option-text {
  opacity: 0.4;
}

.select-popup.is-open {
  visibility: visible;
}

/*
@media only screen and (min-width: 768px) and (max-width: 1440px) {
  .customer-review-writing__sub-title {
    margin-top: 2.22222222vw;
    font-size: 1.25vw;
  }

  .customer-review-writing__description-text {
    margin-top: .27777778vw;
    font-size: .97222222vw;
  }

  .customer-review-writing .form-wrap {
    margin-top: 1.11111111vw;
  }

  .customer-review-writing__headline-title {
    margin-bottom: 1.11111111vw;
    font-size: 1.94444444vw;
  }

  .customer-review-writing__product-container {
    gap: 1.11111111vw;
    padding: 1.11111111vw 1.66666667vw;
    border-radius: .55555556vw;
  }

  .customer-review-writing__product-image {
    width: 3.88888889vw;
    height: 3.88888889vw;
  }

  .customer-review-writing__product-name,
  .customer-review-writing__product-sub-text {
    font-size: 1.25vw;
  }

  .customer-review-writing__product-sub-text {
    margin-top: .27777778vw;
  }

  .customer-review-writing__close {
    top: 0;
    right: 0;
    width: 1.66666667vw;
    height: 1.66666667vw;
  }

  .customer-review-writing__rating {
    margin-top: 1.66666667vw;
  }

  .customer-review-writing__rating-description {
    font-size: .97222222vw;
  }

  .customer-review-writing__rating-overall-text {
    margin-top: .55555556vw;
  }

  .customer-review-writing__rating-overall-star {
    margin-top: 1.11111111vw;
  }

  .customer-review-writing__rating-icon-star {
    width: 2.22222222vw;
    height: 2.22222222vw;
  }

  .customer-review-writing__rating-icon-star + .customer-review-writing__rating-icon-star {
    margin-left: .27777778vw;
  }

  .customer-review-writing__required-text {
    margin-top: 1.11111111vw;
    padding-left: 1.11111111vw;
    font-size: .97222222vw;
  }

  .customer-review-writing__required-text .icon {
    width: .83333333vw;
    height: .83333333vw;
  }

  .customer-review-writing__evaluation-item {
    gap: 1.11111111vw;
  }

  .customer-review-writing__evaluation-item + .customer-review-writing__evaluation-item {
    margin-top: .83333333vw;
  }

  .customer-review-writing__evaluation-text {
    min-width: 12.5vw;
    font-size: 1.25vw;
  }

  .customer-review-writing__evaluation-text::before {
    width: .27777778vw;
    height: .27777778vw;
    margin: 0 .41666667vw 0 .13888889vw;
  }

  .customer-review-writing__keyword-chips-list {
    gap: .55555556vw;
  }

  .customer-review-writing__keyword-chips-item .input-keyword-chips + label {
    min-height: 2.63888889vw;
    padding: .55555556vw 1.11111111vw;
    border-radius: .27777778vw;
    font-size: 1.11111111vw;
  }

  .customer-review-writing__keyword-chips-item .input-keyword-chips + label::after {
    border-radius: .27777778vw;
  }

  .customer-review-writing__keyword-chips-item .input-keyword-chips:checked + label::after {
    border-width: .13888889vw;
  }

  .customer-review-writing__textarea .no-title.multi-line .text-field-v2__input-wrap {
    height: 3.33333333vw;
  }

  .customer-review-writing__file-upload-text-wrap {
    margin-top: 2.22222222vw;
  }

  .customer-review-writing__file-upload-text-wrap .customer-review-writing__sub-title {
    margin-top: 0;
  }

  .customer-review-writing__file-upload-tooltip-area {
    margin-left: .55555556vw;
  }

  .customer-review-writing__file-upload-tooltip-btn .icon {
    width: 1.18055556vw;
    height: 1.18055556vw;
  }

  .customer-review-writing__file-upload-tool {
    gap: .55555556vw;
    margin-top: 1.11111111vw;
  }

  .customer-review-writing__file-upload-tool .customer-review-writing__file-upload-item-wrap {
    width: 6.38888889vw;
    height: 6.38888889vw;
    padding-top: .27777778vw;
  }

  .customer-review-writing__file-upload-tool .uploaded-image {
    width: 6.11111111vw;
    height: 6.11111111vw;
    border-radius: .55555556vw;
  }

  .customer-review-writing__file-upload-tool .delete-uploaded-file {
    width: 1.66666667vw;
    height: 1.66666667vw;
  }

  .customer-review-writing__file-upload-tool .delete-uploaded-file .icon {
    width: .69444444vw;
    height: .69444444vw;
  }

  .customer-review-writing__file-upload-input + label {
    width: 6.11111111vw;
    height: 6.11111111vw;
  }

  .customer-review-writing__file-upload-input + label .icon {
    width: 1.38888889vw;
    height: 1.38888889vw;
  }

  .customer-review-writing__locale .search-box {
    top: 2.77777778vw;
    padding: 1.11111111vw;
    border-radius: .55555556vw;
    box-shadow: .27777778vw .41666667vw .97222222vw 0 rgba(0, 0, 0, .25);
  }

  .customer-review-writing__locale .search-locate-list > li,
  .customer-review-writing__locale .no-suggestions {
    padding: .55555556vw 0;
    font-size: 1.11111111vw;
  }

  .customer-review-writing__yesorno .customer-review-writing__radio-input {
    gap: .55555556vw;
  }

  .customer-review-writing__yesorno .btn-radio + label {
    min-width: 5vw;
    padding: .55555556vw 1.11111111vw;
    font-size: 1.11111111vw;
  }

  .customer-review-writing__yesorno .btn-radio + label::after {
    border-radius: .27777778vw;
  }

  .customer-review-writing__yesorno .btn-radio:checked + label::after {
    border-width: .13888889vw;
  }

  .customer-review-writing__radio-item + .customer-review-writing__radio-item {
    margin-top: .83333333vw;
  }

  .customer-review-writing__radio-item .checkbox-v3__label-text {
    font-size: .97222222vw;
  }

  .customer-review-writing__terms {
    margin-top: 2.22222222vw;
  }

  .customer-review-writing__terms-input {
    margin-top: .83333333vw;
  }

  .customer-review-writing__terms-input .checkbox-v3__label {
    padding-left: 1.38888889vw;
  }

  .customer-review-writing__terms-input .checkbox-v3__label-text {
    font-size: .97222222vw;
  }

  .customer-review-writing__terms-input .btn-text.btn-icon::after {
    width: .97222222vw;
    height: .97222222vw;
  }

  .customer-review-writing__cta {
    padding: 1.66666667vw 0;
  }

  .select-text-field__hint {
    top: .76388889vw;
    left: 1.11111111vw;
    font-size: .97222222vw;
  }

  .select-text-field__text {
    min-height: 2.77777778vw;
    padding: .76388889vw 2.91666667vw .69444444vw 1.11111111vw;
    font-size: .97222222vw;
  }

  .select-text-field__text::after {
    border-radius: .55555556vw;
  }

  .select-text-field__text .select-popup__option-text {
    font-size: .97222222vw;
  }

  .select-text-field__icon {
    right: 1.11111111vw;
    bottom: .76388889vw;
    width: 1.25vw;
    height: 1.25vw;
  }

  .select-popup {
    top: 3.33333333vw;
    border-radius: .55555556vw;
    box-shadow: 0 .41666667vw .97222222vw 0 rgba(0, 0, 0, .25);
  }

  .select-popup__inner {
    padding: 1.11111111vw 0;
  }

  .select-popup__option-text {
    font-size: 1.11111111vw;
  }

  .select-popup__option-icon {
    width: 1.25vw;
    height: 1.25vw;
  }

  .select-popup__option.active {
    padding-right: 1.25vw;
  }

  .select-popup__option-wrap {
    padding: .27777778vw 1.11111111vw;
  }

  .select-popup .scrollbar {
    max-height: 20.41666667vw;
  }

  .customer-review-writing__layer .popup__contents-wrap {
    width: 38.75vw;
  }

  .customer-review-writing__layer .popup__title {
    font-size: 1.94444444vw;
  }

  .customer-review-writing__layer-guide-title {
    font-size: 1.25vw;
  }

  .customer-review-writing__layer-guide-title .icon {
    width: 1.66666667vw;
    height: 1.66666667vw;
    margin-right: .55555556vw;
  }

  .customer-review-writing__layer-guide-title ~ .customer-review-writing__layer-guide-title {
    margin-top: 1.66666667vw;
  }

  .customer-review-writing__layer-guide-list {
    margin-top: .55555556vw;
  }

  .customer-review-writing__layer-guide-list:has(.customer-review-writing__layer-guide-image) {
    gap: 1.11111111vw;
  }

  .customer-review-writing__layer-guide-item {
    padding-left: .83333333vw;
    font-size: 1.25vw;
  }

  .customer-review-writing__layer-guide-item::before {
    top: .69444444vw;
    left: .13888889vw;
    width: .27777778vw;
    height: .27777778vw;
  }

  .customer-review-writing__layer-guide-item + .customer-review-writing__layer-guide-item {
    margin-top: .27777778vw;
  }

  .customer-review-writing__layer-guide-image .image-title {
    font-size: 1.25vw;
  }

  .customer-review-writing__layer-guide-image .image-wrap {
    gap: .55555556vw;
    margin-top: .55555556vw;
  }

  .customer-review-writing__layer .guide-image-placeholder {
    width: 8.33333333vw;
    height: 8.33333333vw;
  }

  .customer-review-writing__submit-success .icon {
    width: 3.33333333vw;
    height: 3.33333333vw;
  }

  .customer-review-writing__submit-success-text {
    margin-top: 1.11111111vw;
    font-size: 1.25vw;
  }
}

@media only screen and (max-width: 767px) {
  .review-writing-page {
    max-width: none;
    padding: 6.66666667vw;
  }

  .customer-review-writing__headline-title {
    font-size: 7.77777778vw;
    margin-bottom: 4.44444444vw;
  }

  .customer-review-writing__product-container {
    gap: 4.44444444vw;
    padding: 4.44444444vw 6.66666667vw;
    border-radius: 2.22222222vw;
  }

  .customer-review-writing__product-image {
    width: 15.55555556vw;
    height: 15.55555556vw;
  }

  .customer-review-writing__product-name,
  .customer-review-writing__product-sub-text,
  .customer-review-writing__sub-title,
  .customer-review-writing__evaluation-text {
    font-size: 5vw;
  }

  .customer-review-writing__rating-icon-star {
    width: 8.88888889vw;
    height: 8.88888889vw;
  }

  .customer-review-writing__evaluation-item {
    flex-direction: column;
    gap: 2.22222222vw;
  }

  .customer-review-writing__evaluation-text {
    min-width: 0;
  }

  .customer-review-writing__keyword-chips-item .input-keyword-chips + label {
    font-size: 4.44444444vw;
    padding: 2.22222222vw 4.44444444vw;
  }

  .customer-review-writing__terms {
    margin-top: 6.66666667vw;
  }

  .customer-review-writing__terms-input {
    margin-top: 2.22222222vw;
  }

  .customer-review-writing__terms-input .checkbox-v3__label {
    padding-left: 5.55555556vw;
  }

  .customer-review-writing__terms-input .checkbox-v3__label-text {
    font-size: 3.33333333vw;
    padding-left: 2.22222222vw;
  }

  .customer-review-writing__terms-input .btn-text.btn-icon::after {
    width: 3.33333333vw;
    height: 3.33333333vw;
  }

  .customer-review-writing__layer .popup__contents-wrap {
    width: 100%;
  }

  .customer-review-writing__layer .popup__title {
    font-size: 6.66666667vw;
  }

  .customer-review-writing__layer-guide-title {
    font-size: 3.88888889vw;
  }

  .customer-review-writing__layer-guide-title .icon {
    width: 24px;
    height: 24px;
    margin-right: 2.22222222vw;
  }

  .customer-review-writing__layer-guide-title ~ .customer-review-writing__layer-guide-title {
    margin-top: 6.66666667vw;
  }

  .customer-review-writing__layer-guide-list {
    margin-top: 2.22222222vw;
  }

  .customer-review-writing__layer-guide-list:has(.customer-review-writing__layer-guide-image) {
    display: block;
    gap: 4.44444444vw;
  }

  .customer-review-writing__layer-guide-item {
    padding-left: 3.33333333vw;
    font-size: 3.88888889vw;
  }

  .customer-review-writing__layer-guide-item::before {
    top: 2.22222222vw;
    left: .55555556vw;
    width: 1.11111111vw;
    height: 1.11111111vw;
  }

  .customer-review-writing__layer-guide-item + .customer-review-writing__layer-guide-item {
    margin-top: 1.11111111vw;
  }

  .customer-review-writing__layer-guide-image .image-title {
    font-size: 3.88888889vw;
  }

  .customer-review-writing__layer-guide-image .image-wrap {
    gap: 2.22222222vw;
    margin-top: 2.22222222vw;
  }

  .customer-review-writing__layer-guide-image + .customer-review-writing__layer-guide-image {
    margin-top: 4.44444444vw;
  }

  .customer-review-writing__layer .guide-image-placeholder {
    flex: 1 1 0;
    width: auto;
    height: auto;
    aspect-ratio: 1;
  }

  .customer-review-writing__submit-success .icon {
    width: 13.33333333vw;
    height: 13.33333333vw;
  }

  .customer-review-writing__submit-success-text {
    margin-top: 4.44444444vw;
    font-size: 3.88888889vw;
  }
}
*/

/* Hide helper text area in default state; show only when state/content needs it. */
.customer-review-writing .text-field-v2 .text-field-v2__text-wrap {
  display: none;
}

.customer-review-writing .text-field-v2.error .text-field-v2__text-wrap,
.customer-review-writing .text-field-v2.success .text-field-v2__text-wrap,
.customer-review-writing .text-field-v2[data-text-length] .text-field-v2__text-wrap {
  display: block;
}
