
.welcome_popup{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 110;
    transition: all 200ms ease;
    font-family: "Open Sans Hebrew" , sans-serif;
    letter-spacing: normal;
    line-height: 1.42857;
}

.welcome_popup.open {
    opacity: 1;
    pointer-events: all;
}

.welcome_popup.show_only_desktop.open{
    opacity: 0;
    pointer-events: none;
}

.welcome_popup .popup_content{
    position: relative;
    width: 90vw;
    padding: 30px 20px 20px;
    background: #ffffff;
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.3);
    font-size: 16px;
    max-width: min(584px,100%);
}

.welcome_popup .welcome_close_btn{
    position: absolute;
    left: 10px;
    top: 10px;
    width: 15px;
    cursor: pointer;
}

.welcome_popup .title{
    color: #ff7d19;
    font-size: 27px;
    text-align: center;
    margin-bottom: 20px;
}

.welcome_popup .text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.welcome_popup .popup_btn{
    font-weight: 700;
    font-size: 20px;
    background: #10a831;
    max-width: 100%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0 auto;
    box-shadow: 0 1px 7px 1px rgba(0,0,0,0.3);
    cursor: pointer;
}

.welcome_popup .popup_btn a:active,
.welcome_popup .popup_btn a{
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

@media(min-width: 768px){
    .welcome_popup.show_only_mobile.open {
        opacity: 0;
        pointer-events: none;
    }

    .welcome_popup.show_only_desktop.open{
        opacity: 1;
        pointer-events: all;
    }

    .welcome_popup .popup_content{
        position: relative;
        width: 90vw;
        padding: 59px 91px 42px;
        max-width: 584px;
    }

    .welcome_popup .title{
        font-size: 30px;
        margin-bottom: 28px;
    }

    .welcome_popup .text{
        font-size: 21px;
        margin-bottom: 28px;
    }

    .welcome_popup .popup_btn{
        font-size: 30px;
    }

    .welcome_popup .welcome_close_btn{
        width: 19px;
    }
}