#cookieModal {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10000;
}

#cookieContent {
  background: #fff;
  padding: 20px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 756px) {
  #cookieContent {
    flex-direction: column;
    gap: "10px";
  }
}

#cookieContent p {
  color: "#181818";
  margin: 0px;
}

#cookieModal button {
  background: #48bf84;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  /* margin-top: 10px; */
}
