/* ************************************* */
/*                                       */
/* Main navigation                       */
/*                                       */
/* ************************************* */

.nav {
  display: flex;
  flex-wrap:wrap;
  position: relative;
}

.nav a {
  white-space: nowrap;
  line-height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  height:100%;
  display: block;
}

/* <= TABLET Landscape */

@media (max-width: 1025px) {
  .nav.nav--profi a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 14px;
    font-weight: 500;
  }
}

.nav li:last-child a {
  padding-right: 0;
}

.nav__seperator {
  margin-left: 10px;
  margin-right: 10px;
}

.nav__seperator::before {
  content:"";
  position: absolute;
  width:1px;
  top:10%;
  height:80%;
  max-height:50px;
  background: var(--color-dark);
}

/* ************************************* */
/*                                       */
/* Menues                                */
/*                                       */
/* ************************************* */

.menu {
  display: flex;
  list-style: none;
}

.menu a,
.menu span {
  white-space: nowrap;
  color: inherit;
  padding-left: 10px;
  padding-right: 10px;
  display:block;
  height:100%;
    padding: 7px 10px 7px 10px;
}

.menu--buttons a,
.menu--buttons span {
  border-style: solid;
  border-width: 1px;
  color:inherit;
}

.menu--login li {
  padding-left: 5px;
}

.menu--service li:last-child {
  padding-right: 5px;
}

.menu--service a,
.menu--login a,
.menu--service span,
.menu--login span {
  font-weight: 500;
}

/* ************************************* */
/*                                       */
/* Menu lists                            */
/*                                       */
/* ************************************* */

.list li {
  display: block;
  position: relative;
}

.list a,
.list span {
  cursor: pointer;
}

/*                                      */
/* Additional list property: Horizontal */
/*                                      */

.list--hori {
  display:flex;
  flex-wrap:wrap;
}

.list--hori li{
  display: flex;
  white-space: nowrap;
  height:100%;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}

/*                                     */
/* Additional list property: Tab style */
/*                                     */

.list--tabbed{
  display: flex;
  height:100%;
  flex-wrap:nowrap;
}

.list--tabbed li{
  display: flex;
  white-space: nowrap;
  height:100%;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}

.list--tabbed a,
.list--tabbed span {
  padding:5px 10px 5px 10px;
}

/*                                  */
/* Additional list property: Border */
/*                                  */

.list--border{
  margin-top: 5px;
}

.list--border > li {
  white-space: nowrap;
  margin-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
}

.list--border a,
.list--border span {
  border: 1px solid;
}

.list--border.c-orange a,
.list--border.c-orange span {
  border: 1px solid;
}

.list--border.c-orange li.active--with-layer > a,
.list--border.c-orange li.active--with-layer > span {
  background-color:transparent;
  color:inherit;
}

.list--border.c-orange li.active--with-layer:after,
.list--border.c-orange li.active--with-layer:after {
  content:"";
  width: calc(100% - 2px);
  margin-right: 0px;
  height:12px;
  position:absolute;
  left:0;
  border-left: 1px solid;
  border-right: 1px solid;
  top: calc(100% - 1px);
  z-index: 2;
}


/*                                  */
/* Additional list property: Button */
/*                                  */

.list--buttons > li > a,
.list--buttons > li > span {
  padding:5px 10px 5px 10px;
  color:inherit;
  display: block;
}

/*                                     */
/* Additional list property: Alignment */
/*                                     */

.list--right {
  justify-content: flex-end;
}

.list--center {
  justify-content: center;
}

/*                                     */
/* Additional list property: Seperator */
/*                                     */

.list--seperator a,
.list--seperator span {
  border-right: 1px solid;
}

.list--seperator li:last-child a,
.list--seperator li:last-child span {
  border-right: none;
}
