.comment .com-title {
  margin-bottom: 15px;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 990px) {
  .comment .com-title {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1;
  }
}
.comment .comment-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media (max-width: 990px) {
  .comment .comment-list {
    display: block;
  }
}
.comment .edit-link {
  display: none;
}
.comment .says {
  display: none;
}
.comment .comment-respond {
  background: #2A2A2A;
  padding: 20px;
  margin-top: 15px;
  border-radius: 8px;
}
@media (max-width: 990px) {
  .comment .comment-respond {
    padding: 15px;
  }
}
.comment .comment-reply-title {
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}
.comment .comment-reply-title a {
  color: #fff;
  margin-left: 10px;
  font-weight: 400;
  text-transform: lowercase;
  text-decoration: underline;
}
.comment .comment-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.comment .comment-form .comment-form-author {
  order: -1;
}
.comment .comment-form .comment-form-email {
  order: -2;
}
.comment .comment-form p {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.comment .comment-form p label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}
.comment .comment-form p textarea {
  resize: none;
  background: #333333;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  appearance: none;
  outline: none;
  border: 1px solid transparent;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.comment .comment-form p input {
  background: #333333;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 400;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  appearance: none;
  outline: none;
  border: 1px solid transparent;
}
.comment .comment-form p .error {
  border-color: #CF222D;
}
.comment .comment-form .form-submit {
  margin-top: 10px;
  margin-bottom: 0;
}
.comment .comment-form .form-submit input {
  max-width: 200px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  color: #ffffff;
  background: #cf222d;
  box-shadow: 0 5px 0 0 #870009;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
}
.comment .comment-form .logged-in-as {
  display: none;
}
.comment .comment-form .error-message {
  margin: 10px 0 0 0;
  color: #cf222d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.comment .cld-like-dislike-wrap .cld-common-wrap {
  margin-left: 10px;
  margin-right: 0;
}
@media (max-width: 990px) {
  .comment .cld-like-dislike-wrap .cld-common-wrap {
    margin-left: 5px;
  }
}
.comment .cld-like-wrap {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  padding: 6px 15px;
  color: #fff;
  box-sizing: border-box;
  border-radius: 21px;
  position: relative;
}
.comment .cld-like-wrap a::before {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.comment .cld-dislike-wrap {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  padding: 6px 15px;
  color: #fff;
  box-sizing: border-box;
  border-radius: 21px;
  position: relative;
}
.comment .cld-dislike-wrap a::before {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.comment .cld-common-wrap {
  transition: 0.3s;
  cursor: pointer;
}
.comment .cld-common-wrap:hover {
  background: #cf222d;
}
.comment .comment-author {
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-gap: 10px;
  align-items: center;
}
.comment .comment-author img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
.comment .comment-author a, .comment .comment-author p {
  pointer-events: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.comment .comment-author .fn {
  pointer-events: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.comment .comment-metadata {
  margin-bottom: 5px;
  pointer-events: none;
}
.comment .comment-metadata time {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.comment .reply {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  padding: 6px 15px;
  color: #fff;
  max-width: 95px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 21px;
  position: relative;
  bottom: 2px;
  z-index: 2;
}
@media (max-width: 576px) {
  .comment .reply {
    font-size: 12px;
    padding: 5px 12px;
  }
}
.comment .reply a::before {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.comment .reply::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" width="20" height="20" fill="none"><path d="M7 20C6.73478 20 6.48043 19.8946 6.29289 19.7071C6.10536 19.5196 6 19.2652 6 19V16H2C1.46957 16 0.960859 15.7893 0.585786 15.4142C0.210714 15.0391 0 14.5304 0 14V2C0 0.89 0.9 0 2 0H18C18.5304 0 19.0391 0.210714 19.4142 0.585786C19.7893 0.960859 20 1.46957 20 2V14C20 14.5304 19.7893 15.0391 19.4142 15.4142C19.0391 15.7893 18.5304 16 18 16H11.9L8.2 19.71C8 19.9 7.75 20 7.5 20H7" fill="white"/></svg>');
  background-repeat: no-repeat;
  margin-right: 8px;
}
.comment .reply a {
  color: #fff;
}
.comment .comment-content {
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin-top: 10px;
}
.comment .comment-content a {
  color: #fff;
  font-weight: 600;
}
.comment .parent div.comment {
  margin-top: 10px;
}
.comment .parent div.comment .comment-body {
  border-bottom: 4px solid #2A2A2A;
  padding-left: 50px;
  background: transparent;
  border-radius: 0;
}
@media (max-width: 990px) {
  .comment .parent div.comment .comment-body {
    padding-left: 25px;
  }
}
.comment .parent div.comment .cld-like-wrap {
  background: #2A2A2A;
}
.comment .parent div.comment .cld-dislike-wrap {
  background: #2A2A2A;
}
.comment .parent div.comment .reply {
  background: #2A2A2A;
}
.comment .parent div.comment .cld-common-wrap:hover {
  background: #cf222d;
}
.comment .parent div.comment .share-button {
  left: 160px;
  background: #2A2A2A;
}
@media (max-width: 990px) {
  .comment .parent div.comment .share-button {
    left: 129px;
  }
}
.comment .cld-like-dislike-wrap {
  position: absolute;
  right: 20px;
  bottom: -2px;
  display: flex;
  z-index: 2;
  align-items: center;
}
@media (max-width: 990px) {
  .comment .cld-like-dislike-wrap {
    right: 10px;
  }
}
.comment .cld-like-dislike-wrap i {
  color: #fff;
}

.comment-body {
  padding: 20px;
  background: #2A2A2A;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 576px) {
  .comment-body {
    padding: 15px;
  }
}
.comment-body h1, .comment-body h2, .comment-body h3, .comment-body h4, .comment-body h5 {
  font-weight: 700;
}
.comment-body h1 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 29px;
}
@media (max-width: 990px) {
  .comment-body h1 {
    font-size: 23px;
    line-height: normal;
  }
}
.comment-body h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 25px;
}
@media (max-width: 990px) {
  .comment-body h2 {
    font-size: 22px;
    line-height: normal;
  }
}
.comment-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 24px;
}
@media (max-width: 990px) {
  .comment-body h3 {
    font-size: 20px;
    line-height: normal;
  }
}
.comment-body h4 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 22px;
}
@media (max-width: 990px) {
  .comment-body h4 {
    font-size: 18px;
    line-height: normal;
  }
}
.comment-body h5 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 20px;
}
@media (max-width: 990px) {
  .comment-body h5 {
    font-size: 16px;
    line-height: normal;
  }
}
.comment-body p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
@media (max-width: 990px) {
  .comment-body p {
    font-size: 14px;
    line-height: 21px;
  }
}
.comment-body ol {
  margin: 0 0 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  .comment-body ol {
    margin-bottom: 10px;
    grid-template-columns: 1fr;
  }
}
.comment-body ul {
  margin: 0 0 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  .comment-body ul {
    margin-bottom: 10px;
    grid-template-columns: 1fr;
  }
}
.comment-body li {
  font-size: 15px;
  line-height: 20px;
  position: relative;
  font-weight: 400;
}
@media (max-width: 990px) {
  .comment-body li {
    font-size: 14px;
    line-height: 21px;
  }
}
.comment-body ul {
  padding-left: 20px;
}
.comment-body ol {
  padding-left: 20px;
}
.comment-body strong {
  font-weight: 700;
}
.comment-body .main-section__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 990px) {
  .comment-body .main-section__title {
    font-size: 30px;
    line-height: 31px;
    margin-bottom: 15px;
  }
}
.comment-body .main-section__text {
  max-width: 350px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 28.8px;
  margin-bottom: 25px;
}
@media (max-width: 990px) {
  .comment-body .main-section__text {
    font-size: 21px;
    line-height: 23px;
    margin-bottom: 15px;
  }
}
.comment-body .main-section__wrap {
  margin: 20px 0;
}
.comment-body .section-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.comment-body .section-img img {
  height: auto;
  width: 100%;
  max-width: 600px;
  object-fit: cover;
  box-sizing: border-box;
  display: block;
}
.comment-body .content-type-1 {
  display: grid;
  margin: 20px 0;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 990px) {
  .comment-body .content-type-1 {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.comment-body .content-type-1__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment-body .content-type-1__img img {
  height: auto;
  width: 100%;
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  object-fit: cover;
}
.comment-body .img-all {
  margin: 20px 0;
  display: grid;
  grid-gap: 20px;
}
@media (max-width: 990px) {
  .comment-body .img-all {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 576px) {
  .comment-body .img-all {
    grid-template-columns: 1fr !important;
  }
}
.comment-body .img-all__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment-body .img-all__item img {
  height: auto;
  width: 100%;
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  object-fit: cover;
}
.comment-body .content-type-2 {
  display: grid;
  margin: 20px 0;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 990px) {
  .comment-body .content-type-2 {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.comment-body .content-type-2 .table-element__item p {
  margin: 0;
}
.comment-body .content-type-2 .table-element__item p:nth-child(2) {
  border: none;
}
.comment-body .content-type-2 .table-element {
  margin: 0;
}
.comment-body .table-element {
  margin: 20px 0;
}
.comment-body p:empty {
  display: none;
}
.comment-body .table-element__item p {
  margin: 0;
}
.comment-body .share-button {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  padding: 6px 15px;
  color: #fff;
  margin-bottom: 20px;
  bottom: 2px;
  max-width: 95px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 21px;
  position: absolute;
  left: 125px;
  height: 30px;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 576px) {
  .comment-body .share-button {
    left: 115px;
    font-size: 12px;
    bottom: -3px;
    padding: 5px 12px;
    max-width: 80px;
    height: 28px;
  }
}
.comment-body .share-button svg {
  margin: 0 5px 0 0;
}

.step {
  margin: 20px 0 20px 10px;
  position: relative;
}
.step::after {
  content: "";
  height: 95%;
  width: 2px;
  background: #870009;
  left: 10px;
  top: 4px;
  display: block;
  position: absolute;
}
.step__item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  z-index: 2;
}
.step__item::after {
  content: "";
  left: 5px;
  top: 4px;
  height: 12px;
  width: 12px;
  background: #CF222D;
  border-radius: 50%;
  position: absolute;
}
.step__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #fff;
}
.step__item:last-child {
  margin-bottom: 0;
}
.step__item:last-child::after {
  height: 20px;
  width: 20px;
  left: 0.5px;
  top: 0;
}
.step__item:last-child::before {
  content: "";
  background: url("../images/wF515i7wrUZ8.svg") no-repeat center center;
  height: 15px;
  width: 15px;
  background-size: 15px 15px;
  position: absolute;
  left: 3px;
  z-index: 2;
  top: 2px;
}
.step__item:last-child .step__title {
  font-weight: 700;
}

.share-bg {
  position: fixed;
  background: #000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0.7;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}

.share-modal {
  position: fixed;
  background: #fff;
  border-radius: 8px;
  z-index: 9999;
  width: 95%;
  max-width: 320px;
  padding: 25px 15px 15px 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  pointer-events: none;
}
.share-modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.share-modal__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-modal__wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.share-modal__wrap a img {
  height: 35px;
  width: 35px;
}

.active-share {
  visibility: visible;
  pointer-events: auto;
}

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