.plan_upgrade_popup {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-header {
    width: 100%;
    justify-content: space-between;
}

.close {
    cursor: pointer;
}
.annual-price-per-month{
    font-size: 14px;
    line-height:20px;
    font-weight: 400 !important;
    color:#333333;
    & span{
        font-weight: 600 !important;
    }
}
.modal-content {
    background-color: #FFFFFF;
    margin: 10% auto;
    padding: 20px;
    border: none;
    width: 450px;
    text-align: center;
    height: max-content;
    margin: 10px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    z-index: 99999;
}

.head-1 {
    flex-direction: column;
    align-items: baseline;
    gap: 0.5rem;
}

.modal-head {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #333333;
}

.modal-des {
    font-weight: 400;
    font-size: 16px !important;
    line-height: 24px;
    white-space: normal;
    color: #333333;
    text-align: left;
}

/* .tabs {
    background: #EDEDED;
    width: max-content;
    border-radius: 35px;
    padding: 4px;
    gap: 10px;
    display: flex;
} */

.tablinks {
    padding: 5px 15px;
    border-radius: 35px;
    color: #101010;
    font-size: 14px;
    line-height: 20px;
    border: none;
    background: no-repeat;
    cursor: pointer;
}

.tablinks.active {
    background: #FFFFFF !important;
}

.tabcontent {
    width: 100%;
    justify-content: space-between;
    display: flex;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.planPremiumPopup {
    margin-bottom: 10px;
    flex: 1;
    border: 1px solid #E5E5E5;
    border-radius: 15px;
    display: flex;
    cursor: pointer;
    min-width: 160px;
}

.planPremiumPopup label {
    color: #101010;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    width: 100%;
    position: relative;
    gap: 8px;
    padding: 16px;
    flex-direction: column;
    line-height: 20px;
    align-items: baseline;
    cursor: pointer;
    justify-content: flex-start;

    & .type {
        font-size: 24px;
        font-weight: 700;
        color: #101010;
        display: flex;
            gap: 5px;
            align-items: center;
    }
}

.planPremiumPopup:hover {
    border: 1px solid #bebcbc;
}

.planPremiumPopup input[type="radio"]:checked+label,
.planPremiumPopup.active {
    border: 1px solid #101010 !important;
    position: relative;
}

.planPremiumPopup.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #fff 0%, #80ffe0 17.92%, #bad0ff 32.22%, #b797fb 51.04%, #fcc1ac 69.69%, #fbeba6 85.31%, #fff 100%);
    z-index: 999;
    filter: blur(5px);
    transition: all 0.5s ease;
    opacity: 1;
}

.planPremiumPopup .custom-radio-label::before {
    content: '';
    position: absolute;
    right: 30px;
    top: 23%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #EFEFEF;
}

.planPremiumPopup .custom-radio-label::after {
    content: '';
    position: absolute;
    top: 23%;
    right: 30px;
    margin-right: 3px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image:url('../../../frontend/img/popup-tick.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.3s ease;
}

.planPremiumPopup.active .custom-radio-label::before {
    background-color: #101010 !important;
    border: none !important;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    & a:last-child {
        padding: 6px 32px !important;
    }
}

.modal-footer a:first-child {
    font-size: 16px;
    line-height: 24px;
    color: #8D8F94;
}

@media (max-width: 700px) {

    .tabcontent,
    .modal-footer {
        flex-direction: column
    }

    .modal-footer {
        gap: 0.5rem;
    }

}
.discount-tag{
    background: linear-gradient(180deg, #FF8257 50%, #F7D64D 158.33%);
    padding: 3px 6px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    border-radius: 99px;
}
