/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc {
  padding-right: 120px;
}
.blog-details-desc.with-max-width {
  padding-right: 0;
  max-width: 650px;
  margin: auto;
}
.blog-details-desc h1 {
  font-size: 32px;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.4;
}
.blog-details-desc h2 {
  font-size: 32px;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.4;
}
.blog-details-desc .image {
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-details-desc .image img {
  transition: var(--transition);
}
.blog-details-desc .image:hover img {
  transform: scale(1.1);
}
.blog-details-desc .meta {
  padding-left: 0;
  margin-bottom: 30px;
  margin-top: 0;
}
.blog-details-desc .meta li {
  color: var(--paragraph-color);
  list-style-type: none;
  display: inline-block;
  position: relative;
  margin-right: 42px;
  margin-bottom: 0;
}
.blog-details-desc .meta li::before {
  position: absolute;
  content: "";
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  height: 6px;
  width: 6px;
  background-color: var(--yellow-color);
}
.blog-details-desc .meta li:last-child {
  margin-right: 0;
}
.blog-details-desc .meta li:last-child::before {
  display: none;
}
.blog-details-desc .meta li img {
  border-radius: 50px;
  margin-right: 8px;
}
.blog-details-desc .meta li a {
  color: var(--purple-color);
  font-weight: 500;
  text-decoration: none;
}
.blog-details-desc .meta li a:hover {
  color: var(--main-color);
}
.blog-details-desc .meta li .admin-list {
  position: relative;
  top: 3px;
}
.blog-details-desc .meta li .date-list {
  position: relative;
  top: 3px;
}
.blog-details-desc .list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-details-desc .list li {
  list-style-type: none;
  margin-bottom: 15px;
  color: #2A174E;
  position: relative;
  padding-left: 30px;
}
.blog-details-desc .list li i {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  background-color: var(--main-color);
  color: var(--white-color);
  text-align: center;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 0;
}
.blog-details-desc .block-image {
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 30px;
}
.blog-details-desc .block-image img {
  transition: var(--transition);
}
.blog-details-desc .block-image:hover img {
  transform: scale(1.1);
}
.blog-details-desc blockquote {
  padding: 40px 35px;
  background-color: #F2E4FF;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-desc blockquote p {
  color: var(--black-color);
  font-size: 20px;
}
.blog-details-desc blockquote cite {
  color: var(--purple-color);
  font-weight: 500;
}
.blog-details-desc .quote-box {
  padding: 40px 35px;
  background-color: #F2E4FF;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-desc .quote-box p {
  color: var(--black-color);
  font-size: 20px;
}
.blog-details-desc .quote-box .info {
  display: flex;
  align-items: center;
}
.blog-details-desc .quote-box .info .title {
  margin-left: 15px;
}
.blog-details-desc .quote-box .info .title span {
  color: var(--purple-color);
  font-weight: 500;
}
.blog-details-desc .quote-box .quote {
  position: absolute;
  right: 35px;
  bottom: 40px;
}
.blog-details-desc .article-share {
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  margin-top: 45px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.blog-details-desc .article-share .share-content span {
  font-size: 20px;
  color: var(--black-color);
  font-weight: bold;
}
.blog-details-desc .article-share .share-social {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.blog-details-desc .article-share .share-social li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
}
.blog-details-desc .article-share .share-social li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-share .share-social li a {
  text-decoration: none;
}
.blog-details-desc .article-share .share-social li a i {
  color: var(--main-color);
  font-size: 22px;
  transition: var(--transition);
  font-style: normal;
}
.blog-details-desc .article-share .share-social li a i:hover {
  color: var(--purple-color);
}
.blog-details-desc .article-leave-comment {
  margin-top: 100px;
}
.blog-details-desc .article-leave-comment h3 {
  font-size: 32px;
  margin-bottom: 40px;
}
.blog-details-desc .article-leave-comment .form-group {
  margin-bottom: 35px;
}
.blog-details-desc .article-leave-comment .form-group .form-control {
  display: inline-block;
  border: none;
  color: #999999;
  border-bottom: 1px solid #E1E1E1;
  background-color: transparent;
  box-shadow: unset;
  border-radius: 0;
  padding: 0 0 20px 0;
}
.blog-details-desc .article-leave-comment .form-group .form-control::-moz-placeholder {
  color: #999999;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-details-desc .article-leave-comment .form-group .form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.blog-details-desc .article-leave-comment .form-group .form-control:focus {
  border-bottom: 1px solid var(--main-color);
}
.blog-details-desc .article-leave-comment .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.blog-details-desc .article-leave-comment .form-group .form-control:focus::placeholder {
  color: transparent;
}
.blog-details-desc .article-leave-comment .form-group textarea.form-control {
  min-height: 100px;
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent {
  margin-bottom: 0;
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent a {
  color: var(--purple-color);
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:checked, .blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:not(:checked) {
  display: none;
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:checked + label, .blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: #999999;
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:checked + label:before, .blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  border: 1px solid var(--purple-color);
  border-radius: 0;
  background: transparent;
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:checked + label:after, .blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--main-color);
  position: absolute;
  top: 4px;
  left: 0;
  transition: all 0.2s ease;
  border-radius: 0;
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:hover + label:before {
  border-color: var(--main-color);
}
.blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:checked + label:before {
  border-color: var(--main-color);
}
.blog-details-desc .article-leave-comment .default-btn {
  background-color: var(--red-color);
  border: none;
  color: var(--white-color) !important;
}
.blog-details-desc .article-leave-comment .default-btn:hover {
  background-color: var(--main-color);
}

.comment-respond .comment-reply-title {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .blog-details-desc {
    padding-right: 0;
  }
  .blog-details-desc.with-max-width {
    margin-top: 35px;
    max-width: 100%;
  }
  .blog-details-desc h1 {
    font-size: 25px;
  }
  .blog-details-desc h2 {
    font-size: 25px;
  }
  .blog-details-desc h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
  }
  .blog-details-desc h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
  }
  .blog-details-desc h5 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
  }
  .blog-details-desc h6 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
  }
  .blog-details-desc .image {
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .blog-details-desc .meta {
    margin-bottom: 15px;
  }
  .blog-details-desc .meta li {
    margin-right: 10px;
    font-size: 12px;
  }
  .blog-details-desc .meta li::before {
    display: none;
  }
  .blog-details-desc .quote-box {
    padding: 30px 25px;
  }
  .blog-details-desc .quote-box p {
    font-size: 15px;
  }
  .blog-details-desc .article-share {
    margin-top: 30px;
    text-align: center;
  }
  .blog-details-desc .article-share .share-content {
    margin-bottom: 15px;
  }
  .blog-details-desc .article-share .share-content span {
    font-size: 15px;
  }
  .blog-details-desc .article-share .share-social {
    text-align: center !important;
  }
  .blog-details-desc .article-leave-comment {
    margin-top: 30px;
  }
  .blog-details-desc .article-leave-comment h3 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .blog-details-desc .article-leave-comment .form-group {
    margin-bottom: 25px;
  }
  .blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:checked + label, .blog-details-desc .article-leave-comment .form-group .form-cookies-consent [type=checkbox]:not(:checked) + label {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-desc {
    padding-right: 0;
  }
  .blog-details-desc.with-max-width {
    margin-top: 35px;
    max-width: 100%;
  }
  .blog-details-desc .article-leave-comment {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-desc {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-details-desc {
    padding-right: 0;
  }
}/*# sourceMappingURL=blog-details.css.map */