@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
*{font-family: 'Roboto', sans-serif;margin:0;}

.cookie_bg{
    position: fixed;
    z-index: 10000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(20,20,20,0.9);
    width: 100%;
    padding: 25px 0px;
}

.cookie_left, .cookie_right{
    margin: 0px 25px;
}

.cookie p, a{
    color: rgb(255,255,255);
}

.cookie a{
    font-weight: bold;
    text-decoration: none;
}

.cookie_right a{
    background-color: rgb(255,255,255);
    color: rgb(20,20,20);
    padding: 10px;
    border-radius: 5px;
    transition: all .3s ease;
}

.cookie_right a:hover{
    background-color: rgba(20,20,20,0.9);
    border: solid .5px rgb(255,255,255);
    color: rgb(255,255,255);
}

@media screen and (min-width: 768px) and (max-width: 1024px){
    
    .cookie_bg{
        display: block;
    }
    .cookie_right{
        margin-top: 25px; 
    }
}

@media screen and (max-width: 767px){
    
    .cookie_bg{
        display: block;
    }
    .cookie_right{
        margin-top: 25px; 
    }
    
}