.cookie {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    bottom: 0;
    width: 100%;
    background-color: #6c2b87;
    z-index: 9999;
    font-weight: 600;
    font-size: .85rem;
    transform: translateY(0);
    transition: transform 2s;
}

.cookie-remove {
    transform: translateY(100%);
}

.cookie-none{
    display: none;
}

.cookie p {
    margin: 0;
    color: #fff;
}

.cookie button{
    background-color: #fff;
    padding: .25rem .75rem;
    border: 1px solid #fff;
    border-radius: 5px;
    font-weight: bold;
    transition: .2s ease-in-out;
}

.cookie button:hover{
    background-color: #e9e9e9;
    border: 1px solid #f1f1f1;
}

.cookie a{
    text-decoration: underline;
}

.cookie a:hover{
    color: #fff;
}