.cookie-banner {
  background-color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  color: #333;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); */
  display: none;
  font-size: 14px;
  z-index: 1000;
  /* border-top: 1px solid #EEEEF0; */
}

.cookie-banner .btn {
  /* background: transparent; */
  position: relative;
  border: none;
  color: white;
  font-size: 16px;
}
.cookie-banner .btn:before, .cookie-banner .btn:after {
  z-index: -1;
  position: absolute;
  content: '';
  /*background: -webkit-gradient(linear, left top, left bottom, from(#FC6393), to(#FB975B));
  background: -moz-linear-gradient(top, #FC6393, #FB975B);
  background: linear-gradient(0deg, #FC6393, #FB975B);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FC6393', endColorstr='#FB975B');*/
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
}

.cookie-banner .btn:before {
  opacity: 0.5;
}

.cookie-banner .btn:after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/*
.cookie-banner .btn:hover {
  background: transparent;
  opacity: 1;
}
*/
.cookie-banner-content {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* text-align: center; */
}

.cookie-banner-message {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 0;
}

@media only screen and (min-width : 320px) and (max-width: 736px) {

.cookie-banner-content {
  display: block;
}

.cookie-banner-message {
  display: block;
  margin: 0;
  margin-bottom: 15px;
}

}
