/* Mobile menu */
.container-mobile-menu{
  position: fixed;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 100vw;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color:white;
  border-top: 1px solid rgb(228, 228, 228);

  display: none;
}

.mobile-menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  margin-right: 3%;
}

.mobile-menu li{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 40px;
}

.mobile-menu p{
  font-size: 14px;
  color: rgb(119, 119, 119);
}

.mobile-menu i{
  display: flex;
  align-content: center;
  justify-content: center;
  transition: 0.7s ease;
  width: 40px;
  height: 100%;
  border-radius: 10px;

  padding-top: 7%;
};