:root {
    --cookie-consent-spacing-large: calc( var(--cookie-consent-spacing-medium) * 1.75 );
    --cookie-consent-spacing-medium: 0.5rem;
    --cookie-consent-spacing-small: calc( var(--cookie-consent-spacing-medium) / 2 );
    --cookie-consent-color-primary: black;
    --cookie-consent-color-secondary: #26a69a
}

.cookie-consent {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: var(--cookie-consent-spacing-small);
    padding: var(--cookie-consent-spacing-small) var(--cookie-consent-spacing-medium);
    gap: var(--cookie-consent-spacing-small) var(--cookie-consent-spacing-large);
    background-color: inherit;
    border-radius: 10px;
    position: fixed;
    bottom: 1rem;
    right: 9rem;
    left: 1rem;
    box-shadow: 1px 1px 20px -11px #000;
}
@media (max-width: 600px){
    .cookie-consent {
        flex-direction: column;
        left: 0rem;
        right: 0rem;
    }
    .cookie-consent__text {
        border-inline-end: unset !important;
        
    }
}

.cookie-consent__text {
    padding-inline-end:var(--cookie-consent-spacing-large);border-inline-end: 1px solid var(--cookie-consent-color-secondary)
}
.cookie-consent__text a {
    text-decoration: underline;
}

.cookie-consent__buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: var(--cookie-consent-spacing-small) var(--cookie-consent-spacing-large)
}

.cookie-consent__button {
    cursor: pointer;
    border-radius: 3px
}

.cookie-consent__button--ok {
    background: var(--cookie-consent-color-secondary);
    color: var(--cookie-consent-color-primary);
    padding-block:var(--cookie-consent-spacing-small);padding-inline: var(--cookie-consent-spacing-medium)
}

.cookie-consent__button--more>a {
    color: inherit;
    text-decoration: underline
}
