
.wm_free_plan_popup{
    position: fixed;
    bottom: 15px;
    right: 15px;
    max-width: 350px;
    width: 100%;
    background: #fff;
    border: 1px solid #dad9da;
    border-radius: 4px;
    max-height: max-content;
    z-index: 9999;
}
.wm_free_plan_popup_header{
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #dad9da;
    align-items: center;
}
.wm_free_plan_popup_header_logo{
    line-height: 0px;
}
.wm_free_plan_popup_header_logo img{
    max-height: 40px;
    position: relative;
    top: 3px;
}
.wm_free_plan_popup_header_close{
    line-height: 0px;
    cursor: pointer;
    color: #2F3337;
}
.wm_free_plan_popup_body_wrap{
    padding: 20px 15px;
    text-align: center;
    font-family: 'Poppins';
    color: #2F3337;
}
.wm_free_plan_popup_heading{
    font-size: 30px;
    text-transform: uppercase;
    line-height: 35px;
    font-weight: 600;
}
.wm_free_plan_popup_heading_green{
    color: #00bf63;
}
.wm_free_plan_popup_cta{
    margin-top: 25px;
}
.wm_free_plan_popup_cta a{
    display: inline-flex;
    align-items: center;
    color: #2F3337;
    border: 1px solid #2F3337;
    padding: 8px 18px 8px 22px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 40px;
    text-decoration: none;
    gap: 5px;
    transition: 0.3s;
}
.wm_free_plan_popup_cta a:hover{
    color: #fff;
    border-color: #397bff;
    background: #397bff;
}
@media(max-width: 767px){
    .wm_free_plan_popup{
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}