.expandable-container{
  margin-bottom: 0px;
  overflow: hidden;
  border-top: 1px solid var(--colorhr);
}

.view-kariera .views-row:first-child .expandable-container{
border-top:none;
}

.expandable-panel-content {
  max-height: 1px;
  position: relative;
  overflow: hidden;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  -ms-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.expandable-panel-content-inner{
  padding: 10px 0px 30px;
}
 
.view-team .expandable-panel-content-inner{
  padding: 10px 20px 30px;
}

.activev .expandable-panel-content {
  max-height: unset;
}

.expandable-panel-heading{
  align-items: center;
  width: 100%;
  padding: 20px 0px;
  position: relative;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  -ms-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
 cursor: pointer;
   display: flex;
  justify-content: space-between;
  align-content: center;
}

.expandable-panel-heading:after{
  width: 20px;
  height: 20px;
content:"";
  background: url(../images/plus.svg) no-repeat center center;
    background-size: auto;
  background-size: 15px auto;
  line-height: 100em;
  overflow: hidden;
  display: block;
}

.activev .expandable-panel-more:after{
  background: url(../images/uparr.svg) no-repeat center center;
  background-size: auto 15px;
}

.expandable-panel-heading h3,
.expandable-panel-heading h2{
  margin: 0px;
  font-size: var(--viewtitlebig);
  line-height: 1.2em;
}

.activev .expandable-panel-heading h3,
.expandable-panel-heading:hover h3,
.expandable-panel-heading:hover h2{
color:var(--hovercolor);
}


@media all and (max-width: 720px) {

 

}