/* UK Cookie Consent styles */
#catapult-cookie-bar {
    box-sizing: border-box;
    max-height: 0;
    opacity: 0;
    z-index: 99999;
    overflow: hidden;
    color: #ddd;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #464646;
    transition: max-height 0.3s, opacity 0.3s;
}
#catapult-cookie-bar a { color: #fff; }
button#catapultCookie {
    background: #c8a951;
    color: #fff;
    border: 0;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
}
#catapult-cookie-bar h3 { color: #ddd; font-size: 14px; }
.has-cookie-bar #catapult-cookie-bar {
    opacity: 1;
    max-height: 999px;
    min-height: 40px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
