.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10001;
  width: 100%;
  max-width: 710px;
  -webkit-transform: translate(-50%, calc(100% + 32px));
  -ms-transform: translate(-50%, calc(100% + 32px));
  transform: translate(-50%, calc(100% + 32px));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 10px 12px 10px 20px;
  border-radius: 12px;
  background: rgba(16, 190, 148, 1);
  -webkit-box-shadow: 0 4px 80px rgba(16, 190, 148, 0.25);
  box-shadow: 0 4px 80px rgba(16, 190, 148, 0.25);
  color: #ffffff;
}

.cookie-banner__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21px;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  margin-right: 14px;
}

.cookie-banner__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.cookie-banner__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0;
  padding-right: 14px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.cookie-banner__close {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42px;
  flex: 0 0 42px;
  width: 42px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #ffffff url(/media/images/close_X_white_BG.png) center center
    no-repeat;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 20px;
    max-width: none;
    padding: 0 20px;
    -webkit-transform: translateY(calc(100% + 20px));
    -ms-transform: translateY(calc(100% + 20px));
    transform: translateY(calc(100% + 20px));
  }

  .cookie-banner.is-visible {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .cookie-banner__inner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: 88px;
    padding: 12px;
    border-radius: 8px;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__text {
    padding-right: 14px;
    font-size: 13px;
    line-height: 1.2;
  }

  .cookie-banner__close {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
    width: 32px;
    height: 25px;
    background-image: url("/media/images/close_X_white_BG_mobile.png");
  }
  .cookie-banner__br {
    display: none;
  }
}
