.topbar {
  padding: 16px 0;
}

.topbar__container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  max-width: 1710px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.topbar .menu {
  display: flex;
  justify-content: flex-start;
  gap: 36px;
  font-size: 18px;
  font-weight: 600;
}

.topbar .menu__link {
  color: inherit;
  text-decoration: none;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar .pill-btn {
  border: 1px solid #ef2b2b;
  color: #ef2b2b;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.topbar .pill-btn--pdf {
  position: relative;
  padding-left: 32px;
}

.topbar .pill-btn--pdf::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  -webkit-mask-image: var(--icon-pdf);
  mask-image: var(--icon-pdf);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
}

.topbar .pill-btn--callback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar .pill-btn--callback .svg-phone {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  margin: 0;
}

.topbar .account {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.topbar .account__icon {
  width: 28px;
  height: 28px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.topbar .account__icon .svg,
.topbar .account__icon svg {
  display: block;
  position: static;
  top: 0;
  min-width: 16px;
  min-height: 16px;
  width: 16px;
  height: 16px;
}

.topbar .account__text {
  display: grid;
  gap: 2px;
  font-size: 12px;
  color: #7a7a7a;
}

.topbar .account__title {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.topbar .account__subtitle {
  font-size: 12px;
}
