/* COOKIE BUTTON */
.cookies-icon:hover .cookie-icon {
  transition: 0.3s ease;
  transform: scale(1.2);
}

.cookies-icon .cookie-icon {
  transition: transform 0.2s ease-out;
}

.cookies-icon {
  background: transparent;
  border: 0;
  bottom: 0;
  cursor: pointer;
  height: 80px;
  padding: 0;
  position: fixed;
  width: 80px;
  z-index: 1000;
}

.cookies-icon.cookies-icon--left {
  left: 0;
}




  /* MODAL */

#cookies-modal {
  width: 80%;
  max-width: 800px;
  height: 80%;
  max-height: 600px;
  border: none;
  padding: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: white;
  z-index: 1001;
}

#cookies-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}


#close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  transition: transform 0.1s ease, fill 0.2s ease;
}

#close-modal:hover {
  transform: scale(1.2);
  fill: black;
}

#close-modal:active {
  transform: scale(0.9);
  fill: black;
}


/* COOKIE BAR */

.cookie-bar-style-2 {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(0, 0, 0);
  padding: 15px 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 999;
  width: 100%;
  min-height: 80px;
  align-items: center;
  justify-content: center;
}

