.flexColumn {
    display: flex;
    flex-direction: column;
}

.statement {
    margin: 0 20px 0 35px;
    display: flex;
    flex-direction: column;
    line-height: 20px;
}

.statement span {
    font-weight: 700;
}

.statement p {
    padding-left: 0;
}

.choices-list {
    margin: 0 20px 0 35px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    justify-content: center;
    transition: all 0.5s ease;
}

.choices-list div {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.choices-list li {
    display: flex;
    border: 1px solid #ABABAB;
    border-radius: 2px;
    padding: 7.5px 20px;
    width: 450px;
    text-align: center;
    cursor: pointer;
    align-items: center;
    justify-content: start;
    transition: border 0.1s ease, background-color 0.5s ease;
    background-image: none;
}

.choices-list li span {
    text-align: center;
    margin: auto 14px auto;
    font-weight: bold;
}


/*Feedback icon*/

.choices-list i {
    margin: 10px 0 0 10px;
    font-size: 1.5rem;
}

.selected {
    border: 2px solid #5E5E5E !important;
}

.audio-player {
    margin: 10px 20px 0 35px;
    height: 75px;
    display: flex;
    flex-direction: column;
    line-height: 20px;
}

.audio-player audio {
    width: 450px;
    height: 50px;
}

.activity-btn {
    margin-right: 10px;
    color: white!important;
    border-radius: 2px;
    background-color: #9C001D;
    outline: none;
    text-align: center;
}