.plan-card-div .plan-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 25px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    background-color: #fff !important;
    box-sizing: border-box;
}

.plan-card-div .plan-card.active {
    border-color: #fff;
}

.plan-card.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 10px;
    padding: 3px;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    box-sizing: border-box;
}

.plan-card-div .plan-card .select-license-plan {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-card-div .plan-card .select-license-plan .plan-month {
    font-size: 22px;
    font-weight: 600;
    color: #222328;
    margin-bottom: 0;
}

.plan-card-div .plan-card .select-license-plan .plan-discount {
    margin-bottom: 0;
    padding: 5px 12px;
    border-radius: 100px;
    background-color: #ecf9f1;
    font-size: 16px;
    font-weight: 600;
    color: #4ebb80;
}

.plan-card-div .plan-card .plan-price {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
    background: -webkit-linear-gradient(326deg, #467efe 40.83%, #7ed7fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-card-div .plan-card .plan-price span {
    font-size: 16px;
    font-weight: 500;
}

.plan-card-div .plan-card .select-license-plan .radio {
    width: 30px;
    height: 30px;
    border: 1px solid #e7e7e7;
}

.plan-card-div .plan-card .select-license-plan .radio:checked {
    position: relative;
    overflow: hidden;
}

.plan-card-div .plan-card .select-license-plan .radio:checked::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('../../images/image/license-plan-checked.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}