/* Download */
.download-form {
    padding-bottom: 80px;
}

.download-form [class^="sd-"] {
    font-size: 15px;
    text-align: center;
    color: #282828;
}

.download-form .sd-number {
    width: 40px;
}

.download-form .sd-category {
    width: 250px;
}

.download-form .sd-subject {
    width: 400px;
}

.download-form .sd-date {
    width: 132px;
}

.download-form .sd-download {
    width: 132px;
}

.download-form .headline {
    display: flex;
}

.download-form .headline div {
    color: #fff;
    background: #3d822f;
    line-height: 36px;
    position: relative;
}

.download-form .headline div:before {
    content: '';
    position: absolute;
    top: 20%;
    right: -1px;
    z-index: 1;
    width: 1px;
    height: 60%;
    background: #fff;
}

.download-form .headline div.sd-number {
    background: #375f2e;
}

.download-form .headline div.sd-number:before {
    display: none;
}

.download-form .headline div:last-child:before {
    display: none;
}

.download-form .row {
    display: flex;
    padding: 10px 0px;
}

.download-form .row:nth-child(odd) {
    background: #F1F1F1;
}

.download-form .row span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-form .row .sd-download a:before {
    font-family: FontAwesome;
    content: '\f358';
    font-size: 18px;
    color: #40a776;
}

.download-form .row .sd-download a:hover {
    opacity: .5;
}


@media only screen and (max-width: 425px) {
    .download-form .sd-number {
        display: none;
    }

    .download-form .sd-download {
        padding: 15px 0 10px 0;
    }

    .download-form .headline {
        display: none;
    }

    .download-form .row {
        flex-direction: column;
    }

    .download-form .row [class^="sd-"] {
        width: 100%;
    }

    .download-form .row .sd-category:before {
        content: 'Category / ';
    }

    .download-form .row .sd-subject:before {
        content: 'Subject / ';
    }

    .download-form .row .sd-date:before {
        content: 'Date / ';
    }
}