
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: none;
    width: 260px;
    height: 260px;
}
#cookie-accept, #cookie-refuse {
    padding: 5px;
    background-color: #d8a332;
    border: none;
    border-radius: 3px;
    color: rgb(124, 60, 7);
    font-weight: 800;
    transition: .4s;
    &:hover {
        cursor: pointer;
    }
}
#cookie-accept:hover{
    background-color: rgb(20, 207, 20);
    color: aliceblue;
     transition: .4s;
}
#cookie-refuse:hover {
    background-color: rgb(247, 10, 10);
     color: aliceblue;
      transition: .4s;
}