﻿.app-cookie-consent-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: sticky;
    bottom: 50px;
    background-color: white;
    border: 2px solid var(--app-cookie-consent-border-color, var(--default-cookie-consent-border-color));
    border-radius: 8px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    color: black;
    font-size: .9rem;
    z-index: 1;
}

.app-cookie-consent-body {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.app-cookie-consent-text {
    box-sizing: border-box;
    flex-direction: column;
    display: flex;
    padding: 10px 0px 10px 15px;
}

    .app-cookie-consent-text p {
        margin-top: 0px;
        margin-bottom: 10px;
        overflow-wrap: break-word;
    }

.app-cookie-consent-buttons {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin-right: auto;
}

    .app-cookie-consent-buttons button {
        color: black;
        margin: 5px;
        flex: 0 1 auto;
    }

.app-cookie-consent-icon-color {
    color: var(--app-cookie-consent-icon-color, var(--default-cookie-consent-icon-color));
}

.app-persistent-cookie {
    height: 5rem;
    pointer-events: none;
}

.app-privacy-choices {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.app-privacy-choice {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.app-privacy-choice-toggle {
    width: 50px;
}

