/* register page css */

:root {
    --sec-p: 16px;
    --grid-cols-3-1: 1;
    --grid-cols-4-2: 2;
    --md-flex-grid: grid;
    --md-order-2: 2;
    --md-gap-32-12: 12px;
    --md-center-start: start;
    --sm-grid-column-1-2: span 2 / span 2;
    --md-col-gap: 0;
}

@media screen and (min-width: 992px) {
    :root {
        --sec-p: 28px;
        --grid-cols-3-1: 3;
        --grid-cols-4-2: 4;
        --md-flex-grid: flex;
        --md-order-2: unset;
        --md-gap-32-12: 32px;
        --md-center-start: center;
        --md-col-gap: 40px;
    }
}

@media screen and (min-width: 420px) {
    :root {
        --sm-grid-column-1-2: span 1 / span 1;
    }
}

#register-page {
    margin-top: 24px;
    text-align: center;

    .container-fluid {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto;
        padding: 12px var(--sec-p);
        display: grid;
        justify-items: center;
        justify-content: center;
    }

    .register-section {
        h1 {
            margin-bottom: 10px;
            font-size: 40px;
            font-weight: 700;
            line-height: 50px;
            color: #272d3c;
        }

        p.h1_p {
            font-size: 18px;
            font-weight: 400;
            line-height: 30px;
        }

        .pricing {
            margin: 70px auto;
            display: var(--md-flex-grid);
            flex-wrap: wrap;
            column-gap: var(--md-col-gap);
            row-gap: 40px;
            grid-template-columns: repeat(var(--grid-cols-3-1), minmax(0, 1fr));

            .pre {
                display: grid;
                gap: 24px;
                grid-column: span 2 / span 2;
                text-align: left;

                .item {
                    position: relative;
                    padding: 24px 25px;
                    /* display: var(--md-flex-grid); */
                    display: flex;
                    justify-content: space-between !important;
                    align-items: center !important;
                    flex-wrap: wrap;
                    /* grid-template-columns: repeat(var(--grid-cols-4-2),
                            minmax(0, 1fr)); */
                    gap: var(--md-gap-32-12);
                    align-items: var(--md-center-start);
                    padding: 19px 24px;
                    border-radius: 12px;
                    border: 2px solid transparent;
                    justify-content: space-between;
                    cursor: pointer;

                    input {
                        height: 18px;
                        width: 18px;
                        position: absolute;
                        margin: 22px 0;
                        left: 28px;
                    }

                    input[type="radio"] {
                        accent-color: #007AFF !important;
                        margin: 0px;
                        margin-bottom: 13px;
                    }

                    h3 {
                        font-size: 20px;
                        font-weight: 700;
                        line-height: 24px;
                        min-width: 118px;
                        color: #000000;
                        display: grid;
                        margin-left: 32px;
                        width: 200px;
                        grid-column: var(--sm-grid-column-1-2);

                        span {
                            font-size: 14px;
                            font-weight: 400;
                            line-height: 20px;
                            /* min-height: 40px; */
                            max-height: fit-content;
                            color: #444c61;
                        }
                    }

                    .list {
                        display: flex;
                    }

                    ul {
                        margin-top: 8px;
                        display: grid;
                        gap: 6px;

                        li {
                            list-style-type: none;
                            display: flex;
                            align-items: center;
                            font-size: 14px;
                            font-weight: 400;
                            line-height: 20px;
                            color: #000000;
                            position: relative;
                            margin-left: 28px;
                        }
                    }

                    ul li::before {
                        content: url(../images/check.svg);
                        position: absolute;
                        left: -24px;
                    }

                    p {
                        font-size: 32px;
                        font-weight: 700;
                        line-height: 40px;
                        color: #272d3c;
                        display: flex;
                        border-left: 1px solid #e2e2e2;
                        padding: 0 18px;
                        min-width: 150px;
                        max-width: fit-content;

                        sup {
                            font-size: 16px;
                            font-weight: 700;
                            line-height: 22px;
                            margin-bottom: auto;
                        }

                        sub {
                            font-size: 16px;
                            font-weight: 400;
                            line-height: 30px;
                            margin-top: auto;
                        }
                    }
                }

                .item:hover,
                .item.active {
                    background: #fbfbfe;
                }

                .unlock {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    gap: 24px;
                    min-height: 72px;

                    p.info {
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 18px;
                        display: flex;
                        align-items: center;
                        gap: 6px;
                        color: #9b9faa !important;
                    }

                    button {
                        padding: 8px 24px 8px 24px;
                        border-radius: 4px;
                        background: #007aff;
                        color: #fff;
                        margin: auto;
                        margin-right: 0;
                        border: 0;
                        outline: 0;
                        cursor: pointer;
                        height: 40px;
                        min-width: 180px;
                        max-width: fit-content;
                        font-size: 16px;
                    }

                    button:hover {
                        background: #0057ef;
                    }
                }
            }

            .free {
                padding: 32px 48px;
                display: grid;
                align-items: center;
                gap: 24px;
                width: 100%;
                max-width: 343px;
                padding: 32px 48px 32px 48px;
                border-radius: 16px;
                background: #fff;
                /* margin-bottom: auto; */

                h3 {
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 32px;
                    color: #000000;
                    display: grid;

                    span {
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 20px;
                        color: #444c61;
                    }
                }

                p {
                    font-size: 40px;
                    font-weight: 700;
                    line-height: 50px;
                    color: #272d3c;
                    display: flex;
                    margin: auto;

                    sup {
                        font-size: 16px;
                        font-weight: 700;
                        line-height: 22px;
                        margin-bottom: auto;
                    }

                    sub {
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 30px;
                        margin-top: auto;
                    }
                }

                a {
                    padding: 8px 24px 8px 24px;
                    border-radius: 4px;
                    border: 1px solid #e2e2e2;
                    background: #ffffff;
                    color: #000000;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 24px;
                }

                a:hover {
                    background: #fbfbfd;
                }

                ul li {
                    list-style-type: none;
                    display: flex;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 20px;
                    color: #000000;
                    position: relative;
                    margin-left: 24px;
                    margin-bottom: 10px;
                }

                ul li::before {
                    content: url(../images/check.svg);
                    position: absolute;
                    left: -24px;
                }

                ul.gray li::before {
                    content: url(../images/crosss.svg);
                    position: absolute;
                    left: -24px;
                }
            }
        }
    }
}

.register-page-ul {
    display: flex !important;
    flex-direction: column;
}

.register-page-ul li {
    width: fit-content !important;
}

.register-label-active {
    border: 2px solid #007AFF !important;
}
#plan-customization{
    box-sizing: border-box;
    background-color: #fff;
}


@media(max-width: 670px) {
    .register-plan-price {
        border: none !important;
    }

    .w-100-mobile {
        width: 100% !important;
    }
}














.switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

/* Hide default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

/* Track */
.slider {
    position: relative;
    width: 40px;
    height: 22px;
    background-color: #ccc;
    border-radius: 999px;
    transition: background-color 0.3s;
}

.slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 2px;
    top: 2px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.switch input:checked+.slider {
    background-color: #007AFF;
}

.switch input:checked+.slider::before {
    transform: translateX(18px);
}

.switch-label {
    color: black;
    /* match your dark bg */
    font-size: 14px;
}

.switch-label .switch-label {
    color: black;
}

.vertically-content-center {
    display: flex !important;
    align-items: center !important;
}

.vertically-content-center-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vertically-content-center-between p {
    font-weight: 600;
    font-size: 22px;
    line-height: 34px;

}

.bg-secondary {
    background: #f7f7fc;
}
.plan-description-trim{
    overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

}