.menu-section-wrapper {
  position: fixed;
  bottom: -600px;
  width: 100%;
  background: #191919;
  transition: 0.75s ease;
  z-index: 9;
  display: none;
}
.menu-section-wrapper.active {
  bottom: 0px;
  transition: 0.75s ease;
}
.menu-initial-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* overflow: hidden; */
}
.menu-expand-section {
  padding: 18px;
  cursor: pointer;
}
.menu-expand-section:hover,
.menu-other-link a:hover,
.menu-link-section ul li a:hover {
  background: #282828;
}
.menu-link-section ul {
  display: flex;
}
.menu-link-section ul li a {
  padding: 18px;
  display: inline-block;
}
.menu-link-section ul li {
  margin-right: 15px;
}
.menu-link-section ul li.active svg circle{
  fill: #17E301;
}
.menu-link-section ul li.active svg path{
  stroke: #17E301;
}
.menu-other-link a {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  padding: 18px;
}

/* Menu DropDown */
.menu-dropdown {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 7px;
  margin-right: 44px;
  min-width: 130px;
}
.menu-dropdown .dropdown-toggle {
  color: transparent;
}
.menu-dropdown .dropdown-toggle .location-change {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
}
.menu-dropdown .fal {
  margin-left: 12px;
  float: right;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
}
.dropdown-menu {
  width: 180px;
  height: 280px;
  overflow-y: scroll;
  background: #d3d3d3;
  border-style: initial;
  border-radius: 0px;
  top: 40px;
  left: -60px;
  margin: 0px;
  padding: 0px;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  color: rgb(128, 128, 128);
}
.dropdown-menu li a:hover {
  background: rgba(0, 0, 0, 0.05);
}
/* menu-other-links */
.menu-other-wrapper ul li {
  display: block;
  background: #4d4d4d;
  width: 100%;
  border-bottom: 2px solid #191919;
}
.menu-other-wrapper ul li a {
  padding: 19px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-other-wrapper ul li a label img {
  width: 32px;
}
.menu-other-wrapper ul li a span {
  font-size: 32px;
  line-height: 45px;
  font-weight: 400;
  color: #fff;
}

