/*@import "bourbon";*/
@import "https://fonts.googleapis.com/css?family=Montserrat:400,700|Raleway:300,400";
/* colors */
/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */

.slidertabs input[name="helften"] {
  display: none;
}
.slidertabs .content section h2,
.slidertabs ul li label {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 18px;
  color: #428bff;
}
.slidertabs ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: 0px;
}
.slidertabs ul li {
  box-sizing: border-box;
  flex: 1;
  padding: 0 10px;
  text-align: center;
}
.slidertabs ul li label {
  transition: all 0.3s ease-in-out;
  color: #929daf;
  padding: 5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  -webkit-touch-callout: none;
}
.slidertabs ul li label br {
  display: none;
}
.slidertabs ul li label svg {
  fill: #929daf;
  height: 1.2em;
  vertical-align: bottom;
  margin-right: 0.2em;
  transition: all 0.2s ease-in-out;
}
.slidertabs ul li label:hover,
.slidertabs ul li label:focus,
.slidertabs ul li label:active {
  outline: 0;
  color: #bec5cf;
}
.slidertabs ul li label:hover svg,
.slidertabs ul li label:focus svg,
.slidertabs ul li label:active svg {
  fill: #bec5cf;
}
.slidertabs .slider {
  position: relative;
  width: 50%;
  transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}
.slidertabs .slider .indicator {
  position: relative;
  width: 50px;
  max-width: 100%;
  margin: 0 auto;
  height: 4px;
  background: #428bff;
  border-radius: 1px;
  margin-top: 3px;
}
.slidertabs .content {
  margin-top: 9px;
}
.slidertabs .content section {
  display: none;
  animation-name: content;
  animation-direction: normal;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  line-height: 1.4;
}
.slidertabs .content section h2 {
  color: #428bff;
  display: none;
}
.slidertabs .content section h2::after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #428bff;
  margin-top: 5px;
  left: 1px;
}
.slidertabs
  input[name="helften"]:nth-of-type(1):checked
  ~ ul
  > li:nth-child(1)
  > label {
  cursor: default;
  color: #428bff;
}
.slidertabs
  input[name="helften"]:nth-of-type(1):checked
  ~ ul
  > li:nth-child(1)
  > label
  svg {
  fill: #428bff;
}
@media (max-width: 600px) {
  .slidertabs
    input[name="helften"]:nth-of-type(1):checked
    ~ ul
    > li:nth-child(1)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.slidertabs input[name="helften"]:nth-of-type(1):checked ~ .slider {
  transform: translateX(0%);
}
.slidertabs
  input[name="helften"]:nth-of-type(1):checked
  ~ .content
  > section:nth-child(1) {
  display: block;
}
.slidertabs
  input[name="helften"]:nth-of-type(2):checked
  ~ ul
  > li:nth-child(2)
  > label {
  cursor: default;
  color: #428bff;
}
.slidertabs
  input[name="helften"]:nth-of-type(2):checked
  ~ ul
  > li:nth-child(2)
  > label
  svg {
  fill: #428bff;
}
@media (max-width: 600px) {
  .slidertabs
    input[name="helften"]:nth-of-type(2):checked
    ~ ul
    > li:nth-child(2)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.slidertabs input[name="helften"]:nth-of-type(2):checked ~ .slider {
  transform: translateX(100%);
}
.slidertabs
  input[name="helften"]:nth-of-type(2):checked
  ~ .content
  > section:nth-child(2) {
  display: block;
}
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

@media (max-width: 1000px) {
  .slidertabs ul li label {
    white-space: initial;
  }
  .slidertabs ul li label br {
    display: initial;
  }
  .slidertabs ul li label svg {
    height: 1.5em;
  }
}
@media (max-width: 600px) {
  .slidertabs ul li label {
    padding: 5px;
    border-radius: 5px;
  }
  .slidertabs ul li label span {
    display: none;
  }
  .slidertabs .slider {
    display: none;
  }
  .slidertabs .content {
    margin-top: 20px;
  }
  .slidertabs .content section h2 {
    display: block;
  }
}
