@import url('https://fonts.googleapis.com/css?family=Quicksand|Ubuntu');


.wrapper {
    font-weight: 400;
    text-align: center;
}


button.accordion {
    background-color: #915bb2;
    color: #fff;
    cursor: pointer;
    border: 0;
    padding: 18px;
    width: 100%;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: left;
    transition: all 0.35s ease-in-out;
}

button:focus {
    outline: none;
}

button.accordion.active,
button.accordion:hover {
    background: #764794;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 5);

}

.accordion.active {
    .accordion-collapse {
        display: block;
        max-height: none;
    }
}

.panel {
    color: #000;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: max-height 0.2s ease-out;
    border: 1.5px solid #764794;
    padding-left: 8px;
    padding-right: 8px;
}

.question {
    font-size: 17px;
    font-weight: 500;
    background-color: #f6f6f6;
    padding: 7px;
    width: 100%;
}

.answer {
    margin-left: 30px;
    margin-top: -10px;
    font-size: 14px;
    /* font-weight: 600; */
}

@media only screen and (max-width: 600px) {
    .answer {
        margin-left: 5px;
        text-align: justify;
    }
}