.full__div {
    display: flex;
    gap: 10px;
    padding: 10px 0px;
    margin-top: 15px;
    border-radius: 20px;
}

.plan_div {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #ecf0f5;
    padding: 20px;
}

.grad_div {
    border-radius: 26px;
    border: 1px solid #ecf0f5;
    margin: auto;
    display: flex;
    flex-direction: column;
    width: 33%;
    padding: 10px;
    background: linear-gradient(180deg, #f6f6f6 0%, #ffffff 100%);
}

.is_popular {
    background: linear-gradient(180deg, #e6ecff 0%, #ffffff 100%) !important;
}

.top_img_div {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 20px;
}

.top_img_div h4{
    font-size: 20px;
    line-height: 32px !important;
    color: #253A53;
    font-weight: bold !important;
}

.plan_div > ul > li {
    list-style-type: none;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #253A53;
}

.price_div {
    display: flex;
    gap: 8px;
    border-top: 1px solid #ECF0F5;
    padding: 26px 0px 0px 0;
    align-items: baseline;
    justify-content: space-between;
}

.price_div h3 {
    font-family: Roboto;
    font-size: 34px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    color: #27336d;
}

.price_div p {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #8B899F;
}

.tick_class {
    margin-bottom: -4px;
    margin-right: 8px;
}

.premium_btn {
    padding: 8px;
    border-radius: 8px;
    background: #F5F7FD;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    /* text-align: left; */
    transition: all 0.2s ease-in-out;
    color: #253A53;
}

.premium_btn:hover {
    background: #3761ed;
    color: #fff;
    cursor: pointer;
}

.blue_btn {
    background: #3761ed !important;
    color: #fff !important;
}

.price_digit {
    display: flex;
    align-items: baseline;
}

.register_btn {
    background: #3761ed;
    color: #fff;
    padding: 10px 5px;
    width: 320px;
    margin: 10px 0;
    cursor: pointer;
}

.tab {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 10px;
}

.tablinks {
    background: #f5f7fd;
    padding: 3px 16px;
    border-radius: 8px;
    border: none;
    color: #8b899f;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    float: none;
    cursor: pointer;
}

.active_tabname {
    color: #fff;
    background: #1e1e1e;
}

.show_960,
.mobile_div {
    display: none;
}

@media (width < 1040px) {
    .price_div {
        flex-wrap: wrap;
    }
}

@media (width > 960px) {
    .show_960,
    .mobile_div {
        display: none !important;
    }
}

@media (width <= 960px) {
    .full__div {
        flex-direction: column;
    }
    .plan_div{
        padding: 8px;
    }
    .grad_div {
        width: 100%;
    }
    .show_960,
    .mobile_div {
        display: block;
    }
    .desktop_div {
        display: none !important;
    }
    .premium_btn {
        padding: 8px 16px;
    }
}

@media (max-width: 590px) {
    .popup-signin-signup,.register_btn,.input-container input{
        width: 100%;
    }

}