/*
PRIMARY: #CDA85C; // oro
SECONDARY: #adadad; // grigio
BODY: #333333
*/

.reserved-flex {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.reserved-flex > div {
    width: 100%;
    margin-bottom: 20px;
}

.document-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.document-list > li > a {
    display: block;
    border-bottom: 1px solid #adadad;
    color: #333333;
    text-decoration: none;
    line-height: 1;
    padding: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.document-list > li > a:hover {
    opacity: 0.7;
}

.documents {
    padding: 0;
    margin: 0;
    list-style: none;
}

.documents > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #adadad;
    color: #333333;
    text-decoration: none;
    line-height: 1;
    padding: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.btn {
    display: inline-block;
    width: auto;
    padding: 5px 10px;
    background-color: var( --e-global-color-28331b5 );
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
    .reserved-flex > div {
        width: 48%;
        margin-bottom: 0;
    }
}