.cookie_pos{
    position: fixed;
    z-index: 100001;
    right: 0;
    bottom: 0;
    max-width: 275px;
}

.cookie{
    font-family: sans-serif;
    padding: 20px;
    background-color: rgba(240,240,240,0.8);
    border-top-left-radius: 5px;
}

.cookie p{
    color: rgb(75,75,75);
    margin-top: 0;
}

.cookie a{
    cursor: pointer;
    font-weight: 600;
    text-decoration: none !important;
    color: rgb(50,50,50);
}

.cookie_button{
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background-color: rgb(210,210,210);
    transition: all 0.25s ease;
}

.cookie_button:hover{
    color: rgb(255,255,255) !important;
    background-color: rgb(50,50,50);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.separate_line{
    width: 100%;
    height: 1px;
    margin: 10px 0;
    background-color: rgb(50,50,50);
}