.single-post .site-main {
    padding-top: clamp(32px, 5vw, 72px);
    position: relative;
    & .title-site h1 {
        font-size: clamp(24px, 4vw, 40px);
        font-family: var(--Medium);
        margin-bottom: clamp(12px, 3vw, 32px);
    }
    & .single-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: clamp(16px, 2vw, 24px);
        padding-bottom: clamp(16px, 2vw, 24px);
        border-bottom: 1px solid var(--gray2);
        & .category_post {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            & i {
                width: clamp(24px, 3vw, 30px);
                height: clamp(24px, 3vw, 30px);
                font-size: clamp(16px, 2vw, 22px);
                color: var(--color1);
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
    }
}
.category_post a {
    color: var(--gray4);
    font-size: clamp(14px, 2vw, 16px);
    padding-left: 20px;
    position: relative;
    transition: 0.4s;
    &:hover {
        color: var(--color1);
    }
    &:not(:nth-last-child(1)):before {
        content: "-";
        position: absolute;
        left: -3px;
        top: calc(50% + 4px);
        transform: translateY(-50%);
        height: clamp(14px, 2vw, 16px);
        width: clamp(14px, 2vw, 16px);
        color: var(--gray4);
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.single-share {
    background: var(--gray2);
    padding: 6px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 30px);
    & .share-label {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(16px, 3vw, 20px);
        position: relative;
        width: clamp(26px, 3vw, 30px);
        height: clamp(26px, 3vw, 30px);
    }
    & .share-items {
        display: flex;
        gap: clamp(8px, 2vw, 12px);
        align-items: center;
        flex-direction: row-reverse;
        & .copy-btn,
        & a {
            width: clamp(24px, 3vw, 30px);
            height: clamp(24px, 3vw, 30px);
            font-size: clamp(24px, 3vw, 30px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray1);
            transition-property: 0.4s;
            position: relative;
            cursor: pointer;
            &:hover {
                color: var(--color1);
            }
        }
    }
}
.tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, 0.1);
    background: var(--gray);
    padding: 4px;
    border-radius: 11px;
    bottom: 130%;
    min-width: 75px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    white-space: nowrap;
    font-size: 13px;
    text-align: center;
    z-index: 1;
    color: var(--black);
}
.copy-btn .tooltip-url:hover {
    background: var(--color1);
    color: white;
}
.copy-btn .tooltip-url:hover:before {
    border-color: var(--color1);
}
.copy-btn:hover .tooltip-url {
    opacity: 1;
    visibility: visible;
}
.copy-btn .tooltip-url::before {
    content: "";
    display: block;
    position: absolute;
    right: 50%;
    bottom: -8px;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 3px solid #000;
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-color: white;
    transform-origin: 0 0;
    transform: rotate(-45deg) translateX(50%);
    box-shadow: -1px 1px 3px 0 rgb(106 137 204 / 19%);
    z-index: 0;
}
.entry-excerpt {
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 16px;
    line-height: 28px;
}
.thumbnail-post-img {
    position: relative;
    margin-bottom: clamp(16px, 3vw, 32px);
    text-align: center;
    & img {
        height: auto;
        border-radius: clamp(16px, 2vw, 28px);
    }
}
.tag-post {
    margin-top: clamp(16px, 2vw, 20px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    & a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(36, 39, 41, 1));
        padding-inline: 12px;
        transition: 0.4s;
        padding: 11px clamp(20px, 3vw, 30px);
        border-radius: 100px;
        font-size: 14px;
        border: 1px solid var(--gray1);
        &:hover {
            color: white;
            background: var(--color1);
            border-color: var(--color1);
        }
    }
}
.author-box {
    background: #F7F7F7;
    border-radius: 20px;
    margin-top: clamp(16px, 2vw, 24px);
    padding: 12px;
    & .author-image {
        max-width: clamp(52px, 5vw, 64px);
        height: auto;
        border-radius: 10px;
        overflow: hidden;
        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    & .author-body {
        display: flex;
        gap: clamp(12px, 2vw, 16px);
        align-items: center;
        margin-bottom: 12px;
        & .author-title {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        & h6 {
            font-size: clamp(14px, 2vw, 16px);
            font-family: var(--Medium);
        }
        & p {
            font-size: clamp(12px, 2vw, 14px);
            color: var(--gray3);
        }
    }
    & .author-desc p {
        font-size: clamp(12px, 2vw, 14px);
        line-height: 28px;
    }
}
/* --------------------
 comment Style
-------------------- */
.comment-notes {
    display: none !important;
}
#reply-title {
    display: none;
}
.commentlist #reply-title {
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    margin-bottom: clamp(32px, 3vw, 48px);
    font-size: 13px;
    align-items: center;
    background: #F8F8F9;
    min-height: 60px;
}
.comment-wrapper {
    margin-top: clamp(70px, 7vw, 86px);
    & #commentform {
        margin: 0;
        display: flex;
        /* flex-direction: column; */
        position: relative;
        flex-wrap: wrap;
        justify-content: space-between;
        & .comment-form-email,
        & .comment-form-author {
            margin-bottom: clamp(32px, 5vw, 78px) !important;
        }
    }
}
.comment-custom-field {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}
#review_form_wrapper label:not(.comment-form-rating label) {
    margin: 0 !important;
    position: absolute !important;
    top: -30px;
    right: 14px;
    font-size: 14px;
    font-family: var(--Medium);
    z-index: 1;
    line-height: 1;
    height: 30px;
    min-width: 130px;
    background: var(--gray2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3px 16px;
    border-radius: 10px 10px 0 0;
}
.form-submit {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: clamp(24px, 3vw, 40px);
    justify-content: center;
    margin-bottom: 0 !important;
    width: 100%;
}
.commentlist {
    margin-top: clamp(48px, 7vw, 96px);
    & .children {
        padding-right: 0;
        position: relative;
    }
    & .comment_container {
        position: relative;
        & p {
            font-size: clamp(14px, 2vw, 16px);
            color: var(--black);
            background: #F8F8F9;
            border-radius: clamp(16px, 2vw, 24px);
            padding: clamp(16px, 3vw, 32px) clamp(16px, 2vw, 24px) clamp(62px, 5vw, 68px);
            position: relative;
            margin-bottom: clamp(24px, 3vw, 40px);
        }
        & .comment-reply-link {
            position: absolute;
            left: clamp(16px, 2vw, 24px);
            bottom: clamp(16px, 2vw, 24px);
        }
    }
    & .head-comment {
        display: flex;
        justify-content: space-between;
        padding-inline: clamp(8px, 2vw, 20px);
        margin-bottom: clamp(8px, 2vw, 12px);
        position: relative;
        &:before {
            content: "";
            position: absolute;
            right: 50%;
            top: 50%;
            width: calc(100% - 40px);
            height: 1px;
            background: var(--gray2);
            transform: translate(50%, -50%);
            z-index: -1;
        }
        & .name_comment {
            font-size: clamp(13px, 2vw, 14px);
            font-family: var(--Medium);
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding-left: clamp(4px, 2vw, 16px);
            & i {
                width: clamp(28px, 3vw, 36px);
                height: clamp(28px, 3vw, 36px);
                background: var(--black);
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: clamp(16px, 2vw, 24px);
                border-radius: 50%;
            }
        }
        & .time_comment {
            color: #787878;
            font-size: clamp(12px, 2vw, 14px);
            display: flex;
            align-items: center;
            gap: 4px;
            background: white;
            padding-right: clamp(4px, 2vw, 16px);
            & i {
                width: clamp(18px, 2vw, 20px);
                height: clamp(18px, 2vw, 20px);
                display: flex;
                align-items: center;
                justify-content: center;
                padding-bottom: 4px;
                font-size: clamp(12px, 2vw, 14px);
            }
        }
    }
}
.byadmin .comment_container p {
    background: var(--black);
    color: var(--white);
    margin: 0;
}
.byadmin .name_comment i {
    color: var(--color1) !important;
}
.commentlist > .cat-parent > ul.children {
    padding-right: clamp(24px, 3vw, 38px);
    position: relative;
}
.isreply {
    position: absolute;
    width: clamp(24px, 3vw, 30px);
    height: clamp(24px, 3vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    left: calc(100% + 6px);
    font-size: clamp(14px, 2vw, 20px);
    top: calc(50% + 26px);
    transform: translateY(-50%);
    color: var(--black);
}
@media only screen and (min-width: 768px) {
    .single-share {
        flex-direction: row-reverse;
    }
    .comment-form-email,
    .comment-form-author {
        margin-bottom: 78px !important;
    }
}
.help-heading {
    margin-block: 20px 32px;
}
.title-sidebar {
    height: 32px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #f7f7f7;
    border-radius: 24px;
    position: relative;
    padding: 12px 20px 12px 16px;
    min-height: 56px;
}
.title-sidebar:after {
    content: "\e907";
    margin-right: auto;
    font-family: 'icomoon';
    width: 20px;
    height: 20px;
    border: 1px solid;
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    border-radius: 50%;
    padding-top: 2px;
    transition: 0.4s;
}
.title-sidebar.active:after {
    transform: rotateX(180deg);
}
.help-heading ul {
    margin-top: 8px !important;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid var(--gray2);
    border-radius: 20px;
    padding: 24px 20px;
}
.help-heading a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    padding-right: 22px;
    position: relative;
    transition: 0.4s;
    color: var(--gray4);
    font-size: 16px;
    &:hover {
        color: var(--black);
    }
}
.help-heading a:before {
    content: "\e8f8";
    font-family: 'icomoon';
    width: 16px;
    height: 16px;
    font-size: 11px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--color2);
    transition: 0.4s;
    align-items: center;
    justify-content: center;
    display: flex;
}
.help-heading a:hover:before {
    color: var(--color1);
}
.access-post {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.access-post a {
    background: white;
    border-radius: clamp(12px, 2vw, 20px);
    border: 1px solid var(--gray4);
    padding-block: clamp(16px, 2vw, 24px);
    padding-inline: clamp(16px, 2vw, 24px);
}
/* --------------------
 comment Style
-------------------- */
.icon-logo-comment {
    font-size: 29px;
}
.icons-comment .s-icon:before {
    width: 28px;
    height: 27px;
}
.comment-form-mobile {
    width: 32%;
    margin-bottom: 0 !important;
    position: relative;
}
.comment-form-comment,
.comment-form-email,
.comment-form-author {
    position: relative;
    width: 100%;
    margin-bottom: 0 !important;
}
.comment-form-mobile.byadmin {
    width: 100%;
}
.time_comment {
    color: var(--color1);
    font-size: clamp(14px, 2vw, 16px);
}
.section-related-posts:before {
    right: 8px;
    width: calc(100% - 16px);
}
@media only screen and (max-width: 992px) {
    .comment-custom-field {
        width: 100%;
    }
    .comment-form-mobile {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .head-comment .icons-comment {
        width: 40px;
        height: 40px;
        top: -16px;
        right: 42px;
    }
    /* .single-meta,
    .single-title {
        padding-inline: 1rem;
    } */
    .category_post {
        margin-bottom: 12px;
    }
    .thumbnail-post-img {
        padding-inline: 8px;
    }
    .banner-sidebar {
        margin-top: 40px;
    }
    .single-share {
        margin: 12px auto 20px;
        width: min-content;
    }
    /*.help-heading .title-sidebar:before {
        content: "\e907";
        font-family: 'icomoon';
        position: absolute;
        left: 22px;
        top: 18px;
        color: var(--color1);
        transition: 0.4s;
        border-radius: 50px;
        border: 1px solid;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8px;
    }*/
    .title-sidebar.active:before {
        transform: rotateX(180deg);
    }
    .section-related-posts .sw {
        padding-inline: 10px;
    }
    .comment-form-mobile,
    .comment-form-email,
    .comment-form-author {
        margin-bottom: 0 !important;
    }
    .comment-custom-field {
        gap: 32px;
        flex-direction: column;
    }
    .head-comment:before {
        font-size: 29px;
        right: 26px;
    }
    .comment-form {
        gap: 32px;
    }
}
.single-post .entry-summary {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(8px, 2vw, 12px);
    justify-content: space-between;
    margin-block: clamp(16px, 2vw, 24px);
    & p {
        display: flex;
        justify-content: space-between;
        padding: 12px;
        background: var(--color2);
        border-radius: 8px;
        font-size: clamp(12px, 2vw, 14px);
        align-items: center;
        & span:nth-child(1) {
            display: flex;
            align-items: center;
            gap: 4px;
            font-family: var(--Medium);
            & i {
                width: clamp(16px, 2vw, 24px);
                height: clamp(16px, 2vw, 24px);
                font-size: clamp(12px, 2vw, 18px);
                flex: 0 0 clamp(16px, 2vw, 24px);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--color1);
            }
        }
    }
}
@media only screen and (min-width: 768px) {
    .single-post .entry-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 1100px) {
    .single-post .entry-summary {
        grid-template-columns: repeat(4, 1fr);
    }
}
.single-post #faqs {
    margin-block: clamp(72px, 8vw, 120px) clamp(40px, 4vw, 56px);
}
.single-post .section-related-posts.s-dark {
    background-image: url("../img/back-intro.svg");
    background-color: var(--black);
    color: white;
    padding-block: clamp(44px, 6vw, 88px);
    & .post-item .post-item-title a {
        color: white;
    }
    & .swiper-button-next,
    & .swiper-button-prev {
        background: var(--blackcart);
        color: var(--white);
    }
}
.help-heading .accordion-container {
    display: flex;
}