.adviceDetails {
    width: 100%;
    font-size: 0.75rem;
    margin: 1rem 0 0 0;
    background: #f4f4f4;
    border-radius: 0.25rem;
}
.adviceDetails .adviceDetail {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #DFDFDF;
}
.adviceDetails .adviceDetail:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
}
.adviceDetails .adviceDetail .adviceDetail__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.adviceDetails .adviceDetail .adviceDetail__details {
    color: #707070;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.messageExpanded {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
}
.messageExpanded .txt {
    font-size: 0.85rem;
    color: #111;
    line-height: 1;
}
.messageExpanded:hover .txt {
    text-decoration: underline;
}
.messageExpanded .icon {
    position: relative;
    margin-left: 0.5rem;
    top: 1px;
    line-height: 1;
}
.messageExpanded .icon:before {
    line-height: 1;
    color: #0058A3;
}
.messageExpanded[aria-expanded=false] .icon:before {
    content: "\e91c";
}
.messageExpanded[aria-expanded=true] .icon:before {
    content: "\e922";
}
