.pricing_section {
    width: calc(100% - 16px);
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-plan-container {
    margin-bottom: 50px;
    margin-top: 8016pxpx;
}

.pricing-plans {
    border-radius: 10px;
    width: 100%;
}

.pricing-plans-row {
    display: flex;
    padding: 0 20px 0 0;
}

.weekly-pricing-plans,
.monthly-pricing-plans,
.annual-pricing-plans {
    display: flex;
    width: 100%;
    gap: 14px;
}

.plan-features-row {
    display: none;
}

.plan-features-column,
.plan-pricing-column {
    display: flex;
    flex-direction: column;
    width: 33%;
    min-height: 400px;
    position: relative;
}

.price-plans-head .title {
    color: #000;
    font-family: Roboto Slab;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.plans-listed {
    padding: 20px;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 94%;
    top: -22px;
}

.plans-listed,
.features-name {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 20px;
    border: 1px solid #dadada;
    background: #fff;
    margin: 0 0;
}

.plan-type-circle {
    background-image: url(/web_assets/frontend/images/icons/circle-checked.svg);
    background-repeat: no-repeat;
    background-position: left;
    height: 24px;
    width: 100%;
    max-width: 250px;
}

.plan-type-tick {
    background-image: url(/web_assets/frontend/images/icons/circle-tick.svg);
    background-repeat: no-repeat;
    background-position: left;
    height: 24px;
}

.plan-type-name span.text {
    color: #535353;
    font-family: Roboto Slab;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 30px;
    cursor: pointer;
}

.price-column-head {
    padding: 16px 16px 0 0;
    height: 120px;
    position: relative;
}

.plan-detail-parent {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 16px;
    border: 2px solid #fff0;
    transition: all 200ms;
    border-radius: 20px;
    border: 1px solid #dadada;
    background-color: #fafafa;
}

ul.features-ul li:last-child {
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 19px;
}

.adjust-plan-head,
.plan-detail-parent:hover .plan-detail-head {
    box-shadow: none !important;
    background: transparent !important;
}

.plan-detail-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
}

.plan-detail-parent:hover {
    border-radius: 20px;
    border: 1px solid #d4403a;
    background: #fdf5f5;
    box-shadow: 0 20px 50px 0 rgb(18 17 39 / 0.1);
}

.recommended {
    border-radius: 20px;
    border: 1px solid var(--Linear, #d4403a) !important;
    background: #fdf5f5;
}

.plan-detail-title {
    display: flex;
    flex-direction: column;
    color: #0A0909;
    font-family: Roboto Slab;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px !important;
    text-transform: uppercase;
}

.plan-detail-price {
    color: #0A0909;
    font-family: Roboto Slab;
    font-size: 32px;
    line-height: 38px;
    font-style: normal;
    font-weight: 600;

    .discounted-price,
    .original_price {
        font-weight: 600;
    }
}

.plan-detail-des {
    color: #757575;
    font-family: Roboto Slab;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.plan-access-action {
    width: 100%;
    height: 38px;
    flex-shrink: 0;
    border-radius: 24px;
    border: 1px solid #000;
    background: #000;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.plan-detail-head:hover .plan-access-action {
    border: 1px solid var(--color-primary) !important;
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.plan-access-action-featured {
    width: 224px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 24px;
    margin: 0 auto;
}

.plan-access-text {
    text-align: center;
    color: #fff;
}

.features-titles {
    padding-left: 20px;
}

.features-name {
    border: none;
    margin: 0;
}

.features-ul {
    list-style: none;
    width: 100%;
    padding: 0 22px 0 54px;
}

.features-ul li {
    margin: 0px;
    flex-shrink: 0;
    padding: 8px;
    position: relative;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 20px !important;
    text-transform: capitalize;
    list-style: url(/web_assets/frontend/images/icons/feature-check-gray.svg);
}

.features-ul li span {
    flex-shrink: 0;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
}

.pricing-plan-discount-tag {
    position: absolute;
    top: 10px;
    right: -26px;
    background-image: url('/web_assets/frontend/images/pricing-plan-discount-tag.png');
    background-size: cover;
    background-position: contain;
    background-repeat: no-repeat;
    transform: rotate(45deg);

    min-width: 100px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.3);
}

.original_price {
    text-decoration: line-through;
    font-size: 18px;
    color: #757575;
    font-family: Roboto Slab;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 10px;
}

@media only screen and (max-width: 1440px) {
    .plan-detail-head {
        width: 270px;
    }
}

@media only screen and (max-width: 1025px) {
    .pricing-plans-row {
        padding: 0 20px 0 20px;
    }

    .plan-detail-head {
        height: auto;
        top: -36px;
        width: auto;
    }

    .plan-access-action-featured,
    .plan-detail-title {
        font-size: 18px;
    }

    .plan-detail-price {
        font-size: 32px;
    }

    .plan-detail-des {
        font-size: 18px;
    }

    .plan-access-action-featured,
    .plan-access-action {
        width: 148px;
    }
}

@media only screen and (max-width: 1280px) {
    .pricing-plans-row {
        padding: 0 20px 0 20px;
    }

    .plan-detail-head {
        position: relative;
        top: 0;
        height: auto;
        width: auto;
    }

    .plan-pricing-column {
        width: 33.33%;
    }

    .plan-features-column {
        display: none;
    }

    .features-ul {
        margin-top: 30px;
    }

    .features-ul li span {
        height: auto;
        width: auto;
    }

    .plan-features-row {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
    }

    .price-column-head {
        display: none;
    }

    .plan-features-row .title {
        display: flex;
        color: #000;
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        justify-content: center;
    }

    .plans-listed-row {
        width: 100%;
        padding: 20px;
        display: flex;
        justify-content: space-around;
        gap: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    span.text-alt {
        margin-bottom: 4px;
    }

    .weekly-pricing-plans,
    .monthly-pricing-plans,
    .annual-pricing-plans {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 768px) {

    .weekly-pricing-plans,
    .monthly-pricing-plans,
    .annual-pricing-plans {
        flex-direction: column;
    }

    .plan-detail-head {
        height: auto;
        width: auto;
    }

    .plans-listed-row {
        flex-direction: column;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border-radius: 10px;
        border: 1px solid #dadada;
        background: #fff;
        padding: 20px;
        margin: 0 auto;
        width: 90%;
    }

    .pricing-plans-row {
        padding: 10px 0;
        flex-direction: column;
    }

    .plan-detail-parent {
        border: 1px solid #dadada;
        border-radius: 20px;
    }

    .plan-pricing-column {
        width: 90%;
        border-radius: 10px;
        margin: 0 auto;
        margin-top: 20px;
    }

    .plan-access-action,
    .plan-access-action-featured {
        width: 224px;
    }

    .plan-detail-head {
        margin-top: 36px;
    }

    .pricing_section .pricing_container .pricing_plans_container .custom__pricing__container {
        padding: 20px;
    }
}

@media only screen and (max-width: 321px) {

    .plan-access-action,
    .plan-access-action-featured {
        width: 180px;
    }
}

.pricing_section .btn-primary-gradient>a,
#api-plan .btn-primary-gradient>a {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

#web-plan .btn-primary-gradient:not(.recommended .btn-primary-gradient,
    .plan-pricing-column:hover .btn-primary-gradient,
    .custom__pricing__container .btn-primary-gradient) {
    background: #000 !important;
}

.pick-plan {
    font-size: 24px;
    line-height: 48px;
}

.plan-switches .btn {
    font-size: 16px;
    line-height: 22px;
    padding: 10px 14px;
}

.plan-switches .btn-primary-inverse.disabled {
    background: #f5f5f5 !important;
    color: #898989 !important;
    border-color: #f5f5f5 !important;

    &:hover {
        background-color: var(--color-white) !important;
        color: var(--color-primary) !important;
    }
}

.breakdown-customplan .custom-table {
    border: 1px solid #dadada;
    background-color: #fafafa;
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
}

.breakdown-customplan .custom-table .row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
}

.breakdown-customplan .custom-table .label {
    color: #000;
}

.breakdown-customplan .custom-table .value {
    color: #222;
    font-weight: 500;
}

.breakdown-customplan .custom-table .row:has([style*="display: none"]) {
    display: none;
}

.api-doc-container {
    display: flex;
    gap: 32px;
    align-items: center;
    background: #fafafa;
    border: 1px solid #dadada;
    padding: 8px;
    border-radius: 16px;
    margin-bottom: 80px;

    .api-doc-header {
        display: flex;
        flex-direction: column;
        gap: 32px;

        .api-doc-info .title {
            font-size: 24px;
            line-height: 48px;
            margin-left: 0;
        }

        .api-doc-info .description {
            font-size: 16px !important;
            line-height: 24px;
            margin-bottom: 0;
        }

        .api-doc-btn-container>a {
            font-size: 16px;
            line-height: 22px;
            padding: 8px 20px;
            border: 1px solid #acacac;
            display: inline-flex;
            gap: 10px;
            border-radius: 2rem;
            color: #0a0909;

            img {
                transform: rotate(-45deg);
                transition: all 0.2s ease-in-out;
            }

            &:hover {
                img {
                    transform: rotate(0deg);
                }
            }
        }
    }

    @media (width <=768px) {
        flex-direction: column;
        padding: 16px;
        gap: 16px;

        .api-doc-header {
            gap: 16px;

            .api-doc-info .title {
                font-size: 20px;
                line-height: 30px;
            }

            .api-doc-info .description {
                font-size: 14px !important;
                line-height: 20px;
            }
        }
    }
}

.pricing-action {
    padding: 8px 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 10px !important;
    background-color: #0A0909 !important;

    & .action-btn {
        font-size: 16px !important;
        line-height: 22px !important;
        font-weight: 400 !important;
    }
}

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

.dropdown-sec {
    padding: 0px 32px 12px 32px;

    strong {
        font-weight: 600 !important;
        font-size: 14px;
        line-height: 20px;
    }
}

.border-0 {
    border: 0px;
}

.bg-transparent {
    background: transparent;
}

.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: 35px;
        transform: translate(0, 50%);
    }

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

.coming-soon-text {
    background: #DADADA;
    border-radius: 4px;
    padding: 2px 4px;
    min-width: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 16px !important;
}

.compare-badge-container{
    display: flex;
    gap: 10px;
    align-items: center;
}

.new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f59a3d;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 10px;
    font-weight: 600;
    width: 45px;
    height: 20px;
    text-transform: uppercase;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    animation: glowFade 1.8s infinite;
}

@keyframes glowFade {
    0% {
        box-shadow: 0 0 0 0px rgba(244 ,2, 2, 1);
    }
    100% {
        box-shadow: 0 0 0 5px rgba(244,2,2,0.1);
    }
}
