html {
    height: 100%;
    font-size: 10px;
    overflow: hidden;
}
body {
    font-size: 10px;
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
a {
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
img {
    max-width: 100%;
    width: 100%;
}
.footer {
    width: 100%;
    text-align: center;
    -webkit-box-shadow: inset 20px 8px 18px 0px rgba(106, 98, 91, 0.2);
    box-shadow: inset 20px 8px 18px 0px rgba(106, 98, 91, 0.2);
    background-color: #f7f7f7;
}
.footer .innerFooter {
    max-width: 1280px;
    margin: 10px auto;
}
.footer .innerFooter .content {
    margin: 0px 40px 0px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer .innerFooter .content .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer .innerFooter .copyright {
    color: #b7b7b7;
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: normal;
    text-align: left;
    letter-spacing: 0;
}
.footer .innerFooter .content .left .logoFooter {
    margin-right: 16px;
    width: 60px;
    max-width: initial;
    opacity: 25%;
}
/* .footer .innerFooter .content .left img {
    height: 16px;
    width: 60px;
    max-width: initial;
} */

.footer .innerFooter .content .right {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 24px auto 24px auto 24px auto;
    grid-template-columns: auto auto auto auto;
    gap: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer .innerFooter .content .right li a {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0.5px;
    color: #b7b7b7;
}

header {
    width: 100%;
    text-align: center;
    -webkit-box-shadow: inset -4px -11px 18px 0px rgba(106, 98, 91, 0.2);
    box-shadow: inset -4px -11px 18px 0px rgba(106, 98, 91, 0.2);
    background-color: #f7f7f7;
}
header #toolBarContent {
    max-width: 1280px;
    margin: auto;
}
header #toolBarContent nav {
    margin: 13px 40px 10px 40px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
}

header #toolBarContent ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
header #toolBarContent ul.right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
header #toolBarContent ul li {
    /* padding-left: 32px; */
    margin-right: 32px;
    /* height: 20px; */
    cursor: pointer;
}
header #toolBarContent ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    height: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 1.4rem;
}
header #toolBarContent ul li a span {
    display: inline-block;
    margin-left: 12px;
}

header #toolBarContent ul li:last-child {
    margin-right: 0;
}
header #toolBarContent ul li.home a {
    background-image: url(../img/icon/home.svg);
}
header #toolBarContent ul li.shop a {
    background-image: url(../img/icon/shop.svg);
}

header #toolBarContent ul li.cerca a {
    background-image: url(../img/icon/cerca_archivio.svg);
}
header #toolBarContent ul li.logout a {
    background-image: url(../img/icon/logout.svg);
}
header #toolBarContent ul li.login a {
    background-image: url(../img/icon/login.svg);
}
header #toolBarContent ul li a {
    color: #000;
}

header #toolBarContent nav .logo img {
    height: 28px;
    margin-top: -4px;
    opacity: 25%;
}

main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
    padding-top: 25px;
}

main .mainContent {
    max-width: 1280px;
    margin: auto;
    height: 100%;
}

main .mainContent .inner {
    margin: 0 40px;
    height: 100%;
}
main .mainContent .inner .small_nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
    margin-bottom: 25px;
}
main .mainContent .inner .small_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
main .mainContent .inner .small_nav ul.leftBox > li {
    margin-right: 27px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.4rem;
}
main .mainContent .inner .small_nav ul.leftBox > li a {
    text-decoration: none;
    color: #000;
}
main .mainContent .inner .small_nav ul.leftBox > li.active {
    font-weight: 600;
}
main .mainContent .inner .small_nav ul.leftBox > li.active::after {
    content: "";
    display: block;
    width: 27px;
    height: 3px;
    border-radius: 3px;
    background-color: #0754ad;
    margin-top: 3px;
}

main .mainContent .inner .small_nav ul.date li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
}
main .mainContent .inner .small_nav ul.date li:last-child {
    margin-right: 0;
}
main .mainContent .inner .small_nav ul.date li .day {
    cursor: pointer;
    width: 36px;
    height: 36px;
    font-weight: bold;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6px;
    font-size: 1.8rem;
    text-decoration: none;
    color: #000;
}
main .mainContent .inner .small_nav ul.date li.active .day,
main .mainContent .inner .small_nav ul.date li .day:hover {
    background-color: #0754ad;
    opacity: 1;
    color: white;
}

main .mainContent .inner .small_nav ul.date_time {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
main .mainContent .inner .small_nav ul.date_time > li {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.4rem;
    margin-right: 27px;
}
main .mainContent .inner .small_nav ul.date_time > li:last-child {
    margin-right: 0;
}

/*newspaper*/

.newspaper main {
    overflow: hidden;
}
.newspaper main .mainContent .inner {
    height: 100%;
}

.secton_edition {
    height: calc(100% - 80px);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
}
.secton_edition > div {
    /* border: 1px red solid; */
}
.secton_edition .descr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding-right: 10px;
    margin-top: -55px;
}
.secton_edition .descr .edition_label {
    opacity: 0.5;
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 1.09px;
    text-align: right;
}
.secton_edition .descr .edition_name {
    margin: 6px 0;
    font-size: 2.4rem;
    font-weight: bold;
    font-stretch: normal;
    text-align: right;
}
.secton_edition .descr .edition_date {
    font-size: 1.4rem;
    font-weight: normal;
    text-align: right;
    text-transform: capitalize;
}
.secton_edition .edition_image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -55px;
}
.secton_edition .edition_image img {
    border-radius: 8px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(33, 24, 8, 0.2);
    box-shadow: 0 10px 30px 0 rgba(33, 24, 8, 0.2);
    max-width: 337px;
}

.secton_edition .list_edition {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    overflow: hidden;
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.secton_edition .list_edition ul {
    max-width: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}
.secton_edition .list_edition ul li {
    float: left;
    width: 45.2%;
    margin-bottom: 20px;
}
.secton_edition .list_edition ul li:nth-child(even) {
    float: right;
}
.secton_edition .list_edition ul::after {
    content: "";
    height: 50px;
    width: 100%;
    display: block;
}
.secton_edition .list_edition ul li .label_date {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: normal;
    text-transform: capitalize;
}
.secton_edition .list_edition ul li .small_thumb {
    border-radius: 2.7px;
    overflow: hidden;
    display: block;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .footer .innerFooter .content {
        flex-direction: column;
    }
    .footer .innerFooter .content .left {
        margin-top: 10px;
        order: 2;
    }
}
@media (max-width: 600px) {
    header #toolBarContent ul li a span {
        display: none;
    }
}
