#cookieConsentRoot,
#cookieConsentRoot * {
  box-sizing: border-box;
}

#cookieConsentRoot {
  position: fixed;
  bottom: 16px;
  left: 50%;
  z-index: 2147482000;
  width: min(752px, calc(100vw - 32px));
  font-family: "Roboto", Arial, sans-serif;
  opacity: 0;
  transform: translate(-50%, 18px) scale(.985);
  animation: cookie-notice-enter .42s cubic-bezier(.2, .8, .2, 1) .15s forwards;
}

#cookieConsentRoot.is-leaving {
  pointer-events: none;
  animation: cookie-notice-leave .28s cubic-bezier(.4, 0, 1, 1) forwards;
}

.cookie-notice {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 13px 13px 13px 17px;
  overflow: hidden;
  border: 1px solid #6647fd;
  border-radius: 61px;
  color: #fff;
  background: #0b0f1e;
  box-shadow: 0 4px 19.7px rgba(0, 0, 0, .25);
}

.cookie-notice__message {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.cookie-notice__message strong {
  color: #fff;
  font-weight: 700;
}

.cookie-notice__button {
  display: inline-flex;
  width: 102.5px;
  padding: 9px 20px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 25px;
  color: #fff;
  background: #6647fd;
  cursor: pointer;
  font-family: "Work Sans", "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.cookie-notice__button:hover {
  color: #fff;
  background: #5638db;
  box-shadow: 0 5px 14px rgba(102, 71, 253, .34);
  transform: translateY(-1px);
}

.cookie-notice__button:active {
  transform: translateY(0) scale(.98);
}

.cookie-notice__button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(102, 71, 253, .5);
}

@keyframes cookie-notice-enter {
  from {
    opacity: 0;
    transform: translate(-50%, 18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes cookie-notice-leave {
  from {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, 14px) scale(.985);
  }
}

@media (max-width: 620px) {
  #cookieConsentRoot {
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .cookie-notice {
    align-items: flex-start;
    border-radius: 20px;
    padding: 14px;
  }

  .cookie-notice__message {
    line-height: 1.45;
  }

  .cookie-notice__button {
    width: auto;
    min-width: 96px;
  }
}

@media (max-width: 430px) {
  .cookie-notice {
    flex-direction: column;
  }

  .cookie-notice__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cookieConsentRoot,
  #cookieConsentRoot.is-leaving,
  .cookie-notice__button {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
