/* Barra de navegación */
.phone {
  height: 100px;
  width: 100%;
  position: fixed;
  bottom: 0px;
  border: 0px solid rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  font-family: 'Raleway', sans-serif;
  z-index: 9999;
}
.phone .page {
  height: 0px; /*327px*/
  width: 100%;
  display: none; /*flex*/
  justify-content: center;
  align-items: center;
  font-size: 3em;
  color: rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 5pt;
  padding-top: 50px;
}

nav.navegacion {
  width: 100%;
}

.wave-wrap {
  position: relative;
  width: 100%;
  height: 20px;
  overflow: hidden;
  margin-bottom: 0;
}
.wave-wrap #wave {
  display: none;
  position: absolute;
  width: 100px;
  transform-origin: bottom;
  transform: scaleY(0.8);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.wave-wrap #wave .path {
  fill: #fff;
}

.list-wrap {
  display: flex;
  width: 100%;
  height: 80px;
  background: #f1f1f1;
  list-style: none;
  justify-content: space-around;
  padding: 0 0px;
  margin-bottom: 0px;
}
.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: transparent;
  height: 70%;
  width: 75%;
  left: 13%;
  top: 12%;
  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: 0px;
}
.list-wrap li.active i {
  /*color: #fff;*/
}
.list-wrap li.active:before {
  transform: scale(1);
}
.list-wrap li:nth-child(1):before {
  /*background: #3b5998;*/
}
.list-wrap li:nth-child(2):before {
  /*background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );*/
}
.list-wrap li:nth-child(3):before {
  /*background: #25D366;*/
}
.list-wrap li:nth-child(4):before {
  /*background: #FF0000;*/
}
.list-wrap li:nth-child(5):before {
  /*background: #920292;*/
}
.contador-mobile{
  background-color: red;
  color: #fff;
  width: 18px;
  height: 18px;
  font-size: 15px;
  border-radius: 30px;
  position: relative;
  bottom: 15px;
  right: 5px;
  line-height: 15px;
  text-align: center;
  z-index: 9;
}