.page-separator-button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 20px;
}

.page-separator-button_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 80px;
  border: 1px solid #19adff;
  background: #fff;
  padding: 20px 45px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-separator-button_link {
    gap: 8px;
    border-radius: 65px;
    border: 0.848px solid #19adff;
    padding: 14px 30px;
  }
}

.page-separator-button a {
  color: #19adff;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 768px) {
  .page-separator-button a {
    font-size: 16px;
  }
}

.page-separator-button_icon {
  flex-shrink: 0;
  width: 21px;
  height: 12px;
  background: url("../img/arrow-up.svg") center / contain no-repeat;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .page-separator-button_icon {
    width: 8px;
    height: 14px;
  }
}

.page-separator__line {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  width: 300%;
  transform: translateX(-50%);
  pointer-events: none;
}
