<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.accordion{

}

.accordion_item{
    margin-bottom: 1px;
}

.accordion_head{
    background-color: #243bcb;
    color: #fff;
    padding: 10px;
    cursor:pointer;
    padding-right: 30px;
    position: relative;
}

.accordion_head:after{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-weight:bold;
    position: absolute;
    top: 10px;
    right: 10px;
}

.accordion_head.aktiv:after{
    content: "\f106";
}

.accordion .accordion_item:nth-child(2n) .accordion_head{
    background-color: #5667d4;
}

.accordion_content{
    display:none;
    padding: 10px;
    border: solid #ccc;
    border-width: 0 1px 1px 1px;
}

.accordion_head input[type=text]{
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    border: none;
}</pre></body></html>