.cookiewarning {
  position: fixed;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  width: 100%;
  left: 0;
}

.cookie-warning.alert {
  padding: 32px 10px;
  margin-bottom: 0;
  display: flex;
  color: #161818;
  align-items: center;
  & > :first-child {
    flex: 1;
  }
  p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
  }
  @media screen and (max-width: 991px) {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;

  }
}

.cookie-notification__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-left: 32px;
  .btn:focus {
    outline: #000 dotted 2px !important;
  }
  .btn-primary,
  .btn-secondary {
    height: min-content;
    padding: 14px 24px;
    border-radius: 0;
    border: 3px solid transparent;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.2px;
    font-weight: 600;
  }

  @media screen and (max-width: 991px) {
    padding-top: 30px;
    padding-left: 0;
    align-self: flex-start;
  }
}