#cookPopup {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}
#cookPopup img {
  max-width: 70px;
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px;
  margin: 0;
  text-align: left;
}
#cookPopup a {
  color: #1C749F;
}
.cookPopup_btn {
  display: flex;
  column-gap: 4px;
  padding: 16px 26px;
  cursor: pointer;
  border: 0;
  background: #1C749F;
  border-radius: 30px;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
}
.cookPopup_btn img {
  filter: brightness(0) invert(1);
}
.cookPopup_btn:hover {
  background: rgba(28, 116, 159, 0.5);
}
@media(max-width:575px) {
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
  #cookPopup {
    flex-direction: column;
  }
  #cookPopup * {
    text-align: center;
  }
}

.show {
  display: flex !important;
}