#cookies-container{
    all: revert;
    position: fixed !important;
    margin: 5rem;
    z-index: 1001;
    bottom: 0;
    left: 0;
    display: flex;
    background: rgba(10, 10, 10, .9);
    box-shadow: -.5rem .5rem .2rem .2rem rgba(5, 5, 5, .8);
    padding: 3rem;
    align-items: center;
    justify-content: space-between;
    height: 14rem;
    width: 80rem;

    transition: all .3s ease;
    transform: scale(0);
    transform-origin: bottom left;
}

.cookies-active {
    transform: scale(1) !important;
}

#cookies-container > img{
    all: revert;
    height: 7rem;
}

#cookies-container > div {
    display: flex;
    flex-direction: column;
    padding: 3rem;
}

#cookies-container > div:last-child {
    align-items: center;
}

#cookies-container > div > h4 {
    margin-top: 3rem;
}