.accordion {
    position: relative;
    right: -25px;
    background-color: initial;
    color: #444;
    cursor: pointer;
    padding: 14px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.4s;
    display: flex;
    align-items: center;
}

/*.active, .accordion:hover {*/
/*    background-color: #ccc;*/
/*}*/

.accordion i {
    position: absolute;
    left: -5px;
    color: #666;
    font-weight: normal;
    font-size: 24px;
    margin-right: 5px;
}

.accordion i:before {
    content: '\002B';
}

.active i:before {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    /*background-color: white;*/
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.btn {
    border: 0;
    padding: 16px 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-primary {
    background-color: #00B285;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #00906c;
}

#personio label {
    color: #161616 !important;
}

#personio input::placeholder {
    color: #161616 !important;
}