@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

.cookie_pos{
    position: fixed;
    z-index: 100001;
    right: 3%;
    bottom: 5%;
}

.cookie{
    width: 250px;
    height: 100%;
    padding: 15px;
    border-radius: 3%;
    background-color: rgba(100,100,100,0.9);
}

.cookie p{
    font-family: 'Roboto', sans-serif;
    color: rgb(255,255,255);
    margin-top: 0;
}

.cookie a{
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: rgb(255,255,255);
}

.cookie_button{
    display: flex;
    justify-content: center;
    background-color: rgb(255,255,255);
    color: rgb(75,75,75) !important;
    margin-top: 15px;
    padding: 10px 0;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.cookie_button:hover{
    background-color: rgb(175,175,175);
}