#body .cookie {
    background: var(--bg-color);
    position: fixed;
    bottom: clamp(10px, 2vw, 40px);
    border-radius: 15px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
    padding: clamp(20px, 1.5vw, 30px) clamp(20px, 2vw, 40px);
    max-width: 400px;
    box-sizing: border-box;
    width: calc(100% - clamp(20px, 4vw, 80px));
    z-index: 8995;
    grid-gap: 10px;
    grid-template-columns: 1fr auto;
    display: grid !important;/* ENLEVER LE IMPORTANT*/
    transition: opacity 250ms ease, transform 250ms ease;
}

#body .cookie__btn {
    display: inline-block;
    font-family: sans-serif;
    padding: 8px clamp(20px, 1.5vw, 30px);
    border-radius: 5px;
    transition: all 250ms ease;
    font-size: 16px;
    letter-spacing: 1px;
}

#body .cookie__btn--close {
    justify-self: end;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    border: 1px solid var(--txt-color);
    color: var(--bg-color);
    display: grid;
    place-items: center;
    font-family: sans-serif;
    font-weight: 300;
    cursor: pointer;
}

#body .cookie__btn--close span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    font-weight: 100;
    font-size: 22px;
    line-height: 1;
    margin-right: .5px;
}

#body .cookie__btn--close:hover {
    background: var(--txt-color);
    color: var(--bg-color);
}

#body .cookie__btn--bg {
    background: var(--txt-color);
    color: var(--bg-color);
    border: none;
    cursor: pointer;
}

#body .cookie__btn--border {
    background: none;
    border: 1px solid var(--txt-color);
    color: var(--txt-color);
    cursor: pointer;
}

#body .cookie__btn--border:hover {
    background: var(--txt-color);
    color: var(--bg-color);
}

#body .cookie__controls {
    grid-template-columns: auto auto;
    display: grid;
    justify-content: start;
    grid-gap: clamp(10px, .75vw, 15px);
    margin-top: clamp(10px, .75vw, 15px);
    grid-column: 1 / 3;
}

#body .cookie__link {
    color: #397eaa;
    font-family: sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}

#body .cookie__link:hover {
    text-decoration: underline;
}

#body .cookie__position--left {
    left: clamp(10px, 2vw, 40px);
}

#body .cookie__position--right {
    right: clamp(10px, 2vw, 40px);
}

#body .cookie__remove {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
}

#body .cookie__text {
    color: var(--txt-color);
    font-weight: 300;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;
    grid-column: 1 / 3;
    margin-bottom: 0;
    letter-spacing: 1px;
}

#body .cookie__title {
    font-weight: bold;
    color: var(--txt-color);
    font-size: 24px;
    line-height: 1.5;
    font-family: sans-serif;
    margin-bottom: 0;
    letter-spacing: 1px;
}

#body .cookie__remove {
    opacity: 0;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

#body .page__cookie ul{
    list-style-type: disc;
    padding-left: 12px;
}

#body .page__cookie li{
    padding: 10px 0;
}

#body .page__cookie a{
    color: #35ba1e;
}

#body .page__cookie h4{
    color: #35ba1e;
}

@media print {
    #body .cookie {
        display: none;
    }
}
