/*----------------------------------------*/
/*  11. BLOG CSS START
/*----------------------------------------*/
.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: 8px;
  flex-wrap: wrap;
}

.postbox__meta span {
  font-size: 18px;
  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__text p {
  margin-bottom: 28px;
}

.postbox__text-single p {
  margin-bottom: 15px;
}

.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;
  /* background-color: var(--woo-secondary-color); */
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.postbox__content {
  /* padding: 35px 40px 30px 40px; */
  padding: 35px 20px 0px;
}

.postbox__thumb img {
  border-radius: 5px;
}

.postbox__wrapper.pr-20 {
  padding-right: 0;
}

@media (max-width: 575px) {
  .postbox__content {
    /* padding: 35px 30px 30px 30px; */
    padding: 24px 10px 0px;
  }

  .postbox__item {
    padding-bottom: 8px;
  }
}

.postbox__details .postbox__content p {
  margin-bottom: 20px;
}

.postbox__details .postbox__content p label {
  margin-bottom: 8px;
}

@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: 56px;
  line-height: 56px;
  border: 2px solid var(--tp-grey-2);
  background: var(--tp-grey-2);
  color: var(--tp-common-black);
  font-size: 15px;
  outline: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 0 24px;
}

.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__widget-title {
  font-size: 23px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f5;
  margin-bottom: 25px;
}

/* .sidebar__widget ul li {
    list-style: none;
  } */
/* .sidebar__widget ul li:not(:last-child) {
    margin-bottom: 10px;
  } */
.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-size: 15px; */
  font-weight: 500;
  position: relative;
}

/* .sidebar__widget ul li a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--para-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  } */
.sidebar__widget ul li a:hover {
  color: var(--tp-theme-1);
}

/* .sidebar__widget ul li a:hover::after {
    background: var(--tp-theme-1);
  } */
.sidebar__widget ul li ul {
  padding-top: 10px;
  padding-left: 15px;
}

.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 input:focus {
  border-color: var(--tp-theme-1);
  background-color: var(--tp-common-white);
}

.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);
}

.tagcloud {
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
}

.tagcloud a {
  padding: 8px 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  background-color: transparent;
  border: 1px solid #cecece;
  color: var(--theme-color);
  border-radius: 5px;
  font-size: 16px !important;
}

.tagcloud a::before,
.tagcloud a::after {
  content: "";
  position: absolute;
  inset: 0px;
  width: 0;
  background-color: var(--primary-color);
  z-index: -1;
  transition: var(--transition);
  border-radius: 5px 0px 0px 5px;
  transform: scale(4) rotate(0deg);
}

.tagcloud a::after {
  left: unset;
  border-radius: 0px 5px 5px 0px;
}

.tagcloud a:hover {
  color: var(--woo-secondary-color);
  border: 1px solid #cecece;
}

.tagcloud a:hover::before,
.tagcloud a:hover::after {
  width: 50%;
  transform: scale(4) rotate(-160deg);
}

.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__title {
  /* font-size: 16px; */
  /* 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;
}

.tp-btn {
  padding: 15px 30px;
  background: var(--woo-secondary-color);
  border-radius: 5px;
  color: var(--woo-secondary-color) !important;
  font-weight: bold;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.tp-btn::before,
.tp-btn::after {
  content: "";
  position: absolute;
  inset: 0px;
  width: 50%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: var(--transition);
  border-radius: 5px 0px 0px 5px;
  transform: scale(4) rotate(0deg);
}

.tp-btn::after {
  left: unset;
  border-radius: 0px 5px 5px 0px;
}

.tp-btn:hover {
  color: var(--theme-color) !important;
  border: 1px solid #cecece;
}

.tp-btn:hover::before,
.tp-btn:hover::after {
  width: 0px;
  transform: scale(4) rotate(-45deg);
}

a.wp-block-button__link:hover {
  border: 2px solid var(--primary-color);
  color: #fff;
  background: var(--primary-color);
}

/* Pagination */


/*----------------------------------------
    basic pagination
-----------------------------------------*/
div.basic-pagination ul {
  padding-left: 0;
}

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 #0ca940;
  border-radius: 5px;
  background-color: var(--woo-secondary-color);
  color: var(--theme-color);
  transition: var(--transition);
}

div.basic-pagination ul li a.page-numbers i {
  transition: 0s;
}

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(--woo-secondary-color);
}

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;
}

/*--
    - 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 */

.rc__thumb img {
  max-width: 160px !important;
  border-radius: 5px !important;
  object-fit: cover;
}

.rc__thumb a {
  display: flex;
}

.f-left {
  float: left;
}

.fix {
  overflow: hidden;
}

.rc__meta span {
  font-size: 15px;
  color: #6a727f;
  font-weight: 500;
}

.rc__title {
  /* font-size: 16px; */
  /* font-weight: 500; */
  color: var(--tp-common-black);
  line-height: 1.4;
}

@media (max-width: 1399px) {
  .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;
  }
}