.mk-cookie-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  font-size: 14px;
  box-shadow: 0 0 1rem rgba(0,0,0,.125);
  transform: translate3d(0, 0, 0);
  transition: .5s cubic-bezier(0.19, 1, 0.22, 1);
}
.mk-cookie-bar:not(.ready) {
  display: none !important;
}
.mk-cookie-bar:not(.show) {
  transform: translate3d(0, 100%, 0);
  box-shadow: 0 0 1rem rgba(0,0,0,0);
}
.mk-cookie-bar__container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
}
.mk-cookie-bar__text {
  flex: 1 1 70%;
}
.mk-cookie-bar__cta {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .mk-cookie-bar__text,
  .mk-cookie-bar__cta {
    flex-basis: 100%;
  }
  .mk-cookie-bar__cta {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }
}
.mk-cookie-bar a[href] {
  text-decoration: underline;
  color: inherit;
}
.mk-cookie-bar .button {
  display: inline-block;
  padding: .325em 1.25em;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
}
.mk-cookie-bar .button-accept {
  background-color: #61a229;
  color: #fff;
}