.mobMenu {
  background: #253e89;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: auto;
  max-width: 400px;
  padding: 15px;
  top: 0;
  right: -400px;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

.mobMenu.active {
  right: 0px;
}

.mobMenu svg {
  max-width: 150px;
}

.mobMenu svg path {
  fill: #fff;
}

.mobMenu svg path:last-child {
  fill: #ed1c24;
}

.closeBtn {
  width: 18px;
}

.closeBtn svg {
  width: 100%;
  height: auto;
}

.menuLink,
.menuLink a {
  color: #fff;
  font-size: 14px;
}

.menuLink a.active {
  font-weight: 700;
}

.menuLink span {
  font-size: 20px;
  position: absolute;
  right: 3px;
  top: -5px;
}

.submenu {
  padding-left: 10px;
  padding-top: 15px;
  display: none;
}

.mainMenu {
  margin-bottom: 20px;
}

.innerMenu {
  padding-top: 15px;
  padding-left: 10px;
  display: none;
}

.mobSearch input {
  width: 100%;
  min-width: inherit;
  border: none;
}

.mobSearch svg path,
.mobSearch svg path:last-child {
  fill: #444bf1 !important;
}
.mobMenuImg {
  border-radius: 5px;
}
@media (max-width: 767px) {
  .mobMenu {
    max-width: inherit;
    right: -100%;
  }
}
