

.cookwrapper{
  position: fixed;
  z-index: 999;
  bottom: 30px;
  left: 30px;
  max-width: 365px;
  background: #fff;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
  text-align: center;
}
.cookwrapper.hide{
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
::selection{
  color: #fff;
  background: #9400D3;
}
.cookwrapper img{
  max-width: 90px;
}
.cookcontent header{
  font-size: 25px;
  font-weight: 600;
}
.cookcontent{
  margin-top: 10px;
}
.cookcontent p{
  color: #858585;
  margin: 5px 0 20px 0;
}
.cookcontent .cookbuttons{
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookbuttons button{
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: #9400D3;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookbuttons button:hover{
  transform: scale(0.97);
}
.cookbuttons .cookitem{
  margin: 0 10px;
}
.cookbuttons a{
  color: #9400D3;
}


