

/*
=========================================================
TOPMENU CSS
=========================================================
 * Innehåller styling för toppmenyn
 * 
 * Copyright (C) Limepark AB.
 * https://limepark.se/licensvillkor
=========================================================*/


/*
---------------------------------------------------------
TOPPMENY
---------------------------------------------------------*/

.lp-topmenu {
  margin: 0;
}

.lp-topmenu ul {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
}

.lp-topmenu li {
  display: block;
  margin: 0;
  padding: 0;

  -webkit-box-flex: 1;
  -moz-flex: 1 auto;
  -ms-flex: 1 auto;
  flex: 1 auto;
}

.lp-topmenu li a {
  border-right: 1px solid rgba(255,255,255,0.5);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #222;
  display: block;
  font-size: 1.6rem;
  height: 100%;
  padding: 1.5rem 0;
  text-align: center;
  text-decoration: none;
  transition: var(--lp-transition-default);
  width: auto;
}

.lp-topmenu li a:first-child {
  border-left: 1px solid rgba(255,255,255,0.5);
}

.lp-topmenu li a:hover,
.lp-topmenu li a.lp-current {
  background: #ccc;
}

.lp-topmenu li a.lp-current {
  text-decoration: underline;
}
