.navbar {
    width: 100%;
    background: #46315b;
    display: inline-block;
    padding: 10px;
}
.navbar ul{
  list-style: none;
  margin: 0 auto;
  padding:0;
}

.navbar ul li{
  color: #fff;
  float: left;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  font-family: Arial;
  transition: 0.5s;
  position: relative;
  padding:0 20px;
}

.navbar ul li:nth-child(6){
  background: #D80B15;
}

.navbar ul li:hover:not(.active){
  background: #D80B15;
}



.togglesearch{

  position: absolute;
  top: 74px;
  right:5%;
  width: 350px;
  height:30px;
  line-height:30px;
  display: none;
}

.togglesearch:before{
  content: "";
  position: absolute;
  top: -27px;
  right:59px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid #be004a;
}

.togglesearch input[type="text"]{
  width: 240px;
  padding: 5px 10px;
  margin-left: 23px;
  border-top:4px solid #be004a;
  outline: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.togglesearch input[type="button"]{
  width: 80px;
  padding: 5px 0;
  background: #be004a;
  color: #fff;
  margin-left: -6px;
  border: 4px solid #be004a;
  outline: none;
  cursor: pointer;
}

@media only screen and (min-width:240px) and (max-width: 768px){
.navbar ul li{
	float:none;
	display:block;
	text-align:center;
	margin:0 auto;
}
}