.expandable {
    transition: all 250ms ease-in-out;
}

.expandable .expand-bar {
    position: absolute;
    display: block;
    left: 0px;
    bottom: 0px;
    background-color: #F4F4F4;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    box-sizing: border-box;
    padding: 16px 0;
    font-size: 14px;
    /*text-transform: uppercase;*/
    line-height: 20px;
}

.expandable .expand-bar::before {
    position: absolute;
    width: 100%;
    height: 20px;
    top: -20px;
    left: 0px;
    display: block;
    content: "";
}

.expandable .expand-bar i {
    transition: all 250ms ease-in-out;
    position: absolute;
    display: block;
    top: 50%;
    left: 70px;
    margin-top: -10px;
    /*transform: rotate(45deg);*/
}

.expandable.expanded .expand-bar i {
    transform: rotate(-180deg);
}

.expandable .expand-bar i::after {
    display: inline-block;
    font-family: 'entypo-fontello' !important;
    content: '\E877';
    font-size: 14px;
    color: #E2001A;
}