.et-cookie, .et-cookie * {
    box-sizing: border-box;
}

.et-cookie {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.6);
}
.et-cookie__main {
    position: relative;
    max-width: 58em;
    margin: 0 auto;
    padding: 3em;
    background: white;
}
@media (max-width: 700px) {
    .et-cookie__main {
        padding: 1em;
    }
}

.et-cookie h2 {
    margin-top: 0;
    padding-top: 0;
}
.et-cookie__links a {
    margin-right: 1em;
}


/*************************************************
Checkboxen
*************************************************/
.et-cookie__checkboxes {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 1em 0;
}
.et-cookie__checkbox-container {
    display: flex;
    flex: 1 0 auto;
    flex-wrap: wrap;
    max-width: 100%;
}
.et-cookie__checkbox-item {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    margin-right: 2.5em;
    padding: 0.5em 0;
    border: 0;
}
.et-cookie__checkbox-item input[type="checkbox"] {
    position: static;
    float: none;
    margin: 0;
    margin-right: 1em;
    border: 1px solid;
}
.et-cookie__disabled .et-cookie__checkbox-label-text {
    opacity: 0.5;
}
.et-cookie__checkbox-item:not(.et-cookie__disabled) {
    cursor: pointer;
}
@media (max-width: 600px) {
    .et-cookie__checkbox-item {
        min-width: 60%;
    }
}

.et-cookie__popup-infos {
    display:flex;
    flex-direction: column;
    align-items: flex-start;
}
.et-cookie__popup-infos p {
    display:none;
    border: 1px solid;
    margin-top:0;
    padding: 0.5em;
}

/*************************************************
Detail-Texte
*************************************************/
.et-cookie__details-text {
    overflow: hidden;
    margin-top: 1em;
}
.et-cookie__details-text,
.et-cookie__details--hide .et-cookie__show_details * + span,
.et-cookie__details:not(.et-cookie__details--hide) .et-cookie__show_details span:first-child {
    display: none;
}


/*************************************************
Buttons
*************************************************/
.et-cookie button, .et-cookie-blocker button {
    font: inherit;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin: 0;
    cursor: pointer;
}
button.et-cookie__no-btn {
    padding: 0.5em 0;
    color: inherit;
    border: 0;
    background: 0;
}

.et-cookie__show_details {
    outline: none;
}

.et-cookie__main-actions {
    display: flex;
    justify-content: flex-end;
    margin: 2em 0 1em;
}
button.et-cookie__accept-all {
    font-size: 1.3em;
}

/*************************************************
Button-Icons
*************************************************/
.et-cookie__icon {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.3em;
}
.et-cookie__icon svg {
    max-width: 100%;
    max-height: 100%;
}
.et-cookie__show_details .et-cookie__icon svg {
    transform: rotate(270deg);
}
.et-cookie__details--hide .et-cookie__icon svg {
    transform: rotate(90deg);
}

/*************************************************
Content-Blocker
*************************************************/
.et-cookie-has-blocker {
    pointer-events: none;
}
.et-cookie-blocker {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    overflow: auto;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 1em;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
}
*:not(.et-cookie-has-blocker) + .et-cookie-blocker {
    display: none;
}
.et-cookie-blocker button + button {
    margin-top: 0.5em;
}
.et-cookie-blocker > * {
    transition: 0.3s;
}
.et-cookie-blocker.et-show-on-hover:not(:hover) > * {
    transform: translateY(1em);
    opacity: 0;
}
