/* Start tg sub */
.telegram-subscribe {
  background-image: url(img/subs-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.telegram-subscribe .subs-in {
  padding: 16px 0 16px 32px;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
}

.telegram-subscribe .text-block {
  position: relative;
  padding-left: 80px;
  white-space: nowrap;
}
.telegram-subscribe .text-block .icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.telegram-subscribe .text-block .subs-title {
  font-weight: 600;
  font-size: 24px;
  color: #FAFCFD;
  margin-bottom: 10px;
}
.telegram-subscribe .text-block .subs-title br {
  display: none;
}
.telegram-subscribe .text-block .subs-title a {
  color: var(--linkHover);
}

.telegram-subscribe .text-block .subs-text {
  font-size: 16px;
  font-weight: 600;
  color: #FAFCFD;
}
.telegram-subscribe .img-block {
  display: flex;
  align-items: center;
}

@media (max-width: 1680px) {
  .telegram-subscribe .subs-in {
    padding-left: 24px;
  }
}

@media (max-width: 1279px) {
  .telegram-subscribe .subs-in {
    padding: 12px 0;
    gap: 24px;
    flex-direction: column;
  }
  .telegram-subscribe .text-block {
    padding: 4px 12px 0 12px;
    text-align: center;
    white-space: unset;
  }
  .telegram-subscribe .text-block .icon {
    position: static;
    transform: unset;
    margin-bottom: 8px;
  }
  .telegram-subscribe .text-block .icon img {
    max-width: 40px;
    aspect-ratio: 1;
  }
  .telegram-subscribe .text-block .subs-title {
    font-size: 20px;
  }
  .telegram-subscribe .text-block .subs-title br {
    display: block;
  }
  .telegram-subscribe .text-block .subs-text {
    font-size: 14px;
  }
  .telegram-subscribe .img-block {
    justify-content: center;
  }
}

/* End tg sub */

/* Start to top */
.to-top {
  background: var(--brendSec);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  position: fixed;
  right: 40px;
  bottom: 20px;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.to-top.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1279px) {
  .to-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
    border-radius: 12px;
  }
  .to-top img {
    max-width: 24px;
    aspect-ratio: 1;
  }
}

/* End to top */

/* Start table styles */
figure.wp-block-table table {  
  border-spacing: 0;
  border-collapse: separate;
  margin-bottom: 12px;
}
.wp-block-table td, .wp-block-table th {
  border: 0;
  padding: 12px 16px;
}
/* figure.wp-block-table table tr:first-child td */
figure.wp-block-table table tr th {
  background: var(--darkBg);
  font-size: 18px;
  border-top: 1px solid var(--brendFour);
  border-left: 1px solid var(--brendFour);
  border-bottom: 1px solid var(--brendFour);
}
figure.wp-block-table table tr:first-child td:first-child,
figure.wp-block-table table tr th:first-child {
  border-left: 1px solid var(--brendFour);
}
figure.wp-block-table table tr:first-child td:last-child,
figure.wp-block-table table tr th:last-child {
  border-right: 1px solid var(--brendFour);
}
figure.wp-block-table table thead th:first-child,
figure.wp-block-table table:not(:has(thead)) tr:first-child td:first-child {
  border-top-left-radius: 16px;
  border-top: 1px solid var(--brendFour);
}
figure.wp-block-table table thead th:last-child,
figure.wp-block-table table:not(:has(thead)) tr:first-child td:last-child {
  border-top-right-radius: 16px;
  border-top: 1px solid var(--brendFour);
}
figure.wp-block-table table thead th,
figure.wp-block-table table:not(:has(thead)) tr:first-child td {
  border-top: 1px solid var(--brendFour);
}
figure.wp-block-table table:not(:has(thead)) tr:first-child td {
  text-align: center;
  font-weight: 600;
  background: var(--darkBg);
  font-size: 18px;
}
figure.wp-block-table table tr td {
  border-bottom: 1px solid var(--brendFour);
}
figure.wp-block-table table tr td {
  border-left: 1px solid var(--brendFour);
}
figure.wp-block-table table tr td:last-child {
  border-right: 1px solid var(--brendFour);
}
figure.wp-block-table table tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}
figure.wp-block-table table tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}
/* End table styles */

/* Start subscribe popup */
#subscribe .modal-body {
  width: 100%;
  max-width: 890px;
  background-image: url(img/subs-left.png);
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #0f181f;
  padding: 64px 0;
  gap: 16px;
}
#subscribe .modal-title,
#subscribe .model-descr,
#subscribe .subs-form {
  max-width: 570px;
  text-align: center;
  width: 100%;
  position: relative;
}
#subscribe .subs-form .error-message {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin-top: 10px;
}
#subscribe .model-descr {
  margin-bottom: 16px;
}
#subscribe .modal-title .h2 {
  color: var(--brendFour);
  font-size: 28px;
}
#subscribe .subs-form form {
  display: flex;
  gap: 12px;
  max-width: 485px;
  margin: 0 auto;
}

@media (max-width: 1279px) {
  #subscribe .modal-body {
    padding: 30px 8px;
    background-image: url(img/bg_subs_top.jpg);
    background-size: 100% auto;
    background-position: 0% 0%;
    height: 85vh;
    max-height: 575px;
  }
  #subscribe .modal-close {
    top: 12px;
    right: 12px;
  }
  #subscribe .modal-title .h2 {
    font-size: 24px;
  }
  #subscribe .subs-form form {
    flex-direction: column;
  }
}
/* End subscribe popup */

.sticky {
  position: sticky;
  top: 50px;
  transition: all .6s ease-in-out;
}

.author-body-posts-in .post-def {
  background-color: var(--typeColorFirst1);
}

.one-right-post .post-top-descr .descr h3 a {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.one-right-post.post-def .descr h3 {
  margin-bottom: 0;
}
.one-right-post.post-def .descr .cat-label {
  margin: 8px 0;
  margin-right: 8px;
}

.more-padd .col-33 {
  width: auto;
}

.catalog-wrap .title-top,
.catalog-wrap .news-bl {
  border-bottom: 0;
}

.search.search-mod {
  z-index: 100;
}

/* Start error 404 */
.error-404 {
  background: url(img/bg_404.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  height: calc(100vh - 180px);
  min-height: max-content;
}
.error-404::before {
  content: '';
  display: block;
  background: #161616;
  opacity: .9;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.error-404 .inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.error-404 h1 {
  font-size: 240px;
  font-weight: 700;
  color: var(--brendFour);
  line-height: 210px;
}
.error-404 .error-title {
  font-size: 40px;
  color: var(--brendFour);
  margin-bottom: 48px;
  font-weight: 700;
}
.error-404 p {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.error-404 .inner > span {
  font-size: 20px;
  font-weight: 600;
  color: var(--textWhiteSec);
  margin-bottom: 24px;
  display: block;
}
.error-404 .btn {
  background: var(--brend);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  color: var(--textWhite);
  gap: 12px;
}

@media (max-width: 1279px) {
  .error-404 h1 {
    font-size: 175px;
    line-height: 150px;
  }
  .error-404 .error-title {
    font-size: 35px;
  }
}
/* End error 404 */

.author-body-name .h3 {
  margin-bottom: 0;
}

@media (max-width: 1279px) {
  .page-single-author .author-body-descr:not(.mob) .author-body-name {
    height: auto;
    padding-left: 0;
    justify-content: center;
  }
  .author-body-name .h3 {
    margin-bottom: 12px;
  }
}

.page-template-template-about .author-body-thumb span,
.page-template-template-authors .author-body-thumb span {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  position: relative;
  background: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.page-template-template-about .bl-info-special,
.page-template-template-authors .bl-info-special {
  width: calc(50% - var(--blocks-indent) / 2);
  gap: var(--blocks-indent);
}
.page-template-template-about .bl-info-special .one-special-info {
  width: 100%;
}

@media (max-width: 1279px) {
  .page-template-template-about .author-body-name,
  .page-template-template-authors .author-body-name {
    padding-left: 0;
    height: auto;
    display: block;
  }
  .page-template-template-about .author-body-thumb,
  .page-template-template-authors .author-body-thumb {
    position: relative;
  }
  .page-template-template-about .author-body-thumb span,
  .page-template-template-authors .author-body-thumb span {
    width: 92px;
    height: 92px;
  }
  .page-template-template-about .author-body-descr,
  .page-template-template-authors .author-body-descr {
    text-align: center;
  }
  .page-template-template-about .author-body-soc,
  .page-template-template-authors .author-body-soc {
    margin-bottom: 12px;
  }
}

footer .footer-soc {
  margin-bottom: 20px;
}

.single-body iframe {
  border-radius: 16px;
}
.header-bot-menu.with-style ul li {
  padding-left: 0;
}
.header-bot-menu.with-style ul li:after {
  background: var(--brendSec);
  top: 50%;
  transform: translateY(-50%);
}
.header-bot-menu nav ul li a {
  padding-left: 15px;
}

.one-right-post .detal-right-info p {
  -webkit-line-clamp: 2;
  height: 42px;
  margin-top: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

@media (max-width: 1279px) {
  .one-right-post .detal-right-info p {
    height: 39px;
  }
}
.mySwiperCatalog .swiper-wrapper {
  transition-timing-function: linear;
}
.one-right-post {
  gap: 16px;
}
.one-right-post .post-thumb {
  width: auto;
}
body .one-right-post .detal-right-info {
  padding: 16px 16px 16px 0;
  flex: auto;
}

@media (max-width: 1279px) {
  body .one-right-post .detal-right-info {
    padding: 12px;
  }
  body .one-right-post .detal-right-info .post-info {
    margin-top: 12px;
  }
  .vertical-post .descr.just .descr-top {
    width: 100%;
  }
  .one-right-post .post-thumb {
    width: 100%;
    height: auto;
  }
}

.post-info {
  justify-content: space-between;
  width: 100%;
}

.post-top-info {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  width: 100%;
  gap: 8px;
}
.post-top-info .authors {
  margin-left: auto;
}

.label-post .label {
  margin-bottom: 0;
}

.authors .author a {
  color: var(--typeColorThird2);
  text-decoration: none;
}

.one-right-post .cat-label {
  margin-bottom: 0;
}

.one-right-post .author {
  margin-bottom: 0;
}

.side-posts .label-post {
  margin-bottom: 12px;
}

.vertical-post .descr p {
  margin-top: 8px;
}

.vertical-post .author {
  margin-bottom: 0;
}
.vertical-post .cat-label {
  margin: 0 !important;
}
.first-posts .big-post.post-def .descr .cat-label {
  margin-bottom: 0;
}
.first-posts .big-post.post-def .descr .post-info {
  margin-top: 12px;
}

.one-right-post.post-def .descr .cat-label {
  margin: 0 8px 8px 0;
}
.first-posts .right-posts .one-right-post {
  gap: 12px;
}
.first-posts .right-posts .one-right-post .detal-right-info {
  padding: 12px 12px 12px 0;
}
.first-posts .right-posts .one-right-post .detal-right-info .descr .h4 {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

@media (max-width: 1300px) {
  .first-posts .right-posts .one-right-post {
    gap: 8px;
  }
  .first-posts .right-posts .one-right-post .detal-right-info {
    padding: 8px 8px 8px 0;
  }
}

.footer-top-left .trustpilot-widget iframe #profileUrl {
  width: 100%;
}
footer .footer-soc {
  justify-content: space-between;
}
/* Start Trustpilot widget custom */
.trustpilot-widget-custom {
  background-color: #fff;
  border: 1px solid #00b67a;
  border-radius: 8px;
  display: flex;
  font-size: 0;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 0px;
  text-decoration: none !important;
  transition: all .4s ease;
}
.trustpilot-widget-custom:hover {
  background-color: var(--brendFour);
  border-color: var(--brendFour);
}
.trustpilot-widget-custom .reviewus {
  color: #191919;
  display: block;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: all .4s ease;
}
.trustpilot-widget-custom .trustpilot-logo {
  display: block;
  width: 84px;
}
/* End Trustpilot widget custom */

.carous-el .nav-car {
  z-index: 11;
}

.authors-page.author-wrap-in .author-body-name {
  margin-bottom: 4px;
}
.authors-page .write {
  justify-content: flex-start;
}
.authors-page .write-tag {
  width: auto;
}
.authors-page .write-tag a {
  padding: 0 8px;
}

.post-def .authors .author a {
  overflow: visible;
}

.first-posts .big-post .descr p {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 0;
  margin: 0;
  opacity: 0;
  transition: all .6s ease;
}
.first-posts .big-post:hover .descr p {
  height: 44px;
  opacity: 1;
  margin: 12px 0;
}

@media (max-width: 1279px) {
  .first-posts .big-post:hover .descr p {
    height: 0;
    opacity: 0;
    margin: 0;
  }
}

.post-soc a,
.soc-link a {
  background-color: transparent;
}
.post-soc a:hover,
.soc-link a:hover {
  background: transparent;
}
.post-soc a:hover svg path:not(.stroke),
.soc-link a:hover svg path:not(.stroke) {
  fill: var(--brendFour);
}
.post-soc a:hover svg path.stroke,
.soc-link a:hover svg path.stroke {
  stroke: var(--brendFour);
}

.social-post {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}
.social-post .trustpilot-widget-custom {
  min-width: 300px;
}

@media (max-width: 1279px) {
  .social-post {
    flex-direction: column;
  }
}

.column-block {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.column-block li,
.column-block > div {
  background: var(--blockBg);
  border-radius: 12px;
  padding: 16px;
  flex-grow: 1;
  flex-basis: 0;
}
.column-block li::after {
  display: none;
}
.column-block li h3,
.column-block > div h3 {
  margin-bottom: 16px;
}
.column-block li p,
.column-block > div p {
  margin-bottom: 0;
}

.block-text {
  background: var(--blockBg);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

@media (max-width: 1279px) {
  .column-block {
    flex-direction: column;
  }
  .column-block li {
    margin-bottom: 0;
  }
}

/* Start pullquote styles */
.wp-block-pullquote {
  padding: 0;
}
.wp-block-pullquote blockquote {
  border-left: 0 !important;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  padding: 16px !important;
  margin: 32px 0 24px !important;
}
.wp-block-pullquote blockquote p {
  font-size: 20px;
}
@media (max-width: 1279px) {
  .wp-block-pullquote blockquote p {
    font-size: 18px;
  }
}
/* End pullquote styles */

/* Start egg-item-post */
.egg-item-post {
  background: var(--darkBg);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px !important;
}
.egg-item-post__top {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.egg-item-post__top .cegg-image-container {
  max-width: 260px;
  flex-shrink: 0;
  min-width: 260px;
}
.egg-item-post__top .cegg-image-container a {
  display: block;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.egg-item-post__top .cegg-image-container img {
  position: absolute;
  height: 100%;
  max-width: unset;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.egg-item-post__top .cegg-item-title {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}
.egg-item-post__top .product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.egg-container .egg-stars-container:before {
  color: #626262 !important;
}
.egg-container .egg-stars-container:after {
  color: #DFB300 !important;
}
.egg-container .egg-stars-container {
  font-size: 23px;
  margin-top: -10px;
}
.egg-item-post__top .cegg-price-row {
  margin-bottom: 12px;
}
.egg-item-post__top .cegg-price {
  font-size: 32px;
  font-weight: 700;
}
.egg-container .text-muted {
  color: #70757A !important;
}
.egg-item-post__top .cegg-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.egg-container .btn {
  border-radius: 24px !important;
}
.egg-container .cegg-btn-big {
  background-color: var(--brend);
  border-color: var(--brend) !important;
  font-size: 18px !important;
  color: var(--textWhite);
  padding: 10px 24px !important;
}
.egg-container .cegg-btn-big:hover {
  color: var(--typeColorSecond2);
  background-color: var(--typeColorThird5);
  border-color: var(--typeColorThird5) !important;
}
.egg-item-post__top .cegg-btn-row .store {
  display: flex;
  align-items: center;
  gap: 8px;

}
.egg-item-post__top .cegg-btn-row .store img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}
.egg-container small, .egg-container .small {
  font-size: 14px;
  color: #70757A;
}
.egg-item-post__bottom {
  max-height: 140px;
  overflow: hidden;
  position: relative;
  background: var(--blockBg);
  border-radius: 12px;
  padding: 16px;
}
.egg-item-post__bottom > * {
  flex-grow: 1;
  flex-basis: 0;
}

.egg-item-post__bottom:after {
  content: '';
  display: block;
  height: 48px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(0deg, #2f2e41 45%, rgba(47, 46, 65, 0.25) 97.5%);
  transition: all .4s ease;
}
.egg-item-post__bottom .read-more {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 15px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: all .4s ease;
}
.egg-item-post__bottom.show-full {
  max-height: unset;
}
.egg-item-post__bottom.show-full:after {
  opacity: 0;
  pointer-events: none;
}
.egg-item-post__bottom.show-full .read-more {
  opacity: 0;
  pointer-events: none;
}
.egg-container .cegg-no-top-margin {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}
.egg-item-post__bottom > * ul {
  padding: 0;
  margin: 0;
}
.egg-item-post__bottom > * ul li {
  font-size: 14px;
  padding-left: 14px;
  position: relative;
  list-style-type: none;
}
.egg-item-post__bottom > * ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brendSec);
  position: absolute;
  left: 0;
  top: 7px;
}
.egg-item-post__bottom > * ul li:not(:last-child) {
  margin-bottom: 8px;
}

@media (max-width: 1279px) {
  .egg-item-post {
    padding: 16px;
  }
  .egg-item-post__top {
    flex-direction: column;
  }
  .egg-item-post__bottom {
    flex-direction: column;
  }
  .egg-item-post__top .cegg-image-container {
    max-width: 100%;
  }
  .egg-item-post__top .cegg-image-container a {
    aspect-ratio: unset;
    max-width: 100%;
  }
  .egg-item-post__top .cegg-image-container img {
    position: static;
    max-width: 100%;
    transform: unset;
    max-height: 100%;
  }
  .egg-item-post__top .cegg-btn-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .egg-item-post__bottom > * ul li {
    font-size: 14px;
  }
}
/* End egg-item-post */
@media (max-width: 1279px) {
  .first-posts .big-post .post-thumb img {
    position: static;
    min-height: auto;
    width: 100%;
  }
  .about-author-info-right .post-info {
    justify-content: center;
  }
  .page-single-author .author-body-top .author-body-descr.mob {
    width: 100%;
  }
}
.top-banner {
  position: relative;
}
.top-banner .close {
  position: absolute;
  top: 50%;
  right:15px;
  transform: translateY(-50%);
  color: var(--brend);
  cursor: pointer;
}
.top-banner.hide {
  display: none;
}

/* YT Shorts Start */
.youtube-shorts {
  display: flex;
  gap: 28px;
  width: 100%;
}
.youtube-shorts .short {
  width: calc(25% - var(--blocks-indent) * 3 / 4);
}
.youtube-shorts .short.one {
  width: 100%;
}
.youtube-shorts .short iframe {
  border: 0;
  border-radius: 12px;
  aspect-ratio: 9 / 16;
  width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .youtube-shorts {
    flex-direction: column;
    gap: 16px;
  }
  .youtube-shorts .short {
    width: 100%;
  }
  .youtube-shorts .short iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
  }
}
/* YT Shorts End */

.descr-top {
  width: 100%;
}

.author-body-posts-in {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

@media (max-width: 992px) {
  .author-body-posts-in {
    display: flex;
  }
}