.CookiesBar {
  --cookieBar-sideOffset: 2rem;
  position: fixed;
  bottom: 1.5rem;
  left: var(--cookieBar-sideOffset);
  width: 28em;
  max-width: calc(100% + 1.5em);
  background: var(--colorThemeAccent);
  z-index: var(--layerModalZIndex);
  box-shadow: 0 0 28px #00000040;
  padding: var(--spaceLg) 2.4em;
  font-size: .875rem;
  overflow: hidden;
}

.CookiesBar-left {
  left: var(--cookieBar-sideOffset);
  right: auto;
}

.CookiesBar-right {
  left: auto;
  right: var(--cookieBar-sideOffset);
}

@media (max-width: 40rem) {
  .CookiesBar {
    --cookieBar-sideOffset: .75rem;
    padding: var(--spaceXl) 1.25em var(--spaceMd);
  }
}

.CookiesBar-buttonsWrapper {
  display: flex;
  flex-flow: row wrap;
  gap: .8em 1.2em;
}

.CookiesBar-buttonsWrapper > * {
  flex: 1 0 40%;
}

.CookiesBar-text {
  margin-bottom: var(--spaceMd);
}

.CookiesBar-button {
  position: relative;
  font-size: 1em;
  font-weight: bold;
  padding: 0.64em 1.2em;
  text-transform: none;
  border: 0;
  outline: 0;
  transition: var(--animationBase);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  z-index: 1;
  text-transform: uppercase;
}

.CookiesBar-button:hover {
  text-decoration: none;
}

.CookiesBar-button--disableCookies {
  background: var(--colorSecondaryBg);
  color: hsl(0, 0%, calc((var(--colorSecondaryBg-l) - 60) * -100%));
}

.CookiesBar-button--disableCookies:hover {
  background: hsl(var(--colorSecondaryBg-h), calc(var(--colorSecondaryBg-s) * 1%), calc(var(--colorSecondaryBg-l) * 0.88 * 1%));
}

.CookiesBar-button--allowCookies {
  background: var(--colorBrand);
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
}

@media (max-width: 40rem) {
  .CookiesBar-button--allowCookies {
    order: -1;
  }
}

.CookiesBar-button--allowCookies:hover {
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 0.88 * 1%));
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
}

.CookiesBar-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: var(--layerNegativeZIndex);
  opacity: .05;
  transform: rotate(8deg);
}

/*# sourceMappingURL=cookies-bar.min.css.map */
