#cookie-consent.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #f4f4f4;
    padding: 16px 0;
    box-shadow: 0 -1px 10px 0 #acabab4d;
    max-height: 100vh;
    z-index: 14;
}

#cookie-consent.cookie-consent.zone-hidden,
#cookie-consent.cookie-consent .zone-hidden {
    visibility: hidden;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

#cookie-consent.cookie-consent .main-info {
    padding: 0 24px;
}

#cookie-consent.cookie-consent .main-info a {
    color: #121212;
    background: transparent;
    font-size: inherit;
    text-decoration: underline;
    font-weight: bold;
}

#cookie-consent.cookie-consent .quick-actions {
    text-align: right;
    padding: 0 24px;
    border-bottom: 1px solid #f4f4f4;
}

@media only screen and (max-width: 600px) {
    #cookie-consent.cookie-consent .quick-actions {
        text-align: center;
    }
}

#cookie-consent.cookie-consent .action-button {
    font-size: 14px;
    font-family: inherit;
    line-height: 18px;
    padding: 8px 27px;
    font-weight: 500;
    margin: 0 8px 8px 0;
    border-radius: 2px;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    text-transform: none;
    min-height: 0;
}

#cookie-consent.cookie-consent .action-button.outline {
    background: #f9f9f9;
    color: #121212;
    border: 1px solid #121212;
    border-radius: 0.75rem;
}

#cookie-consent.cookie-consent .action-button.filled {
    color: #fff;
    background: #0099BA;
    border: 2px solid #0099BA;
    border-radius: 0.75rem;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences {
    padding-bottom: 50px;
    background: #fafafa;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group {
    padding: 14px 54px 14px 24px;
    position: relative;
    background: #fff;
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 4px;
    border-radius: 8px;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-heading {
    cursor: pointer;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-heading span {
    position: absolute;
    top: 20px;
    left: 8px;
    display: block;
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform-origin: center center;
    transform: rotate(-45deg);
    transition: all .1s ease-in-out;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .group-heading.open span {
    transform: rotate(45deg);
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-details {
    padding-top: 8px;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-switch {
    position: absolute;
    top: 20px;
    right: 8px;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-switch input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-switch .thumb {
    display: block;
    width: 44px;
    height: 24px;
    padding: 2px;
    border-radius: 11px;
    background: #d0d0d0;
    box-sizing: border-box;
    transition: all .1s ease-in-out;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-switch .thumb:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    margin: 0;
    transition: all .1s ease-in-out;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-switch input:checked ~ .thumb {
    background: #0099BA;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-switch input:checked ~ .thumb:before {
    margin-left: 20px;
}


#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group .group-switch input:disabled:checked ~ .thumb {
    background: #666;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group table {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    font-size: 12px;
    margin-top: 8px;
    background: #f9f9f9;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group table th,
#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group table td {
    padding: 8px 16px;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group table thead {
    border-bottom: 2px solid #ddd;
    background: #f9f9f9;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group table tr {
    border-bottom: 1px solid #ddd;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group table tr:last-of-type {
    border-bottom: none;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .cookie-preference-group table tbody tr:nth-child(odd) {
    background-color: #f0f0f0;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .preferences-details {
    padding: 24px 24px 50px;
    background: #fafafa;
    overflow-y: scroll;
    height: 48vh;
    position: relative;
}

#cookie-consent.cookie-consent #cookie-consent-user-preferences .preferences-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 24px;
    text-align: right;
    background: #ffffff;
}