#popup-cookies {
    position: fixed;
    bottom: 0px;
    left: 0px;
    min-height: 60px;
    padding-top: 10px;
    min-width: 100vw;
    background-color: #413F4A;
    text-align: center;
    z-index: 999;

    animation: entry  3s;
}

div.container-popup {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}

div.container-popup > p {
    color: #fff;
    font-size: 17px;
    margin-right: 40px;
    margin-left: 40px;
}

div.container-popup > button {
    margin-bottom: 10px;
    font-size: 16px;
    padding: 10px 17px 10px 17px;
    color: #333;
    transition: all .3s;
    border: none;
    box-shadow: 0px 1px 3px #333;
}

div.container-popup > button:hover {
    transition: all .3s;
    background-color: #333;
    color: #fff;
}

@keyframes entry {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }