.upgrade_popup_wrpr {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(90, 90, 90, 0.3);
    font-family: 'Montserrat', sans-serif;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all ease-in-out;
}
.upgrade_popup_wrpr.active {
    opacity: 1;
    visibility: visible;
}
.upgrade_popup_inner {
    height: 100vh;
    overflow-y: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.upgrade_popup {
    max-width: 522px;
    width: 100%;
    background: #FCFCFC;
    border-radius: 10px;
    margin: auto;
    position: relative;
}
.upgrade_popup_close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 15px;
}
.upgrade_popup .popup_body {
    text-align: center;
    padding: 25px;
}
.upgrade_popup .popup_body h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 30px;
    color: #8558FF;
    margin-bottom: 10px;
}
.upgrade_popup .popup_body p {
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    color: #606060;
}
.upgrade_popup .popup_body p b {
    font-weight: bold;
}
.upgrade_popup .popup_body p+p {
    margin-top: 10px;
}
.upgrade_popup .popup_footer {
    padding: 25px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #EAEBF2;
    color: #FFFFFF;
}
.upgrade_popup_btn {
    display: inline-block;
    background: linear-gradient(79.95deg, #4298E8 0%, #8044DB 100%), linear-gradient(79.95deg, #ED6E76 0%, #F2AA6F 100%), linear-gradient(266.07deg, #61DFAA -19.24%, #2EB9B7 75.34%);
    box-shadow: 0px 4px 8px rgba(35, 28, 75, 0.15);
    border-radius: 5px;
    padding: 14px 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
}