.hideModal {
  display: none !important;
}

.cookiesModalBackground {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  position: absolute;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
}

.cookieModal {
  max-width: fit-content;
  min-height: fit-content;
  top: 100px;
  display: block;
  margin: 0 auto;
  background: white;
  z-index: 99999;
  border-radius: 5px;
  padding: 4px;
  position: relative;
}

.close {
  top: -20px;
  right: -20px;
  display: block;
  position: absolute;
  background: white;
  color: black;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: 600;
  border: 3px solid #000;
}

.cookieModal img {
  width: 100%;
  max-width: 800px;
}

@media only screen and (max-width: 600px) {
  .cookieModal {
     width: 80%;
  }
}