.header-mobile {
  background: linear-gradient(
    180deg,
    rgba(25, 27, 30, 0.32),
    rgba(25, 27, 30, 0.72)
  );
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: 99999999;
}
.header-mobile--wrapper {
  height: 100%;
  margin: 0 auto;
  max-width: 1360px;
  overflow: hidden;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .header-mobile--wrapper {
    display: flex;
    width: 100%;
  }
}
.header-mobile--wrapper-outer {
  height: 100%;
}
.header-mobile--content {
  background: var(--10, #fff);
  border-radius: 24px;
  cursor: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 420px;
  padding: 8px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header-mobile--content {
    height: calc(100% - 67px);
    margin-top: auto;
    max-width: none;
    padding-top: 24px;
    width: 100%;
  }
}
.header-mobile--top {
  align-items: center;
  display: flex;
  gap: 0 10px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .header-mobile--top {
    margin-bottom: 56px;
  }
}
.header-mobile--title {
  color: var(--Grey-grey-900, #323232);
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.header-mobile--close {
  align-items: center;
  background: var(--20, #f4f5f6);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  height: 62px;
  justify-content: center;
  width: 62px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: background 0.4s;
}
.header-mobile--close:hover {
  background: #191b1e;
}
.header-mobile--close:hover svg path {
  fill: #fff;
}
.header-mobile--close svg path {
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .header-mobile--close {
    height: 60px;
    left: 8px;
    position: absolute;
    top: 8px;
    width: 60px;
  }
}
.header-mobile--cta {
  margin-top: auto;
}
.header-mobile--additional{
    display: flex;
    flex-direction: column;
    padding-right: 8px;
}
.header-mobile--additional a {
    color: var(--50, #c8cdd5);
    display: flex;
    padding: 6px 16px 12px;
    position: relative;
    transition: all 0.4s;
    font-size: 28px;
}
.header-mobile--additional a:hover {
    color: #191b1e;
}
.header-mobile--cta a {
  background: var(--Base-black, #191b1e);
  border-radius: 12px;
  display: flex;
  flex-direction: row-reverse;
  gap: 0 10px;
  justify-content: center;
  padding: 18px 24px;
  transition: background 0.4s;
}
.header-mobile--cta a:hover {
  background-color: #f4f5f6;
  transition: 0.4s;
}
.header-mobile--cta a:hover span {
  color: #191b1e;
  transition: 0.4s;
}
.header-mobile--cta a:hover svg path {
  fill: #191b1e;
  transition: 0.4s;
}
.header-mobile--cta a span {
  color: var(--Base-white, #fff);
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
  transition: color 0.4s;
}
.header-mobile--cta a svg {
  height: 22px;
  width: 22px;
}
.header-mobile--cta a svg path {
  transition: all 0.4s;
}
.header-mobile--navigation {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  height: 75%;
  margin-bottom: 20px;
  overflow: auto;
  padding-right: 8px;
  width: calc(100% + 8px);
}
.header-mobile--navigation .link-item {
  color: var(--50, #c8cdd5);
  display: flex;
  padding: 6px 16px 12px;
  position: relative;
  transition: all 0.4s;
}
.header-mobile--navigation .link-item:hover {
  color: #191b1e;
}
@media screen and (max-width: 767px) {
  .header-mobile--navigation .link-item {
    font-size: 42px;
    letter-spacing: -1.26px;
    line-height: 44px;
    text-transform: lowercase;
  }
}
.header-mobile--navigation .link-item:before {
  background: #00a1ff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  left: 16px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
  visibility: hidden;
  width: 8px;
}
.header-mobile--navigation .link-item.accordion__trigger {
  align-items: center;
  display: flex;
  gap: 0 8px;
}
.header-mobile--navigation .link-item.accordion__trigger svg {
  position: relative;
  right: -5px;
  top: 7px;
  transition: all 0.4s;
}
.header-mobile--navigation .link-item.active {
  background: rgba(0, 161, 255, 0.12);
  border-radius: 16px;
  color: var(--accent-blue, #00a1ff);
  padding-left: 44px;
}
.header-mobile--navigation .link-item.active svg path {
  fill: currentColor;
}
.header-mobile--navigation .link-item.active:before {
  opacity: 1;
  visibility: visible;
}
.header-mobile--navigation .accordion__item {
  transition: all 0.4s;
}
.header-mobile--navigation .accordion__item.open {
  background: var(--20, #f4f5f6);
  border-radius: 16px;
}
.header-mobile--navigation .accordion__item.open svg {
  transform: rotate(-180deg);
}
.header-mobile--navigation .accordion__item.open .accordion__trigger {
  color: #191b1e;
}
.header-mobile--navigation .accordion__content {
  padding: 18px 0 12px;
}
.header-mobile--navigation .accordion__content .link-item {
  font-family:
    Inter Tight,
    sans-serif;
  font-size: 32px;
  font-weight: 550;
  letter-spacing: normal;
  line-height: 34px;
  margin-left: 16px;
  text-transform: lowercase;
  width: calc(100% - 32px);
}
@media screen and (max-width: 767px) {
  .header-mobile--navigation .accordion__content .link-item {
    font-size: 24px;
    letter-spacing: -0.24px;
    line-height: 30px;
  }
}
.header-mobile--navigation .accordion__content .link-item:not(.active) {
  color: #999fa9;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .header-mobile--navigation .accordion__content .link-item:not(:last-of-type) {
    margin-bottom: 6px;
  }
  .header-mobile--navigation
    .accordion__content
    .link-item:not(:last-of-type).active {
    margin-bottom: 1px;
  }
}
.header-mobile--navigation .accordion__content .link-item.active {
  margin-left: 4px;
  padding-left: 36px;
  width: calc(100% - 8px);
}
body.show-header-menu .header-mobile {
  opacity: 1;
  visibility: visible;
}
