:root {
  --color-primary: #2a73d9;
  --color-secondary: #D44D3B;
  --color-dark: #38404B;
  --color-white: #fff;
  --color-black: #000;
  --color-hover-bg: #eaf1fb;
  --color-border-light: rgba(42, 115, 217, 0.2);
  --page-max-width: 970px;
  --button-border-radius: 4px;
  --button-border-width: 2px;
}

html {
  height: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: none; }

html,
input,
button {
  font-family: Helvetica, Arial, sans-serif; }

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

.page {
  height: 100%;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 1.5em;
  flex-direction: column; }
  .page_disable-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .page__header {
    margin-bottom: 2em; }
  .page__footer {
    padding-bottom: 2em; }
  .page__files {
    position: relative;
    width: 100%;
    max-width: var(--page-max-width);
    margin: 1em 0 2em; }
  @media screen and (max-width: 970px) {
    .page {
      padding-left: 15px;
      padding-right: 15px; } }
  @media screen and (max-width: 555px) {
    .page {
      padding-left: 8px;
      padding-right: 8px; } }

.button {
  position: relative;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 4px;
  height: 2.5em;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0 .9em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  min-width: 11em;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, opacity 0.2s ease-out; }
  .button_disabled, .button:disabled {
    opacity: 0.4;
    pointer-events: none; }
  .button_secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary); }
  .button_dark {
    background-color: var(--color-dark);
    border-color: var(--color-dark); }
  .button_fluid {
    width: 100%;
    min-width: 0;
    padding: 0 .25em; }
  .button__icon {
    display: block;
    width: 1.15em;
    height: 1.15em;
    flex-shrink: 0;
    fill: currentColor;
    margin-right: .75em;
    margin-left: -0.1em; }
  .button__text {
    white-space: nowrap; }
  .button__counter {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(55%, -35%);
    font-size: 0.85em;
    font-weight: 700;
    width: 24px;
    height: 24px;
    line-height: 20px;
    text-align: center;
    background-color: var(--color-dark);
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.6); }
  .button.focus-visible, .button:hover {
    background-color: #fff;
    color: var(--color-primary); }
  .button_secondary.focus-visible, .button_secondary:hover {
    color: var(--color-secondary); }
  .button_dark.focus-visible, .button_dark:hover {
    color: var(--color-dark); }
  .button_disabled, .button:disabled, .button.focus-visible, .button:hover {
    transition: color 0.05s ease-in, background-color 0.05s ease-in, opacity 0.05s ease-in; }
  .button_mrfix {
    margin-right: 0.75em; }
  @media screen and (max-width: 555px) {
    .button {
      font-size: .75em; }
      .button_mrfix {
        margin-right: initial; } }
  @media screen and (max-width: 355px) {
    .button {
      font-size: 0.625em; } }

.language {
  position: relative;
  z-index: 7; }
  .language__button {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    padding: 0 .7em;
    color: #000;
    background-color: #fff;
    transition: color 0.2s ease-out, background-color 0.2s ease-out;
    align-items: center;
    justify-content: center;
    height: 2.1875em;
    display: flex;
    border: 2px solid var(--color-primary);
    border-radius: 4px; }
  .language__text {
    margin-right: 1em; }
  .language__icon {
    fill: currentColor; }
  .language__overflow {
    position: absolute;
    border: 1px solid var(--color-primary);
    background-color: #fff;
    border-radius: 0.25em;
    box-shadow: 0px 2px 10px rgba(42, 115, 217, 0.2);
    overflow: hidden;
    z-index: 1;
    top: 100%;
    margin-top: 0.625em;
    right: 0;
    opacity: 0;
    transform: translateY(-0.3em);
    pointer-events: none;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out; }
  .language__list {
    padding: .3em 0;
    overflow: auto;
    list-style: none; }
  .language__title {
    display: block;
    text-decoration: none;
    color: #000;
    padding: .2em 1.4em;
    white-space: nowrap;
    position: relative; }
    .language__title:hover {
      background-color: var(--color-hover-bg); }
  .language__title-icon {
    position: absolute;
    top: 50%;
    left: .45em;
    transform: translateY(-60%); }
  .language_active .language__button {
    background-color: var(--color-primary);
    color: #fff;
    transition: color 0.05s ease-in, background-color 0.05s ease-in; }
  .language_active .language__icon {
    transform: rotate(180deg); }
  .language_active .language__overflow {
    opacity: 1;
    transform: translateY(-2px);
    pointer-events: auto;
    transition: opacity 0.05s ease-in, transform 0.05s ease-in; }
  @media screen and (max-width: 970px) {
    .language__overflow {
      border-radius: 0.5em; }
    .language__list {
      padding: 0; }
    .language li:not(:last-child) .language__title {
      border-bottom: 1px solid #b5cef2; }
    .language__title {
      padding: .5em 4em .5em 1.5em; }
    .language__title-icon {
      left: .55em; } }
  @media screen and (max-width: 555px) {
    .language__button {
      font-size: .8em; } }

.falseadv {
  position: relative;
  background-color: #f2f2f2;
  border: 1px solid #a6a6a6;
  opacity: 1; }
  .falseadv:before {
    content: attr(data-size);
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2em;
    font-weight: 600;
    color: #a6a6a6;
    transform: translate(-50%, -50%); }

.ha {
  width: 100%;
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden; }
.ha_top {
  margin-bottom: 2em; }
.ha_bottom {
  margin-bottom: 2em; }
.cstm {
  height: 90px;
  margin: 0 auto; }

.logo {
  display: inline-block; }
  .logo__image {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    height: 100%; }

.header {
  width: 100%;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  gap: 1em; }
  .header__left {
    position: relative;
    width: 100%; }
  .header__logo {
    max-width: calc(100% - 5em); }
  .header__right {
    position: relative;
    flex-shrink: 0;
    width: 300px;
    height: 250px; }
  .header__right div {
    width: 300px;
    height: 250px; }
  .header__link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #2367c7;
    outline: none; }
    .header__link:before {
      content: '';
      position: absolute;
      bottom: 0;
      height: 1px;
      left: 0;
      right: 0;
      margin-bottom: 0.1em;
      background-color: currentColor;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s ease-out; }
    .header__link.focus-visible:before, .header__link:hover:before {
      opacity: 1;
      transform: translateY(0px);
      transition: opacity 0.05s ease-in; }
  .header__language {
    position: absolute;
    right: 0;
    top: 0; }
  .header__logo {
    margin-bottom: 1.5em; }
  .header__text {
    line-height: 1.4;
    font-size: 1.07em; }
    .header__text_bb {
      padding-bottom: 0.5em;
      margin-bottom: 0.5em;
      border-bottom: 1px dashed #8ab9ea; }
    .header__text_mb {
      margin-bottom: 1em; }
    .header__text b {
      font-weight: 600; }
  .header__line {
    display: inline-block;
    vertical-align: top;
    height: 2px;
    width: 100%;
    margin: 0.5em 0;
    stroke: #c0d5f4;
    stroke-dasharray: 5 7;
    stroke-dashoffset: 0;
    stroke-width: 1px; }
  .header__list {
    list-style: none;
    font-size: 1.07em; }
  .header__list-item {
    position: relative;
    padding-left: 1em; }
    .header__list-item:not(:last-child) {
      margin-bottom: .5em; }
    .header__list-item:before {
      content: '•';
      position: absolute;
      top: 0;
      left: 0;
      color: #9ca0a5; }
  @media screen and (max-width: 1000px) {
    .header__right {
      display: none; } }
  @media screen and (max-width: 630px) {
    .header__logo {
      max-width: calc(100% - 8em);
      height: auto; } }
  @media screen and (max-width: 555px) {
    .header__text {
      text-align: center; }
      .header__text_mb {
        margin-bottom: 0; }
    .header__text_hidden-sm, .header__list, .header__line {
      display: none; } }

.files {
  position: relative;
  margin-bottom: 3em;
  background-color: #fff;
  width: 100%;
  max-width: var(--page-max-width);
  border-radius: 0.75em;
  border: 1px solid #F2F2F2;
  box-shadow: 0px 5px 16px -2px rgba(42, 115, 217, 0.2);
  font-size: 1em;
  padding: 1.6em 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .files__buttons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 1em;
    gap: 0.5em; }
    .files__buttons:not(:last-child) {
      margin-bottom: .7em; }
  .files__error-hint {
    width: 100%;
    text-align: center;
    font-size: 0.85em;
    margin-top: 0.5em;
    color: #c44; }
  .files__list-outer {
    position: relative;
    width: 100%;
    height: 163px;
    height: calc(163px + 20px);
    margin-bottom: .7em;
    overflow: hidden; }
  .files__list-outer_dragover {
    background-color: #f0f7ff; }
  .files__list {
    position: relative;
    height: 163px;
    height: calc(163px + 20px);
    padding: 10px 0 10px 3em;
    overflow: auto;
    display: flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-left: 3em;
    scroll-padding-right: 3em; }
    .files__list:after {
      content: '';
      display: inline-block;
      height: 100%;
      width: 3em;
      flex-shrink: 0; }
    .files__list::-webkit-scrollbar {
      display: none; }
    .files__list_sortable .files__file {
      cursor: move; }
    .files__list_sortable .file_drag-active {
      opacity: 0.9;
      z-index: 100; }
    .files__list_sortable .file_drag-move {
      transition: none; }
    .files__list_sortable .files__file:not(.file_drag-active) {
      transition: transform 0.15s ease-out; }
  .files__list-inner {
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
    list-style: none;
    display: flex;
    flex-shrink: 0;
    height: 163px; }
  .files__button_mr {
    margin-right: 1.35em; }
  .files__file {
    width: 163px;
    height: 163px;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start; }
    .files__file:not(:last-child) {
      margin-right: 0.875em; }
  .files__input-files {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden; }
  .files__drop-caption {
    position: absolute;
    z-index: 0;
    top: .5em;
    bottom: .5em;
    left: 3em;
    right: 3em; }
  .files__scroll-button {
    position: absolute;
    z-index: 3;
    top: 0;
    height: 100%;
    width: 2.6em;
    font-size: 1em; }
    .files__scroll-button:after {
      content: '';
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      background-image: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.75), #fff); }
    .files__scroll-button_prev {
      left: -1px; }
    .files__scroll-button_next {
      right: -1px; }
      .files__scroll-button_next:after {
        transform: rotate(180deg); }
  @media screen and (max-width: 970px) {
    .files__list-outer {
      height: calc(150px + 20px); }
    .files__list {
      height: calc(150px + 20px); }
    .files__list-inner {
      height: 150px; }
    .files__file {
      width: 150px; } }
  @media screen and (max-width: 555px) {
    .files {
      padding: 1em 0; } }
  @media screen and (max-width: 355px) {
    .files__button .button__icon {
      transform: scale(0.75); } }

.drop-caption {
  opacity: 1;
  transition: opacity 0.2s ease-out; }
  .drop-caption_hidden {
    transition: opacity 0.05s ease-in;
    opacity: 0;
    pointer-events: none; }
  .drop-caption__border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    stroke: #b5cef2;
    stroke-dasharray: 10 10;
    stroke-dashoffset: 0;
    stroke-width: 2px; }
  .drop-caption__text {
    font-size: 1em;
    font-weight: 600;
    color: #b5cef2;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    letter-spacing: 0.02em;
    transform: translateY(-50%); }

.scroll-button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
  transition: color 0.2s ease-out, opacity 0.2s ease-out; }
  .scroll-button:disabled {
    opacity: 0.5;
    pointer-events: none; }
  .scroll-button__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: currentColor;
    width: 1.1em;
    height: 2.2em;
    filter: drop-shadow(0 2px 4px #fff);
    transition: transform 0.2s ease-out; }
    .scroll-button__icon_left {
      transform: translate(-50%, -50%) rotate(180deg); }
  .scroll-button:not(.focus-visible):hover .scroll-button__icon {
    transform: translate(calc(-50% + 3px), -50%); }
    .scroll-button:not(.focus-visible):hover .scroll-button__icon_left {
      transform: translate(calc(-50% - 3px), -50%) rotate(180deg); }

.file {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  cursor: default;
  opacity: 1;
  transition: transform 0.35s, opacity 0.35s; }
  .file:after {
    content: '';
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5); }
  .file__header {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0.25em 0.25em 0.25em 0.75em; }
  .file__title {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.75em;
    margin-right: 1em;
    font-weight: 600;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25); }
  .file__close {
    position: relative;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    color: inherit;
    flex-shrink: 0;
    border-radius: 6px;
    padding: 0;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15)); }
    .file__close:hover {
      color: var(--color-danger, var(--color-secondary)); }
    .file__close:hover::before {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      right: 2px;
      bottom: 2px;
      background-color: #fff;
      border-radius: 2px;
      z-index: -1; }
  .file__close-icon {
    display: inline-block;
    vertical-align: top;
    fill: currentColor;
    width: 18px;
    height: 18px; }
  .file__content {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    outline: none;
    background-color: #fff;
    background-image:
      linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
      linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
      linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px; }
    .file__content:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.2); }
  .file__image {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
    transition: opacity 0.2s ease-out; }
    .file__image_hidden {
      opacity: 0; }
  .file__state {
    border: none;
    background: none;
    outline: none;
    position: absolute;
    font-size: 1em;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none; }
    .file__state_visible {
      display: block; }
  .file__state-icon {
    display: block;
    width: 3.5em;
    height: 3.5em;
    margin: 0 auto 0.5em;
    fill: #fff;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25)); }
    .file__state_error .file__state-icon {
      fill: var(--color-secondary); }
  .file__state-text {
    font-size: 0.75em;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25); }
    .file__state-text_format {
      font-size: 1.5em;
      font-weight: 700; }
    .file__state-text_done {
      font-size: 0.85em; }
  .file__state-progress {
    display: none; }
  .file__footer {
    position: absolute;
    z-index: 3;
    bottom: 0.5em;
    left: 0.5em;
    right: 0.5em;
    width: auto;
    opacity: 0.95; }
  .file__button {
    box-shadow: 0 10px 8px -8px rgba(0, 0, 0, 0.125); }

.file-button {
  display: block;
  width: 100%;
  height: 2em;
  line-height: 2em;
  text-align: center;
  font-size: 0.75em;
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s ease-out, opacity 0.2s ease-out; }
  .file-button:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 1); }
  .file-button:disabled {
    opacity: 0.6;
    cursor: default; }
  .file-button_hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }
  .file-button__text {
    font-size: 1em;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1; }
  .file-button__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-primary);
    transition: width 0.15s ease-out;
    width: 0; }
    .file-button__progress_stripes {
      background: repeating-linear-gradient(
        -45deg,
        rgba(42, 115, 217, 0.6),
        rgba(42, 115, 217, 0.6) 10px,
        rgba(42, 115, 217, 0.4) 10px,
        rgba(42, 115, 217, 0.4) 20px
      );
      background-size: 28px 28px;
      animation: progress-stripes 0.5s linear infinite; }
    .file-button__progress_hidden {
      display: none; }

@keyframes progress-stripes {
  from { background-position: 0 0; }
  to { background-position: 28px 0; } }

.footer {
  text-align: center;
  padding: 2em 0; }
  .footer__text {
    width: 100%;
    font-size: 0.9em;
    letter-spacing: 0.04em;
    color: #000; }
  .footer__link {
    color: #2367c7;
    text-decoration: none; }
    .footer__link:hover {
      text-decoration: underline; }

.long {
  padding: 1em 0 2em 0;
  line-height: 1.4;
  font-size: 1.07em; }
  .long h1 {
    font-size: 1.4em;
    text-align: left;
    color: #38404b;
    border-bottom: 2px solid #F2F2F2; }
  .long h2 {
    font-size: 1.2em;
    text-align: left;
    color: #38404b; }
  .long p {
    margin: 1em 0 1em 0; }
  .long ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    font-size: 1.07em; }
  .long li {
    margin: 0.5em 0; }

.popup {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  background-color: rgba(56, 64, 75, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease-out; }
  .popup_visible {
    display: flex;
    opacity: 1; }

.popup__close {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  color: #666;
  font-size: 1em;
  height: 1.5em;
  width: 1.5em;
  right: 1em;
  top: 1em;
  transition: color 0.2s ease-out; }
  .popup__close:hover {
    color: #e74c3c; }

.popup__close-icon {
  width: 100%;
  height: 100%;
  fill: currentColor; }

.popup__overflow {
  position: relative;
  pointer-events: auto;
  max-width: 700px;
  width: calc(100% - 40px);
  min-height: auto;
  max-height: 80vh;
  margin: auto;
  font-size: 1em;
  background-color: #fff;
  border-radius: 1em;
  box-shadow: 0px 5px 30px -2px rgba(42, 115, 217, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.popup__title {
  position: relative;
  padding: 1em 3em 1em 1.5em;
  font-size: 1.2em;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0; }

.popup__content {
  overflow: auto;
  padding: 1em 1.5em; }
  .popup__content p {
    margin: 1em 0;
    font-size: 0.95em;
    line-height: 1.5;
    color: #333; }
  .popup__content h2 {
    font-size: 1.1em;
    margin: 1.5em 0 0.5em;
    color: #38404b; }
  .popup__content a {
    color: var(--color-primary); }

/* Site Switch Navigation */
.site-switch {
  display: flex;
  gap: 3px;
  width: 100%;
  max-width: var(--page-max-width);
  position: relative;
  z-index: 2;
}

.site-switch__tab {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #38404B;
  background: #eaeaea;
  border: 1px solid #F2F2F2;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  transition: background-color 0.2s, color 0.2s;
  position: relative;
}

.site-switch__tab:hover {
  background: #f2f2f2;
  color: #38404B;
}

.site-switch__tab_active {
  background: #fff;
  color: var(--color-primary);
  cursor: default;
  z-index: 1;
  box-shadow: 0px -3px 12px -2px rgba(42, 115, 217, 0.15);
}

.site-switch__tab_active:hover {
  background: #fff;
  color: var(--color-primary);
}

.site-switch__text {
  display: block;
}

.site-switch + .files {
  border-top: 1px solid #F2F2F2;
  border-radius: 0 0.75em 0.75em 0.75em;
  margin-top: -1px;
}

.site-switch__text_short {
  display: none;
}

@media screen and (max-width: 700px) {
  .site-switch__text_full {
    display: none;
  }
  .site-switch__text_short {
    display: block;
  }
  .site-switch__tab {
    padding: 6px 12px;
    font-size: 12px;
  }
}
