/**
 *  - v1.8.37
 * 
 * Copyright (c) 2022
 * Licensed GPLv2+
 */

.cookie-notification {
  position: fixed;
  left: var(--frame-size, 0px);
  bottom: var(--frame-size, 0px);
  z-index: 999999;
  color: var(--color);
}
.cookie-notification a:hover {
  color: var(--colorHover);
}
@media (max-width: 689.98px) {
  .cookie-notification {
    right: var(--frame-size, 0px);
  }
}
.cookie-notification > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
@media (max-width: 689.98px) {
  .cookie-notification > div {
    align-items: center;
  }
}
@media (max-width: 689.98px) {
  .cookie-notification[data-type=type-1] {
    background: var(--backgroundColor);
  }
}
@media (min-width: 690px) {
  .cookie-notification[data-type=type-1] {
    padding: 0 25px 25px 25px;
  }
}
.cookie-notification[data-type=type-1] .container {
  position: relative;
}
@media (max-width: 689.98px) {
  .cookie-notification[data-type=type-1] .container {
    width: 88%;
    margin: 0 auto;
  }
}
@media (min-width: 690px) {
  .cookie-notification[data-type=type-1] .container {
    background: var(--backgroundColor);
    box-shadow: 0px 5px 30px -5px rgba(34, 56, 101, 0.15);
    padding: 30px;
    border-radius: 3px;
    max-width: var(--maxWidth);
  }
}
.cookie-notification[data-type=type-2] {
  right: var(--frame-size, 0px);
  padding-right: var(--scrollbar-width, 0px);
  background: var(--backgroundColor);
}
@media (min-width: 690px) {
  .cookie-notification[data-type=type-2] .ct-container {
    flex-direction: initial;
    align-items: center;
    justify-content: center;
  }
}
.cookie-notification .ct-cookies-content {
  font-size: 14px;
  line-height: 1.4;
}
.cookie-notification .ct-cookies-content > *:last-child {
  margin-bottom: 0;
}
.cookie-notification .ct-cookies-content a {
  text-decoration: underline;
  color: var(--colorHover);
}
@media (max-width: 689.98px) {
  .cookie-notification .ct-cookies-content {
    text-align: center;
  }
}
.cookie-notification .ct-button-group {
  display: flex;
  gap: 10px;
}
@media (max-width: 479.98px) {
  .cookie-notification .ct-button-group {
    width: 100%;
  }
}
.cookie-notification .ct-button-group .ct-button {
  --buttonFontSize: 13px;
  --buttonMinHeight: 35px;
  --padding: 0 20px;
  --buttonShadow: none;
  --buttonTransform: none;
}
@media (max-width: 479.98px) {
  .cookie-notification .ct-button-group .ct-button {
    flex: 1;
  }
}
.cookie-notification.ct-fade-in-start, .cookie-notification.ct-fade-in-end, .cookie-notification.ct-fade-start, .cookie-notification.ct-fade-end {
  transition: all 0.3s ease;
}
.cookie-notification.ct-fade-in-start {
  opacity: 0;
  transform: translate3d(0, 15px, 0);
}
.cookie-notification.ct-fade-end {
  opacity: 0;
  transform: translate3d(0, 15px, 0);
}