.cookie-notification {
    align-items: center;
    background: #CFE2F1F0;
    backdrop-filter: blur(4px);
    border: 1px solid #b9b6c4;
    border-radius: 1px;
    bottom: 16px;
    box-shadow: 0 12px 24px 0 rgba(38,38,38,.16);
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    left: 12px;
    padding: 16px 20px;
    position: fixed;
    width: calc(100% - 24px);
    z-index: 10000;
    gap: 12px;
}

@media (min-width: 1024px) {
  .cookie-notification {
    left: 14px;
    right: unset;
    width: 480px;    
  }
}

/*
@media (min-width: 1024px) { 
  .cookie-notification {
    right: 14px;
    left: unset;
    width: 480px;    
  }
}
*/

.cookie-notification-content {
    font-size: 0.8em;
    line-height: 1.4;
}

.cookie-accept-btn {
    min-height: 44px;
    background: #2f6fa5;
    border: 1px solid #24567f;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 1px;
    font-weight: bold;
    font-size: 1em;
}

.cookie-accept-btn:hover {
    background-color: #24567f;
}

