.download-categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height: 100%;
    padding: 10px 0;
}

.download-category-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 200px;
    position: relative;
    background-color: aqua;
    background-image: url(../img/categoryBackground.png);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    transition: all .2s linear;
    margin-top: 60px;
    cursor: pointer;
    width: 100%;
}

.download-category-card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.download-category-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -45px;
    background-color: white;
    border-radius: 100%;
    transition: all 0.2s linear;
    z-index: 1000;
}

.download-category-card:hover .download-category-card-icon {
    background-color: #92d4cf;
}

.download-category-card-icon-image {
    width: 40px;
    height: 40px;
}

.download-category-card-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.download-category-card-info-title{
    color: black;
    min-height: 40px;
    margin-bottom: 1.25rem;
    text-align: center;
    font-size: 1.5rem;
    font-size: bold;
    max-width: 20ch;
    text-wrap: balance;
}

.download-category-card-info-splitter {
    width: 50px;
}

.download-category-card-info-count{
    font-size: 18px;
    color: #ccae7c;
}


.downloads-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height: 100%;
    padding: 10px 0;
}

.download-card {
    border: 1px solid lightgray;
    padding: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card-title{
    text-align : center;
}

.download-card-info-splitter{
    margin: 10px 0;
}

.download-card-info-summary{
    font-size: 14px;
    height: 85px;
    overflow: hidden;
}

.download-card-footer{
    display: flex;
    flex-direction: column;
    justify-content:space-around!important;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.download-footer-continue-link {
    min-width: 80px;
    font-size: 12px;
    border-radius: 3px;
    padding: 10px 0;
    background-color: #ccae7c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s linear;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.download-footer-info{
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.download-footer-info-statistic{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
}

.download-view-page{
    width: 100%;
}

.download-view-page-header-info{
    height: max-content;
    background-image: url(../img/categoryBackground.png);
    background-color: #d7c4a4;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.download-view-page-header-footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-height: 40px;
    background-color: #d7c4a4;
    align-items: center;
}

.download-view-page-header-info-title{
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-view-page-header-info-body{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
}

.download-view-page-header-info-body-category{
    display: flex;
}

.download-view-page-header-info-body-date{
    display: flex;
}

.download-view-page-header-footer-info{
    display: flex;
    border-right: 1px solid black;
    margin: 0 10px;
    justify-items: center;
    align-items: center;
}
.download-view-page-content-splitter{
    background-image: url(../img/downloadTitle.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 30px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:1.5rem 0;
}

.downloads-pagination{
    display : flex;
    align-items: center;
    justify-content:center;
}

.download-view-page-content-files-row{
    display: flex;
    justify-content:space-between;
    border-bottom: 1px solid lightgray;
    padding: 10px 0;
}

.download-view-page-content-multi-files-row{
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid lightgray;
    padding: 10px 0;
}

.download-view-page-content-multi-files-row-info{
    display: flex;
    justify-content:center;
    flex-direction: column;
    align-items: center;
    
}

.download-button{
    min-width: 150px;
    height: 4.0rem;
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 0;
    background-color: darkolivegreen;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s linear;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.download-view-page-content-summary{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-view-page-sidebar-list{
    max-height: 400px;
    overflow: auto;
    list-style-type: none;
    padding-right: 10px !important;
}

.download-view-page-sidebar-item-link{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: black;
    transition: all .2s linear;
    padding: 5px 5px;
    margin: 0 !important;
}

.download-view-page-sidebar-item-link:hover {
    color: white !important;
    background-color: #837e71;
}

.download-view-page-sidebar{
    display: none;
}

.download-view-page-content-files-row-description{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-self: right;
    margin: 10px 10px;

}

.download-description-button{
    min-width: 80px;
    height: 4.0rem;
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 0;
    margin: 10px 0;
    background-color: #d7c4a4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s linear;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border: 0;
}

@media only screen and (min-width: 576px) {
    .download-view-page-content-multi-files-row-info{
        flex-direction: row;
        justify-content:space-between;
    }

    .download-view-page-header-footer{
        justify-content: end;
    }
    .download-category-card-info-splitter {
        width: 80px;
    }

    .download-category-card {
        width: 46%;
    }

    .download-view-page-header-info-body{
        flex-direction: row;
    }
}

@media only screen and (min-width: 768px) {
    .download-category-card {
        width: 30%;
    }

    .download-card {
        width: 48%;
    }

    .download-card-footer {
        flex-direction: row !important;
    }
}

@media only screen and (min-width: 992px) {
    .download-view-page-sidebar{
        display: block;
    }

    .download-category-card {
        width: 18%;
    }

    .download-card {
        width: 32%;
    }
    .download-card-footer {
        flex-direction: column !important;
    }
}

@media only screen and (min-width: 1200px) {
    .download-card-footer {
        flex-direction: row !important;
    }
}