/* Journal CSS */
.journal__title{
    font-size: 36px;
    color: #434a52;
    font-weight: 700;
    margin-top: 12px;
}
.dark-theme .journal__title {
    color: #fff;
} 
.nav-articles{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}
.articles-content{
    margin-bottom: 26px;
}
.article-category-link,
.btn-article-questions{
    font-size: 16px;
    display: inline-block;
    padding: 11px 18px;
    color: #ffffff;
    border-radius: 5px;
    margin-bottom: 12px;
    opacity: 0.85;
    transition: 0.3s;
}
.article-category-link:hover,
.btn-article-questions:hover,
.nav-category .article-category-link:hover{
    opacity: 1;
}
.nav-category .article-category-link{
    opacity: 0.55;
}
.nav-category .article-category-link.active{
    opacity: 1;
    box-shadow: 2px 2px 6px rgb(36 37 63 / 20%);
    cursor: default;
}
.btn-article-questions {
    background-color: #64B1F0;
    padding: 9px 16px;
}
.article-category-link:not(:last-child) {
    margin-right: 18px;
}
.article-item{
    margin-top: 24px;
    border: 2px solid #E5E8EB;
    border-radius: 7px;
    background-color: rgba(220, 226, 231, 0.15);
    overflow: hidden;
}
.dark-theme .article-item{
    background-color: rgba(36,37,63,0.15);
}
.article-item-content{
    padding: 22px;
}
.article-item-img{
    cursor: pointer;
}
.article-item-img img{
    width: 100%;
    object-fit: cover;
}
.article-content-metadata{
    font-size: 14px;
    margin-bottom: 20px;
    color: #7C8186;
}
.dark-theme .article-content-metadata{
    color: #ffffff;
}
.article-content-metadata .for-acm-category{
    font-weight: 500;
}
.article-content-metadata .for-acm-data{
    font-weight: 300;
}
.article-content-title{
    margin-bottom: 19px;
}
.ac-title{
    font-size: 24px;
    font-weight: 700;
    color:#434A52;
    line-height: 28px;
    cursor: pointer;
    transition: 0.3s;
}
.dark-theme .ac-title{
    color: #ffffff;
}
.ac-title:hover, .dark-theme .ac-title:hover{
    color: #64B1F0;
}
.article-content-descr{
    margin-bottom: 22px;
}
.ac-descr{
    font-size: 16px;
    color: #434A52;
    line-height: 24px;
    margin-bottom: 0;
}
.dark-theme .ac-descr{
    color: #ffffff;
}
.ac-more-link{
    font-size: 16px;
    display: inline-block;
    padding: 13px 27px;
    color: #ffffff;
    background-color: #F06964;
    border-radius: 5px;
    opacity: 0.85;
    transition: 0.3s;
}
.ac-more-link:hover{
    opacity: 1;
}

/* Article CSS */
.article__title{
    font-size: 36px;
    color: #434a52;
    font-weight: 700;
    margin-top: 17px;
    line-height: 43px;
}
.dark-theme .article__title {
    color: #fff;
} 
.article .nav-articles {
    margin-top: 12px;
}
.container-article{
    display: flex;
}
.content-article{
    width: calc(100% - 345px);
}
.article-meta{
    font-size: 16px;
    color: #7C8186;
    margin-bottom: 22px;
    line-height: 22px;
}
.dark-theme .article-meta{
    color: #c6c6c6;
}
.am-autor-link{
    color: #434A52;
    transition: 0.3s;
    font-weight: 500;
}
.dark-theme .am-autor-link{
    color: #f2f2f2;
}
.am-autor-link:hover, .dark-theme .am-autor-link:hover{
    color: #64B1F0;
}
.article-content-img figure{
    background-size: cover;
    background-position: 0 -28vw;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-bottom: 22px;
}
.article-content-img img{
    width: 100%;
    object-fit: cover;
    max-height: 480px;
    transition: 0.2s;
}
.article-content-img.fone img,
.article-content-img.fone figcaption{
    opacity: 0;
    visibility: hidden;
}
.article-content-img figcaption{
    font-size: 16px;
    color: #7C8186;
    text-align: center;
    padding: 22px 22px 0;
    background-color: #ffffff;
}
.dark-theme .article-content-img figcaption{
    color: #c6c6c6;
    background-color: #212330;
}
.ac-subscribe-link{
    font-size: 18px;
    color: #54B2FF;
}
.article-content-html{
    margin-bottom: 22px;
}
.article-content-subscribe{
    padding: 22px;
    background-color: rgba(220, 226, 231, 0.15);
    border: 1px solid #E5E8EB;
    border-radius: 5px;
    margin-bottom: 22px;
    text-align: center;
}
.dark-theme .article-content-subscribe {
    background-color: rgba(36,37,63,0.15);
}
.ac-subscribe-title{
    font-size: 22px;
    line-height: 25px;
    font-weight: 600;
    color: #434A52;
    text-align: center;
    margin-bottom: 22px;
}
.dark-theme .ac-subscribe-title{
    color: #ffffff;
}
.other-article-title{
    font-size: 24px;
    line-height: 29px;
    color: #434A52;
    font-weight: 600;
    margin: 22px 0;
}
.dark-theme .other-article-title{
    color: #ffffff;
}
.other-article-box{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.other-article-item{
    display: block;
    width: calc(33% - 15px);
    border: 1.75px solid #E5E8EB;
    border-radius: 5px;
    background-color: rgba(220, 226, 231, 0.15);
    position: relative;
    padding-bottom: 12px;
}
.dark-theme .other-article-item {
    background-color: rgba(36,37,63,0.15);
}
.other-article-item:not(:last-child){
    margin-right: 25px;
}
.oa-item-img img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.oai-content-title{
    font-size: 18px;
    line-height: 21px;
    min-height: 42px;
    color: #434A52;
    font-weight: 700;
    margin-bottom: 18px;
    transition: 0.3s;
}
.dark-theme .oai-content-title{
    color: #ffffff;
}
.other-article-item:hover .oai-content-title,
.other-article-item:hover .dark-theme .oai-content-title{
    color: #64B1F0;
}
.oai-content-meta{
    font-size: 16px;
    color: #7C8186;
    position: absolute;
    left: 22px;
    bottom: 22px;
}
.for-oai-category{
    font-weight: 600;
}
.oa-item-content{
    padding: 22px;
}
/* Article content css */
.article-content-html h2,
.article-content-html h3,
.article-content-html h4,
.article-content-html h5,
.article-content-html h6{
    color: #434A52;
    font-weight: 700;
}
.article-content-html h2{
    font-size: 24px;
}
.article-content-html h3{
    font-size: 22px;
}
.article-content-html h4{
    font-size: 20px;
}
.article-content-html h5{
    font-size: 18px;
}
.article-content-html h6{
    font-size: 16px;
}
.dark-theme .article-content-html h2,
.dark-theme .article-content-html h3,
.dark-theme .article-content-html h4,
.dark-theme .article-content-html h5,
.dark-theme .article-content-html h6{
    color: #ffffff;
}
.article-content-html p{
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 24px;
    color: #434A52;
}
.dark-theme .article-content-html p{
    color: #ffffff;
}
.article-content-html img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
}
.article-content-html a{
    color: #64B1F0;
    overflow-wrap: break-word;
}
.article-content-html table{
    margin-top: 22px;
    margin-bottom: 22px;
}
.article-content-html table td{
    font-size: 18px;
    padding: 6px;
    border: 1px solid #E5E8EB;
    color: #434A52;
}
.article-content-html table caption{
    font-size: 18px;
    font-style: italic;
    font-weight: lighter;
    padding-bottom: 7px;
    color: #7C8186;
}
.dark-theme .article-content-html table td{
    color: #ffffff;
}
.article-content-html ul,
.article-content-html ol{
    margin-bottom: 24px;
    padding-left: 20px;
}
.article-content-html ul li,
.article-content-html ol li{
    list-style: inherit;
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 22px;
    color: #434A52;
}
.dark-theme .article-content-html ul li,
.dark-theme .article-content-html ol li{
    color: #ffffff;
}
.article-content-html code{
    color: #7C8186;
}
.article-content-html blockquote {
    display: block;
    font-size: 18px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
    border-left: 2px solid #E5E8EB;
    margin-left: 1.5rem;
    padding-left: 1rem;
}
.dark-theme .article-content-html blockquote{
    color: #E5E8EB;
}
.article-content-html hr{
    border-color: #E5E8EB;
    border-style: solid;
    border-width: 1px 0 0 0;
    margin: 18px 0 22px;
}
.article-content-html iframe{
    max-width: 100%;
}
.article-bottom-card{margin-bottom:20px;max-width:100%;overflow:hidden;}
.article-bottom-card *{max-width:100% !important;}
.monetize-sidebar{max-width:320px;overflow:hidden;}
.monetize-sidebar *{max-width:100% !important;}
.article-other-card{margin-bottom:20px;max-width:100%;overflow:hidden;text-align:center;}
.article-other-card *{max-width:100% !important;}
.time-read-icon{
    width: 100%;
    max-width: 12px;
}
.inline-flex{
    display: inline-flex;
    align-items: center;
}
.for-acm-data.inline-flex .time-read-icon{
    margin-right: 3px;
}
/* Article Sidebar Css */
.sidebar-article{
    width: 320px;
    margin-left: 25px;
}
.sidebar-article-share,.sidebar-article-latest{
    width: 320px;
}
.saa-latest-item{
    display: flex;
    margin-top: 20px;
}
.saa-latest-item:not(:first-child){
    border-top: 1px solid #E5E8EB;
    padding-top: 20px;
}
.saa-latest-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #434A52;
    margin-bottom: 25px;
    transition: 0.3s;
}
.dark-theme .saa-latest-title{
    color: #ffffff;
}
.saa-latest-item-img img{
    width: 100%;
    min-width: 122px;
    max-width: 122px;
    min-height: 84px;
    max-height: 84px;
    border-radius: 4px;
    object-fit: cover;
}
.saa-latest-item-content{
    margin-left: 20px;
}
.saal-item-content-category{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}
.saal-item-content-title{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #434A52;
    margin-bottom: 6px;
    /* max-height: 66px;
    overflow: hidden; */
}
.dark-theme .saal-item-content-title{
    color: #f2f2f2;
}
.saa-latest-item:hover .saal-item-content-title{
    color: #64B1F0;
}
.saal-item-content-meta{
    font-size: 14px;
    color: #7C8186;
}
.dark-theme .saal-item-content-meta{
    color: #c6c6c6;
}
.sa-share-box{
    padding: 15px;
    border: 1px solid #E5E8EB;
    background-color: rgba(220, 226, 231, 0.15);
    margin-bottom: 29px;
    border-radius: 5px;
}
.dark-theme .sa-share-box{
    background-color: rgba(36,37,63,0.15);
}
.sa-share-title{
    font-size: 20px;
    font-weight: 500;
    color: #434A52;
    margin-bottom: 18px;
}
.dark-theme .sa-share-title{
    color: #ffffff;
}
.sa-share-list{
    display: flex;
    align-items: center;
}
.sa-share-list .sas-list-li a{
    display: inline-block;
    padding: 6px;
    border-radius: 3px;
}
.sa-share-list .sas-list-li a:hover{
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
.sa-share-list .sas-list-li a img{
    max-width: 24px;
    transition: 0.3s;
}
.sa-share-list .sas-list-li a:hover img{
    transform: scale(1.2);
}
.sa-share-item-link{
    font-size: 16px;
    font-weight: 500;
    color: #7C8186;
    line-height:24px;
    display:flex;
    align-items:baseline;
    position: relative;
    padding-left:22px;
}
.dark-theme .sa-share-item-link{
    color:#ffffff;
}
.sa-share-item-link img{
    max-width:18px;
    position:absolute;
    top:4px;
    left:0;
}
.sa-share-item-link .for-sa-share-link{
    padding-left: 6px;
    word-wrap: break-word;
    overflow: auto;
}
.sa-share-item{
    padding-bottom:18px;
    border-bottom:1px solid #E5E8EB;
    margin-bottom:18px;
}
/* Article content navigation css */
.article-content-navigations{
    padding: 22px;
    border: 1px solid #E5E8EB;
    background-color: rgba(220, 226, 231, 0.15);
    border-radius: 5px;
    margin-bottom: 34px;
}
.dark-theme .article-content-navigations{
    background-color: rgba(36,37,63,0.15);
}
.ac-nav-header{
    display: flex;
    align-items: center;
}
.ac-nav-content{
    margin-top: 16px;
}
.for-ac-nav-header-title{
    font-size: 16px;
    font-weight: 600;
    color: #434A52;
    line-height: 19.5px;
}
.dark-theme .for-ac-nav-header-title{
    color: #f2f2f2;
}
.ac-nav-contents-hidelink{
    font-size: 16px;
    color: #434A52;
    line-height: 19.5px;
    margin-left: 14px;
}
.dark-theme .ac-nav-contents-hidelink{
    color: #f2f2f2;
}
.ac-nav-contents-hidelink .for-asc-nav-hidelink-text{
    color: #54B2FF;
}
.acnc-list-li-link{
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: #54B2FF;
    transition: 0.3s;
}
.acnc-list-li-link:hover{
    text-decoration: underline;
}

/* Pagination Css */
.paginationbox{
    margin-bottom: 26px;
}
.paginationbox .pagination{
    display: flex;
    align-items: center;

}
.paginationbox .pagination li.disabled{
    display: none;
}
.paginationbox .pagination li:not(:last-child){
    margin-right: 28px;
}
.paginationbox .pagination li a{
    display: inline-block;
    color: #7C8186;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 16px;
    border: 1px solid #DCE2E7;
    border-radius: 3px;
}
.paginationbox .pagination li.active a{
    background-color: #54B2FF;
    color: #ffffff;
}
.dark-theme .paginationbox .pagination li a{
    color: #ffffff;
}

/* Autor Css */
.autor{
    margin-top: 12px;
}
.autor-box{
    display: flex;
    margin-bottom: 32px;
}
.autor-photo-box{
    max-width: 250px;
    min-width: 250px;
}
.autor-photo-box img{
    width: 100%;
    height: auto;
    border-radius: 7px;
    border: 1px solid #E5E8EB;
}
.autor-data-box{
    margin-left: 38px;
}
.autor-data-title{
    font-size: 36px;
    font-weight: 700;
    color: #434A52;
    margin-bottom: 28px;
}
.dark-theme .autor-data-title{
    color: #ffffff;
}
.autor-data-position{
    font-size: 20px;
    color: #434A52;
    margin-bottom: 28px;
}
.dark-theme .autor-data-position{
    color: #ffffff;
}
.autor-data-descr{
    font-size: 18px;
    color: #434A52;
    line-height: 27px;
    margin-bottom: 34px;
}
.dark-theme .autor-data-descr{
    color: #ffffff;
}
.ad-soclinks-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.ad-soclinks-list-li{
    margin-right: 8px;
}
.ad-soclinks-list-li a{
    display: inline-block;
    padding: 6px;
    border-radius: 3px;
}
.ad-soclinks-list-li a:hover{
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
.ad-soclinks-list-li a img{
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.ad-soclinks-list-li a:hover img{
    transform: scale(1.2);
}
.autor .article-content-subscribe{
    margin-bottom: 38px;
}
.table-responsive{width:100%;overflow:auto;}

/* Media Queries */
/* min 600px */
@media(min-width:600px){
    .article-item-img img{
        max-height: 360px;
    }
}
/* min 1000px */
@media(min-width:1000px){
    .article-item {
        display: flex;
        max-height: 285px;
    }
    .article-item-img{
        order: 2;
        width: 50%;
    }
    .article-item-content{
        order: 1;
        width: 50%;
        position: relative;
        padding: 22px 22px 80px;
    }
    .article-item-img img{
        height: 100%;
        max-height: 100%;
    }
    .article-content-more{
        position: absolute;
        bottom: 21px;
        left: 25px;
        z-index: 2;
    }
    .ac-title {
        max-height: 84px;
        overflow: hidden;
    }
    .article-content-descr{
        max-height: 72px;
        overflow: hidden;
    }
    .article-item-content:after {
        content:'';
        position:absolute;
        bottom:0;
        left: 0;
        right:0;
        z-index:1;
        background-color: #FAFBFB;
        height: 77px; 
    }
    .dark-theme .article-item-content:after {
        background-color: #212432;
    }
    .ac-title{
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .ac-descr{
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .ac-descr.twolines{
        -webkit-line-clamp: 2;
    }
}
/* max 1022px */
@media(max-width:1022px){
    .sidebar-article{display:none;}
    .content-article{width:100%;}
}
/* max 1000px */
@media(max-width:1000px) {
    .journal__title, .article__title{
        font-size: 30px;
        line-height: 36px;
    }
    .autor-data-title{
        font-size: 30px;
        line-height: 36px;
    }
}
/* max 959px */
@media(max-width:959px) {
    .nav-articles-questions{
        display: none;
    }
    .other-article-box{
        justify-content: center;
    }
    .other-article-item{
        width: calc(50% - 15px);
    }
    .other-article-item:not(:last-child){
        margin-right: 0;
        margin-bottom: 25px;
    }
    .other-article-item:first-child{
        margin-right: 25px;
    }
}
/* max 768px */
@media(max-width:768px){
    .autor{
        margin-top: 26px;
    }
    .autor-data-title{
        margin-bottom: 18px;
    }
    .autor-data-position{
        margin-bottom: 20px;
    }
}
/* max 720px */
@media(max-width:720px){
    .journal__title,
    .article .nav-articles,
    .autor{
        margin-top: 8px;
    }
}
/* max 680px */
@media(max-width:680px){
    .autor-box{
        flex-wrap: wrap;
    }
    .autor-data-box{
        margin-left: 0;
    }
    .autor-photo-box{
        margin: 0 auto 18px;
    }
    .autor-data-title,
    .autor-data-position,
    .autor-data-descr{
        text-align: center;
    }
    .ad-soclinks-list{
        justify-content: center;
    }
}
/* max 628px */
@media(max-width:628px){
    .other-article-item{
        width: 100%;
        margin-bottom: 25px;
    }
    .other-article-item:first-child{
        margin-right: 0;
    }
}
/* max 480px */
@media (max-width: 480px){
    .journal__title{
        margin-top: 38px;
    }
    .article .nav-articles {
        margin-top: 38px;
    }
    .paginationbox .pagination li:not(:last-child) {
        margin-right: 5px;
    }
    .autor{
        margin-top: 42px;
    }
    .autor-data-title, .autor-data-position, .autor-data-descr{
        margin-bottom: 15px;
    }
}