.cookie-agreement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  color: #fff;
  background: rgba(10,40,20,.7);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: hidden;
  z-index: 9999;
}
.cookie-agreement-show {
  visibility: visible;
}
.cookie-agreement a {
  color: #fff;
}
.cookie-agreement-close:before {
  transform: translateX(-50%) rotate(45deg);
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  width: 20px;
  height: 2px;
  top: 50%;
  right: 0.1%;
  cursor: pointer;
  text-align: right; 
  }
.cookie-agreement-close:after {
  transform: translateX(-50%) rotate(135deg);
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  width: 20px;
  height: 2px;
  top: 50%;
  right: 0.1%;
  cursor: pointer;
  text-align: right; 
}
.cookie-agreement-close {
  position: absolute;
  width: 40px;
  height:30px;
  top:   1.0%;
  right: 0.5%;
  cursor: pointer;
}
