.cookie-consent-banner {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 8px -2px, rgba(0, 0, 0, 0.25) 0px 0px 1px 0px;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 1004;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-width: 984px;
  border-radius: 12px 12px 0px 0px;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h3 {
    font-weight: 600;
    font-style: bold;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -1.1%;
}

.cookie-consent-text .cookie-consent-message {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.6%;
    color: #535353
}

.cookie-btn {
    padding: 2px 24px;
    border: none;
    height: 32px;
    border-radius: 4px;
    min-width: 100px;
    min-height: 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color:rgb(255, 255, 255);
    background: rgb(56, 56, 56);

    &:hover {
        background-color: rgba(56, 56, 56, 0.82);
    }
}

.cookie-consent-a {
    font-weight: bold;
    font-style: Medium;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.6%;
    text-decoration: underline!important;
    color: #535353;

    &:hover {
        color: #535353;
        opacity: 0.7;
    }
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
}

.cookie-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateX(-50%);
        opacity: 1;
    }
    to {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
}

.cookie-consent-banner.show {
    animation: slideUp 0.5s ease-out forwards;
    pointer-events: auto;
}

.cookie-consent-banner.hide {
    animation: slideDown 0.5s ease-in forwards;
}