.c3-download__details {
    display: block;
    max-width: 880px;
    margin-bottom: 70px;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    font-weight: var(--e-global-typography-text-font-weight);
    font-size: var(--e-global-typography-text-font-size);
    color: var(--e-global-color-text);
    line-height: var(--e-global-typography-text-line-height);
}

.c3-download__details .c3-download__title {
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);
    font-size: var(--e-global-typography-primary-font-size);
    color: var(--e-global-color-primary);
    line-height: var(--e-global-typography-primary-line-height);
}

.c3-download__details .c3-download__content a {
    display: inline-block;
    position: relative;
    color: var(--e-global-color-accent);
    line-height: 1;
}

.c3-download__details .c3-download__content a:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: auto;
    left: 0;
    background-color: currentColor;
    transition: width 300ms;
    -webkit-transition: width 300ms;
}

.c3-download__details .c3-download__content a:hover:before {
    width: 0;
    right: 0;
    left: auto;
}

.c3-download__entry {
    overflow: hidden;
    transition: height 600ms;
    -webkit-transition: height 600ms;
}

.c3-download__entry .c3-download__title {
    display: block;
    position: relative;
    padding: 15px 0 15px 30px;
    border-bottom: 1px solid var(--e-global-color-secondary);
    font-family: var(--e-global-typography-secondary-font-family), sans-serif;
    font-weight: var(--e-global-typography-secondary-font-weight);
    font-size: 24px;
    color: var(--e-global-color-primary);
    line-height: var(--e-global-typography-secondary-line-height);
    cursor: pointer;
}

.c3-download__entry .c3-download__title:before {
    content: '\f0d7';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 20px;
    color: inherit;
    transition: transform 300ms;
    -webkit-transition: transform 300ms;
}

.c3-download__entry--expand .c3-download__title:before {
    transform: translateY(-50%) rotate(-180deg);
    -webkit-transform: translateY(-50%) rotate(-180deg);
}

.c3-download__files {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 70px;
    margin: 0 0 0 -30px;
}

.c3-download__file {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(50% - 30px);
    margin: 30px 0 0 30px;
}

.c3-download__file-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
}

.c3-download__file-preview .c3-download__file-icon {
    max-width: 40px;
}

.c3-download__file-details {
    flex: 1;
    margin-left: 20px;
    font-family: var(--e-global-typography-7efde79-font-family), sans-serif;
    font-weight: var(--e-global-typography-7efde79-font-weight);
    font-size: var(--e-global-typography-7efde79-font-size);
    color: var(--e-global-color-primary);
    line-height: var(--e-global-typography-7efde79-line-height);
}

.c3-download__file-details > *:not(:last-child) {
    margin-bottom: 10px;
}

.c3-download__file-title {
    font-family: var(--e-global-typography-secondary-font-family), sans-serif;
    font-weight: var(--e-global-typography-secondary-font-weight);
    font-size: 21px;
    color: var(--e-global-color-primary);
    line-height: 24px;
}

.c3-download__file-info {
    color: var(--e-global-color-text);
}

.c3-download__file-button {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--e-global-color-accent);
    border-radius: 2px;
    background-color: var(--e-global-color-accent);
    font-family: var(--e-global-typography-accent-font-family), sans-serif;
    font-weight: var(--e-global-typography-accent-font-weight);
    font-size: var(--e-global-typography-accent-font-size);
    color: #fff;
    line-height: var(--e-global-typography-accent-line-height);
    transition: border-color 300ms, background-color 300ms, color 300ms;
    -webkit-transition: border-color 300ms, background-color 300ms, color 300ms;
}

.c3-download__file-button:hover {
    border-color: var(--e-global-color-accent);
    background-color: transparent;
    color: var(--e-global-color-accent);
}

@media (max-width: 1200px) {
    .c3-download__file {
        width: calc(100% - 30px);
    }
}

@media (max-width: 560px) {
    .c3-download__file-preview {
        justify-content: flex-start;
        max-width: none;
        margin-bottom: 20px;
    }

    .c3-download__file-details {
        flex: none;
        width: 100%;
        margin-left: 0;
    }
}