@media (max-width: 1175px) {
  .form-wrapper {
    flex-wrap: wrap;
    gap: unset;
  }
}

.opt-img-text-wrapper {
  margin-bottom: 2rem;
}

.img-text-wrapper {
  display: flex;
  gap: 2rem;
}
.img-text-wrapper .image-container {
  width: 50%;
}
.img-text-wrapper .description-wrapper {
  width: 50%;
}
.img-text-wrapper.right {
  flex-direction: row-reverse;
}
@media (max-width: 1175px) {
  .img-text-wrapper {
    flex-direction: column;
  }
  .img-text-wrapper .image-container {
    width: 100%;
  }
  .img-text-wrapper .description-wrapper {
    width: 100%;
  }
  .img-text-wrapper.right {
    flex-direction: column-reverse;
  }
}

@media (max-width: 1175px) {
  .comments-form-image-wrapper {
    /* reverse order */
    flex-direction: column-reverse;
  }
  .comments-form-image-wrapper .image-container {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
  .comments-form-image-wrapper #comments-form-wrapper {
    flex-basis: 100%;
  }
}
.comments-form-image-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.comments-form-image-wrapper #comments-form-wrapper.no-image {
  flex-basis: 100%;
}
.comments-form-image-wrapper #comments-form-wrapper {
  margin-bottom: 60px;
  flex-basis: calc(75% - 1rem);
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form-header {
  margin-bottom: 30px;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form {
  display: flex;
  flex-direction: column;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup {
  display: flex !important;
  align-items: end;
}
@media (max-width: 700px) {
  .comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup {
    display: block;
  }
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup .comment-sub-fieldgroup {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup label {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  font-weight: bold;
  margin-bottom: 30px;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup label #comment {
  margin-right: 30px;
}
@media (max-width: 1175px) {
  .comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup label #comment {
    margin-right: 0px;
  }
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup label input, .comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup label textarea {
  border: none;
  border-bottom: medium solid currentColor;
  border-radius: 0;
  height: 2.3rem;
  font-size: 17px;
  border-color: var(--primary-color);
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup label textarea {
  height: unset;
  font-size: 17px;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup input[type=checkbox] {
  height: 1px;
  width: 1px;
  margin: 0;
  opacity: 0;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup .checkboxtext {
  position: relative;
  padding-left: 30px;
  border-color: var(--primary-color);
  cursor: pointer;
  font-weight: 400;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup .checkboxtext:hover::before {
  opacity: 0.75;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup .checkboxtext::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  border-style: solid;
  border-width: 2px;
  border-color: inherit;
  left: 0;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup .checkboxtext.checked::before {
  border-width: 11px;
  height: 0;
  width: 0;
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form .comment-fieldgroup .submit {
  margin-top: 1rem;
  padding: 5px 15px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  line-height: 1.5;
  outline: none;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: opacity 150ms;
  -moz-transition: opacity 150ms;
  -ms-transition: opacity 150ms;
  -o-transition: opacity 150ms;
  transition: opacity 150ms;
  background-color: var(--primary-color);
  color: var(--primary-font);
}
.comments-form-image-wrapper #comments-form-wrapper .comment-form :nth-child(4) {
  display: flex;
  justify-content: end;
}
.comments-form-image-wrapper .image-container {
  flex-basis: calc(25% - 1rem);
}

/* reply description */
.comment-description {
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--primary-color);
}