.helpbar {
  margin-top: 32px;
  margin-bottom: 32px;
  max-width: 1384px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.helpbar a {
  text-decoration: none;

  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #0ccd93;
  transition: color 0.5s;
}

.helpbar a:hover {
  color: #000000;
}

.helpbar .helpbar--help {
  color: #ababab;
}

.helpbar .helpbar--help:hover {
  color: #0ccd93;
}

.helpbar--social a {
  display: inline-block;
  margin-left: 26px;
  transition: color 0.5s;
}

.helpbar--social path {
  transition: fill 0.5s;
}

.helpbar--social a:hover path {
  fill: #0ccd93;
}

@media screen and (min-width: 800px) {
  .helpbar {
    justify-content: end;
    margin-top: 21px;
    margin-bottom: 21px;
  }

  .helpbar a {
    font-size: 20px;
    line-height: 23px;
  }

  .helpbar--social {
    margin-left: 60px;
  }

  .helpbar--help {
    margin-left: 50px;
  }
}

.scrollbar {
  max-width: 1384px;
  margin-left: auto;
  margin-right: auto;
  height: 48px;
  transition: opacity 0.3s ease;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  z-index: -9999;
  padding-left: 16px;
  padding-right: 16px;
}

.scrollbar.active {
  opacity: 1;
  z-index: 999;
}

.scrollbar--img img {
  max-width: 355px;
}

.scrollbar--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.scrollbar--links a {
  padding-left: 20px;
}

.scrollbar--links img {
  max-width: 103px;
}

.scrollbar--links {
  display: flex;
}

.scrollbar--desktop {
  display: none;
}

.scrollbar--mobile {
  display: block;
}

@media screen and (min-width: 800px) {
  .scrollbar {
    height: 88px;
  }

  .scrollbar--desktop {
    display: block;
  }

  .scrollbar--mobile {
    display: none;
  }
}
