.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    color: #b4bac1;
    padding: 25px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 14px;

    &.hidden {
        display: none;
    }

    h5 {
        font-size: 18px;
    }

    a:link, a:visited {
        color: #b4bac1;
        text-decoration: underline;
        transition: all .3s;
    }

    a:hover, a:active {
        color: #fff;
    }

    .buttons {
        text-align: left;

        button {
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;

            &#reject-cookies {
                border: solid 2px #3434f3;
                background-color: transparent;
            }

            &#accept-cookies {
                border: solid 2px #3434f3;
                background-color: #3434f3;
            }
        }
    }
}
