* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  padding-bottom: 100px; /* or at least the height of nav */
}


nav {
  position: fixed;
  bottom: 0!important;
  left: 0!important;
  width: 100%;
  z-index: 1000;
  /* top:0; */
  /* height: 80px; */
  /* background: #2f3542; */
}


.wave-wrap {
  position: relative;
  width: 100%;
  height: 33px;
  overflow: hidden;
  margin-bottom: -1px;         /* closes the gap visually */
  line-height: 0;              /* ensures no whitespace */
}
.wave-wrap svg {
  display: block;
}

.wave-wrap #wave {
  position: absolute;
  width: 150px;
  transform-origin: bottom;
  transform: scaleY(0.8);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.wave-wrap #wave .path {
  fill: #2f3542;
}
/*
.list-wrap {
  display: flex;
  width: 100%;
  height: 80px;
  background: #2f3542;
  list-style: none;
  justify-content: space-around;
  padding: 0 20px;
  margin-bottom:0;
}*/
.list-wrap { 
  display: flex;
  width: 100%;
  height: 80px;
  background: #2f3542;
  list-style: none;
  justify-content: space-around;
  align-items: center; /* vertically center icons */
  padding: 0 20px;
  margin: 0;
}


.list-wrap li {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.list-wrap li i {
  position: relative;
  font-size: 1.5em;
  color: #a4b0be;
  z-index: 5;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.list-wrap li:before {
  content: "";
  position: absolute;
  background: green;
/*  height: 80%;
  width: 80%;
  left: 10%;
  top: 10%;*/

  width: 48px;
  height: 48px;
  top: calc(50% - 24px);
  left: calc(50% - 24px);


  border-radius: 50%;
  z-index: 0;
  transform: scale(0);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.list-wrap li.active {
  margin-top: -10px;
}
.list-wrap li.active i {
  color: #2f3542;
}
.list-wrap li.active:before {
  transform: scale(1);
}
.list-wrap li:nth-child(1):before {
  background: #efeeec;
}
.list-wrap li:nth-child(2):before {
  background: #ff6b81;
}
.list-wrap li:nth-child(3):before {
  background: #7bed9f;
}
.list-wrap li:nth-child(4):before {
  background: #70a1ff;
}
.list-wrap li:nth-child(5):before {
  background: #dfe4ea;
}

.phone {
  height: 100vh;
  width:100vw;
 /* border: 0px solid rgba(47, 53, 66, 0.05);
  border-radius: 20px;*/
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
}
.phone .page {
  height: 327px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  color: rgba(47, 53, 66, 0.1);
  text-transform: uppercase;
  letter-spacing: 5pt;
  padding-top: 50px;
}
nav.bottom-nav {
  position: fixed;
  bottom: 0!important;
  left: 0!important;
  right: 0!important;
  background: white;
  z-index: 1000!important;
  padding-bottom: env(safe-area-inset-bottom); /* support for iPhones and full-view */
  border-top: 1px solid #ccc;
}
