.cookie_notification {
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 53%;
  width: 1200px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 15px;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.4);
  z-index: 1200;
  display: flex;
}

.cookie_notification p {
  margin: 0;
  font-size: 14px;
  text-align: left;
  color: #000000;
}

.cookie_notification a {
  text-decoration: underline;
  color: #3d3d3d;
  transition: all 0.4s;
}

.cookie_notification a:hover {
  text-decoration: none;
  color: #757575;
}

.cookie_accept {
  background-color: rgb(39, 39, 39);
  color: #fff;
  padding: 0px 15px;
  border-radius: 5px;
  margin: 0 0 0 25px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .cookie_notification {
    flex-direction: column;
    text-align: left;
    align-items: end;
  }

  .cookie_accept {
    margin: 5px 0 0 auto;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .cookie_notification {
    left: 50%;
    bottom: 15px;
    max-width: 98%;
  }

  .cookie_notification p {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .cookie_notification p {
    font-size: 11px;
  }

  .cookie_notification {
    padding: 10px;
  }

  .cookie_accept {
    padding: 0px 10px;
    font-size: 12px;
  }
}