@charset "utf-8";
/* CSS Document */

.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
  background: rgba(249, 231, 64, .9);
  width: 100%;
  z-index: 998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-cookies .msg-cookies,
.box-cookies {
  text-align: center;
  padding: 1px 10px !important;
  color: #000;
  font-size: 12px;
}

.btn-cookies {
  text-align: center;
  padding: 1px 10px !important;
  color: #fff;
  font-size: 12px;
}

.box-cookies .btn-cookies {
  background: #000;
  cursor: pointer;
  align-self: normal;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }
}

