.sidebar-block {
  z-index: 4;
  position: fixed;
  right: 0;
  top: 0;
  width: 75px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffc197;
  color: #ffffff;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .sidebar-block {
    position: fixed;
    display: flex;
    right: 0;
    width: 100%;
    height: 75px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ffc197;
    color: #ffffff;
  }
}
.sidebar-block__button {
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.sidebar-block__button:hover {
  transform: scale(1.2);
}

.fadeOut {
  animation: fadeOut 0.5s ease-in-out;
}

.fadeIn {
  animation: fadeIn 0.5s ease-in-out;
}

.sidebar {
  position: fixed;
  pointer-events: none;
  z-index: 3;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.sidebar-menu {
  position: absolute;
  right: 0;
  width: 400px;
  height: 100%;
  background-color: #ffc197;
}
@media screen and (max-width: 768px) {
  .sidebar-menu {
    width: 100%;
  }
}
.sidebar-menu__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 32px;
  height: 100%;
}
.sidebar-menu__list a {
  margin-top: 32px;
  text-decoration: none;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 550;
  font-size: 32px;
  line-height: 32px;
  padding-left: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.sidebar-menu__list a:hover {
  opacity: 0.8;
  padding-left: 10px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .sidebar-menu__list {
    margin-left: 0px;
    width: 100%;
    text-align: center;
  }
  .sidebar-menu__list a {
    margin-top: 0px;
    margin-bottom: 32px;
    width: 100%;
  }
}
.sidebar-menu__switchers {
  position: absolute;
  bottom: 0;
  display: flex;
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  margin: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sidebar-menu__switchers {
    text-align: center;
    width: 100%;
    margin: 30px 0;
  }
}
.sidebar-menu__switchers-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sidebar-menu__switchers-list {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.sidebar-menu__switchers-list-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 20px;
  position: relative;
  margin-right: 64px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.sidebar-menu__switchers-list-wrap:first-child::after {
  content: "";
  background: white;
  position: absolute;
  display: inline-block;
  top: 2px;
  left: 75px;
  height: 15px;
  width: 1px;
}
.sidebar-menu__switchers-list-wrap:last-child {
  margin-right: 0;
}
.sidebar-menu__switchers-short {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 400;
  margin-top: 4px;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.487059px;
  margin-left: 6px;
}
.sidebar-menu__switchers-list-lang {
  opacity: 1 !important;
  display: none;
  position: absolute;
  z-index: 2;
  background-color: white;
  padding: 5px;
  width: 30px;
  height: 50px;
  top: -60px;
  left: 5px;
}
.sidebar-menu__switchers-list-cur {
  opacity: 1 !important;
  display: none;
  position: absolute;
  z-index: 2;
  background-color: white;
  padding: 5px;
  width: 50px;
  height: 75px;
  top: -85px;
  left: 5px;
}
.sidebar-menu__switchers-list-change {
  text-decoration: none;
  color: #ffc197;
  cursor: pointer;
  margin-bottom: 10px;
  text-align: center;
}
.sidebar-menu__switchers-list-change:hover {
  font-weight: 600;
}

.sidebar__show {
  display: block;
  pointer-events: all;
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.show {
  display: block;
}
