/* blog styles */
.hidden {
    display:none !important;
}
.onlyDesktopDisplay {
    display: block;
}
.rotateIcon {
    transform: rotate(180deg);
}
.wrapperBlog {
    display:flex;
    gap:30px;
}
.blogLeft {
    flex:1;
}
.blogLeftContainer {
    background: #F8F7F3;
    /*padding: 24px 16px;*/
    padding:5%;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.blogLeftContainer h2 {
    font-family: Inter;
    font-size: 32px;
    font-weight: 500;
    line-height: 38.73px;
    color: #232323;
    margin: 10px 0;
}
.blogLeftContainer span {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #232323;
}
.blogLeftMenu ul li {
    display: flex;
    padding: 12px;
}
.blogMenuElLeft {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blogMenuElRight {
    display: none;
}
.blogLeftMenu ul li.active {
    background: #8C8559;
    border-radius: 12px;
}
.blogLeftMenu ul li.active svg path {
    stroke: #fff;
}
.blogLeftMenu ul li.active a {
    color: #fff;
}
.blogLeftMenu ul li a {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #232323;
}

.bloggerMain {
    display: flex;
    align-items: center;
    gap:10px;
}
.blogBloggerBlock {
    gap:20px;
}
.bloggerData {
    display: flex;
    flex-direction: column;
    gap:4px;
}
.bloggerName {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #232323;
}
.bloggerPosition {
    font-family: Inter;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    color: #232323;
}
.bloggerInfo hr {
    border: none;
    height: 1px;
    background-color: #D5D2C2;
    margin: 20px 0;
}
.bloggerAdditional {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bloggerProperty {
    display: flex;
    justify-content: space-between;
    font-family: Inter;
    font-weight: 500;
    color: #232323;
}
.bloggerProperty .bloggerPropertyName {
    font-size: 12px;
    line-height: 14.52px;
}
.bloggerProperty .bloggerPropertyValue {
    font-size: 14px;
    line-height: 16.94px;
}

.blogRight {
    flex:3;
}
.blogRight .select2-container {
    width:185px !important;
}
.blogContentTop {
    display:flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.blogContentTopLeft h4 {
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 31.78px;
    color: #232323;
    margin: 0;
}
.blogContentTopLeft span {
    font-family: Inter;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    color: #8C8559;
}

.blogContentTopMenu {
    margin: 10px 0;
}
.blogContentTopMenu ul {
    display: flex;
    gap: 24px
}
.blogContentTopMenu ul li {
    display: flex;
    flex-direction: column;
    gap:4px;
}
.blogContentTopMenu ul li a {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #232323;
}
.blogContentTopMenu ul li img {
    display:none;
}
.blogContentTopMenu ul li.active a {
    color: #8C8559;
}
.blogContentTopMenu ul li.active img {
    display:flex;
}

.blogItems {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.blogItems .blog-item {
    max-width: 32%;
}
.blogContentBottom {
    margin-top: 30px;
}
.blogShowMore {
    text-align: center;
    margin-bottom: 30px;
}
.blogShowMore button {
    width: 344px;
    height: 43px;
    padding: 12px 16px 12px 16px;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    cursor: pointer;
}

.blogPagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.blogPagination .prev {
    margin-right: 12px;
}
.blogPagination .next {
    margin-left: 12px;
}
.blogPagination a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0 4px;
    text-decoration: none;
    color: #232323;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid #DCDEDA;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.blogPagination a:hover {
    border-color: #8C8559;
}

.blogPagination a.active {
    border-color: #8C8559;
}

/** BLOG DETAIL PAGE **/
.wrapperBlogDetail {
    display: flex;
    gap:30px;
}
.blogDetailLeft {
    flex:5;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.detailPhoto img {
    width: 100%;
}
.detailIntro {
    border: 1px solid #DCDEDA;
    border-radius: 16px;
    padding:16px;
}
.detailIntro hr {
    border: none;
    height: 1px;
    background-color: #F5F6F5;
    margin:10px 0;
}
.detailIntroHeader {
    display: flex;
    justify-content: space-between;
    height: 24px;
}
.detailIntroHeader h4 {
    all:unset;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
}
.detailIntroIcon img {
    cursor:pointer;
}
.detailArticle h1 {
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
}
.detailIntroContent ul {
    display: flex;
    flex-direction: column;
    gap:12px;
}
.detailIntroContent ul li {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-decoration-line: underline;
}
.detailIntroContent ul li ul {
    margin: 10px 20px;
}
.detailIntroContent ul li ul li {
    list-style-type: disc;
    list-style-position: outside;
}
.detailText h4 {
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
}
.detailText h5 {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
}
.detailText p {
    font-family: Inter;
    font-size: 16px;
    line-height: 19.36px;
}
.detailText ul li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 20px;
}
.detailReviews {
    display: flex;
    flex-direction: column;
    gap:40px;
}
.detailUsersReviews {
    display: flex;
    flex-direction: column;
    gap:24px;
}
.detailUsersReviewsTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.detailUsersReviewsTop h2 {
    font-family: Inter;
    font-size: 32px;
    font-weight: 500;
    line-height: 38.73px;
}
.detailUsersReviewsTop a {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    width: 164px;
    height: 43px;
    padding: 12px 16px 12px 16px;
    gap: 6px;
    border-radius: 8px;
    background: #8C8559;
    color: #fff;
}
.detailUsersReviewsContent {
    display: flex;
    flex-direction: column;
    gap:16px;
}
.detailOneReviewTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.detailOneReview {
    display: flex;
    flex-direction: column;
    gap:16px;
    background: #F8F7F3;
    padding: 16px;
    border-radius: 8px;
}
.detailOneReviewTop h6 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    margin:0;
}
.detailOneReviewTop span {
    font-family: Inter;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.detailOneReviewText {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
}
.detailOneReview button {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #232323;
    width: 191px;
    height: 33px;
    padding: 8px 16px;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    cursor: pointer;
}
.detailMoreReviews {
    text-align: center;
}
.detailMoreReviews button {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #232323;
    width: 294px;
    height: 43px;
    padding: 12px 16px;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    cursor: pointer;
}
.detailFormReview {
    display: flex;
    padding: 24px;
    gap: 24px;
    border-radius: 16px;
    background: #F8F7F3;
}
.detailFormReviewLeft {
    flex:1;
}
.detailFormReviewLeft img {
    border-radius: 16px;
}
.detailFormReviewRight {
    flex:1;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
}
.detailFormReviewRight form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.detailFormReviewRight form h4 {
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    margin:0;
    color: #232323;
}
.detailFormReviewRight form input {
    font-family: Inter;
    font-size: 16px;
    line-height: 19.36px;
    width: 100%;
    height: 46px;
    padding: 13px 20px;
    border: 1px solid #DCDEDA;
    border-radius: 8px;
}
.detailFormReviewRight form textarea {
    font-family: Inter;
    font-size: 16px;
    line-height: 19.36px;
    width: 100%;
    padding: 13px 20px;
    border: 1px solid #DCDEDA;
    border-radius: 8px;
}
.detailFormReviewRight form input[type="submit"] {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: center;
    width: 100%;
    padding: 12px 16px;
    opacity: 0.4;
    background: #8C8559;
    color: #fff;
    cursor: pointer;
}
.detailFormReviewRight form input::placeholder,
.detailFormReviewRight form textarea::placeholder {
    color: #6D6D6D;
}

.blogDetailRight {
    flex:2;
    display: flex;
    flex-direction: column;
    gap:20px;
}
.detailSpecialistBlock {
    padding: 24px;
    border-radius: 8px;
    background: #F8F7F3;
}
.detailSpecialistInfo {
    display: flex;
    flex-direction: column;
    gap:16px;
}
.detailSpecialistTopRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.detailSpecialistTopLeft span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.detailSpecialistTopRight span {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.detailSpecialistTopLeft {
    display: flex;
    gap:4px;
    align-items: center;
}
.detailSpecialistCenterRow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.detailSpecialistCenterRow .blog-item__author {
    display:flex;
    gap:10px;
}
.detailSpecialistCenterRow .blog-author__fio {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.detailSpecialistCenterRow .blog-author__posada {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.detailSpecialistData {
    display: flex;
    flex-direction: column;
    gap:4px;
}
.detailSpecialistFeedback {
    display:flex;
    justify-content: space-between;
}
.detailSpecialistFeedbackLeft {
    display:flex;
    gap:4px;
}
.detailSpecialistFeedbackLeft span {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    padding: 4px 8px;
    border-radius: 37px;
    background: #fff;
}
.detailSpecialistFeedbackRight span {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.detailSpecialistFeedbackRight .blog-item__bar {
    display: flex;
    gap:12px;
}
.detailSpecialistFeedbackRight .blog-item__bar div{
    display: flex;
    gap:4px;
    align-items: center;
}
.detailSpecialistInfo hr {
    border: none;
    height: 1px;
    background-color: #DCDEDA;
    width:100%;
}
.detailSpecialistBottomRow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.detailSpecialistBottomRow span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.detailOfferWrapper {
    position: sticky;
    top: 20px;
    z-index: 10;
}
.detailButtonsShare {
    display: flex;
    flex-direction: column;
    gap:12px;
}
.detailButtonsShare h4 {
    font-family: Raleway;
    font-size: 20px;
    font-weight: 500;
    line-height: 23.48px;
    margin:0;
}
.detailButtonsShare button:first-of-type {
    width: 100%;
    height: 44px;
    padding: 12px 16px;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #151515;
    display: flex;
    justify-content: center;
}
.detailButtonsShare button:last-of-type {
    width: 100%;
    height: 44px;
    padding: 12px 16px;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #fff;
    background: #232323;
    display: flex;
    justify-content: center;
}
.detailOfferProducts h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
}
/* detail bottom section */
.detailBlogBottom {
    margin-top: 50px;
}
.detailBlogBottom h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38.73px;
}

/* review modal success */
.modalReviewSuccess {
    display: none;
    position: absolute;
    z-index: 888;
    max-width: 371px;
    background: #fff;
    padding: 24px 16px;
    border-radius: 10px;
    align-self: center;
}
.modalReviewWrapper {
    display:flex;
    flex-direction: column;
    gap: 20px;
}
.modalReviewWrapperTop {
    display: flex;
    justify-content: space-between;
}
.modalReviewWrapperTop h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    margin: 0;
}
.modalReviewWrapperTop img {
    cursor: pointer;
}
.modalReviewWrapperTop {
    font-weight: 500;
    line-height: 16.94px;
}
.modalOutsideBCG {
    position: fixed;
    z-index: 88;
    background: #4C4C4CC2;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

@media (max-width: 1178px){
    .blogItems .blog-item {
        max-width: 48%;
    }
}
@media (min-width: 768px) {
    .onlyMobileDisplay {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .wrapperBlog,
    .blogItems,
    .blogContentTop {
        flex-direction: column;
    }

    .blogLeftContainer {
        background: #fff;
        padding: 0;
    }
    .blogBloggerBlock {
        margin: 30px 0;
    }

    .blogLeftContainer span:last-of-type,
    .blogLeftContainer .blogLeftSocial,
    .blogLeftMenu ul li {
        display: none;
    }

    .blogLeftMenu ul {
        display: flex;
        flex-direction: column;
    }
    .blogLeftMenu ul li.active {
        order:1 !important;
    }
    .blogLeftMenu ul li {
        justify-content: space-between;
        order:2;
    }

    .blogLeftMenu ul li.active svg path {
        stroke: #8C8559;
    }

    .blogLeftMenu ul li.active a {
        color: #232323;
    }

    .blogLeftMenu ul li.active,
    .blogLeftMenu ul li.active .blogMenuElRight {
        display: flex;
        background: #F8F7F3;
    }

    .blogLeftMenu ul li.active.visible svg{
        transform: rotate(180deg);
    }
    .blogMenuElRight svg {
        pointer-events: all;
    }

    .blogContentTop {
        gap:10px;
    }
    .blogRight .select2-container {
        width: 100% !important;
    }

    .blogItems .blog-item {
        max-width: 100%;
    }
    .blogShowMore button {
        max-width: 100%;
    }
    .visible {
        display:flex !important;
    }
    /* blog detail */
    .wrapperBlogDetail {
        display: inherit;
    }
    .onlyMobileDisplay {
        display: block;
    }
    .detailArticleProductOffer.onlyMobileDisplay {
        margin-right: -32px;
    }
    .detailArticleProductOffer.onlyMobileDisplay .swiper-slide {
        width:95% !important;
        padding-left: 20px;
    }
    .detailArticleProductOffer.onlyMobileDisplay .swiper-navigation {
        margin-right: 42px;
    }
    .onlyMobileDisplay .swiper-slide {
        width:90%;
    }
    .onlyDesktopDisplay,
    .blogDetailRight,
    .detailFormReviewLeft {
        display:none !important;
    }
    .detailOneReview button {
        width: 100%;
    }
    .onlyMobileDisplay .detailButtonsShareRow {
        display: flex;
        gap: 12px;
    }
    .swiper.tabsBlogSwiper.onlyMobileDisplay {
        margin-left: 32px;
    }
    .swiper.tabsBlogSwiper.onlyMobileDisplay .swiper-navigation {
        margin-right: 42px;
    }

}