
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0171f9;
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
 padding-left: 8px 0;
 padding-right: 8px 0;
	padding-bottom: 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  }

  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.21s ease;
  }

  .bottom-nav a:hover,
  .bottom-nav a.active {
    color: #ffffff;
  }

  .bottom-nav i {
    font-size: 18px;
    margin-bottom: 3px;
  }

  @media (min-width: 768px) {
    .bottom-nav {
      display: none;
    }
  }

 
