/*///////////// COOKIES MODAL START /////////////*/

div#cookies-modal-container {
  display: flex;
  justify-content: center;
}

div#cookies-modal {
  position: fixed;
  bottom: 0px;
  max-width: 900px;
  width: calc(100% - 10px);
  margin: 0 auto;
  display: flex;
  background: rgba(0, 0, 0, 0.8); /* Dark theme background */
  padding: 10px 20px;
  backdrop-filter: blur(8px);
  z-index: 1000; /* Ensure the modal is on top of other layers */
  flex-direction: column; /* Column direction to center content */
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically */
  border-top: 4px solid rgba(0, 0, 0, 1); /* Dark theme border */
  border-radius: 8px;
  box-sizing: border-box;
}

div#cookies-title {
  color: #fff; /* White color for dark theme text */
  text-align: center; /* Center the title text */
  margin-bottom: 10px;
}

div#cookies-modal a {
  color: #fff;
  text-transform: uppercase; /* This will capitalize the text */
  border-bottom: 1px solid #fff;
  text-align: center;
}

div#cookies-modal a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

div#cookies-modal-buttons {
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center; /* Center the buttons */
}

div#cookies-modal button {
  padding: 5px 25px;
  border-radius: 4px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-width: 1px;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.4); /* Dark button background */
  color: #fff;
  height: 36px;
  margin: 5px; /* Add margin to space out buttons */
  box-shadow: none;
}

div#cookies-modal button:hover {
  background: rgba(0, 0, 0, 0.5); /* Slightly darker on hover */
  color: #fff;
  border-color: #fff;
  opacity: 1;
}

button#accept-cookies-button:before {
  background-image: url('../media/image/thumbs-up-regular-white.svg');
  margin-left: -10px;
  margin-right: 7px;
  background-size: 20px auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
  margin-bottom: -3px;
}

button#accept-cookies-button:hover:before {
  background-image: url('../media/image/thumbs-up-solid-white.svg');
}

div#cookies-modal.cookies-d-none {
  display: none !important;
}

@media (min-width: 768px) {
  div#cookies-modal {
    bottom: 20px;
  }
}

/*///////////// COOKIES MODAL END /////////////*/

/*///////////// CUSTOMIZE TYPOGRAPHY START /////////////*/

div#cookies-modal-container, div#cookies-modal-container div, div#cookies-modal-container a, div#cookies-modal-container button {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
}

/*///////////// CUSTOMIZE TYPOGRAPHY END /////////////*/

/*///////////// CUSTOMIZE COLORS START /////////////*/

div#cookies-modal a, div#cookies-modal a:hover {
  border-color: #fff;
}

div#cookies-modal button#accept-cookies-button {
  background: #00D3E7;
}

/*///////////// CUSTOMIZE COLORS END /////////////*/
