
#menu {
  background: #fff;
  height: 100vh;
  right: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  position:absolute;
  top: 0;
  transition: all 0.7s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 1100;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}
#menu.open {
  opacity: 1;
  visibility: visible;
}
#menu.open li:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
#menu.open li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#menu.open li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#menu.open li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#menu.open li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#menu.open li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
#menu.open li:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
#menu.open li:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
#menu.open li:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
#menu.open li:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#menu.open li {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.toggle-menu {
  top: 14px;
  right: 10px;
  background-color: #0047B4;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  float: right;
  height: 50px;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: absolute;
  vertical-align: middle;
  width: 50px;
  z-index: 1110;
}
.toggle-menu span {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  left: calc(50% - 13px );
  position: absolute;
  top: calc(50% - 1px );
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
  width: 26px;
}
.toggle-menu span:before, .toggle-menu span:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
  width: 26px;
}
.toggle-menu span:before {
  top: 7px;
}
.toggle-menu span:after {
  top: -7px;
}
.toggle-menu.active span {
  background-color: transparent;
  transition: background 0.2s ease-out;
}
.toggle-menu.active span:before, .toggle-menu.active span:after {
  transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
}
.toggle-menu.active span:before {
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}
.toggle-menu.active span:after {
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}

/* MY CSS STYLE */


.mobile__wraper {
  padding: 0 15px;
}

.mobile__header {
  padding: 34px 15px;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.mobile__logo img{
  width: 188px;
}


.mobile__nav-menu {
  padding-top: 60px;
  padding-bottom: 40px;
}

.mobile__nav-item {
  margin-bottom: 20px;
}

.mobile__nav-item:last-child {
  margin-bottom: 0;
}
.mobile__b-lang {
  display: flex;
	color: var(--color-text-white);
	margin-right: 80px;
  margin-bottom: 31px;
	width: 106px;
	line-height: 1.2em;
	text-transform: uppercase;
	font-size: 18px;
	gap: 4px;

}
.mobile__lang {
  color: var(--color--text);
	padding: 14px;
	background: var(--color-text-white);
	transition: 0.2s ease-in;
  margin-bottom: 10px;

}


.mobile__lang_active {
  margin-left: -14px;
  border-right: 1px solid var(--btn-color);
}

.mobile__phone {
  display: block;
  position: relative;
	margin-right: 10px;
	color: var(--color--title);
  margin-bottom: 45px;
  margin-left: 55px;
}

.mobile__phone::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
  border-radius: 5px;
	background: #1E6EE8 url("../img/phone-white.svg") 50% no-repeat;
	top: 50%;
	left: -55px;
	transform: translateY(-50%);
}

.mobile__adress {
  display: block;
  margin-top: 45px;
  margin-left: 55px;
  margin-bottom: 30px;
  position: relative;
  width: 200px;
}

.mobile__adress::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
  border-radius: 5px;
	background: #1E6EE8 url("../img/map-white.svg") 50% no-repeat;
	top: 50%;
	left: -55px;
	transform: translateY(-50%);
}