﻿.question {
    column-width: 70Px;
    word-wrap: break-word;
}
.accordionWraper {
    margin: 10px;
    background-color: #e9efff;
    border-radius: 20px;
}

.accordion {
    background-color: #e9efff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 20px;
}

.active {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: white;
}

.accordion:after {
    content: '\22CE';
    color: #777;
    font-weight: bold;
    float: inline-end;
    margin-left: 5px;
}

.active:after {
    content: "\22CF";
}

.accordionPanel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
