/* The style below is made as an example, it's not part of the plugin but you can use it if you like :) */


nav {
  width: 100%;
  height: 54px;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
  padding-left: 20px;
  background-color: white;
}


.nav li a.active {
  background-color: #ff494b;
  color: #FFF;
  border-top:4px solid #ed781e;
	background:#FFF;
	color:#ed781e !important;
}

.nav-mobile {
  display: none;
  font-weight: bold;
  width: 100%;
}


.click-me {
  width: 150px;
  height: 30px;
  background: #435AB8;
  color: white;
  text-align: center;
  line-height: 30px;
}

.click-me a {
  display: block;
  color: white;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    background-color: white;
    margin-left: -30px;
  }
  nav li {
    width: 100%;
  }

  nav li a {
    padding: 0 30px;
  }

  .nav-mobile {
    display: inline-block;
    height: 50px;
    line-height: 50px;
  }
}

@media (min-width: 769px) {
  nav ul {
    display: block !important;
  }
}