.comment_wrap {
  padding: 32px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.10);
}

.comment_moudule_title {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 32px;
}

.comment_moudule_title_text {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
}

.comment_moudule_title_icon {
  width: 16px;
  height: 16px;
}

.comment_moudule_form {
  padding: 20px 16px;
  border-radius: 4px;
  background: #F9FAFC;
}

.comment_moudule_form .cm-row {
  position: relative;
  margin-bottom: 4px;
}

.comment_moudule_form .cm-msg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 130%;
  color: #8E9299;
}

.comment_moudule_form .cm-textarea {
  width: 100%;
  min-height: 136px;
  resize: vertical;
  border: 1px solid #8E9299;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  line-height: 130%;
  background: #fff;
  outline: none;
}

.comment_moudule_form .cm-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.comment_moudule_form .cm-upload {
  margin-bottom: 4px;
  display: flex;
  gap: 4px;
}

.comment_moudule_form .cm-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0
}

.comment_moudule_form .cm-thumbs li {
  width: 96px;
  height: 96px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.comment_moudule_form .cm-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.comment_moudule_form .cm-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  cursor: pointer
}

.comment_moudule_form .cm-upload-tile {
  width: 96px;
  height: 96px;
  border: 1px solid #8E9299;
  border-radius: 4px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.comment_moudule_form .cm-upload-tile input {
  display: none
}

.comment_moudule_form .cm-upload-icon {
  display: inline-block;
  width: 18px;
}

.comment_moudule_form .cm-upload-text {
  font-size: 14px;
  line-height: 130%;
  color: #8E9299;
}

.comment_moudule_form .cm-tip {
  color: #8E9299;
  font-size: 12px;
  line-height: 150%;
}

.comment_moudule_form .cm-submit {
  border: 0;
  border-radius: 4px;
  padding: 11px 48px;
  height: 48px;
  min-width: 200px;
  color: #fff;
  background: #C9CDD4;
  cursor: not-allowed;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  text-transform: capitalize;
}

.comment_moudule_form .cm-submit.enabled {
  background: #2b2b2b;
  cursor: pointer
}

.comment_moudule_content {
  margin-top: 32px;
}

.comment_moudule_item {
  margin-bottom: 36px;
}

.comment_moudule_item_t {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.comment_moudule_item_avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFA900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.comment_moudule_item_name {
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.comment_under_review {
  font-size: 12px;
  line-height: 20px;
  color: #5F6166;
  text-transform: capitalize;
  display: inline-block;
  height: 20px;
  padding: 0 8px;
  border-radius: 2px;
  border: 0.5px solid #5F6166;
}

.comment_moudule_item_c {
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 8px;
}

.comment_moudule_item_b {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comment_moudule_item_b span {
  display: inline-block;
}

.comment_moudule_item_date {
  color: #5F6166;
  font-size: 14px;
  line-height: 130%;
}

.comment_moudule_item_b span.comment_like_box {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.comment_moudule_item_like {
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-image: url(https://img.aosomcdn.com/upload/activity/images/comment-like.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.comment_moudule_item_like.active {
  background-image: url(https://img.aosomcdn.com/upload/activity/images/comment-like-red.svg);
}

.comment_moudule_item_delete {
  color: #5F6166;
  font-size: 14px;
  line-height: 130%;
  cursor: pointer;
  text-decoration: underline;
}

.comment_like_count {
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
}

.comment_moudule_item_img {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.comment_moudule_item_img img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin-bottom: 8px;
}

.comment_moudule_load {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment_moudule_load_text {
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  width: fit-content;
  cursor: pointer;
  height: 40px;
  padding: 0 48px;
  border-radius: 4px;
  border: 1px solid #2B2B2B;
}

.comment_moudule_load_text:hover {
  background: #2B2B2B;
  color: #fff;
}

.submit_dialog {
  display: none;
  position: fixed;
  z-index: 101;
  width: 520px;
  padding: 36px;
  background: #fff;
  border-radius: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit_dialog_remove {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 24px;
  line-height: 100%;
  cursor: pointer;
  display: inline-block;
}

.submit_dialog_content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.submit_dialog_icon {
  width: 40px;
  flex-shrink: 0;
}

.submit_dialog_info {
  flex: auto;
}

.submit_dialog_info_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 8px;
}

.submit_dialog_info_desc {
  color: #8E9299;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 24px;
}

.submit_dialog_info_btn {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.submit_dialog_info_btn_ok {
  border: 0;
  border-radius: 4px;
  min-width: 120px;
  padding: 11px 48px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  text-transform: capitalize;
  background: #2B2B2B;
  color: #fff;
  cursor: pointer;
}

.submit_dialog_info_btn_cancel {
  border: 0;
  border-radius: 4px;
  min-width: 120px;
  padding: 11px 48px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  background: #fff;
  color: #2B2B2B;
  cursor: pointer;
  border: 1px solid #2B2B2B;
}

.p_newsletter_gdpr2 {
  margin-top: 8px;
}

.comment_wrap .cm-anonymous {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.comment_wrap .cm-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.comment_wrap .cm-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.comment_wrap .cm-radio .cm-radio-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #8E9299;
  display: inline-block;
  position: relative;
  transition: all .15s ease;
  margin-right: 8px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.comment_wrap .cm-radio:hover .cm-radio-icon {
  border-color: #2b2b2b;
}

.comment_wrap .cm-radio:active .cm-radio-icon {
  border-color: #2b2b2b;
}

.comment_wrap .cm-radio:active .cm-radio-icon::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.1;
  background: transparent;
  position: absolute;
  left: -2px;
  top: -2px;
  border: 2px solid #2b2b2b;
}

.comment_wrap .cm-radio input:checked+.cm-radio-icon {
  border-color: #2b2b2b;
}

.comment_wrap .cm-radio input:checked+.cm-radio-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #2b2b2b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.comment_wrap .cm-radio .cm-radio-text {
  color: #5F6166;
  font-size: 14px;
  line-height: 130%;
}

.comment_wrap .cm-radio input:disabled+.cm-radio-icon {
  border-color: #C9CDD4;
  background: #F2F3F5;
}

.comment_wrap .cm-radio input:disabled+.cm-radio-icon::after {
  background: #C9CDD4;
}

.comment_wrap .cm-radio input:disabled~.cm-radio-text {
  color: #C9CDD4;
}

@media only screen and (max-width: 767px) {
  .comment_wrap {
    padding: 12px;
    border-radius: 4px;
    border: 0.5px solid #F2F3F5;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  }

  .comment_moudule_item_t {
    padding-right: 60px;
  }

  .comment_moudule_title {
    margin-bottom: 16px;
  }

  .comment_moudule_title_text {
    font-size: 18px;
  }

  .comment_moudule_form {
    padding: 16px 12px;
  }

  .comment_moudule_form .cm-footer {
    flex-wrap: wrap;
  }

  .comment_moudule_form .cm-footer-l,
  .comment_moudule_form .cm-actions {
    width: 100%;
  }

  .comment_moudule_form .cm-footer-l {
    margin-bottom: 16px;
  }

  .comment_moudule_form .cm-msg {
    margin-bottom: 20px;
  }

  .comment_moudule_form .cm-upload {
    flex-wrap: wrap;
  }

  .comment_moudule_form .cm-upload-text {
    font-size: 12px;
  }


  .comment_moudule_form .cm-submit {
    width: 100%;
  }

  .comment_moudule_content {
    margin-top: 24px;
    padding: 16px 0 0;
    border-top: 1px solid #F2F3F5;
  }

  .comment_moudule_item {
    margin-bottom: 24px;
    position: relative;
  }

  .comment_moudule_item_name {
    font-weight: 500;
  }

  .comment_moudule_item_date {
    font-size: 12px;
  }

  .comment_moudule_item_b span.comment_like_box {
    position: absolute;
    right: 4px;
    top: 8px;
    z-index: 1;
  }

  .comment_moudule_item_delete {
    font-size: 12px;
  }

  .comment_item_img {
    width: 31.7%;
    height: 0;
    padding-bottom: 31.7%;
    display: block;
    position: relative;
    margin-bottom: 8px;
  }

  .comment_moudule_item_img:after {
    content: '';
    width: 31.7%;
  }

  .comment_moudule_item_img {
    justify-content: space-between;
    gap: unset;
  }

  .comment_moudule_item_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    margin-bottom: 0;
  }

  .comment_moudule_load_text:hover {
    background: #fff;
    color: #2b2b2b;
  }

  .submit_dialog {
    width: 295px;
    padding: 24px;
    border-radius: 8px;
  }

  .submit_dialog_content {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .submit_dialog_info {
    width: 100%;
    text-align: center;
  }

  .submit_dialog_info_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .submit_dialog_info_desc {
    line-height: 130%;
    margin-bottom: 16px;
  }

  .submit_dialog_info_btn_ok,
  .submit_dialog_info_btn_cancel {
    width: 100%;
    padding: 11px 8px;
  }

  .comment_wrap .cm-anonymous {
    margin-top: 20px;
  }

  .comment_wrap .cm-radio .cm-radio-text {
    font-size: 12px;
  }
}