.expand_body {
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s ease;
    max-height: 31em;
    margin-bottom: 5px;
}

.expand_see_more {
    padding-top: 4px;
}

.expand_see_more:hover {
    cursor: pointer;
}

.expand-is-active .expand_body {
    max-height: unset;
    height: auto;
    -webkit-line-clamp: none;
    display: block;
    overflow: visible;
}

.expand_see_more span {
    height: 17px;
    width: 66px;
    color: #555555;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.06px;
}

.see_more_blue svg,
.expand_see_more.see_more_blue span {
    color: #006FB9
}

.expand_see_more img,
.expand_see_more svg {
    width: 13px;
    margin-top: 2px;
}

.expand-is-active .expand_see_more img,
.expand-is-active .expand_see_more svg {
    transform: rotate(-180deg);
}