.consent-layout {
    position: fixed;
    bottom: -50%;
    left: 0;
    right: 0;
	border-radius: 0.15rem;
    padding: 20px 45px;
    background-color: #eeeeee;
  	transition: bottom 4s ease-out;
}
.consent-layout.show-consent-banner {
  	transition: bottom 4s ease-out;
    bottom: 0;
}
.consent-banner {
    display: flex;
  	align-items: center;
}
.consent-text {
    line-height: 1.6em;
}
.consent-btn {
    margin-left: 30px;
}
.js-cookies-button {
    padding: 12px 15px;
    border-radius: 0.15rem;
    background-color: #6ca55b;
    color: #fff;
    box-shadow: 0 1px 2px rgb(0 0 0 / 25%), 0 3px 4px rgb(0 0 0 / 22%);
  	cursor: pointer;
}

@media (max-width: 900px) {
    .consent-layout {
      padding: 20px;
  }
  .consent-banner {
      font-size: 14px;
  }
  .consent-btn {
    margin-left: 20px;
	}
}

@media (max-width: 450px) {
    .consent-layout {
      padding: 10px 15px;
  }
  .consent-banner {
      font-size: 10px;
  }
}
