.footer-policy-link {
    text-decoration: underline;
    font-size: .8rem;
    margin-bottom: -.2rem;
}
.footer-policy-link, .footer-policy-link > a {
    color: rgba(4, 8, 8, 0.5);
    cursor: pointer;
}

/**
 * Cookie banner
 */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.cookie-banner {
    display: none;
    justify-content: center;
    padding: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 0 2rem #38393b5e;
}

.cookie-banner-content {
    max-width: 1480px;
}
.cookie-banner-title {
    font-weight: 700;
}
.cookie-banner-body {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.cookie-banner-button-wrapper,
.cookie-setting-button-wrapper {
    display: flex;
    gap: .6rem;
}

.cookie-settings-section {
    display: flex;
    gap: .5rem;
    align-items: center;
    border-top: 1px solid #e9ecef;
}
.cookie-settings-section > label {
    margin: 0;
}

@media (max-width: 992px) {
    .cookie-banner-body {
        flex-direction: column;
        align-items: end;
    }
}

@media (max-width: 576px) {
    .cookie-banner-button-wrapper,
    .cookie-setting-button-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .cookie-button {
        width: 100% !important;
    }
}