body.lock {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.mobileMenu {
  overflow: auto;
  position: fixed;
  left: 0;
  top: -100%;
  height: auto;
  z-index: 1000;
  max-width: 100%;
  width: 100%;
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
  padding: 30px 20px;
  border-radius: 0px 0px 50px 50px;
  background: #5f366d;
  max-height: 100%;
}
.mobileMenu .mmTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mobileMenu .mmTop .social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobileMenu .mmTop .social .item {
  width: 31px;
  height: 31px;
}
.mobileMenu .mmTop .social .item:not(:last-child) {
  margin-right: 10px;
}
.mobileMenu .mmTop .social .item a {
  display: block;
  width: 100%;
  height: 100%;
}
.mobileMenu .mmTop .social .item a svg {
  width: 31px;
  height: 31px;
}
.mobileMenu .mmTop .cross {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 50px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobileMenu .mmTop .cross .line {
  position: absolute;
  background: #ebebf0;
}
.mobileMenu .mmTop .cross .line.l1 {
  width: 100%;
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
}
.mobileMenu .mmTop .cross .line.l2 {
  width: 2px;
  height: 100%;
  left: calc(50% - 1px);
  top: 0;
}

.mobileMenu .mmBottom {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.mobileMenu .mmBottom .btnWrap {
  display: flex;
  width: 100%;
  max-width: 380px;
  height: 40px;
  margin-bottom: 20px;
}
.mobileMenu .mmBottom .btnWrap .btn {
  border-radius: 30px;
  border: 1px solid #fff;
  width: 100%;
}
.mobileMenu .mmBottom .btnWrap .btn span {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.mobileMenu .mmBottom .lang {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobileMenu .mmBottom .lang span {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding: 0 5px;
}
.mobileMenu .mmBottom .lang .active span {
  color: #f8dd70;
  font-weight: 700;
}
.mobileMenu .mmBottom .lang .separator span {
  padding: 0 5px;
}

.mobileMenu .mmBody {
  margin-top: 60px;
  position: relative;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobileMenu .mmBody .list {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.mobileMenu .mmBody .list .link {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  display: block;
}
.mobileMenu .mmBody .link.one.solo {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.mobileMenu .mmBody .mmMenu {
  margin-bottom: 20px;
}
.mobileMenu .mmBody .mmMenu .linkParent {
  display: flex;
}
.mobileMenu .mmBody .mmMenu .link.one {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  display: block;
}

.mobileMenu .mmBody .mmMenu .link.parent {
  margin-right: 20px;
}
.mobileMenu .mmBody .mmMenu .mmSubMenu {
  display: none;
  margin-top: 15px;
}
.mobileMenu .mmBody .mmMenu .mmSubMenu .link {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  display: block;
  text-transform: unset;
}

.mobileMenu.active {
  top: 0;
}
.mobileBottomMenu {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 768px) {
  .mobileBottomMenu {
    display: block;
  }
}
.mobileBottomMenu .list {
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mobileBottomMenu .list .item {
  padding: 6px;
}
.mobileBottomMenu .list .item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mobileBottomMenu .list .item .title {
  text-align: center;
}
.mobileBottomMenu .list .item .title p {
  font-size: 0.6rem;
  color: rgba(0, 0, 0, 0.7);
}
