.help-heading {
    margin-bottom: clamp(8px, 2vw, 16px);
    .title-sidebar {
        min-height: 56px;
        display: flex;
        align-items: center;
        cursor: pointer;
        background: var(--nature2);
        border-radius: 16px;
        position: relative;
        padding: 16px;
        gap: 8px;
		font-family: var(--Medium);
        i {
            font-size: 24px;
            color: var(--color1);
            transition: 0.4s;
        }
        &:after {
            content: "\e906";
            margin-right: auto;
            font-family: 'icomoon';
            width: 20px;
            height: 20px;
            color: var(--color1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            transition: 0.4s;
        }
        &.active:after {
            content: '\e908';
        }
    }
    .accordion-container {
        display: flex;
        flex-direction: column;
        background: #F8FAFC;
        border-radius: 24px;
        padding: 18px 12px;
        margin-top: 8px;
        a {
            position: relative;
            transition: 0.4s;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--nature2);
            font-size: 14px;
            font-family: var(--Medium);
            line-height: 24px;
            color: var(--black);
            padding-right: 8px;
            display: block;
            &:hover {
                color: var(--color1);
            }
        }
        li:nth-last-child(1) a {
            padding: 0;
            margin: 0;
            border: 0;
        }
    }
}
.access-post {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-block: 16px 26px;
    a {
        background: var(--nature2);
        border-radius: 16px;
        min-height: 56px;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px;
        font-size: 16px;
        font-family: var(--Medium);
        transition: 0.4s;
        i {
            font-size: 24px;
            color: var(--color1);
            transition: 0.4s;
        }
        &:hover {
            color: white;
            background: var(--color1);
            i {
                color: white;
            }
        }
    }
}
.single-post .site-main {
    padding-top: clamp(24px, 2vw, 32px);
    position: relative;
    & .title-site h1 {
        font-size: clamp(28px, 2vw, 36px);
        font-family: var(--Medium);
        margin-bottom: 16px;
        line-height: clamp(42px, 4vw, 56px);
    }
}
.thumbnail-post-img {
    position: relative;
    margin-bottom: 32px;
    text-align: center;
    & img {
        height: auto;
        border-radius: 32px;
    }
}
.single-meta {
    flex-wrap: wrap;
    background: var(--nature2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
    margin-block: 16px clamp(8px, 2vw, 24px);
    & .category_post {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        & i {
            font-size: 18px;
            color: var(--color1);
        }
        a {
            color: var(--gray);
            font-size: 14px;
            padding-left: 8px;
            position: relative;
            transition: 0.4s;
            font-family: var(--Medium);
            &:hover {
                color: var(--black);
            }
            &:not(:nth-last-child(1)):before {
                content: "";
                height: 12px;
                width: 1px;
                position: absolute;
                left: -1px;
                top: 50%;
                transform: translateY(-50%);
                background: var(--color2);
                z-index: 3;
                border-radius: 12px;
            }
        }
    }
    & .shape-wrapper {
        display: flex;
        gap: 16px;
        align-items: center;
        position: relative;
        .share-single {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            font-size: 14px;
            font-family: var(--Medium);
            transition: 0.4s;
            gap: 8px;
            cursor: pointer;
            i {
                font-size: 20px;
                color: var(--color1);
            }
            &:hover {
                color: var(--color1);
            }
        }
        .share-popup {
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            z-index: 9999;
            & .single-share {
                padding: 8px 12px;
                justify-content: center;
                background: var(--nature2);
                border-radius: 100px;
                display: flex;
                align-items: center;
                gap: 16px;
                & .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: 12px;
                    align-items: center;
                    flex-direction: row-reverse;
                    & .copy-btn,
                    & a {
                        width: 24px;
                        height: 24px;
                        font-size: 20px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: var(--color1);
                        transition-property: 0.4s;
                        position: relative;
                        cursor: pointer;
                        &:hover {
                            color: var(--color2);
                        }
                    }
                }
            }
            & .popup-content {
                max-width: 400px;
                transform: scale(0.9);
                opacity: 0;
                transition: transform 0.4s ease, opacity 0.4s ease;
                position: fixed;
                top: 20%;
                background: #fff;
                border-radius: clamp(16px, 3vw, 24px);
                width: calc(100% - 32px);
                text-align: center;
                z-index: 9999;
                padding: 36px clamp(16px, 3vw, 32px) clamp(16px, 3vw, 32px);
                p {
                    margin-bottom: 16px;
                    font-size: 16px;
                    font-family: var(--Medium);
                }
            }
            & .close-popup {
                position: absolute;
                top: clamp(12px, 2vw, 16px);
                left: clamp(12px, 3vw, 32px);
                cursor: pointer;
                font-size: 8px;
                font-weight: bold;
                width: 20px;
                height: 20px;
                color: var(--color1);
                border: 1px solid;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.4s;
                &:hover {
                    background: var(--color1);
                    color: white;
                }
            }
        }
        .share-popup.active {
            opacity: 1;
            pointer-events: auto;
        }
        .share-popup.active .popup-content {
            transform: scale(1);
            opacity: 1;
        }
        .post-date {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--black);
            font-size: 14px;
            font-family: var(--Medium);
            i {
                font-size: 20px;
                color: var(--color1);
            }
        }
    }
}
.post-date-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-size: 16px;
    font-family: var(--Medium);
    justify-content: center;
    width: fit-content;
    padding-inline: 40px;
    position: absolute;
    bottom: -5px;
    right: 50%;
    transform: translateX(50%);
    &:before {
        content: "\e920";
        font-family: 'icomoon';
        position: absolute;
        bottom: 5px;
        color: white;
        line-height: 1;
        font-size: 30px;
        z-index: -1;
    }
}
.tag-post {
    margin-top: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    background: var(--nature2);
    display: flex;
    align-items: center;
    min-height: 56px;
    border-radius: 16px;
    padding: 16px;
    gap: clamp(8px, 1vw, 16px);
    span {
        background: white;
        border-radius: 32px;
        padding: 4px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 36px;
        font-size: 18px;
        color: var(--black);
        i {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--color1);
        }
    }
    & a {
        padding-left: clamp(8px, 1vw, 16px);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray);
        transition: 0.4s;
        font-size: clamp(14px, 2vw, 16px);
        position: relative;
        &:not(:nth-last-child(1)):before {
            content: "";
            height: 12px;
            width: 1px;
            position: absolute;
            left: -1px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--color2);
            z-index: 3;
            border-radius: 12px;
        }
        &:hover {
            color: var(--black);
        }
    }
}
.single-post .section-related-posts {
    background-color: var(--nature2);
    padding-block: clamp(36px, 4vw, 72px);
}
.tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, 0.1);
    background: var(--white);
    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;
}
@media only screen and (min-width: 768px) {
    .thumbnail-post-img {
        margin-bottom: 16px;
    }
}
#websima-cta-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-emphasis: gainsboro;
    gap: clamp(16px, 2vw, 32px);
    background: var(--nature2);
    border-radius: 32px;
    padding: clamp(24px, 2vw, 32px);
    margin-block: 16px;
    .cta-image {
        flex: unset;
    }
    .title-cta {
        margin-bottom: 16px;
        font-size: clamp(24px, 2vw, 32px);
        color: var(--color1);
        text-align: center;
    }
    .subtitle-cta {
        color: var(--gray);
        font-size: 16px;
        font-family: var(--Medium);
        margin-block: 16px;
        text-align: center;
    }
    .c-btn {
        margin-top: clamp(24px, 2vw, 32px)
    }
}
@media only screen and (min-width: 768px) {
    #websima-cta-content {
        flex-direction: row;
        .cta-image {
            flex: 0 0 45%;
        }
        .subtitle-cta,
        .title-cta {
            text-align: right;
        }
        .c-btn {
            justify-content: flex-start;
        }
    }
}
.mobile-access {
    position: relative;
    margin-bottom: 24px;
    .title-sidebar {
        min-height: 56px;
        display: flex;
        align-items: center;
        cursor: pointer;
        background: var(--nature2);
        border-radius: 16px;
        position: relative;
        padding: 16px;
        gap: 8px;
        i {
            font-size: 24px;
            color: var(--color1);
            transition: 0.4s;
        }
        &:after {
            content: "\e906";
            margin-right: auto;
            font-family: 'icomoon';
            width: 20px;
            height: 20px;
            color: var(--color1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            transition: 0.4s;
        }
        &.active:after {
            content: '\e908';
        }
    }
}
/****************************************/
/* --------------------
 comment Style
-------------------- */
.commentlist {
    margin-top: 32px;
    .icon-logo:before {
        content: "";
    }
    & .children {
        padding-right: clamp(54px, 12vw, 216px);
        position: relative;
        .isreply {
            position: absolute;
            width: 48px;
            height: 60px;
            border-radius: 100px;
            background: #DFEDDE;
            display: flex;
            align-items: center;
            justify-content: center;
            left: calc(100% + 8px);
            font-size: 20px;
            top: 0;
            color: #374957;
        }
    }
    & .comment_container {
        position: relative;
        background: white;
        border: 1px solid #DADADA;
        padding: clamp(24px, 2vw, 32px);
        border-radius: clamp(24px, 2vw, 32px);
        & .head-comment {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            position: relative;
            & .time_comment,
            & .name_comment {
                font-size: 16px;
                font-family: var(--Medium);
                display: flex;
                align-items: center;
                gap: 8px;
                color: var(--black);
                & i {
                    color: var(--color1);
                    font-size: 20px;
                }
                img {
                    max-width: clamp(90px, 6vw, 100px);
                }
            }
            & .time_comment i {
                margin-top: -4px;
            }
        }
        & p {
            font-size: clamp(14px, 2vw, 16px);
            font-family: var(--Medium);
            color: var(--gray);
            background: var(--nature2);
            border-radius: clamp(16px, 2vw, 24px);
            padding: 24px 24px 65px;
            position: relative;
        }
        & .comment-reply-link {
            position: absolute;
            left: 54px;
            bottom: clamp(48px, 3vw, 54px);
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--gray);
            i {
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
            }
            &:hover {
                color: var(--color1);
            }
        }
    }
    .byadmin .comment_container p {
        background: #DFEDDE;
    }
}
.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(12px, 2vw, 24px);
    font-size: 13px;
    align-items: center;
    background: #F8F8F9;
    min-height: 60px;
    margin-top: 24px;
}
.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: -42px;
    right: 14px;
    font-size: clamp(16px, 2vw, 18px);
    font-family: var(--Medium);
    z-index: 1;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #221E1F;
    line-height: 25px;
}
.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%;
}
.byadmin .name_comment i {
    color: var(--color1) !important;
}
.commentlist > .cat-parent > ul.children {
    padding-right: clamp(24px, 3vw, 38px);
    position: relative;
}
@media only screen and (min-width: 768px) {
    .single-share {
        flex-direction: row-reverse;
    }
    .comment-form-email,
    .comment-form-author {
        margin-bottom: 78px !important;
    }
}
/* --------------------
 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;
    }
    .thumbnail-post-img {
        padding-inline: 8px;
    }
    .single-share {
        margin: 12px auto 20px;
        width: min-content;
    }
    .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);
}
}

