#cookieConsent {
  display: flex;
  gap: 10px;
  text-align: justify;
  color: #252525;
  padding: 20px 20px 0px 20px;
  overflow: auto;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  max-height: 100vh;
  width: 100%;
  background: #fff;
  margin: 0 auto;
  z-index: 500;
  pointer-events: auto;
  -webkit-box-shadow: 0 -10px 20px 0 rgba(34, 60, 80, .2);
  -moz-box-shadow: 0 -10px 20px 0 rgba(34, 60, 80, .2);
  box-shadow: 0 -10px 20px 0 rgba(34, 60, 80, .2);
  justify-content: space-between;
  gap: 30px;
}

.cookie_span {
  font-weight: 600;
}

.cookie_p {
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}


.accept-all {
  background: #33B0CA;
  color: #FFFF;
  border-radius: 6px;
  border: transparent;
  font-weight: bold;
  font-size: 15px;
  display: block;
  padding: 15px 32px;
  text-align: center;
  transition: .15s !important;
  line-height: normal;
  overflow: visible;
  height: fit-content;
  width: 160px;
}

.accept-necessary {
  color: #666;
  font-weight: bold !important;
  padding: 8px 5px;
  text-decoration: underline !important;
  transition: .15s !important;
  background: none;
  border: 0;
  border-radius: 0;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  width: 200px;
}

.reject-all {
  background: #fff;
  color: #333;
  border-radius: 6px;
  border: 1px solid #333;
  font-weight: bold;
  font-size: 15px;
  display: block;
  padding: 15px 32px;
  text-align: center;
  transition: .15s !important;
  line-height: normal;
  overflow: visible;
  height: fit-content;
  width: 140px;
}


.accept-all:hover,
.reject-all:hover {
  box-shadow: 0 2px 2px 0 rgba(34, 60, 80, .2);
}

.accept-necessary:hover {
  font-weight: 700;
  color: #252525;
}

@media (max-width: 768px) {
  #cookieConsent {
    flex-direction: column;
    gap: 0;
    padding: 20px 20px 20px 20px;
  }
}
@media (max-width: 560px) {
  .cookie-buttons {
    flex-direction: column;
  }

  .accept-necessary,
  .accept-all,
  .reject-all{
    width: 80%;
  }
}