
/*See More Button in Pricing Card*/

.see_more_btn__ {
    margin-top: 16px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.see_more_btn__:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}


.plan_card__.popular__ .see_more_btn__ {
    border-color: rgb(6 140 75);
    color: #068c4b;
}

.plan_card__.popular__ .see_more_btn__:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}



.modal-backdrop{
    background-color: #000000 !important;
    opacity: 0.5 !important;
}
