#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 0 10px var(--primary_clr);
}
#cookie-banner p {
    margin: 0 0 10px;
}
#cookie-banner button {
    margin: 5px;
    padding: 8px 15px;
    cursor: pointer;
    background: var(--third_clr);
    color: white;
    outline: none;
    border: none;
    border-radius: 8px;
}
#cookie-banner .accept_cookie{
    background: var(--primary_clr);
    font-weight: 900;
    /*animation: size ease infinite 5s;*/
    /*scale: 1.1;*/
}
/*@keyframes size {*/
/*    50% {*/
/*        scale: 1.1;*/
/*    }*/
/*    100% {*/
/*        scale: 1;*/
/*    }*/
/*}*/

#cookie-banner button:hover {
    opacity: .75;
}
#cookie-banner a {
    color: var(--primary_clr);
}
#cookie-banner a:hover {
    color: var(--secondary_clr);
}

#cookie-settings {
    display: none;
    margin: 10px 0;
    text-align: left;
}
#cookie-settings label {
    display: block;
    margin: 5px 0;
}
#manage-cookies {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    background: #333;
    color: #fff;
    padding: 1rem;
    cursor: pointer;
    /*border-radius: 50px;*/
    clip-path: circle(40%);
    opacity: 0.1;
    transition: opacity 200ms ease;
}

#manage-cookies:hover {
    opacity: 1;
}


#manage-cookies img{
    width: 25px;
    height: auto;
}