.header__contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.header__try {
  border: 2px solid #0862ee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  white-space: nowrap;
  margin: 0;
}

.header__try-short,
.header__try-full {
  font-weight: bold;
  line-height: auto;
  color: #0862ee;
}

.header__try-short {
  display: none;
  font-size: 14px;
}

.header__try-full {
  font-size: 16px;
}

.header__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.request__timer--mobile {
  display: none;
}

@media (max-width: 575px) {
  .header__contacts {
    gap: 1px !important;
  }

  .header__try {
    padding: 10px 14px;
  }

  .request__timer--mobile {
    position: absolute;
    display: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: transparent;
  }

  .request__timer-bar {
    position: absolute;
    top: 0;
    left: -40px;
    height: 100%;
    background-color: #0862ee;
    width: 0;
    transition: width 10s linear;
  }

  .request__timer-bar.active {
    width: calc(100% + 80px);
  }
}

@media (max-width: 991px) {
  .header__contacts {
    gap: 14px;
  }

  .header__try-full {
    display: none;
  }

  .header__try-short {
    display: flex;
  }

  .header-bg {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid white;
  }
}
