
/**
 * Consent Banner
 */
.consent-banny {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    width: 100%;
    padding: 15px 25px;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    color: #000;
    font-size: 12px;
    -webkit-box-shadow: #121212 2px 2px 14px 2px;
    box-shadow: #121212 2px 2px 14px 2px;
    -webkit-transform: translateY(150%);
    -ms-transform: translateY(150%);
    transform: translateY(150%);
    -webkit-transition: -webkit-transform 500ms ease-out;
    transition: -webkit-transform 500ms ease-out;
    -o-transition: transform 500ms ease-out;
    transition: transform 500ms ease-out;
}
.consent-banny.show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.consent-banny .consent-banny-content {
    max-width: 980px;
    margin: auto;
}
.consent-banny .store-button {
    background: #fff;
    color: #666;
    font-weight: normal;
    border: 0;
    padding: 5px 15px;
    text-transform: none;
    width: 250px;
    line-height: 21px;
    -webkit-border-radius: 0;
}
.consent-banny .accept-button {
    border: 0;
    background: #009ee0;
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    text-transform: none;
    width: 250px;
    line-height: 21px;
    -webkit-border-radius: 0;
}
.consent-banny .reject-button {
    border: 0;
    background: #009ee0;
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    text-transform: none;
    width: 250px;
    line-height: 21px;
    -webkit-border-radius: 0;
}
.consent-banny .controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.consent-banny .settings {
    display: flex;
    padding-right: 10px;
    justify-content: space-between;
    flex-flow: row wrap;
    flex-grow: 1;
    gap: 10px;
}
.consent-banny .settings div {
    display: flex;
    flex-grow: 1;
    gap: 10px;
    justify-content: space-around;
}
.consent-banny .settings label {
    width: 104px;
}
.consent-banny .buttons {
    text-align: center;
    flex-basis: 34em;
    flex-grow: 10;
}
@media (max-width: 955px) {
    .consent-banny .controls {
        flex-direction: column;
    }
    .consent-banny .buttons {
        flex-basis: auto;
    }
}
