.box-cookies.hide {
    display: none !important;
}
  
.box-cookies {
    position: fixed;
    background: rgba(0, 0, 0, .9);
    width: 100%;
    z-index: 998;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

.btn-cookies {
    border: none;
}

  
.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
    text-align: center;
    padding: 25px;
    color: #fff;
    font-size: 18px;
}

.box-cookies .btn-cookies {
    background: #1e88e5;
    cursor: pointer;
    align-self: normal;
}
  
@media screen and (max-width: 600px) {
    .box-cookies {
      flex-direction: column;
    }
  }