#cookie-bar {
    background: var(--black-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(--main-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;
    clip-path: polygon( 10px 0, 100% 0, 100% 100%, 0 100%, 0 10px );
    color: var(--dark-color);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    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(--main-color);
    color: var(--dark-color)!important;
}