#cookie-notice {
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
  box-shadow: 0 -8px 24px rgb(0 0 0 / 0.18);
}

#cookie-notice .cookie-notice-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

#cookie-notice .cn-text-container,
#cookie-notice .cn-buttons-container {
  display: block;
  margin: 0;
}

#cookie-notice .cn-text-container {
  flex: 1 1 auto;
  max-width: 52rem;
}

#cookie-notice .cn-buttons-container {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.75rem;
}

#cookie-notice .cn-button {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#cookie-notice .cn-button:hover {
  box-shadow: none;
  text-decoration: none;
}

#cookie-notice #cn-accept-cookie.cn-button.bootstrap,
#cookie-notice #cn-accept-cookie.cn-button.moneo-cn-button {
  color: #ffffff;
  background: #b8dd3f;
}

#cookie-notice #cn-accept-cookie.cn-button.bootstrap:hover,
#cookie-notice #cn-accept-cookie.cn-button.moneo-cn-button:hover {
  background: #92be2e;
}

#cookie-notice #cn-more-info.cn-button.bootstrap,
#cookie-notice #cn-more-info.cn-button.moneo-cn-button {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.35);
}

#cookie-notice #cn-more-info.cn-button.bootstrap:hover,
#cookie-notice #cn-more-info.cn-button.moneo-cn-button:hover {
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.55);
}

#cookie-notice .cn-close-icon {
  display: none;
}

@media (max-width: 768px) {
  #cookie-notice .cookie-notice-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  #cookie-notice .cn-buttons-container {
    width: 100%;
    flex-direction: column;
  }

  #cookie-notice .cn-button {
    width: 100%;
    margin: 0;
  }
}
