.cookie-consent {
    position: fixed;
    width: 45.7em;
    bottom: 0;
    left: 0;
    border-radius: 5px;
    box-sizing: border-box;
    opacity: 1;
    z-index: var(--consent-z-index);
    border-width: 0;
    margin: 1.667em;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, .25);
    padding: 2.5em 2.86em;

    font-family: Roboto, "Open Sans", Arial, Helvetica;
    font-size: 12px;
    color: rgb(48, 48, 48);
    background: rgb(255, 255, 255);
}

.cookie-consent.hidden {
    visibility: hidden;
    left: -1500px;
}

.cookie-consent .consent-text {
    line-height: 1.75;
    font-family: Roboto, "Open Sans", Arial, Helvetica;
    margin-bottom: 18px;
}

.cookie-consent .consent-buttons {
    display: flex;
    justify-items: center;
    justify-content: center;
    gap: 12px;
    flex-direction: row;
}

.acceptAllButton {
    width: 12.86em;
    max-width: 16em;

    background: rgb(0, 58, 250);
    border-color: rgb(0, 58, 250);
    font-size: 12px;
    font-family: Roboto, "Open Sans", Arial, Helvetica;
    font-weight: bold;
    line-height: 18px;
    border-width: 1px;
    border-radius: 3px;
    border-style: solid;
    color: rgb(255, 255, 255);
    padding: .625em 2em;
    cursor: pointer;
    transition: background-color 100ms linear;
}

.acceptAllButton:hover {
    background-color: rgb(40, 98, 290);
}
