.reviews *,
.review-form-wrapper *,
.question * {
  box-sizing: border-box;
}
.reviews .error,
.review-form-wrapper .error,
.question .error {
  font-size: 12px;
  color: red;
}

body.no-scroll {
  overflow: hidden;
}

.review-form-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 11, 11, 0.6);
  max-width: inherit !important;
  margin: 0 !important;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.review-form-wrapper.is-show {
  visibility: visible;
  pointer-events: inherit;
  opacity: 1;
  transition: 0.5s;
  z-index: 20;
}
.review-form-wrapper.is-show .review-form__inner {
  opacity: 1;
  transform: translateY(0);
}

.reviews {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.reviews__title {
  font-size: 18px;
  font-weight: 700;
}

.star-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 0 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .star-box {
    display: block;
    padding: 0 20px 20px;
  }
}

.star-average {
  text-align: center;
  width: 160px;
  flex: 0 0 auto;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .star-average {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
}
.star-average__star {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fe9727;
  font-weight: 700;
}
.star-average__star svg {
  width: 32px;
  height: auto;
  margin-left: 5px;
}
.star-average .text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.review-bar {
  width: calc(100% - 200px - 160px);
  padding: 20px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
@media (max-width: 767px) {
  .review-bar {
    width: 100%;
    border: 0;
    padding: 0;
    margin-bottom: 15px;
  }
}
.review-bar__row {
  display: flex;
  align-items: center;
}

.star-value {
  display: flex;
  align-items: center;
  width: 35px;
  flex: 0 0 auto;
}
.star-value svg {
  width: 17px;
  height: auto;
  margin-left: 5px;
}

.rating-bar {
  width: calc(100% - 35px - 140px);
  padding: 0 10px;
}
.rating-bar__bg {
  background-color: #eee;
  height: 15px;
  border-radius: 3px;
}
.rating-bar__foreground {
  background-color: #f5a623;
  height: 100%;
  border-radius: inherit;
}

.num-reviews {
  color: #03a0e2;
  width: 140px;
  flex: 0 0 auto;
}

.button-review {
  width: 200px;
  flex: 0 0 auto;
  padding-left: 20px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .button-review {
    width: 100%;
    padding: 0;
  }
}
.button-review .btn-reviews {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background-color: #03a0e2;
  border-radius: 3px;
  padding: 10px 20px;
}

.list-reviews-img {
  margin-bottom: 20px;
}
.list-reviews-img__title {
  margin-bottom: 10px;
}
.list-reviews-img__box {
  display: flex;
}
.list-reviews-img__item {
  width: 10%;
  cursor: pointer;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .list-reviews-img__item {
    width: 20%;
    margin: 0;
    padding: 2px;
  }
}
.list-reviews-img__item:last-child {
  margin-right: 0;
}
.list-reviews-img__image {
  position: relative;
  height: 70px;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .list-reviews-img__image {
    height: auto;
    padding-top: 100%;
  }
}
.list-reviews-img__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .list-reviews-img__image img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.list-reviews-img__image .count {
  position: absolute;
  font-size: 12px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  padding: 3px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3215686275);
  border-radius: 10px;
  line-height: 1;
}

.comment-text {
  width: calc(100% - 35px);
}

.comment-container {
  display: flex;
}

.review-verified {
  color: #52b858;
  font-style: italic;
  font-size: 14px;
}
.review-verified svg {
  width: 12px;
  height: auto;
}

.review {
  margin-bottom: 10px;
  position: relative;
}
.review:last-child {
  margin-bottom: 0;
}
.review .comment-avatar {
  width: 35px;
  padding-right: 10px;
}
.review .comment-avatar img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.comment-author-name {
  display: flex;
  align-items: center;
}
.comment-author-name .name {
  text-transform: capitalize;
  font-size: 14px;
  margin-right: 10px;
  font-weight: 700;
}
.admin-name {
  background-color: #eebc49;
  text-transform: uppercase;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: normal;
}
.review__bottom {
  font-size: 13px;
  display: flex;
  align-items: center;
}
.review__bottom span {
  color: #999;
  margin-right: 5px;
}

.comment-children {
  margin: 10px 0 10px 35px;
  padding: 15px 10px;
  background: #f1f1f1;
  position: relative;
}
.comment-children:before {
  top: -19px;
  left: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(231, 231, 231, 0);
  border-bottom-color: #f1f1f1;
  border-width: 10px;
  margin-left: -10px;
}

.reply {
  margin-right: 5px;
  font-size: 13px !important;
}
.reply__link {
  display: inline-block;
  color: #288ad6;
  cursor: pointer;
}
.reply__published-date {
  color: #999;
  cursor: unset;
}

.comment-description {
  font-size: 14px;
}

.comment-star-rating {
  float: left;
  margin-right: 10px;
}

.comment-attached {
  margin-bottom: 10px;
  overflow: hidden;
}
.comment-attached img {
  width: 50px;
  height: 50px;
  margin-right: 5px;
  object-fit: cover;
  cursor: pointer;
}
.comment-attached img:last-child {
  margin-right: 0;
}

.comment-reply-image {
  float: left;
}

.comment-star-rating {
  line-height: 1;
}
.comment-star-rating svg {
  width: 12px;
  height: auto;
}

.review-pagination .page-numbers {
  list-style: none;
  padding: 0;
}
.review-pagination .page-numbers li {
  display: inline-block;
}
.review-pagination .page-numbers li:last-child {
  margin-right: 0;
}
.review-pagination .page-numbers li span,
.review-pagination .page-numbers li a {
  background-color: #eee;
  width: 25px;
  display: flex;
  justify-content: center;
  line-height: 25px;
  font-size: 12px;
  text-decoration: none;
}
.review-pagination .page-numbers li span:not(.current),
.review-pagination .page-numbers li a:not(.current) {
  cursor: pointer;
}
.review-pagination .page-numbers li span.current,
.review-pagination .page-numbers li a.current {
  background-color: #ccc;
  pointer-events: none;
}

.review-form {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.review-form__inner {
  border-radius: 5px;
  padding: 20px;
  width: 100%;
  max-width: 590px;
  background: #fff;
  margin: 0 auto;
  position: relative;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(-30px);
}
.review-form__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.review-form__close {
  border-radius: 50%;
  background: #000;
  overflow: hidden;
  width: 25px;
  height: 25px;
  top: 5px;
  right: 5px;
  position: absolute;
  cursor: pointer;
}
.review-form__close svg {
  width: 25px;
  height: auto;
}

.review-form-action {
  text-align: center;
}
.review-form-action input[type=submit] {
  background-color: #03a0e2;
  color: #fff;
  padding: 0 30px;
  border: 1px solid #ddd;
  text-transform: uppercase;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  width: auto;
}

.review-form-item {
  width: calc((100% - 21px) / 3);
  margin-right: 20px;
}
.review-form-item:last-child {
  margin-right: 0;
}
.review-form-item input {
  border: 1px solid #ddd;
  width: 100%;
  padding: 5px;
  height: 35px;
  outline: none;
  border-radius: 5px;
}

.review-form-list {
  display: flex;
  margin-bottom: 20px;
}
.review-form-list:last-child {
  margin-bottom: 0;
}

.review-comment {
  position: relative;
}
.review-comment textarea {
  height: 120px;
  border: 1px solid #ddd;
  padding: 5px;
  resize: none;
  outline: none;
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: unset;
  box-sizing: border-box;
}

.comment-error {
  position: absolute;
  bottom: 2px;
  left: 5px;
}

.wrap-attach-send {
  display: flex;
  justify-content: space-between;
  padding: 20px 10px;
  background-color: #f7f7f7;
  margin-bottom: 20px;
}

.review-attach {
  color: #03a0e2;
  font-weight: 700;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.review-attach svg {
  width: 25px;
  height: auto;
  margin-right: 5px;
}
.review-attach span {
  line-height: 1;
}

.count-content {
  color: #999;
}

.list-attach {
  margin-bottom: 20px;
  display: none;
}
.list-attach.is-show {
  display: block;
}
.list-attach__list {
  display: flex;
}
.list-attach__item {
  width: 80px;
  height: 80px;
  margin-right: 25px;
}
.list-attach__item:last-child {
  margin-right: 0;
}
.list-attach__item input {
  display: none;
}
.list-attach__image-wrap {
  position: relative;
}
.list-attach__image-wrap .close {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  z-index: 2;
  display: block;
  width: 20px;
  height: 20px;
  font-size: 16px;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
  opacity: 1;
  text-shadow: none;
}
.list-attach__image-wrap img {
  width: 100%;
  height: auto;
}
.list-attach__insert-attach {
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
}
.list-attach__insert-attach svg {
  width: 20px;
  height: auto;
}

.comment-form-rating {
  display: flex;
  margin-bottom: 20px;
}
.comment-form-rating__label {
  font-weight: 700;
  width: 150px;
  font-size: 15px;
}
.comment-form-rating__stars {
  width: calc(100% - 150px);
}
.comment-form-rating__stars ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.comment-form-rating__stars ul li {
  width: 20%;
}
.comment-form-rating__stars ul li.active:not(.freeze) ~ li a svg path, .comment-form-rating__stars ul li:hover ~ li a svg path {
  fill: #999 !important;
}
.comment-form-rating__stars ul li a {
  text-decoration: none;
  display: block;
  text-align: center;
  color: #999;
  transition: 0.3s;
  font-size: 14px;
}
.comment-form-rating__stars ul li a:hover {
  transform: scale(1.2);
}
.comment-form-rating__stars ul li a svg {
  width: 25px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.comment-reply {
  margin: 10px 0;
  position: relative;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.05);
}

.reply-title {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
}

.comment-unapprove {
  border-left: 4px solid #d63638;
  background-color: #fcf9e8;
}

.gallery-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 11, 11, 0.6);
  max-width: inherit !important;
  margin: 0 !important;
  overflow: auto;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: 15;
}
.gallery-popup.is-show {
  visibility: visible;
  pointer-events: inherit;
  opacity: 1;
  transition: 0.5s;
}
.gallery-popup.is-show .gallery-popup__content {
  opacity: 1;
  transform: translateY(0);
}
.gallery-popup__container {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-popup__content {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-30px);
  transition: 0.5s;
}
.gallery-popup__slider {
  overflow: hidden;
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .gallery-popup__slider {
    width: 100%;
  }
}
.gallery-popup__slider .swiper-button-next,
.gallery-popup__slider .swiper-button-prev {
  color: #ffffff;
  font-size: 25px;
}
.gallery-popup__star {
  margin-bottom: 10px;
}
.gallery-popup__star .comment-star-rating {
  float: none;
}
.gallery-popup__star .comment-star-rating svg {
  width: 15px;
}
.gallery-popup__info {
  width: 50%;
  background-color: #fff;
  padding: 20px;
}
.gallery-popup__list {
  display: flex;
}
.gallery-popup__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
}
.gallery-popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-popup__author-name {
  text-transform: capitalize;
  margin-bottom: 10px;
}
.gallery-popup__author-name svg {
  width: 20px;
  height: auto;
}
.gallery-popup .review-verified {
  margin-bottom: 20px;
  font-size: 14px;
  clear: both;
}
.gallery-popup .review-verified svg {
  width: 15px;
}
.gallery-popup__item {
  display: flex;
  position: relative;
}
.gallery-popup__item.reply-item {
  align-items: center;
  justify-content: center;
}
.gallery-popup__close {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0.6;
  cursor: pointer;
  z-index: 2;
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  font-family: Arial, monospace;
  text-align: center;
  top: 0;
  right: 0;
}
.gallery-popup__loading {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  color: #ccc;
}
.gallery-popup__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.gallery-popup__arrow:before, .gallery-popup__arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
}
.gallery-popup__arrow:before {
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
}
.gallery-popup__arrow:after {
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
.gallery-popup__prev {
  left: 5px;
}
.gallery-popup__prev:before, .gallery-popup__prev:after {
  left: 0;
}
.gallery-popup__prev:after {
  border-right: 17px solid #FFF;
  top: 8px;
  left: 6px;
}
.gallery-popup__prev:before {
  border-right: 27px solid #3F3F3F;
}
.gallery-popup__next {
  right: 5px;
}
.gallery-popup__next:before, .gallery-popup__next:after {
  right: 0;
}
.gallery-popup__next:after {
  border-left: 17px solid #FFF;
  top: 8px;
  right: 6px;
}
.gallery-popup__next:before {
  border-left: 27px solid #3F3F3F;
}

.question__title {
  margin-bottom: 10px;
}

.question-form-wrapper {
  margin-bottom: 20px;
}

.question-form__bottom {
  display: flex;
  padding: 10px 10px 10px 30px;
  border: 1px solid #c1bfbf;
  border-top: 0;
}
@media (max-width: 767px) {
  .question-form__bottom {
    padding: 10px;
    flex-wrap: wrap;
  }
}

.question-comment {
  line-height: 0;
}
.question-comment textarea {
  height: 120px;
  border-radius: 3px 3px 0 0;
  border: 1px solid #c1bfbf;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  box-shadow: unset;
  line-height: 1;
}

.question-form-radio {
  width: 120px;
}
@media (max-width: 767px) {
  .question-form-radio {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
.question-form-radio label span {
  font-weight: 700;
  font-size: 15px;
}

.question-form-item {
  padding-right: 10px;
}
.question-form-item:last-child {
  padding-right: 0;
}

.question-form-text,
.question-form-email {
  width: calc((100% - 120px - 45px) / 2);
}
.question-form-text input,
.question-form-email input {
  box-shadow: unset;
  border-radius: 6px;
  font-size: 14px;
  appearance: none;
  border: 1px solid #ddd;
  padding: 5px 10px;
  width: 100%;
  height: 35px;
  line-height: 35px;
}

@media (max-width: 767px) {
  .question-form-text {
    width: calc(50% + 10px);
  }
}

@media (max-width: 767px) {
  .question-form-email {
    width: calc(50% - 10px);
  }
}

.question-form-submit {
  width: 45px;
}
@media (max-width: 767px) {
  .question-form-submit {
    width: 100%;
    margin-top: 10px;
  }
}
.question-form-submit [type=submit] {
  background: #fbd648;
  text-transform: uppercase;
  border: 0;
  outline: none;
  font-weight: 700;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .question-form-submit [type=submit] {
    width: 100%;
  }
}

.question-list__item {
  margin-bottom: 20px;
  position: relative;
}
.question-list__item:last-child {
  margin-bottom: 0;
}
.question-list__item .comment-avatar {
  width: 25px;
  height: 25px;
  background-color: #ccc;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 25px;
}
.question-list__item .comment-author-name {
  font-weight: 700;
}
.question-list__item .comment-text {
  padding-left: 10px;
}

.question-list-header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.question-list-header__left {
  font-weight: 700;
  width: calc(100% - 200px);
}
.question-list-header__right {
  width: 200px;
}

.comment-search-form {
  position: relative;
}
.comment-search-form [name=search] {
  border: 1px solid #c1bfbf;
  height: 30px;
  border-radius: 3px;
  padding: 0 10px 0 30px;
  outline: none;
  width: 100%;
  margin: 0;
  line-height: 45px;
  font-size: 14px;
}
.comment-search-form [type=submit] {
  appearance: none;
  border: 0;
  outline: 0;
  background: none;
  padding: 0;
  margin: 0;
  font-size: 0;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
}
.comment-search-form [type=submit] svg {
  width: 15px;
  height: auto;
}
.comment-search-form [type=submit] svg path {
  fill: #999;
}

.cancel-comment-reply-link {
  color: #fff;
  background: red;
  width: 30px;
  border-radius: 50%;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  cursor: pointer;
}

/*# sourceMappingURL=pr_post_type.css.map */
