/*----------------------------------------*/
/*  11. BLOG CSS START
/*----------------------------------------*/

.share_title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin-top: 2px;
}

.bolg_det_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 30px;
  border-top: 1px solid #f0f0f5;
  padding-top: 24px;
  margin-top: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.bolg_det_bottom .tp-post-tag {
  margin: 0;
  padding: 0;
  border: none;
}

.blog-grid .card--secondary__content {
  padding: 0 16px;
}


.blog__item {
  -webkit-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -moz-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -ms-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -o-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
}

.p-relative {
  position: relative;
}

.blog__item:hover .blog__thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.blog__item-float {
  min-height: 400px;
  -webkit-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -moz-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -ms-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -o-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
}

.blog__item-float:hover .blog__thumb-bg img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.blog__item-float .blog__thumb-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog__item-float-overlay {
  position: relative;
}

.blog__item-float-overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(181.6deg, rgba(3, 18, 32, 0) 24.31%, rgba(3, 18, 32, 0) 24.32%, rgba(3, 18, 32, 0.9) 98.64%);
}

.blog__tag {
  margin-bottom: 4px;
}

.blog__tag a {
  font-size: 14px;
  font-weight: 500;
  color: var(--tp-theme-1);
}

.blog__tag-float a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  font-weight: 600;
  text-transform: capitalize;
  padding: 0 14px;
}

.blog__tag-float a:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.blog__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.blog__title a:hover {
  color: var(--tp-theme-1);
}

.blog__title-float {
  font-size: 30px;
  font-weight: 800;
  color: var(--tp-common-white);
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .blog__title-float {
    font-size: 25px;
  }
}

.blog__meta ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.blog__meta ul li {
  display: inline-block;
  list-style: none;
}

.blog__meta ul li:not(:last-child) {
  margin-right: 16px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__meta ul li:not(:last-child) {
    margin-right: 10px;
  }
}

.blog__meta ul li span {
  font-size: 13px;
  font-weight: 500;
  color: var(--tp-text-6);
  text-transform: capitalize;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.blog__meta ul li span i,
.blog__meta ul li span svg {
  margin-right: 10px;
}

.blog__meta ul li span svg {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.blog__meta ul li span svg path {
  stroke: var(--tp-text-6);
}

.blog__meta ul li span:hover {
  color: var(--tp-theme-1);
}

.blog__meta-float ul li {
  display: inline-block;
  list-style: none;
}

.blog__meta-float ul li:not(:last-child) {
  margin-right: 20px;
}

.blog__meta-float ul li span {
  color: var(--tp-common-white);
}

.blog__meta-float ul li span i,
.blog__meta-float ul li span svg {
  margin-right: 10px;
}

.blog__meta-float ul li span svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.blog__meta-float ul li span svg path {
  stroke: var(--tp-common-white);
}

.blog__content {
  padding: 0 30px;
  padding-top: 13px;
  padding-bottom: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.blog__content-float {
  width: 65%;
  position: relative;
  left: 40px;
  z-index: 1;
  margin-bottom: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__content-float {
    width: 78%;
  }
}

@media (max-width: 575px) {
  .blog__content-float {
    width: 80%;
    left: 20px;
  }
}

.blog__shape-1 {
  position: absolute;
  right: 17%;
  bottom: 9%;
  z-index: -1;
  opacity: 0.3;
}

.blog__shape-2 {
  position: absolute;
  right: 14%;
  bottom: 4%;
  z-index: -1;
  opacity: 0.3;
}

.blog__shape-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.blog__shape-4 {
  position: absolute;
  left: 17%;
  top: 39%;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog__sidebar {
    padding-left: 0 !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog__sidebar {
    padding-left: 0 !important;
    margin-top: 50px;
  }
}

.postbox__thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.postbox__thumb .play-btn:hover {
  color: var(--tp-common-white);
}

.postbox__audio {
  height: 455px;
  width: 100%;
}

.postbox__audio iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.postbox__item {
  -webkit-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -moz-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -ms-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -o-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
}

.postbox__item:hover {
  -webkit-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -moz-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -ms-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -o-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
}

.postbox__item-single:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.postbox__content {
  padding: 40px 20px;
  padding-top: 33px;
}

.postbox__item.format-image.mb-50 {
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .postbox__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.postbox__content-single {
  padding-left: 0;
  padding-right: 0;
  border: none;
}

.postbox__title {
  font-size: 30px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__title {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__title {
    font-size: 33px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .postbox__title {
    font-size: 25px;
  }
}

.postbox__title a:hover {
  color: var(--tp-theme-1);
}

.postbox__meta {
  margin-bottom: 20px;
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.postbox__meta span a {
  align-items: center;
  gap: 4px;
}

.postbox__meta span a:hover {
  color: var(--tp-theme-1);
}

.postbox__meta span i {
  font-size: 16px;
  font-weight: 400;
  color: var(--para-color) !important;
  text-transform: capitalize;
  display: inline-block;
  margin-right: 30px;
}

@media (max-width: 575px) {
  .postbox__meta span {
    margin-right: 9px;
  }
}

.postbox__meta span i {
  color: var(--hover-color);
  margin-right: 3px;
}

.postbox__meta span:hover {
  color: var(--tp-theme-1);
}

.postbox__meta span:hover i {
  color: var(--tp-theme-1);
}

.postbox__meta-3 span {
  font-size: 16px;
  color: var(--tp-common-black);
  font-weight: 500;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.postbox__details .postbox__content p label {
  margin-bottom: 8px;
}

.postbox__details .postbox__content p {
  margin-bottom: 16px;
}

.postbox__details .postbox__content p.form-submit {
  margin-top: 16px;
}



.postbox__slider button {
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  font-size: 30px;
  color: var(--tp-common-white);
}

.postbox__slider button.postbox-slider-button-next {
  left: auto;
  right: 50px;
}

@media (max-width: 575px) {
  .postbox__slider button.postbox-slider-button-next {
    right: 10px;
  }
}

@media (max-width: 575px) {
  .postbox__slider button {
    left: 10px;
  }
}

.postbox__quote {
  padding: 40px 50px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

@media (max-width: 575px) {
  .postbox__quote {
    padding: 20px 30px;
  }
}

.postbox__quote blockquote {
  margin-bottom: 0;
}

.postbox__quote p {
  font-size: 24px;
  color: #0e1133;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
}

.postbox__quote h4 {
  font-size: 20px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 0;
}

.postbox__quote h4::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 19px;
  height: 2px;
  background: var(--tp-common-black);
}

.postbox__quote img.quote {
  position: absolute;
  bottom: -34px;
  right: 50px;
}

.postbox__comment-form {
  margin-bottom: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.09);
  background: var(--tp-common-white);
}

.postbox__comment-title {
  font-size: 27px;
  margin-bottom: 0;
}

.postbox__comment-input {
  position: relative;
  margin-bottom: 20px;
}

.postbox__comment-input span {
  font-weight: 600;
  color: var(--tp-common-black);
  margin-bottom: 12px;
  display: block;
}

.postbox__comment-input input,
.postbox__comment-input textarea {
  height: 55px;
  padding: 0 20px;
  width: 100%;
  font-size: 14px;
  color: var(--tp-common-black);
  outline: none;
  border: 1px solid transparent;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  background: #f7f7f7;
}

.postbox__comment-input textarea {
  height: 175px;
  resize: none;
  padding-top: 20px;
  padding-bottom: 20px;
}

.postbox__tag h4 {
  font-size: 20px;
  margin-bottom: 17px;
}

.postbox__tag a {
  color: var(--tp-common-black);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 25px;
  padding-bottom: 8px;
  margin-right: 5px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  background: var(--tp-grey-1);
}

.postbox__tag a:hover {
  color: var(--tp-common-white);
  background: var(--tp-common-black);
}

.postbox__item {
  padding: 10px 10px 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid #DFE0E4;
}

.postbox__content {
  padding: 20px 20px 0px;
}

.postbox__thumb img {
  border-radius: 5px;
}

.postbox__wrapper.pr-20 {
  padding-right: 0;
}

@media (max-width: 767px) {
  .postbox__content {
    padding: 30px 8px 0px;
  }

  .blog-grid .card--secondary__content {
    padding: 0 10px;
  }
}


@media (max-width: 575px) {
  .postbox__details .postbox__quote {
    padding: 20px 20px;
  }
}

.postbox__details .postbox__quote p {
  font-size: 24px;
  color: #0e1133;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .postbox__details .postbox__quote p {
    font-size: 18px;
  }
}

.postbox__comment h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}

.postbox__comment-input input,
.postbox__comment-input textarea {
  width: 100%;
  height: auto;
  line-height: 1.5;
  border: 1px solid #DFE0E4;
  border-radius: 30px;
  background: var(--tp-grey-2);
  background: rgba(7, 76, 62, 0.03);
  color: var(--tp-common-black);
  font-size: 15px;
  outline: none;
  padding: 16px 24px;
  transition: var(--transition);
}

.postbox__comment-input input::placeholder,
.postbox__comment-input textarea::placeholder {
  font-size: 15px;
  color: #6d6e75;
}

.postbox__comment-input input:focus,
.postbox__comment-input textarea:focus {
  /* background: var(--tp-common-white); */
  border-color: var(--tp-theme-1);
}

.postbox__comment-input textarea {
  height: 180px;
  resize: none;
  line-height: 1.2;
  padding: 23px;
  padding-top: 19px;
}

.postbox__comment-agree {
  padding-left: 5px;
}

.postbox__comment-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 14px;
  height: 14px;
  background: var(--tp-common-white);
  border: 1px solid #b9bac1;
  outline: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  flex: 0 0 auto;
}

.postbox__comment-agree input:checked {
  position: relative;
  background-color: var(--tp-theme-1);
  border-color: transparent;
}

.postbox__comment-agree input:checked::after {
  box-sizing: border-box;
  content: "\f00c";
  position: absolute;
  font-family: var(--tp-ff-fontawesome);
  font-size: 10px;
  color: var(--tp-common-white);
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.postbox__comment-agree input:hover {
  cursor: pointer;
}

.postbox__comment-agree label {
  padding-left: 8px;
  color: var(--tp-text-11);
  line-height: 1;
}

.postbox__comment-agree label a {
  color: var(--tp-common-black);
  font-weight: 600;
  padding-left: 4px;
}

.postbox__comment-agree label a:hover {
  color: var(--tp-theme-1);
}

.postbox__comment-agree label:hover {
  cursor: pointer;
}

/* sidebar area */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar .sidebar__part {
  border-radius: 16px;
  background: var(--neutral-n-0);
  box-shadow: var(--box-shadow);
  padding: 24px;
  border: 1px solid #DFE0E4;
}

.sidebar__widget-title {
  padding-bottom: 24px;
  border-bottom: 1px dashed #C1C4CC;
  margin-bottom: 24px;
}


.sidebar__widget ul li:hover::marker {
  color: var(--tp-theme-1);
}

.sidebar__widget ul li:hover {
  color: var(--tp-theme-1);
}

.sidebar__widget ul li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar__widget ul li a {

  font-weight: 500;
  position: relative;
}


.sidebar__widget ul li a:hover {
  color: var(--tp-theme-1);
}


.sidebar__widget ul li ul {
  padding-top: 10px;
  padding-left: 15px;
}

.no-results.not-found {
  text-align: center;
}

.no-results.not-found .sidebar__search {
  margin-top: 40px;
}

.sidebar__widget-px .sidebar__search {
  border-radius: 30px;
  border: 1px solid var(--neutral-n-40);
  background: rgba(7, 76, 62, 0.03);
}

.sidebar__widget-px .sidebar__search input {
  background: transparent;
  border: none;
  padding: 12px 20px;
}

.sidebar__search input {
  width: 100%;
  height: 60px;
  line-height: 56px;
  background: var(--tp-grey-2);
  border: 2px solid var(--tp-grey-2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding-left: 30px;
  padding-right: 45px;
}

.sidebar__search input::placeholder {
  color: #8d8e9a;
  font-weight: 500;
}

.sidebar__search button {
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar__search button svg {
  width: 18px;
  height: 18px;
}

.sidebar__search button svg .st0 {
  fill: var(--tp-text-1);
}

.sidebar__search button svg .st1 {
  fill: var(--tp-common-black);
}


@media (min-width: 1200px) {
  .no-results.not-found {
    width: 60%;
  }

  .no-results.not-found .sidebar__search {
    margin-top: 60px;
  }

  .no-results.not-found .sidebar__search input {
    height: 70px;
  }
}

@media (min-width: 992px) {
  .no-results.not-found {
    width: 80%;
    margin: auto;
  }

}


.tagcloud {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
}

.tagcloud a {
  width: -moz-max-content;
  width: max-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  background: transparent;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
  text-transform: capitalize;
  font-size: 14px !important;
  padding: 8px 16px;
  border-radius: 32px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.tagcloud a::after {
  content: "";
  position: absolute;
  top: var(--top, 0);
  left: var(--left, 0);
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.tagcloud a:hover {
  color: var(--white) !important;
  background-color: var(--neutral-n-0);
  border: 1px solid #074C3E;
}

.tagcloud a:hover::after {
  width: 255%;
  height: 200px;
}


.rc__post {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rc__post:not(:last-child) {
  margin-bottom: 30px;
}

.rc__meta span {
  font-size: 15px;
  color: #6a727f;
  font-weight: 500;
}

.rc__thumb img {
  max-width: 160px !important;
  border-radius: 5px !important;
  object-fit: cover;
}

.rc__thumb a {
  display: flex;
}

.rc__title a {
  font-weight: 500;
  color: var(--tp-common-black);
  line-height: 1.4;
}

.rc__title a:hover {
  color: var(--tp-theme-1);
}

/* comment box */
.latest-comments h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.latest-comments ul li {
  margin-bottom: 10px;
}

.latest-comments ul li.children {
  margin-left: 100px;
}

@media (max-width: 575px) {
  .latest-comments ul li.children {
    margin-left: 15px;
  }

}

.latest-comments ul li ul li.children-2 {
  margin-left: 100px;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .latest-comments ul li ul li.children-2 {
    margin-left: 15px;
  }
}

.comments-box {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 30px;
  padding-right: 40px;
  padding-top: 25px;
  background-color: var(--tp-theme-bg) !important;
  border: 1px solid #ebebeb;
}


.comments-avatar img {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.avatar-name {
  margin-bottom: 5px;
}

.avatar-name h5 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 0;
  text-transform: capitalize;
}

.avatar-name span {
  font-size: 14px;
  color: var(--tp-text-11);
}

@media (max-width: 575px) {
  .comments-text {
    margin-left: 0;
    margin-top: 15px;
  }
}

.comments-text p {
  color: var(--tp-text-11);
  margin-bottom: 15px;
}

.comments-replay {
  margin-top: 10px;
}

.comments-replay a {
  display: inline-block;
  color: var(--tp-theme-1);
  background: rgba(61, 108, 231, 0.1);
  height: 22px;
  line-height: 19px;
  padding: 0 10px;
  font-weight: 500;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.comments-replay a:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
}

.elementor-widget-container .blog__thumb img {
  min-height: 247px;
  object-fit: cover;
}

.post-comments .latest-comments ul li {
  padding: 0;
}


/* Custom CSS */

.postbox__title a {
  font-size: 30px !important;
  line-height: 1.2 !important;
}





/* Pagination */


/*----------------------------------------
  basic pagination
-----------------------------------------*/
div.basic-pagination ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.basic-pagination ul li {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 575px) {
  div.basic-pagination ul li {
    margin-right: 5px;
  }
}

div.basic-pagination ul li.active a {
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}

div.basic-pagination ul li a,
div.basic-pagination ul li span {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tp-theme-1);
  border-radius: 32px;
  background-color: var(--white);
  color: var(--tp-text-1);
  font-size: 16px;
  transition: var(--transition);
}

div.basic-pagination ul li a.page-numbers i {
  transition: 0s;
  font-weight: 600;
}

div.basic-pagination ul li span.dots {
  font-weight: 600;
  min-width: 48px;
}

div.basic-pagination ul li a:focus,
div.basic-pagination ul li a:hover,
div.basic-pagination ul li a.current,
div.basic-pagination ul li span:focus,
div.basic-pagination ul li span:hover,
div.basic-pagination ul li span.current {
  background: var(--primary-color);
  color: var(--white);
}

div.basic-pagination ul li span.current {
  cursor: default;
}

/* Comment title blog */

.comment-respond .logged-in-as {
  margin-bottom: 16px;
}

p.comment-notes {
  margin-bottom: 16px;
  line-height: 30px;
}

/*--
  - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--tp-grey-1);
}

.grey-bg-2 {
  background: var(--tp-grey-2);
}

.grey-bg-3 {
  background: var(--tp-grey-3);
}

.grey-bg-4 {
  background: var(--tp-grey-4);
}

.grey-bg-8 {
  background: var(--tp-grey-8);
}

.grey-bg-9 {
  background: var(--tp-grey-9);
}

.white-bg {
  background: var(--tp-common-white);
}

.black-bg {
  background: var(--tp-common-black);
}

.black-bg-5 {
  background: var(--tp-common-black-5);
}

.theme-bg-3 {
  background: var(--tp-theme-3);
}

.footer__top ul {
  list-style: none;
}

/* Blog Details Sidebar */



.f-left {
  float: left;
}

.fix {
  overflow: hidden;
}

@media (max-width: 1399px) {
  .bolg_det_bottom {
    flex-wrap: wrap
  }

  .sidebar .sidebar__single {
    padding: 24px;
  }

  .rc__thumb img {
    max-width: 120px !important;
  }
}

@media (max-width: 1199px) {
  .sidebar .sidebar__single {
    padding: 16px;
  }

  .rc__thumb img {
    max-width: 100px !important;
    height: 80px !important;
  }

  .tagcloud a {
    padding: 6px 12px;
  }
}



.blog-details .card.card--secondary {
  padding: 0;
  margin: 0;
  border-radius: unset;
  background: none;
  box-shadow: unset;
  padding: 0;
  padding-bottom: 0;
}

.blog-details .card.card--secondary .card--secondary__content {
  margin: 0;
}