.expediente {
    width: 100%;
    max-width: 550px;
    margin: auto;
    padding: 0 16px;
    margin-bottom: 56px;
}

.expediente-text {
    margin-bottom: 56px;
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #8ba566;
}

.expediente li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    padding: 16px 0;
}

.expediente li:last-child {
    border-bottom: 0;
}

.expediente li div {
    width: 50%;
}

.expediente li div:first-child {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: .54;
}

.expediente li div:last-child {
    width: 50%;
    border: none;
    font-size: 15px;
}

.button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 550px;
    margin: auto;
}

.expediente-button {
    border: none;
    display: inline-block;
}

.expediente-button button {
    border: 1px solid #8ba566;
    border-radius: 4px;
    background: transparent;
    font-size: 14px;
    padding: 4px 12px;
    color: #8ba566;
    text-transform: uppercase;
    font-weight: 700;
}

.expediente-button button:hover {
    cursor: pointer;
    background: #8ba566;
    color: #fff;
}