.exallto-cookie-consent[hidden] {
  display: none !important;
}

.exallto-cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10020;
  width: min(360px, calc(100vw - 40px));
  color: #202124;
  background: #fff;
  border: 1px solid #d7dce2;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(25, 35, 45, 0.24);
}

.exallto-cookie-consent__body {
  padding: 18px;
}

.exallto-cookie-consent__title {
  margin: 0 0 8px;
  color: #202124;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.exallto-cookie-consent__description {
  margin: 0 0 15px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
}

.exallto-cookie-consent__accept,
.exallto-cookie-consent__essential,
.exallto-cookie-settings-footer__button {
  font: inherit;
}

.exallto-cookie-consent__accept {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  color: #1f2933;
  font-weight: 700;
  background: #f9b514;
  border: 1px solid #d99a00;
  border-radius: 3px;
  cursor: pointer;
}

.exallto-cookie-consent__accept:hover {
  background: #ffbf21;
}

.exallto-cookie-consent__essential {
  display: block;
  width: 100%;
  min-height: 42px;
  margin-top: 6px;
  padding: 9px 12px;
  color: #263238;
  font-weight: 600;
  text-decoration: underline;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.exallto-cookie-consent button:focus-visible,
.exallto-cookie-settings-footer__button:focus-visible {
  outline: 3px solid #0b57d0;
  outline-offset: 2px;
}

.exallto-cookie-settings-footer {
  clear: both;
  padding-top: 8px;
  padding-bottom: 6px;
}

.exallto-cookie-settings-footer__button {
  padding: 2px 0;
  color: inherit;
  text-decoration: underline;
  background: transparent;
  border: 0;
  cursor: pointer;
}

@media (max-width: 767px) {
  .exallto-cookie-consent {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 6px 6px 0 0;
  }

  .exallto-cookie-consent__body {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .exallto-cookie-consent {
    animation: exallto-consent-enter 160ms ease-out;
  }

  @keyframes exallto-consent-enter {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
