.mobile-menu__cross {
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu {
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.7);
  z-index: 4;
  padding: 22px 20px 100px;
  max-width: 375px;
  -webkit-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  right: -100%;
  overflow-y: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #fff;
}
.mobile-menu--opened {
  right: 0%;
}
.mobile-menu::-webkit-scrollbar {
  width: 2px;
  background-color: transparent;
}
.mobile-menu::-webkit-scrollbar-thumb {
  background-color: #fff;
}
.mobile-menu::-webkit-scrollbar-button:vertical:start:decrement, .mobile-menu::-webkit-scrollbar-button:vertical:end:increment {
  display: none;
}
.mobile-menu__cross {
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0 7px 35px auto;
  background-color: transparent;
  display: block;
  padding: 20px;
}
.mobile-menu__cross::before, .mobile-menu__cross::after {
  content: "";
  width: 2px;
  height: 30px;
  position: absolute;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.mobile-menu__cross::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-menu__cross::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mobile-menu__text, .mobile-menu__link {
  font-size: 18px;
}
.mobile-menu__text > a, .mobile-menu__link > a {
  font-size: 18px;
}
.mobile-menu__copyright {
  padding-left: 20px;
  font-size: 18px;
  line-height: 2;
}
@media screen and (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}