.custom-downloadslist-container{
    margin-bottom: 30px;
}
.downloads-container .downloads-title,
.custom-downloadslist-container .downloads-title{
   font-weight: 700;
font-size: 40px;
line-height: 45px;
    color: var(--primary);

    margin-bottom: 20px;
}
.custom-downloadslist-container .download {
    position: relative;
    width: 100%;
    background-color: #EEE7E7;
    color: #343434;
    min-height: 50px;
    padding: 10px 50px 10px 20px;
    cursor: pointer;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    box-sizing: border-box;
    align-items: center;
}
.custom-downloadslist-container .date-download{
    font-weight: 400!important;
    font-size: 14px!important;
    color: #FFFFFF;
    width: 100px;
}

.custom-downloadslist-container .download svg{
    color: #343434;
    font-size:16px;
    margin-right: 15px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.custom-downloadslist-container .download:hover svg{
    color:#fff;
}
.custom-downloadslist-container .download:hover{
    background-color: var(--secondary);
    color: #fff;
}


.custom-downloadslist-container .download span {
font-weight: 400;
font-size: 16px;
line-height: 25px;
    color: #424343;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.custom-downloadslist-container .download span.title-download{
    padding-right: 30px;
    display: flex;
    align-items: center;

}
.custom-downloadslist-container .download span.date-download{
    min-width: 100px;
}
.custom-downloadslist-container .download:hover span{
    color: #fff;
}
.custom-downloadslist-container .download:after{
    background: url(../../../assets/images/download.svg) no-repeat left;
    background-size: 100% auto;
    content: "";
    display: block;
    width:12px;
    height: 15px;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 20px;
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.custom-downloadslist-container .download:hover:after{
    opacity: 1;

}
.custom-downloadslist-container .download.title-date{
    background: none;

}
.custom-downloadslist-container .download.title-date svg{
    display: none;
}
.custom-downloadslist-container .download.title-date .title-download{
    color: #343434;
    font-weight: 400;
    font-size: 14px;
}
.custom-downloadslist-container .download.title-date .date-download{
    color: #343A74;
}
.custom-downloadslist-container .download.title-date:hover{
    background: none;
}
@media only screen and (max-width: 1024px) {
    .custom-downloadslist-container {
        max-width: 100%;
    }
    .custom-downloadslist-container .downloads-title{
        font-size: 3.5rem;
        line-height: 3.4rem;
    }

}