/*Animationen*/

@keyframes tabtoggle {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75%{
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/*Farbswitches*/

.slider-tabs, .green .slider-tabs {
    background-color: #EAE7D6;
}

.slider-tabs .content .tab-cnt .col ul li, .green .slider-tabs .content .tab-cnt .col ul li {
    border-bottom-color: #B1B57D;
}

/*.categories .cat, .green .categories .cat {
    color: #B1B57D;
}*/

.blue .slider-tabs {
    background-color: #3B4A65;
}

.blue .slider-tabs .content .tab-cnt .col ul li {
    border-bottom-color: #ACBDC7;
}

.blue .categories .cat {
    color: #ACBDC7;
}

.blue .slider-tabs .content p, .blue .slider-tabs .content li, .blue .slider-tabs .content a {
    color: #ACBDC7;
}

.blue .slider-tabs .content h3 {
    color: #CADADE;
}

.blue .btn.on svg path {
        fill: #ACBDC7;
    }

.blue .btn.on:hover svg path {
        fill: #CADADE;
    }

.red .slider-tabs {
    background-color: #643B4C;
}

.red .slider-tabs .content .tab-cnt .col ul li {
    border-bottom-color: #C7ACAC;
}

.red .categories .cat {
    color: #C7ACAC;
}

.red .slider-tabs .content p, .red .slider-tabs .content li, .red .slider-tabs .content a {
    color: #C7ACAC;
}

.red .slider-tabs .content h3 {
    color: #E7CECE;
}

.red .btn.on svg path {
        fill: #C7ACAC;
    }

.red .btn.on:hover svg path {
        fill: #E7CECE;
    }

.green .categories .cat.active::after {
    background-image: url('../assets/green-active-tab-underline.svg');
}

.blue .categories .cat.active::after {
    background-image: url('../assets/blue-active-tab-underline.svg');
}

.red .categories .cat.active::after {
    background-image: url('../assets/red-active-tab-underline.svg');
}


/*Layout*/

.slider-tabs {
    margin-bottom: 50px;
    width: 100%;
}

.slider-tabs .categories {
    flex-wrap: nowrap;
    width: 100%;
    padding-left: calc(50% - 720px);
    padding-right: calc(50% - 720px);
    padding-bottom: 25px;
}

.slider-tabs .categories .cat {
    display: block;
    width: 100%;
    text-align: center;
    padding: 25px 10px 5px 10px;
    position: relative;
    transform: rotate(0deg);
    opacity: 0.4;
}

.slider-tabs .categories .cat.active {
    opacity: 1;
}

.slider-tabs .categories .cat:hover {
    animation: tabtoggle 0.7s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    cursor: pointer;
}

.slider-tabs .categories .cat.active:hover {
    animation: none;
    cursor: default;
}

.categories .cat.active::after {
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 7px;
    left: 0;
}

.slider-tabs .content {
    position: relative;
    width: 100%;
}

.slider-tabs .content .tab-cnt {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 50px 0;
    margin: 0 20px;
}

.slider-tabs .content .tab-cnt.active {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.slider-tabs .content .tab-cnt .col {
    width: 100%;
    gap: 20px;
    margin-top: 20px;
}

.slider-tabs .content .tab-cnt .col p {
    width: 100%;
}

.slider-tabs .content .tab-cnt .col ul {
    flex-direction: column;
    gap: 5px;
}

.slider-tabs .content .tab-cnt .col ul li {
    padding: 10px 20px 10px 10px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
}

.kapa span {
    width: 130px;
    min-width: 130px;
}

.kapa span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 10px;
    margin-top: 10px;
    margin-right: 10px;
}

.kapa.low span::before {
    background-color: #aaa;
}
.kapa.mid span::before {
    background-color: rgb(233, 182, 15);
}
.kapa.high span::before {
    background-color: rgb(17, 205, 17);
}

#start {
    margin-bottom: 3px;
}

.kapas {
    margin-top: 50px;
}

.kapa {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

@media only screen and (min-width: 1200px){

.slider-tabs .content .tab-cnt {
    padding-top: 90px;
}

.slider-tabs .content .tab-cnt .col {
    width: 45%;
    gap: 50px;
}

.slider-tabs {
    margin-bottom: 140px;
}

.categories .cat.active::after {
    bottom: -10;
    height: 12px;
}

.slider-tabs .content .tab-cnt {
    padding: 50px calc(50% - 700px);
}


#start {
    margin-bottom: 140px;
}

.kapas {
    margin-top: 0;
}

}


