/**
*  @author Surton
*  @date 23.08.2018
*  @section toggable-menu
*/

.header-menu__toggable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  padding: 0 27px;
  overflow: hidden;
  -webkit-transition: height .4s, margin-bottom .4s;
  -o-transition: height .4s, margin-bottom .4s;
  transition: height .4s, margin-bottom .4s;   
}

.header-menu__toggable--abitur {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(15, 69, 168, 0.1);
}

.header-menu__toggable--abitur.active {
  margin-bottom: 50px;
  border: none !important;
}

.header-menu__toggable {
  height: 0;
}

.header-menu__toggable.active {
  border-bottom: 1px solid #b7c7ee;
}

.fine-vision .header-menu__toggable.active {
  border-bottom-color: #000000;
}

.header-menu__toggable .toggable-menu__nav-list {
  display: none;
}

.header-menu__toggable-item {
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  width: 100%; 
}

.header-menu__toggable--abitur .header-menu__toggable-item:not(:last-child) {
  margin-right: 30px;
}

.header-menu__toggable-item {
  padding: 30px 0;
}

.header-menu__toggable-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column;
}

.header-menu__toggable-item__list .title {
  display: block;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-menu__toggable-item__list-item {
  margin: 3px 0;
}

.header-menu__toggable-item__list-item a, 
.header-menu__toggable-item__list span {
  color: #0f45c7;
  text-decoration: none;
}

.header-menu__toggable--abitur .header-menu__toggable-item__list-item a, 
.header-menu__toggable--abitur .header-menu__toggable-item__list span {
  color: #0f45c7;
}

.fine-vision .header-menu__toggable-item__list-item a, 
.fine-vision .header-menu__toggable-item__list span {
  color: #000000;
}

.header-menu__toggable-item__list-item a {
  display: block;
  width: 80%;
  margin-left: -5px;
  padding: 2px 5px;
  line-height: 20px;
  -webkit-transition: background-color .2s;
  -o-transition: background-color .2s;
  transition: background-color .2s;
}

 .header-menu__toggable-item__list-item a:hover  {
  background-color: rgba(15, 69, 199, 0.1);
}

.header-menu__toggable--abitur .header-menu__toggable-item__list-item a:hover {
  background-color: #ffedda;
}

.fine-vision .header-menu__toggable-item__list-item a:hover  {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}