.tabs-box{
    border-radius: 999px;
    padding: 4px;
    background: #F5F6FF;
    border: 1px solid var(--lightgray);
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: 340px;
}
.tab-btn{
    width: 100%;
    border-radius: 999px;
    gap: 4px;
    padding: 8px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    transition: all .1s ease-in-out;
}
.tab-btn.active{
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px #00000029;
}
.btn-tag{
    padding: 2px 6px;
    border-radius: 99px;
    background: var(--orange);
    color: white;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    line-height: 16px;
}
.plan-boxs>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    border-radius: 25px;
    padding-bottom: 32px;
    margin-top: 30px;
    gap: 2rem;
}
.plan-box{
    background-color: white;
    box-shadow: 0px 15px 75px 0px #8067B733;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    padding: 32px;
    width: calc(100% / 2);
    min-width: 310px;
    max-width: 420px;
}
.active-plan-box {
    background: var(--darkblue) !important;
    box-shadow: 0px 15px 75px 0px #8067B733;
}
.table-box{
    padding: 32px;
}
.table-title{
    text-align: center;
    margin-bottom: 24px;
}
table{
    max-width: 800px;
    margin: auto;
    background-color: white;
    box-shadow: 0px 15px 75px 0px #8067B733;
    border-radius: 16px;
    width: 100%;
}
th{
    text-align: left;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}
td{
    text-align: left;
    padding: 16px 24px;
    border-top: 1px solid var(--lightgray);
    font-size: 16px;
    line-height: 24px;
    min-width: 200px;
}
tr>td:first-child{
    width: 100%;
}
.discout{
    font-weight: 500;
}
.plan-feat{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
@media screen and (max-width: 600px) {
    td{
        min-width: unset;
        padding: 12px 24px;
        width: 100%;
    }
    td:first-child{
        width: auto !important;
    }
    .table-box{
        padding: 0;
    }
}
@media screen and (max-width: 375px) {
    .tab-btn{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}
