.container,
.faq_section_container {
    margin: 0 auto 32px !important;
    max-width: 1200px;
}

.pricing-box {
    background-color: #fff;
    box-shadow: 0px 20px 30px 0px #1211270D;
    border-radius: 24px;
    padding: 32px;
}

.pricing-header>strong {
    display: inline-block;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.pricing-header>p {
    color: #5E636E;
    font-size: 16px !important;
    line-height: 1.5;
}

.pricing-footer {
    font-size: 14px;
    line-height: 1.6;
    color: #5E636E;
}

.pricing-features {
    margin: 16px 0;
    .pricing-list {
        list-style: url(/web_assets/frontend/images/icons/feature-check.svg);
        padding-left: 24px;
    }
    .pricing-list.free > li:nth-child(n+3) {
        list-style: url(/web_assets/frontend/images/icons/feature-crossmark.svg);
    }
}

.pricing-container .btn {
    line-height: 22px;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}

.pricing-lists {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 16px 0 42px;

    .pricing-list {
        display: flex;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #DADADA;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0px 3px 35px 3px #0000000D;
        

        p {
            margin: 0;
        }

        .pricing-list-header {
            display: flex;
            align-items: center;
            gap: 16px;

            strong {
                font-weight: 600;
                font-size: 20px;
                line-height: 32px;
            }

            p {
                font-weight: 400;
                font-size: 14px !important;
                line-height: 20px;
            }

            .checkbox {
                width: 24px;
                height: 24px;
                border-radius: 2rem;
                border: 3px solid #DADADA;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                img {
                    display: none;
                }
            }
        }

        .pricing-list-footer .price {
            display: block;
            text-align: center;
            font-size: 24px;
            font-weight: 600;
        }

        .pricing-list-footer .period {
            color: #ACACAC;
        }

        &:hover,
        &.active {
            border-color: #D4403A;
            background-color: #FDF5F5;
            cursor: pointer;

            &.active .checkbox {
                border-color: #D4403A;
                background-color: #D4403A;
                img {
                    display: block;
                }
            }
        }
    }
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 8px;
}

.cursor-pointer {
    cursor: pointer;
}

.justify-between{
    justify-content: space-between;
}

.leading-0 {
    line-height: 0;
}

[data-tooltip] {
    z-index: 1;
}

[data-tooltip]:hover {
    position: relative;
    cursor: pointer;

    &::after {
        content: attr(data-tooltip);
        position: absolute;
        font-size: 12px;
        line-height: 16px;
        font-weight: 400;
        color: #fff;
        background: #0A0909;
        width: max-content;
        bottom: calc(100% + 6px);
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0px 4px 8px 0px #00000014;
        border-radius: 8px;
        display: inline-block;
        padding: 8px;
        z-index: 9999;
    }

    &::before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #0A0909;
        bottom: calc(100%);
        left: 50%;
        transform: translateX(-50%);
    }
}

.data-info-icon[data-tooltip]:hover {
    &::after {
        bottom: 50%;
        left: 25px;
        transform: translate(0, 50%);
    }

    &::before {
        bottom: calc(50% - 6px);
        left: 21px;
        transform: translate(-50%, 0);
        border-right-color: #0A0909;
        border-top-color: transparent;
        border-left-color: transparent;
        border-bottom: 6px solid transparent;
    }
}

.special-heading {
    font-weight: 600 !important;
    font-size: 14px;
    line-height: 20px;
    padding: 0px 0px 12px 0px;
}


.pricing-list{
    li,span{
        color: #000;
        font-size: 16px !important;
        font-style: normal;
        font-weight: 400 !important;
        line-height: 24px !important;
        text-transform: capitalize;
    }
}