@keyframes rotating {
    100% {
        transform: rotate(360deg)
    }
}

:root {
    --header-background-color: $second-color-light
}

.downloads-container-single {
    display: grid;
    grid-gap: .8rem 1.6rem;
    grid-template-columns: repeat(1, 1fr)
}

.download-item-single {
    background-color: #eef7ff;
    display: flex;
    text-align: left;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    color: var(--text-color, var(--second-color, #003366));
    padding: 2.4rem
}

.download-item-single .download-item-single-left {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-right: 1.6rem
}

.download-item-single .download-item-single-image {
    margin: 0 1.6rem 0 0;
    width: clamp(4rem, 3.3653846154vw, 5.6rem);
    min-width: clamp(4rem, 3.3653846154vw, 5.6rem);
    min-height: clamp(4rem, 3.3653846154vw, 5.6rem);
    border-radius: var(--base-border-radius, 0.4rem);
    background-color: var(--base-white, #fff);
    overflow: hidden
}

.download-item-single .download-item-single-image img {
    object-fit: cover;
    width: 100%;
    object-position: center center;
    max-height: 100%;
    min-height: 100%
}

.download-item-single .download-item-single-image .empty-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: clamp(4rem, 3.3653846154vw, 5.6rem);
    height: clamp(4rem, 3.3653846154vw, 5.6rem);
    background: var(--base-white, #fff)
}

.download-item-single .download-item-single-image .empty-image:before {
    transition: .3s;
    content: "";
    color: var(--second-color, #003366)
}

.download-item-single .download-item-single-name {
    margin-bottom: .8rem
}

@media(min-width: 768px) {
    .download-item-single .download-item-single-name {
        transition: .3s
    }
}

.download-item-single .download-item-single-parameters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .8rem 1.6rem
}

.download-item-single .download-item-single-parameters>* {
    white-space: nowrap
}

.download-item-single .download-item-single-link {
    font-size: 1.5rem;
    margin-top: .8rem;
    font-weight: 600;
    transition: .3s
}

.download-item-single .download-item-single-link::after {
    font-size: 1.6rem;
    color: var(--main-color, #FA7501);
    margin-left: 1.6rem
}

.download-item-single:focus,
.download-item-single:hover {
    color: var(--text-color, var(--second-color, #003366));
    text-decoration: none
}

.download-item-single:focus .download-item-single-name,
.download-item-single:hover .download-item-single-name {
    color: var(--main-color, #FA7501)
}

.download-item-single:focus .link,
.download-item-single:hover .link {
    color: var(--main-color, #FA7501);
    text-decoration: none
}