.rgpd-info_bar{
    position: fixed;
    bottom : 0;
    left : 0;
    width : 100%;
    padding: 20px 10vw;
    z-index: 101;
    background : rgba(0,0,0,0.5);
    color : white;
    display : flex;
    align-items: center;
    transition: all ease 0.4s;
    transform: translateY(100%);
    box-sizing: border-box;
}

.rgpd-info_bar-open{
    transform: translateY(0%);
}

.rgpd-close{
    position: absolute;
    top : 20px;
    right : 20px;
    color :white;
    height : 20px;
    width : 20px;
    cursor: pointer;
}

.rgpd-close div{
    height :20px;
    width : 1px;
    background : white;
    position: absolute;
    transform-origin: center;
    left: 50%;
}
.rgpd-close div:first-child{
    transform: rotate(45deg);
}
.rgpd-close div:last-child{
    transform: rotate(-45deg);
}

.rgpd-text{
    width : 60%;
    font : normal 14px/150% "Arial";
}

.rgpd-text a {
    color : white;
    text-decoration: underline;
}

.rgpd-buttons-wrapper{
    display: flex;
    width: 40%;
    padding-left: 30px;
}

.rgpd-button{
    font-size: 14px;
    line-height: 20px;
    color: black;
    font-weight: 700;
    text-decoration: none;
    border-radius: 150px;
    padding: 10px 30px 8px 30px;
    transition: all .3s ease;
    border: none;
    display: inline-block;
    margin: 3px 4px;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    background: white;
    font-family: "DIN Next W02 Medium";
}

.rgpd-button + .rgpd-button{
    margin-left: 10px;
}

@media (max-width: 765px){
    .rgpd-info_bar{
        flex-direction: column;
        padding : 40px;
    }
    .rgpd-text{
        width: 100%;
    }
    .rgpd-buttons-wrapper{
        margin-top: 20px;
        padding-left: 0px;
    }
    .rgpd-close{
        right : 10px;
        top : 10px;
    }
    .rgpd-buttons-wrapper{
        width : 100%;
        justify-content: center;
    }
}

@media (max-width: 450px){
    .rgpd-info_bar{
        padding : 40px 20px 20px 20px;
    }
 
}