.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;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 200px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

@media screen and (min-width: 800px) {
    .modal-content {
        width: 60%;
    }
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}