.mobileMenu {
  box-sizing: border-box;
  background-color: #F1F4F8;
  display: block;
  height: 70px;
  width: 100%;
}
.mobileMenu .centerWrapper {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: space-between;
}

.mobileMenu__hamburger {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 70px;
  position: relative;
  justify-content: center;
  width: 70px;
  order: 1;
}

.mobileMenu__hamburgerLine {
  background-color: rgb(187, 0, 50);
  height: 3px;
  margin-bottom: 5px;
  width: 26px;
}
.mobileMenu__hamburgerLine:last-of-type {
  margin-bottom: 0;
}

.mobileMenu__logo {
  color: rgb(187, 0, 50);
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  order: 2;
}

.mobileMenu__accountAvatar {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: center;
  width: 70px;
  order: 3;
}
.mobileMenu__accountAvatar img {
  border-radius: 35px;
  height: 30px;
  object-fit: cover;
  object-position: center center;
  width: 30px;
}

.mobileMenu__sections {
  background: #F1F4F8;
  box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
  display: flex;
  flex-direction: column;
  height: auto;
  left: -100%;
  transition: all 0.25s;
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 100;
}

.mobileMenu__sections-visible {
  left: 0;
}

.mobileMenu__sectionItem {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  padding: 15px 20px;
}
.mobileMenu__sectionItem:hover {
  background-color: #E9F2FF;
}

@media screen and (min-width: 980px) {
  .mobileMenu {
    padding: 0 20px;
  }
  .mobileMenu__logo {
    order: 1;
    margin-right: 50px;
  }
  .mobileMenu__hamburger {
    display: none;
    order: 2;
  }
  .mobileMenu__sections {
    position: relative;
    left: 0;
    top: 0;
    flex-direction: row;
    box-shadow: none;
    order: 2;
  }
  .mobileMenu__sectionItem {
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
  }
  .mobileMenu__sectionItem:hover {
    background-color: transparent;
  }
}

/*# sourceMappingURL=mobileMenu.css.map */
