::-webkit-scrollbar-thumb,
::-webkit-scrollbar {
  display: none;
}

.header-menu nav::after {
  content: "";
  width: 50px;
  min-height: 100%;

  display: block;

  position: absolute;
  right: 0px;

  pointer-events: none;
  background: linear-gradient(to left, #000000, transparent);
}


.header-menu li:last-child a {
  padding-right: 40px;
}

.header-menu a:hover {
  color: #ffffff;
}


.footer {
  margin-top: 30px;
  background-color: #ffffff;
}


.links-privacy-policy li a {
  display: flex;

  padding: 10px;

  font-size: 13px;
  font-weight: 500;
  text-decoration: none;

  color: #3f3f3f;
}

.links-privacy-policy li a:hover {
  text-decoration: underline;
}

.text-copyright {
  display: flex;
  justify-content: center;

  padding: 10px;
  padding-top: 30px;
}

.text-copyright p {
  font-size: 13px;
  font-weight: 500;

  color: #3f3f3f;
}


.load-more-loader {
  display: none;
  margin: 24px auto;
  width: 32px;
  height: 32px;
}

.load-more-loader span {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.buttonMoreArticles[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}