#cookie-bar {
    background: var(--secondary-color);
    height:auto;
    line-height: 1.2;
    color: var(--white-color);
    text-align: center;
    padding: 15px 0;
    z-index: 999;
}

#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

#cookie-bar p {
    margin: 0;
    padding: 0;
}

#cookie-bar a {
    color: var(--white-color);
    display: inline-block;
    text-decoration:none;
    text-transform: uppercase;
    padding: 8px 20px;
    margin: 3px 0 3px 10px;
}

#cookie-bar .cb-enable, #cookie-bar .cb-disable, #cookie-bar .cb-policy {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background: var(--white-color);
    border: none;
    border-radius: 0.375rem;
    color: var(--primary-color);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-family: var(--medium-font);
    text-transform: uppercase;
    text-align: center;
}

#cookie-bar .cb-enable:hover, #cookie-bar .cb-disable:hover, #cookie-bar .cb-policy:hover, #cookie-bar .cb-enable:focus, #cookie-bar .cb-disable:focus, #cookie-bar .cb-policy:focus {
	background: var(--white-color);
    color: var(--secondary-color)!important;
}