﻿

.tabs {
  /*border-radius: 8px;*/
  overflow: hidden;
  /*box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);*/
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;

}
.tab-label {
  /*display: flex;*/
  justify-content: space-between;
  padding: 1em;
  background: #0077be;
  font-weight: bold;
  cursor: pointer;
  width:240px;
  /* Icon */
}
.tab-label:hover {
  background: #26a69a;
}

.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all .35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close:hover {
  background:#26a69a;
      padding: 13px 15px 12px;
}

input:checked + .tab-label {
  background: #26a69a;
 
}
input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  /*padding: 1em;*/
}
.menulink{
    list-style: none;
    line-height: 35px;
}
.menulink li:before {
    background: #425668;
    bottom: auto;
    content: "";
    height: 8px;
    left: -30px;
    margin-top: 10px;
    position: absolute;
    right: auto;
    width: 8px;
    z-index: 1;
    border-radius: 50%;
}
.menulink li:after {
    border-left: 1px solid #425668;
    bottom: 0;
    content: "";
    left: -27px;
    position: absolute;
    top: 0;
}
  .menulink li{
     padding-left: 0px;
     position: relative;
     display: block;
     font-size: 14px;
    letter-spacing: 1px;
  } 
