/*!
Theme Name: Blog 21 Yard
Author: Blog 21 Yard
Version: 1.0.0
*/

@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/Lato-Medium.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/Lato-Bold.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
li {
    list-style: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    border: 0;
}

.container {
    max-width: 1132px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    position: relative;
}

p {
    margin-bottom: 20px;
}

.btn {
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    background: #FFFFFF;
    line-height: 1;
    padding: 0 25px;
    transition: all .3s;
    font-family: 'Lato', sans-serif;
    border: 0;
    color: #1D1E21;
}

.btn:hover {
    background: #FED500; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #1D1E21;
    background-color: #F4F4F4;
    overflow-x: hidden; 
}


header {
    background: #FFFFFF;
    padding: 20px 0;
    box-shadow: 0px 2px 16px 0px #00000014;
    z-index: 3;
    position: relative;
}

.header__logo span {
    background: #FEE600;
    padding: 7px 12px 5px;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1; 
}

.header__logo {
    display: flex;
    column-gap: 6px;
    align-items: center;
}

.header-navigation__list {
    display: flex;
    justify-content: space-between;
}

.header__nav {
    flex-grow: 1;
}

.header-navigation__list li {
    position: relative;
}

.header-navigation__list li a {
    font-size: 15px;
    transition: all .3s;
}

.header-navigation__list li a:hover {
    color: #008E7D;
}

.header-navigation__list .sub-menu {
    position: absolute;
    background-color: #f4f4f4;
    -webkit-box-shadow: 0 8px 9px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 8px 9px 0 rgba(0, 0, 0, .1);
    height: auto;
    min-width: 200px;
    padding: 20px;
    width: auto;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
    right: -15px;
    border-radius: 16px;
}

.header-navigation__list li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    pointer-events: all;
}

.header-container {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.header-navigation__list li.more {
    background: url(img/down.svg) 50% 100% no-repeat;
    padding-right: 20px;
}

.header-navigation__list li.more {
    background: url(img/down.svg) 100% 50% no-repeat;
    padding-right: 17px;
}

.s-box { 
    display: flex;
    align-items: center;
    column-gap: 10px; 
    justify-content: end;
}

.form__search .form__field { 
    height: 48px;
    margin-bottom: 0;
}

.form__search .btn { 
    height: 48px; 
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    background: #fee600; 
    padding: 0 15px; 
}

.form__search .btn:hover {  
    background: #FED500;  
}

.form__search {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.search__close span::before,
.search__close span::after {
    content: '';
    width: 2px;
    height: 30px;
    background: #b1b1b1;
    position: absolute;
    transform: rotate(45deg);
    left: 50%;
    transition: all .3s;
}

.search__close span::after { 
    transform: rotate(-45deg); 
}

.search__close span:hover::before,
.search__close span:hover::after {
    background: #FED500;
}

.search__close span {
    display: block;
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
}

.search-box {
    padding-top: 5px;
    position: absolute; 
    width: 100%;
    z-index: 2;
    transform: translateY(-60px); 
    transition: all .3s ease-out;
}

.active-search .search-box { 
    transform: translateY(0px); 
}

.header__search {
    cursor: pointer;
}

.header__search svg {
    display: block;
}

.header__burger {
    display: none;
}

.breadcrumbs {
    padding: 65px 0;
    font-size: 15px; 
}

.breadcrumbs a {
    color: #5F5F61;
    transition: all .3s;
}

.breadcrumbs a:hover {
    color: #1D1E21; 
}

.breadcrumbs .container .breadcrumbs-list {
    display: flex;
    column-gap: 10px;  
    align-items: center;
    overflow: hidden;

}

.breadcrumbs .container {
    display: flex;
    align-items: center; 
}

.breadcrumbs .container .breadcrumbs-list span.last {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


h1 {
    font-size: 36px;
    color: #000;
    margin-bottom: 32px;
    font-weight: 700;
    text-align: center;
}

.article-page-img {
    margin-bottom: 30px;
}

.article-page-img img {
    border-radius: 16px;
}

.article-page-row {
    display: grid;
    grid-template-columns: 690px 365px;
    justify-content: space-between;
}

.article-page-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.article-page-meta>span {
    display: flex;
    align-items: center;
    color: #5F5F61;
    column-gap: 6px;
}

.article-page-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px 16px 0 0;
}

.article-page-content ul,
.article-page-content ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.kamatoc-wrap {
    background: #E3F9F4;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 10px;
}

.article-page-content .kamatoc-wrap ol  {
    padding-left: 25px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.kamatoc-wrap__title.kamatoc_wrap_title_js {
    font-size: 24px;
    margin-bottom: 10px;
}

.article-page-content .kamatoc__top a {
    color: #1D1E21;
    font-size: 18px;
    transition: all .3s;
    text-decoration: none;
}

.article-page-content .kamatoc__top a:hover {
    color: #008E7D;
}

.article-page-content .kamatoc-wrap ol li {
    padding-left: 0;
    margin-bottom: 0;
    list-style: auto;
}

.article-page-content ul li {
    list-style: disc;
    margin-bottom: 5px;
}

.article-page-content ol li {
    list-style: auto;
    margin-bottom: 5px;
}

.article-page-content a {
    color: #008E7D;
    text-decoration: underline;
    transition: all .3s;
}

.article-page-content a:hover { 
    text-decoration: none; 
}

.article-page-content  { 
    font-size: 18px; 
    line-height: 1.4;
}

.article-page-content p:last-child { 
    margin: 0;
}

blockquote {
    padding: 24px 24px 24px 60px;
    background: #FFFCE1 url(img/bq.svg) 24px 30px no-repeat;
    border-radius: 16px;
    color: #5F5F61;
    font-size: 16px;
    margin-bottom: 20px;
}

blockquote p:last-child{
    margin: 0;
}

h2, .h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-top: 10px;
}

h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 10px;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 10px;
}

.main {
    padding: 75px 0; 
}

.main-item {
    height: 480px;
}

.main-item a {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.main-item-desc {
    position: relative;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.main-item-desc::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.8) 100%);
}

.main-item-desc  h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    padding-top: 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.main-item-img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-position: center;
}

.main-slide-box {
    position: relative;
}

.main-row {
    display: grid;
    grid-template-columns: 685px auto;
    gap: 70px;
}

.main-item-meta {
    display: flex;
    column-gap: 8px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.main .meta-views, 
.main .meta-date {
    background: #fff;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 9px;
    column-gap: 5px;
    line-height: 18px;
}

.main-popular h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    padding-top: 0;
    display: -webkit-box; 
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s;
}

.main-popular h3:hover {
    color: #008E7D;
}

.main-popular-list {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.main-popular-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta {
    padding-bottom: 75px;
}

.cta2 {
    padding-bottom: 40px;
}

.cta-tab a, .cta-tab2 a {
    color: #1D1E21;
    text-decoration: none;
}


.cta-box {
    padding: 48px 32px;
    background: linear-gradient(280.75deg, #FEE600 21.28%, #FFFFFF 103.61%);
    border-radius: 16px;
}

.cta-change {
    display: flex;
    align-items: center;
    border-radius: 30px;
    background: #fff;
    width: 280px;
    padding: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 50px;
}

.cta-button, .cta-button2 {
    height: 38px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center; 
    position: relative;
    border-radius: 30px;
    cursor: pointer;
}

.cta-button.active, .cta-button2.active { 
    background: #FEE600;
}

.cta-tab, .cta-tab2 {
    display: none;
}

.cta-tab.active, .cta-tab2.active {
    display: block;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-tab p, .cta-tab2 p {
    font-size: 24px;
    margin-bottom: 40px;
}

.cta-tab-img {
    position: absolute;
    right: 0;
    bottom: 0;
}
.cta-tab-img2 {
    display: none;
}
.cta-tab a, .cta-tab2 a {
    max-width: 360px;
}

.blog-archive__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-archive-img img {
    border-radius: 16px 16px 0 0;
    transition: all .3s;
}

.blog-archive-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.blog-archive__item:hover .blog-archive-img img { 
    transform: scale(1.025);
}

.blog-archive__item:hover .blog-archive-desc h3 { 
    color: #008E7D;
}

.blog-archive__item {
    display: flex;
    flex-direction: column; 
}

.blog-archive-desc {
    padding: 24px 32px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-archive-desc h3 { 
    margin-bottom: 10px;
    padding-top: 0;
    transition: all .3s;
}

.blog-archive {
    padding-bottom: 75px;
}

.blog-archive-meta {
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: #5F5F61;
    line-height: 1;
    font-size: 15px;
    margin-top: auto;
}

.blog-archive-meta>span {
    display: flex;
    align-items: center;
    column-gap: 3px;
}

.nav-links {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    padding: 50px 0 0;
}

.nav-links a {
    text-decoration-line: underline;
    text-underline-position: under;
    color: #5F5F61;
}

.nav-links a:hover{ 
    color: #000;
}

.nav-links span { 
    color: #000;
}

.subscribe-box {
    background: #fff;
    padding: 48px 200px;
    border-radius: 16px;
}

.subscribe {
    padding-bottom: 75px;
}

.subscribe-box h2 {
    margin-bottom: 10px;
    text-align: center;
}

.subscribe-box p {
    font-size: 18px;
    text-align: center;
}

.form-submit .btn {
    background: #FEE600;
    cursor: pointer;
}
.form-submit .btn:hover {
    background: #FED500; 
}


.form-row {
    display: grid;
    grid-template-columns: auto 160px;
    gap: 15px;
}

.form__field {
    width: 100%;
    border: 1px solid #D5D5D6;
    font-family: 'Lato', sans-serif;
    height: 52px;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    margin-bottom: 16px;
}

label.error {
    color: red;
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.form-group, .form-check {
    position: relative;
}

.form-check span a {
    color: #008E7D;
    text-decoration: underline;
    
    text-underline-position: under;
}

.form-label {
    color: #5F5F61;
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
}

.form-check-label span {
    display: block;
    padding: 0 0 0 30px;
    cursor: pointer;
    z-index: 2;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #5F5F61;
}

.form-check-label .form-check-input {
    position: absolute;
    opacity: 0;
}

.form-check-label span:before, .form-check-label span:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    transition: 0.15s ease-in-out;
}

.form-check-label span:before {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #D5D5D6;
    border-radius: 4px;
}


.form-check-input:checked + span:before { 
    background: #FEE600;
    border: 1px solid #FEE600; 
}

/* .form-check-input[type=checkbox] + span:after {
    width: 14px;
    height: 14px;
    margin: 4px 0 0 4px; 
    background: #008E7D; 
    opacity: 0; 
    border-radius: 4px;
} */


.form-check-input[type=checkbox] + span:after {
    width: 11px;
    height: 6px;
    margin: 5px 0 0 5px;
    border-style: solid;
    border-color: #2B2D33;
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: rotate(-45deg);
}

.form-check-input:checked + span:after {
    opacity: 1;
}

label#checkpolit-error {
    bottom: -20px;
}

.news {
    padding-bottom: 75px;
}

.swiper-pagination {
    position: relative; 
    padding-top: 30px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px; 
    background: #5F5F61; 
    margin: 0 6px!important;
}

.swiper-button-next:after,  .swiper-button-prev:after {
    content: none;
}

.swiper-button-next, .swiper-button-prev { 
    width: 56px;
    height: 56px; 
    background: #FFFFFFB2;
    border-radius: 50%;
}

.swiper-button-next { 
    right: -28px;
}

.swiper-button-prev { 
    left: -28px;
}

.news-box {
    position: relative;
    padding-top: 30px;
}
.news h2 {
    text-align: center;
    margin: 0;
}

.cat-list {
    padding-bottom: 30px;
    overflow: visible;
}

.cat-list .swiper-slide {
    width: auto !important;
    font-size: 17px; 
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 16px; 
    font-weight: 700;
    background: #FFFFFF;
    line-height: 1;
    padding: 0 25px;
    transition: all .3s; 
    cursor: pointer;
}

.cat-list .swiper-slide-thumb-active {
    background: #FEE600;
}

.cats {
    padding-bottom: 75px;
    overflow: hidden;
}

.cats h2{
    text-align: center;
    margin-bottom: 30px;
}

.category-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.load-more {
    margin: 0 auto;
    background: transparent;
    border: 2px solid #D5D5D6;
}

.load-more:hover { 
    background: #E9EAEA;
    border: 2px solid #E9EAEA;
    color: #1D1E21;
}

.related-article h2 {
    text-align: center;
    margin-bottom: 30px;
}

.related-article {
    padding-bottom: 75px;
}

.sidebar-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-popular-list a, .sidebar-last-list a {
    display: grid;
    grid-template-columns: 90px auto;
    align-items: center;
    column-gap: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: all .3s;
}

.sidebar-popular-list a:hover , .sidebar-last-list a:hover {
    color: #008E7D;
}

.sidebar-popular-list, .sidebar-last-list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 35px;
}

.sidebar-popular-list img, .sidebar-last-list img{
    border-radius: 12px;
}

.sidebar-cat  a {
    background: #E9EAEA;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    transition: all .3s;
}

.sidebar-cat  a:hover {
    background: #FED500; 
}

.sidebar-cat {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sidebar-cat br {
    display: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 180px auto 217px;
    gap: 75px;
    margin-bottom: 35px;
    align-items: start;
}

.footer__logo {
    display: flex;
    column-gap: 6px;
    align-items: center;
}

.footer__logo span {
    background: #FEE600;
    padding: 7px 12px 5px;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.footer__logo img {
    max-width: 150px;
}

.footer__nav>span, 
.footer__help>span,
.footer__cont>span,
.footer__adress>span {
    color: #AAABAD;
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-navigation__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.footer-navigation__list li a {
    color: #fff;
    font-weight: 700;
    transition: all .3s;
}

.footer-navigation__list li a:hover,
.footer__phone a:hover, .footer__email a:hover {
    color: #FEE600;
}

.footer-navigation__list li {
    padding: 9px 15px;
}


footer {
    background: #4C5052;
    padding: 42px 0 38px;
}

.social {
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-top: 20px;
}

.social a  svg path.circle {
    transition: all .3s;
}

.social a:hover svg path.circle {
    fill: #5F5F61;
}




.footer__phone a,
.footer__email a {
    color: #FFFFFF;
    font-size: 15px;
    transition: all .3s;
}
 

.footer__phone,
.footer__email  {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.footer__center {
    display: grid;
    grid-template-columns: 180px auto 340px;
    gap: 60px;
}

.footer__adress p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 15px;
}

.footer__link p {
    color: #AAABAD;
    margin-bottom: 0;
    font-size: 15px;
    text-align: right;
}

.footer__link-list {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 24px;
    margin-bottom: auto;
    padding-bottom: 8px;
}

.footer__bottom {
    border-top: 1px solid #fff;
    margin-top: 30px;
    padding-top: 16px;
    font-size: 15px;
    color: #AAABAD;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__rek br {
    display: none; 
}

.footer__cont, .footer__adress, .footer__link {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.footer__cont>span, .footer__adress>span {
    margin-bottom: auto;
}

.news-box .swiper-slide,
.related-article .swiper-slide  { 
    display: flex;
    height: auto;
}

.post-rating {
    display: flex;
    cursor: pointer;
}

.star {
    font-size: 24px; /* Размер звезд */
    color: #ccc; /* Цвет пустых звезд */
    margin-right: 5px; /* Отступ между звездами */
}

.star.filled {
    color: gold; /* Цвет заполненных звезд */
}

.vote-block {
    overflow: hidden;
    margin: 0 10px 0 0;
    padding-bottom: 20px;
    float: left;
    vertical-align: middle;
    position: relative;
  }
  .vote-block .rating-info {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    color: #000;
    font-family: georgia, serif;
  }
  .vote-block span.rating-text {
    font-size: 14px;
    color: #000;
    font-family: georgia, serif;
    display: block;
    float: left;
  }
  .vote-block .rating {
    list-style: none;
    margin: 0 10px 0 0;
    padding: 0;
    width: 105px;
    height: 20px;
    float: left;
    vertical-align: middle;
  }
  .vote-block .rating:hover li {
    background-image: url('img/star.png');
  }

  .vote-block .rating li {
    display: block;
    width: 21px;
    height: 20px;
    float: right;
    /* обтекание по правой стороне как раз необходимо для выстравания элементов  в обратном порядке */
    text-indent: -9999px;
    /* скрываем текст */
    cursor: pointer;
  }
  .vote-block .rating li:hover,
  .vote-block .rating li:hover ~ li {
    background-position: 0 -20px;
  }
  .vote-block.disabled .rating li.current {
    display: block;
    z-index: 10;
  }
  .vote-block .rating li.active,
  .vote-block .rating li.active ~ li {
    background-position: 0 -40px;
  }
  .vote-block li.current {
    display: none;
  }
  .vote-block ol.show-current {
    position: relative;
  }
  .vote-block ol.show-current li {
    cursor: default;
    z-index: 2;
    position: relative;
    cursor: pointer;
  }
  .vote-block ol.show-current li.current {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    z-index: 1;
    background-position: 0 0;
    background-repeat: repeat-x;
    background-image: url('img/star.png');
  }
 
  .vote-block ol.show-current li.current span {
    display: block;
    height: 20px;
    width: 0;
    background: inherit;
    background-position: 0 -40px;
  }

  .article-page-author {
    background: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
}

.author-info {
    display: grid;
    grid-template-columns: 76px auto;
    column-gap: 16px;
    align-items: center;
}

.author-info-desc span {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.author-info img {
    border-radius: 50%;
}

.author-rating-title {
    color: #000;
    margin-bottom: 8px;
}

.author-mess a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D5D5D6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.author-mess {
    display: flex;
    column-gap: 8px;
}

.article-page-main {
    padding-bottom: 75px;
}

.comments {
    background: #fff;
    border-radius: 0 0 16px 16px;
    padding: 30px;
}

.comment-notes {
    display: none;
}

form#commentform {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 15px;
}

textarea.form__field {
    height: 180px; 
    padding: 15px;
}

.comment-form-comment {
    width: 100%; 
}

#commentform p {
    margin: 0;
}

.comment-form-author, .comment-form-email {
    width: calc(50% - 7.5px);
}

.comment-form-cookies-consent {
    color: #5F5F61;
}

#wp-comment-cookies-consent {
    position: absolute;
    opacity: 0;
}

.comment-form-cookies-consent label:before, .comment-form-cookies-consent label:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    transition: 0.15s ease-in-out;
}

/* .comment-form-cookies-consent label:before {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #D5D5D6;
    border-radius: 4px;
} */

.comment-form-cookies-consent label:before {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #D5D5D6;
    border-radius: 4px;
}

.comment-form-cookies-consent label {
    display: block;
    padding: 0 0 0 30px;
    cursor: pointer;
    z-index: 2;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #5F5F61;
    margin-bottom: 25px;
} 

/* #wp-comment-cookies-consent + label:after {
    width: 14px;
    height: 14px;
    margin: 4px 0 0 4px;
    background: #008E7D;
    opacity: 0;
    border-radius: 4px;
} */




#wp-comment-cookies-consent:checked + label:before { 
    background: #FEE600;
    border: 1px solid #FEE600; 
}

 

#wp-comment-cookies-consent + label:after {
    width: 11px;
    height: 6px;
    margin: 5px 0 0 5px;
    border-style: solid;
    border-color: #2B2D33;
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: rotate(-45deg);
}

#wp-comment-cookies-consent:checked + label:after {
    opacity: 1;
}
 
#commentform p.logged-in-as {
    margin-bottom: 10px;
}

.modal:not(.fancybox-content) {
    display: none;
}

#callback, #thanks {
    max-width: 450px;
    border-radius: 16px;
}

.modal__title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.modal .form-submit .btn { 
    width: 100%;
}

.modal .form-submit  { 
    margin-bottom: 15px
}

.thanks-title {
    font-size: 22px;
}

.mob {
    width: 100%;
    max-width: 350px;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    top: 0;
    transform: translateX(100%);
    padding: 30px;
    transition: all .4s;
    overflow: auto;
    right: 0;
    background: #F4F4F4; 
}

.mob-navigation__list li a {
    font-size: 20px;
}

.burger-active .mob {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mob-navigation__list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.mob-close { 
    margin-bottom: 15px;
}

.share-mess a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D5D5D6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.share-mess {
    display: flex;
    column-gap: 8px;
}

.share { 
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-left: auto;
}

.comment-author.vcard {
    display: flex;
    align-items: center;
    column-gap: 10px; 
    margin-bottom: 10px;
}

.comment-author.vcard img {
    border-radius: 50%;
}

cite.fn {
    font-size: 17px;
    font-style: normal;
}

span.says {
    display: none;
}

.comment-meta.commentmetadata {
    display: none;
}

.comment-body p {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 5px;
    display: inline-flex;
}

.comment-body {
    margin-bottom: 15px;
}
.reply {
    font-size: 14px;
    padding-left: 10px;
    color: #676767;
}

ol.children {
    padding-left: 25px;
}

.applications-box {
    position: relative;
}

.applications {
    background: #E3F9F4;
    padding: 32px 0 30px 30px;
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.applications-item {
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: auto;
}

.applications-item-num {
    color: #5F5F61;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.applications-item-date {
    color: #5F5F61;
    font-size: 13px;
    font-weight: 500;
}

.applications-item-date span {
    color: #008E7D;
    padding-right: 10px;
}

.applications-item-name {
    font-size: 18px;
    font-weight: 700;
    padding: 5px 0;
}

.applications-item-price { 
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.applications-item-tegs span {
    background: #E9EAEA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    height: 23px;
    padding: 0 7px;
    font-size: 12px;
}
.applications-item-tegs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.applications-item-geo {
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 8px;
}

.applications-item-desc {
    font-size: 14px;
    margin-bottom: 15px;
}

.applications-item-desc span {
    display: block;
    font-weight: 700;
}

.applications-item-btn .btn {
    background: #FEE600;
    color: #1D1E21;
    text-decoration: none;
}

.applications-item-btn .btn:hover {
    background: #FED500; 
}

.applications .swiper-button-next, .applications .swiper-button-prev {
    width: 40px;
    height: 40px; 
}

.applications .swiper-button-next {
    right: -10px;
}

.applications .swiper-button-prev {
    left: -10px;
}

.applications .swiper-button-next svg, .applications .swiper-button-prev svg {
    width: 10px; 
}

.applications-item-btn {
    margin-top: auto;
}