#cookieConsentContainer {
    position: fixed;
    bottom: 0;
    z-index: 10;
    min-height: 112px;
    display: flex;
    align-items: center;
    background-color: #32323a;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    padding: 0 32px;
    width: 90%;
    margin: auto;
    width: calc(100% - 0px);
    justify-content: center;
    flex-direction: column;
    box-shadow: #00000063 0 -4px 17px 8px;
}
#acceptCookies {
    background-color: var(--secondary);
    font-weight: 700;
    color: var(--white);
}
#rejectCookies {
    color: #2c2d2d;
}
#acceptCookies,
#rejectCookies {
    font-size: 14px;
    cursor: pointer;
    border: none;
    margin: 8px;
    padding: 8px;
}
#cookieSettingsButton {
    position: fixed;
    bottom: 20px;
    left: 0;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100;
    height: 15px;
    width: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/wp-content/plugins/Anibal/includes/img/cookie.webp);
}
#cookieSettingsButton:hover {
    background-color: olive;
}
