.toggle-container * {
    color: #000000;
}
.toggle-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 60px;
    width: 100%;
    grid-row-gap: 20px;
}

.toggle-graphic-container,
.toggle-graphic-container svg,
.toggle-items-container {
    width: 100%;
}

.toggle-item {
    border-width: 1px 0px 0px 0px;
    border-style: solid;
}

.toggle-item:last-of-type {
    border-bottom: 1px solid #fff;
}


.toggle-item-heading {
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.3s;
    gap: 20px;
    flex-direction: row;
    padding: 16px 22px 16px 0;
    border-style: none;
    justify-content: flex-start;
}
.toggle-item.active .toggle-item-heading {
    padding-bottom: 9px;
}

.toggle-item-title {
    font-family: 'futura-pt-heavy';
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

.toggle-item-expand_inside {
    font-size: 14px;
}

.toggle-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.toggle-item:not(.active) .toggle-item-icon.active {
    display: none;
}
.toggle-item.active .toggle-item-icon.inactive {
    display: none;
}
.toggle-item.active svg circle {
    fill: #ffed00;
}


.toggle-item-content {
    font-family: 'futura-pt-book';
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    padding: 0 0 16px 38px;
}

.toggle-item-content p {
    margin: 0;
}

.toggle-graphic-container svg .svg-toggle {
    transition: filter 0.3s;
    cursor: pointer;
}

.toggle-graphic-container svg .svg-toggle .toggle-effects {
    opacity: 0;
    transition: opacity 0.3s;
}
.toggle-graphic-container svg .svg-toggle.active .toggle-effects,
.toggle-graphic-container svg .svg-toggle:hover .toggle-effects {
    opacity: 1;
    transition: opacity 0.3s;
}

.toggle-item-expand {
    margin-left: auto;
}

@media screen and (max-width: 1024px) {
    
    .toggle-container {
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: center;
        justify-items: center;
    }
}
.qimiq-overlay {
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
}

.qimiq-toggle.active .qimiq-overlay,
.qimiq-toggle:hover .qimiq-overlay {
    opacity: 1;
    transition: opacity .2s ease-in;
    -webkit-transition: opacity .2s ease-in;
}
