/* Βασικό styling για το banner */

#cookieBanner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: white;
  padding: 10px;
  text-align: center;
  display: none;
  z-index: 1000;
}

.div-cookies {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.button_cookies, .cookies-link {
  cursor: pointer;
  margin: 5px;
  padding: 5px 10px;
}

/* Styling για το modal */

.cookies-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  padding: 20px;
  border: 2px solid #222;
  z-index: 2000;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.div-buttons {
  text-align: center;
  margin-top: 20px;
}

.button_modal_cookies {
  cursor: pointer;
  margin: 5px;
  padding: 5px 10px;
}

.button_cookies {
  background: none;
  border: 1px solid rgb(159,159,159);
  color: #fff;
  text-decoration: none;
  padding: 10px 30px !important;
  min-width: 150px;
  font-size: 14px;
  margin: 1px;
}

.div-cookies {
  display: flex;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .div-cookies {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    align-content: space-between;
    flex-direction: row;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.button_modal_cookies {
  background: none;
  border: 1px solid rgb(159,159,159);
  color: #333;
  text-decoration: none;
  padding: 10px 30px !important;
  min-width: 130px;
  font-size: 14px;
  margin-top: 10vh;
  margin: 1px;
}

#cookieBanner h3 {
  font-family: 'peridot-pe-variable' !important;
}

#cookieModal label {
  font-family: 'peridot-pe-variable' !important;
  font-size: 20px;
}

#cookieModal p {
  font-family: 'peridot-pe-variable' !important;
  font-size: 12px;
}

.cookies-link {
  border: none;
  color: #ffffff;
  font-size: 14px;
  background: none;
  /*margin-right: 30px;*/
  text-decoration: underline;
  display: flex;
}

.cookies-modal {
  display: none;
  color: #333;
  align-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 50px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.div-buttons {
  display: flex;
  flex-direction: row;
}

.flex-div {
  width: 100%;
  display: block;
  align-items: center;
}

@media (min-width: 992px) {
  .flex-div {
    width: 30vw;
    display: flex;
    align-items: center;
  }
}

