#popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 7777;
    display: none;
    top: 0;
    left: 0;
    bottom: 0;
}
#popup.absolute{
    position: absolute;
}
.popup_ra{
    width: 940px;
    height: 340px;
    position: absolute;
    left: calc(50% - 470px);
    top: calc(50% - 170px);
    background-color: #fff;
    z-index: 9999;
    text-align: center;
}

.popup_ra .relative{
    position: relative;
    width: 100%;
    height: 100%;
}

.popup_ra .line-1{
    color: #282828;
    font-weight: bold;
    font-size: 30px;
    position: absolute;
    top: calc(50% - 80px);
    width: 100%;
    text-align: center;
}

.popup_ra .line-2{
    color: #282828;
    font-weight: 300;
    font-size: 18px;
    position: absolute;
    top: calc(50% - 25px);
    width: 100%;
    text-align: center;
}

.popup_ra .buttons-wrapper{
    position: absolute;
    top: calc(50% + 25px);
    width: 50%;
    left: 25%;
    text-align: justify;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.popup_ra .buttons-wrapper a{
    min-width: 190px;
    text-align: center;
}

@media screen and (max-width: 800px){
    .popup_ra {
        width: 98%;
        height: 50vh;
        position: absolute;
        left: 1%;
        top: 20px;
    }

    .popup_ra .buttons-wrapper {
        top: calc(50% + 25px);
        width: 90%;
        left: 5%;
    }
    .popup_ra .buttons-wrapper a{
        min-width: 120px;

    }
    .popup_ra .line-1{
        top: calc(50% - 115px);
        font-size: 25px;
    }
    .popup_ra .buttons-wrapper{
        top: calc(50% + 60px);
    }
}