.eder-cookienote-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99998;
  display: none;
}

.eder-cookienote-wrapper {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}
@media (max-width: 600px) {
  .eder-cookienote-wrapper {
    top: 20px;
    width: calc(100% - 24px);
  }
}

.eder-cookienote {
  background: #ffffff;
  color: #333333;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border-top: 0 solid #018ec1;
  border-radius: 0;
}
.eder-cookienote__content {
  flex: 1;
}
.eder-cookienote__heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}
.eder-cookienote__text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #555555;
}
.eder-cookienote__text p {
  margin: 0 0 4px 0;
}
.eder-cookienote__text p:last-child {
  margin-bottom: 0;
}
.eder-cookienote__accept {
  background: #018ec1;
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color 0.2s;
  align-self: flex-end;
}
.eder-cookienote__accept:hover {
  background: #005a9e;
}
@media (max-width: 600px) {
  .eder-cookienote {
    padding: 20px 16px;
  }
  .eder-cookienote__accept {
    width: 100%;
    text-align: center;
  }
}

@keyframes eder-toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes eder-toast-slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(40px);
  }
}
.eder-cookienote-toast-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99997;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 600px) {
  .eder-cookienote-toast-wrapper {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

.eder-cookienote-toast {
  background: #fff;
  color: #333;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-left: 4px solid #e70000;
  padding: 14px 16px;
  pointer-events: auto;
  animation: eder-toast-slide-in 0.35s ease-out forwards;
}
.eder-cookienote-toast--hiding {
  animation: eder-toast-slide-out 0.35s ease-in forwards;
}
.eder-cookienote-toast__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.eder-cookienote-toast__heading {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.eder-cookienote-toast__close {
  background: none;
  border: none;
  color: #333;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s;
}
.eder-cookienote-toast__close:hover {
  color: #222;
}
.eder-cookienote-toast__text {
  font-size: 13px;
  line-height: 1.4;
  margin: 8px 0 0;
  color: #333;
}
.eder-cookienote-toast__text p {
  margin: 0 0 4px 0;
}
.eder-cookienote-toast__text p:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=cookienote.css.map */
