.cookie__closed {
  position: fixed;
  left: 20px;
  bottom: 20px;
  border-radius: 50px;
  box-shadow: 2px 2px 4px 0px rgba( 0,0,0,0.45 );
  background: white;
  cursor: pointer;
  font-family: sans-serif;
  padding: 10px 8px 8px 10px;
  line-height: 1.2;
  font-size: 1em;
  transition: 0.2s ease;
  z-index: 10;
}
.cookie__closed:hover {
  transform: translateY(-3px);
  box-shadow: 2px 5px 5px 0px rgba( 0,0,0,0.45 );
}

.cookie__notice {
  position: fixed;
  left: 20px;
  bottom: 20px;
  box-shadow: 2px 2px 4px 0px rgba( 0,0,0,0.45 );
  background: white;
  font-family: sans-serif;
  padding: 10px 8px 8px 10px;
  line-height: 1.2;
  font-size: 1em;
  transition: 0.2s ease;
  z-index: 10;
  box-sizing: border-box;
  max-width: calc( 100% - 40px );
  max-height: 45vh;
  overflow: auto;
}
.cookie__close {
  position: absolute;
  top: 5px;
  right: 15px;
  height: 20px;
  width: 20px;
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cookie__close:before, .cookie__close:after {
  content: "";
  height: 20px;
  width: 3px;
  left: calc( 50% - 1.5px );
  top: 0;
  transform: rotateZ(45deg);
  background: black;
  position: absolute;
}
.cookie__close:after {
  transform: rotateZ(-45deg);
}
.cookie__action {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 12px;
  background: #1c1c1c;
  color: white;
  margin-left: 20px;
  display: block;
  font-family: sans-serif;
  font-size: 1em;
  cursor: pointer;
  border: none;
  transition: 0.2s ease;
}
.cookie__action:hover {
  transform: translateY(-2px);
  box-shadow: 2px 2px 4px 0px rgba( 0,0,0,0.25 );
}
.cookie {
  padding-left: 20px;
  position: relative;
}
.cookie__select {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  margin-top: 1px;
  cursor: pointer;
}
.cookie__desc {
  margin-top: 0px;
}
.cookie__title {
  margin-bottom: 5px;
  cursor: pointer;
}
.cookie__buttons{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 5px;
}

@media ( max-width: 650px ) {
  .cookie__action {
    width: 100%;
    margin-left: 0;
    margin-top: 5px; 
  }
  .cookie__notice {
    max-height: 85vh;
  }

}