.plan__card {
    box-shadow: rgba(120, 141, 161, 0.2) 0px 8px 24px;
    border: 1px solid rgb(231, 231, 231);

    &:hover,
    &.active__card {
        background-color: #9334ea0d;
        border: 1px solid #9234ea4d;
        /* bg-[#9334ea0d] */
        /* border: 1px solid #9334ea;
        box-shadow: #9334ea 0 10px 20px -10px; */

        ul li {
            color: #000;
        }

        button {
            background-color: var(--primary-color);
            color: #fff !important;
            box-shadow: #9334ea 0 10px 20px -10px;
        }
    }
}


.login__popup__wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;

    .login__popup {
        background-color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 30px 20px;
        border-radius: 12px;

        .close__login {
            width: 15px;
            position: absolute;
            right: 20px;
            top: 20px;
            cursor: pointer;
            transition: 0.1s ease;

            &:hover {
                transform: scale(1.1);
            }
        }
    }
}

.query__card__wrapper,
.popup__card__wrapper {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;

    .popup__card {
        background: #fff;
        max-width: 400px;
        width: 90%;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        padding: 10px;
    }

    .popup_close {
        width: 20px;
        top: 25px;
        position: absolute;
        right: 25px;
        cursor: pointer;
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7480%) hue-rotate(104deg) brightness(110%)
            contrast(110%);
    }

    .popup_img {
        padding: 30px 0px;
        background-color: var(--cream-color);
        width: 100%;
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;

        img {
            max-width: 120px;
            margin: auto;
        }
    }

    > div > span {
        font-size: 28px;
        font-weight: 600;
        margin-top: 30px;
    }

    .popup_alert {
        font-size: 18px;
        margin: auto;
        margin-bottom: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start !important;

        p {
            text-align: left !important;
        }
    }
}

.query__card__wrapper {
    .popup__card {
        max-width: 500px !important;
    }
}


