@keyframes present_shake {
  0%, 2% {
    transform: rotateZ(-15deg);
  }

  1%, 3% {
    transform: rotateZ(15deg);
  }

  4% {
    transform: rotateZ(0);
  }
}

@keyframes present_amove {
  0%, 2% {
    transform: translate(3px, -3px);
  }

  1%, 3% {
    transform: translate(-3px, 3px);
  }

  4% {
    transform: translate(0, 0);
  }
}

.cs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1011;
}

.cs-header.active .cs-header__toggle svg {
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

.cs-header__top {
  height: 52px;
  padding-left: 10px;
  padding-right: 10px;
  background: var(--header-top);
}

.cs-header__top_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.cs-header__slogan,
.cs-header__menu-small,
.cs-header__lang {
  display: none;
}

.cs-header__toggle {
  display: block;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  width: 24px;
  height: 50px;
  margin-right: 14px;
}

.cs-header__toggle svg {
  width: 18px;
  height: 16px;
  stroke: var(--color-white);
  transition: 0.3s;
}

.cs-header__logo {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 30px;
  margin-right: 10px;
}

.cs-header__logo img {
  width: 100%;
  height: 100%;
  object-position: center left;
  object-fit: contain;
}

.cs-header__panel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.cs-header__icon-num {
  position: relative;
  line-height: 0;
}

.cs-header__icon-num img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
  width: 36px;
  height: 36px;
}

.cs-header__icon-num_value {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  color: var(--color-white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  background-image: linear-gradient(to bottom, #24B90C 0%, #084802 100%);
  box-shadow: 1px -1px 0 0 rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.cs-header__icon-num.animation img {
  animation: present_shake 10s linear 5s infinite;
}

.cs-header__icon-num.animation .cs-header__icon-num_value {
  animation: present_amove 10s linear 5s infinite;
}

.cs-header__bonus {
  position: relative;
  line-height: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
}

.cs-header__bonus.active .cs-header__icon-num::before {
  display: block;
}

.cs-header__bonus.active .cs-header__bonus_drop {
  display: block;
}

.cs-header__bonus .cs-header__icon-num::before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  margin: auto;
  width: 10px;
  height: 10px;
  background: #E1FFE0;
  border-top: 2px solid #6ECC6C;
  border-left: 2px solid #6ECC6C;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 4;
}

.cs-header__bonus_drop {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 20px;
  right: -128%;
  width: calc(100vw - 20px);
  z-index: 1000;
}

.cs-header__bonus_item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #E1FFE0;
  border: 2px solid #6ECC6C;
  border-radius: 5px;
  padding: 6px;
  margin-bottom: 5px;
}

.cs-header__bonus_item:last-child {
  margin-bottom: 0;
}

.cs-header__bonus_logo {
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 50%;
}

.cs-header__bonus_logo img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}

.cs-header__bonus_text {
  -ms-flex: 0 0 calc(70% - 71px);
  flex: 0 0 calc(70% - 71px);
  margin-left: 10px;
  margin-right: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.cs-header__bonus .cs-btn {
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  width: 30%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  text-transform: none;
  line-height: 1;
}

.cs-header__bonus_terms {
  width: 100%;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.2;
}

.cs-header__bonus_close {
  position: absolute;
  right: -10px;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #6ECC6C;
  font-size: 0;
  color: var(--color-white);
  z-index: 2;
}

.cs-header__bonus_close svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: currentColor;
}

.cs-header__search-btn {
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: var(--color-white-opacity-10);
  border-radius: 50%;
  color: var(--color-white);
}

.cs-header__search-btn svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cs-header__search {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
}

.cs-header__search.active {
  display: block;
}

.cs-header__search_overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
}

.cs-header__search_container {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 2px;
}

.cs-header__search_top {
  position: relative;
}

.cs-header__search_top .cs-btn {
  position: absolute;
  right: 46px;
  top: 0;
  bottom: 0;
  width: 46px;
  height: 100%;
  border-radius: 0;
  color: currentColor;
}

.cs-header__search_top .cs-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cs-header__search_form {
  height: 46px;
  margin-bottom: 7px;
}

.cs-header__search_form > * {
  height: 100%;
}

.cs-header__search_form .cs-btn input {
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

.cs-header__search_form.proccess:before {
  background: none;
}

.cs-header__search_form.proccess:after {
  width: 36px;
  height: 36px;
  top: 5px;
  margin: 0 0 0 -18px;
}

.cs-header__search_input {
  width: 100%;
  padding-left: 10px;
  padding-right: 85px;
  font-size: 15px;
  background: var(--color-white);
  border-radius: 5px;
}

.cs-header__search_close.cs-btn {
  right: 0;
}

.cs-header__search_close.cs-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.cs-header__search_close.cs-btn::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 28px;
  background: #C6C8CB;
  border-radius: 50px;
}

.cs-header__search_result {
  width: 100%;
  max-height: calc(100vh - 55px);
  background: var(--color-white);
  overflow: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.cs-header__search_result::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.cs-header__search_result::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--color-gray-8f8);
}

.cs-header__search_result::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--color-gray-6d6);
}

.cs-header__search_block {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 10px;
}

.cs-header__search_block:first-child {
  padding-top: 10px;
}

.cs-header__search_block:last-child {
  margin-bottom: 0;
  padding-bottom: 10px;
}

.cs-header__search_label {
  border-bottom: 1px solid #C6C8CB;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.cs-header__search_link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  padding-top: 4px;
  padding-bottom: 4px;
  text-decoration: none;
}

.cs-header__search_link span {
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
  width: 45px;
  height: 30px;
  margin-right: 10px;
}

.cs-header__search_link span img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}

.cs-header__search_link span[style] {
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  width: 30px;
  border-radius: 50%;
  padding: 3px;
}

.cs-header__search_link:last-child {
  margin-bottom: 0;
}

.cs-header__search_empty {
  text-align: center;
  line-height: 57px;
  font-size: 15px;
  border: 1px solid var(--color-gray-3f4);
}

.cs-header__user-pc {
  display: none;
}

.cs-header__user-mobile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
}

.cs-header__user-mobile .cs-header__user_btn:last-child {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.cs-header__user_btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  font-size: 16px;
  padding-left: 8px;
  padding-right: 8px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-white);
}

.cs-header__user_btn svg {
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  padding: 6.5px;
  border-radius: 50%;
  background: var(--color-white);
  fill: var(--color-red-131);
}

.cs-header__notifications-btn {
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: var(--color-white-opacity-10);
  border-radius: 50%;
  color: var(--color-white);
  position: relative;
  cursor: pointer;
}

.cs-header__notifications-btn svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cs-header__notifications-btn_unread:before {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 5px 0 var(--color-red-c3c);
  border-radius: 50%;
  background: var(--color-red-c3c);
  top: 0px;
  right: 0px;
  position: absolute;
  content: "";
}

.cs-header__notifications_drop {
  position: fixed;
  left: 0;
  right: 0;
  top: 52px;
  z-index: 1;
  max-height: calc(100vh - 52px);
  background: var(--color-red-f1f);
  padding: 16px;
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.cs-header__notifications_drop.active {
  display: -ms-flexbox;
  display: flex;
}

.cs-header__notifications_container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
  min-height: 0;
  color: var(--color-white);
}

.cs-header__notifications_mark-read {
  width: 100%;
  background: var(--color-white-opacity-05);
  color: var(--color-white);
  border: 0;
  border-radius: 5px;
  padding: 6px;
  font-size: 12px;
  line-height: 120%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
}

.cs-header__notifications_mark-read svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

.cs-header__notifications_list {
  padding-top: 14px;
  border-top: 1px solid var(--color-white-opacity-10);
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  margin-top: 14px;
}

.cs-header__notifications_list::-webkit-scrollbar {
  width: 14px;
  background: transparent;
  opacity: 0.1;
  border-radius: 4px;
}

.cs-header__notifications_list::-webkit-scrollbar-track {
  width: 8px;
  background: var(--color-white-opacity-10);
  border-radius: 8px 4px 4px 8px;
  border-left: 6px solid var(--color-red-f1f);
}

.cs-header__notifications_list::-webkit-scrollbar-thumb {
  border-radius: 8px 4px 4px 8px;
  background: var(--color-white-opacity-15);
  width: 8px;
  border-left: 6px solid var(--color-red-f1f);
}

.cs-header__notifications_item {
  position: relative;
  margin-bottom: 6px;
}

.cs-header__notifications_item:last-child {
  margin-bottom: 0;
}

.cs-header__notifications_item_unread:before {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 5px 0 var(--color-red-c3c);
  border-radius: 50%;
  background: var(--color-red-c3c);
  top: 5px;
  left: 5px;
  position: absolute;
  content: "";
}

.cs-header__notifications_item_empty {
  font-size: 16px;
  text-align: center;
}

.cs-header__notifications_link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: var(--color-white-opacity-15);
  text-decoration: none;
  color: var(--color-white);
  position: relative;
}

.cs-header__notifications_icon {
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-white);
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs-header__notifications_icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: var(--color-red-f1f);
}

.cs-header__notifications_content {
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.cs-header__notifications_text {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 4px;
  padding-right: 10px;
}

.cs-header__notifications_time {
  font-size: 12px;
  opacity: 0.5;
  line-height: 1.2;
}

.cs-header__notifications_close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.5;
  color: var(--color-white);
  z-index: 2;
}

.cs-header__notifications_close::before {
  content: "✕";
  font-size: 13px;
}

.cs-header__notifications_close:hover {
  opacity: 1;
}

.cs-header__menu {
  background: var(--color-red-131);
}

.cs-header__menu_item {
  position: relative;
}

.cs-header__menu_name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  color: var(--color-white);
  font-size: 14px;
  padding-right: 50px;
  padding-left: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cs-header__menu_icon {
  -ms-flex: 0 0 28px;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  padding: 6px;
  background: var(--color-white);
  border-radius: 50%;
  line-height: 16px;
  margin-right: 6px;
}

.cs-header__menu_icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-red-131);
}

.cs-header__menu_badge {
  display: none;
}

.cs-header__menu_drop {
  display: none;
  background: var(--color-red-131);
}

@media (min-width: 1111px) {
  .gpro_logged_in {
    top: 130px;
  }

  .cs-header__toggle {
    display: none;
  }

  .cs-header__menu_list,
  .cs-header__top_wrap {
    max-width: 1170px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cs-header__menu {
    position: relative;
  }

  .cs-header__menu_list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
  }

  .cs-header__menu_list > .cs-header__menu_item {
    min-width: 10%;
  }

  .cs-header__menu_list > .cs-header__menu_item > .cs-header__menu_name {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cs-header__menu_list > .cs-header__menu_item > .cs-header__menu_drop {
    transform: rotateX(90deg);
    -ms-transform-origin: top;
    transform-origin: top;
  }

  .cs-header__menu_list > .cs-header__menu_item:hover > .cs-header__menu_name::after {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-top: -7px;
  }

  .cs-header__menu_list > .cs-header__menu_item:hover > .cs-header__menu_drop {
    transform: rotateX(0);
  }

  .cs-header__menu_item:hover > .cs-header__menu_name {
    background: var(--color-white-opacity-10);
  }

  .cs-header__menu_item:hover > .cs-header__menu_drop {
    visibility: visible;
    opacity: 1;
  }

  .cs-header__menu_name {
    white-space: nowrap;
    padding-left: 6px;
    padding-right: 6px;
  }

  .cs-header__menu_name::after {
    content: "";
    border: 4px solid transparent;
    border-top: 5px solid var(--color-white);
    margin-left: 6px;
    margin-bottom: -4px;
  }

  .cs-header__menu_name:last-child::after {
    display: none;
  }

  .cs-header__menu_badge {
    display: inherit;
    margin-left: 6px;
    margin-bottom: auto;
    margin-top: 18px;
    background: linear-gradient(90deg, #F9E941 0%, #F9E941 0%, #F1AD01 100%);
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 4px;
    font-size: 10px;
    line-height: 15px;
    color: #3B1010;
  }

  .cs-header__menu_btn {
    display: none;
  }

  .cs-header__menu_drop {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 999;
    padding-top: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.3s;
  }

  .cs-header__menu_drop .cs-header__menu_item > .cs-header__menu_drop {
    left: 100%;
    right: auto;
    width: 100%;
    top: 0;
    border-top-right-radius: 5px;
    transform: rotateY(90deg);
    -ms-transform-origin: left;
    transform-origin: left;
  }

  .cs-header__menu_drop .cs-header__menu_item:hover > .cs-header__menu_drop {
    transform: rotateY(0);
  }

  .cs-header__menu_drop .cs-header__menu_name {
    height: auto;
    min-height: 30px;
    white-space: initial;
    padding: 8px 18px 8px 10px;
    font-size: 12px;
    line-height: 1.15;
  }

  .cs-header__menu_drop .cs-header__menu_name::after {
    width: 5px;
    height: 5px;
    position: absolute;
    right: 10px;
    top: -2px;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    border-left: none;
    border-bottom: none;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .cs-header__top {
    height: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .cs-header__logo {
    -ms-flex: none;
    flex: none;
    height: 36px;
  }

  .cs-header:not(:has(.cs-header__slogan)) .cs-header__logo {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .cs-header__slogan {
    display: block;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 18px;
    color: var(--color-white-opacity-80);
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
  }

  .cs-header__menu-small {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-right: 40px;
  }

  .cs-header__menu-small > * {
    font-size: 14px;
    color: var(--color-white);
    padding: 8px 0;
    text-decoration: none;
    transition: 0.3s;
  }

  .cs-header__menu-small > *[href]:hover {
    color: rgba(255, 255, 255, 0.7);
  }

  .cs-header__panel {
    gap: 20px;
  }

  .cs-header__bonus_icon {
    cursor: pointer;
  }

  .cs-header__bonus_drop {
    width: 440px;
    right: -70px;
  }

  .cs-header__bonus_close {
    cursor: pointer;
    transition: 0.3s;
  }

  .cs-header__bonus_close:hover {
    background: var(--color-green-506);
    color: var(--color-white);
  }

  .cs-header__bonus.active .cs-header__icon-num_text {
    color: var(--color-green-90c);
  }

  .cs-header__lang {
    position: relative;
    display: block;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 0;
    line-height: 1;
    z-index: 2;
    overflow: hidden;
    text-align: center;
  }

  .cs-header__lang_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    overflow: hidden;
    height: 48px;
    border-radius: 5px;
    transition: 0.3s;
  }

  .cs-header__lang:hover {
    overflow: visible;
  }

  .cs-header__lang:hover .cs-header__lang_wrap {
    height: auto;
    background: var(--header-top);
  }

  .cs-header__lang:hover .cs-header__lang_wrap:before {
    position: absolute;
    z-index: 1;
    content: "";
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white-opacity-10);
  }

  .cs-header__lang_item {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .cs-header__lang_item.active {
    -ms-flex-order: -1;
    order: -1;
    cursor: default;
    pointer-events: none;
  }

  .cs-header__lang_item > * {
    display: block;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 5px;
  }

  .cs-header__lang_item > *[href] {
    border-radius: 5px;
    transition: 0.3s;
  }

  .cs-header__lang_item > *[href]:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  .cs-header__lang img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .cs-header__search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100vh;
    z-index: 999;
  }

  .cs-header__search_overlay {
    cursor: pointer;
  }

  .cs-header__search_container {
    max-width: 1190px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3px;
  }

  .cs-header__search_form {
    height: 54px;
    margin-bottom: 9px;
  }

  .cs-header__search_close.cs-btn::before {
    height: 32px;
  }

  .cs-header__search_result {
    max-height: calc(100vh - 66px);
  }

  .cs-header__user-mobile {
    display: none;
  }

  .cs-header__user-pc {
    display: block;
    position: relative;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }

  .cs-header__user-pc_btn-drop {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: var(--color-white-opacity-10);
    border-radius: 50%;
    transition: 0.3s;
  }

  .cs-header__user-pc_btn-drop:hover {
    background: var(--color-white-opacity-30);
  }

  .cs-header__user-pc_btn-drop > svg {
    width: 100%;
    height: 100%;
    padding: 8px;
    fill: var(--color-white);
  }

  .cs-header__user-pc_btn-drop span {
    display: block;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 5px 0 rgba(36, 185, 12, 0.5);
    border-radius: 50%;
  }

  .cs-header__user-pc_btn-drop span::before,
  .cs-header__user-pc_btn-drop span::after {
    content: "";
    position: absolute;
  }

  .cs-header__user-pc_btn-drop span::before {
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-green-90c);
  }

  .cs-header__user-pc_btn-drop span::after {
    left: 6px;
    top: 4px;
    width: 2px;
    height: 4px;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
  }

  .cs-header__user-pc_drop {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 170px;
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
    z-index: 1000;
    overflow: hidden;
  }

  .cs-header__user-pc_drop.active {
    display: block;
  }

  .cs-header__user_btn {
    border-bottom: 1px solid var(--color-white-fef);
    color: inherit;
  }

  .cs-header__user_btn:not(:has(svg)) {
    min-height: 40px;
  }

  .cs-header__user_btn:last-child {
    border-bottom: none;
  }

  .cs-header__user_btn:hover {
    background: var(--color-white-fef);
  }

  .cs-header__user_btn svg {
    background: var(--color-red-131);
    fill: var(--color-white);
  }

  .cs-header__notifications {
    position: relative;
  }

  .cs-header__notifications-btn {
    position: relative;
  }

  .cs-header__notifications_drop {
    position: absolute;
    max-height: calc(100vh - 120px);
    width: 320px;
    left: auto;
    top: 62px;
  }
}

@media (max-width: 1110px) {
  .cs-header:has(.cs-header__sticky) .cs-header__menu_list {
    max-height: calc(100vh - 50px - 66px);
  }

  .cs-header.active .cs-header__toggle {
    background: var(--color-white-opacity-10);
  }

  .cs-header.active .cs-header__toggle span:nth-child(1) {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: -3px;
  }

  .cs-header.active .cs-header__toggle span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transition: none;
  }

  .cs-header.active .cs-header__toggle span:nth-child(3) {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -6px;
  }

  .cs-header.active .cs-header__menu {
    display: block;
  }

  .cs-header__menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-width: 480px;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .cs-header__menu_list {
    position: relative;
    max-height: calc(100vh - 50px);
    overflow: auto;
    padding-bottom: 14px;
  }

  .cs-header__menu_list::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
  }

  .cs-header__menu_item {
    border-bottom: 1px solid var(--color-white-opacity-10);
  }

  .cs-header__menu_item:last-child {
    border-bottom: none;
  }

  .cs-header__menu_item.active > .cs-header__menu_drop {
    display: block;
  }

  .cs-header__menu_item.active > .cs-header__menu_btn::before {
    border-top: none;
    border-bottom: 7px solid var(--color-white);
    bottom: 0;
  }

  .cs-header__menu_item.active:hover > .cs-header__menu_name {
    background: var(--color-white-opacity-10);
  }

  .cs-header__menu_btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 60px;
  }

  .cs-header__menu_btn::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    top: 0;
    margin: auto;
    border: 5px solid transparent;
    border-top: 7px solid var(--color-white);
    font-size: 0;
  }

  .cs-header__menu_drop {
    padding-left: 20px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .cs-header__menu_drop .cs-header__menu_item {
    border-bottom: none;
    margin-bottom: 4px;
  }

  .cs-header__menu_drop .cs-header__menu_item:last-child {
    margin-bottom: 0;
  }

  .cs-header__menu_drop .cs-header__menu_name {
    height: 30px;
    padding-right: 30px;
    padding-left: 10px;
  }

  .cs-header__menu_drop .cs-header__menu_btn {
    width: 30px;
    height: 30px;
  }
}

@media (hover: hover) {
  .cs-header__logo[href] {
    transition: 0.3s;
  }

  .cs-header__logo[href]:hover {
    opacity: 0.65;
  }

  .cs-header__icon-num {
    cursor: pointer;
  }

  .cs-header__icon-num_text {
    transition: 0.3s;
  }

  .cs-header__icon-num:hover .cs-header__icon-num_text {
    color: rgba(255, 255, 255, 0.7);
  }

  .cs-header__search-btn {
    cursor: pointer;
    transition: 0.3s;
  }

  .cs-header__search-btn:hover {
    background: var(--color-white-opacity-30);
  }

  .cs-header__search_link {
    position: relative;
  }

  .cs-header__search_link:hover {
    background: var(--color-white-fef);
  }

  .cs-header__search_form .cs-btn {
    cursor: pointer;
  }

  .cs-header__search_form .cs-btn svg {
    transition: 0.3s;
  }

  .cs-header__search_form .cs-btn:hover svg {
    fill: rgba(0, 0, 0, 0.5);
  }

  .cs-header__search_close.cs-btn:hover svg {
    stroke: rgba(0, 0, 0, 0.5);
  }

  .cs-header__toggle {
    cursor: pointer;
  }

  .cs-header__toggle:hover svg {
    stroke: var(--color-white-opacity-50);
  }

  .cs-header__notifications-btn:hover {
    background: var(--color-white-opacity-30);
  }

  .cs-header__notifications_mark-read:hover {
    background: var(--color-white-opacity-10);
  }
}