body {
    height: auto !important;
    position: relative;
}

.de-btm-Informer {
    color: #ffffff;
    margin: 0 auto;
    z-index: 999;
    bottom: 0;
    right: 0;
    left: 0;
    font-weight: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    padding: 10px 30px;
}

.de-btm-Informer.is-inlined {
    z-index: 1;
    position: static;
}

.de-btm-Informer.is-hidden {
    display: none;
}

.de-btm-Informer a {
    all: initial;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    opacity: 1 !important;
    color: inherit !important;
    text-decoration: none!important;
    border: 0 !important;
    font-family: inherit !important;
    font-size: 1em !important;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: center;
}

@media (max-width: 768px) {
    .de-btm-Informer a {
        font-size: 0.7em !important;
    }
}

.de-btm-Informer a[href] {
    text-decoration: underline !important;
    cursor: pointer;
}

.de-btm-Informer a[href]:hover {
    text-decoration: none !important;
}

.de-close-btn {
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    color: #fff;
}

@media (max-width: 768px) {
    .de-close-btn {
        right: 10px;
        top: 10px;
        width: 15px;
        height: 15px;
    }
}

.de-close-btn:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.de-close-btn::after,
.de-close-btn::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.de-close-btn::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}