.u-consent {
    box-sizing: border-box;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    padding: 1.5em;
    justify-content: center;
    align-items: flex-start;
    overflow-y: hidden;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}


.u-consent-container {
    margin-top: 10vh;
    box-sizing: border-box;
    width: 100%;
    max-width: 50em;
    background-color: #fff;
    padding: 1em;
    padding-right: 0.5em;
    border-radius: 10px;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.u-consent-content {
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 70vh;
    padding: 0 0.5em 1em;
    border-radius: 5px;
}

.u-consent h2 {
    font-size: 18px;
    margin: 0.5em;
    font-weight: bold;
}

.u-consent h3 {
    font-size: 16px;
    margin-bottom: 0.4em;
}

.u-consent p {
    margin-top: 0;
    margin-bottom: 0.9em;
}

.u-consent-bt-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items:stretch;
    flex-wrap: wrap;
    padding: 0 0.5em;
}
.u-consent-expandable {
    margin: 1.5em 0;
}
.bt-u-consent {
    flex: 1 0 12em;
    max-width: 18em;
    margin: 0.7em;
    margin-right: 2em;
    margin-left: 0;
    padding: 0.5em 0.8em;
    background-color: #797979;
    color: #fff;
    border: none;
    border-radius: 0.7em;
    cursor: pointer;
}


.bt-u-consent:hover {
    color: #fff;
    box-shadow: 2px 2px 8px 0px #888888;
}

.bt-u-consent:hover {
    color: #fff;
    box-shadow: 2px 2px 8px 0px #888888;
}

.u-consent details {
    margin: 1.5em 0;
}

.u-consent label {
    cursor: pointer;
}

.u-consent-expandable-trigger {
    cursor: pointer;
    font-weight: 700;
    text-decoration: underline;
}

.u-consent-expandable-details {
    cursor: pointer;
    font-weight: 700;
}


.u-consent-expandable-content {
    transition: all 0.2s ease;
    margin: 1em 0;
}

.u-consent-expandable-hidden {
    overflow-y: hidden;
    height: 0px;
    opacity: 0;
    margin: 0;
}

.u-consent-status {
    font-size: 1em;
    margin-bottom: 1em;
}

.u-consent-links {
    display: flex;
    font-size: 0.9em;
}

.u-consent-links a {
    margin-right: 1em;
    text-decoration: underline;
}


.u-consent-hidden {
    display: none;
}


.u-consent-no-scroll {
    overflow-y: hidden;
}


.u-consent-option {
    margin-top: 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    /* color: blue; */
    font-weight: 600;
}

.u-consent-option .checked {
    height: 1.2em;
    width: 1.2em;
}
.u-consent-option .unchecked {
    height: 1em;
    width: 1em;
}
.u-consent-option span {
    font-weight: 600;
}
.u-consent input[type="checkbox"]:focus-visible {
    outline: 2px solid #797979;
}

.u-consent .bt-u-consent:focus-visible {
    outline: 2px solid #797979;
}

.u-consent .u-consent-expandable-trigger:focus-visible {
    outline: 2px solid #797979;
}