.single-article-wrapper{
    background: var(--white);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    padding: 25px;
    margin-bottom: 20px;
}
.single-article-wrapper h1{
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 14px;
    margin: 0 0 30px;
    word-wrap: break-word;
}
.article-pagination{
    background-color: #fcfcfc;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    display: none;
    font-family: var(--font-family-base-v1);
}
.article-pagination-left,
.article-pagination-right{
    position: relative;
    flex-basis: 50%;
}
.article-pagination-left::after{
    content: "";
    display: block;
    position: absolute;
    background-color: #ececec;
    height: 80%;
    width: 3px;
    top: 10%;
    right: 0;
}
.article-pagination a{
    color: #666;
    display: block;
    padding: 20px;
    position: relative;
}
.article-pagination-left a{
    padding-left: 50px;
}
.article-pagination-right a{
    padding-right: 50px;
}
.article-pagination a::before{
    content: "";
    display: inline-block;
    background: url(/assets/advice/wp-content/uploads/theme-img/pagination-arow.svg) no-repeat;
    background-size: contain;
    width: 16px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.article-pagination .article-pagination-right a::before{
    left: auto;
    right: 20px;
    transform: translateY(-50%) rotate(180deg);
}
.article-pagination a:hover{
    text-decoration: none;
}
.article-pagination .pagination-blocks{
    display: flex;
    align-items: center;
    gap: 10px;
}
.article-pagination .pagination-titles{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
}
.article-pagination .pagination-blocks figure{
    display: flex;
    width: 150px;
    height: 80px;
    margin: 0;
    padding: 0;
}
.article-pagination .pagination-blocks figure img{
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}
.article-pagination .pagination-text{
    font-weight: 300;
    margin: 0;
    width: calc(100% - 160px);
}
.recommended-container{
    background: #fff;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, .05);
    border-right: 1px solid #d9d9d9;
    height: auto;
    width: 240px;
    position: fixed;
    top: 144px;
    bottom: 0;
    left: -100%;
    z-index: 9;
    transition: left .3s ease-in-out;
}
.recommended-container.recommended-active{
    left: 0;
}
.recommended-container.close-recommended{
    left: -240px;
}
.recommended-heading-wrapper{
    padding-inline: 10px;
}
.recommended-heading{
    border-bottom: 1px solid #d9d9d9;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    padding-block: 10px;
    text-transform: uppercase;
    text-align: center;
}
.recommended-article-grid{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 15px 12px 70px;
    overflow-y: auto;
    height: calc(100vh - 144px);
    scrollbar-gutter: stable;
}
.recommended-article-grid::-webkit-scrollbar {
    width: 4px;
}
.recommended-article-grid::-webkit-scrollbar-thumb {
    background: #cacaca;
}
.recommended-article-grid::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.recommended-article-grid li article{
    height: 100%;
}
.recommended-article-grid li article a{
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    height: 230px;
    position: relative;
    overflow: hidden;
}
.recommended-img-wrapper{
    display: flex;
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0;
}
.recommended-img-wrapper img{
    border-radius: 3px 3px 0 0;
    width: 100%;
}
.recommended-title-copy{
    background: var(--white);
    height: calc(100% - 40px);
    position: absolute;
    top: 100px;
    left: 0;
    overflow-y: auto;
    padding: 22px 20px 0;
    transition: top 500ms ease;
}
.recommended-title{
    color: #182642;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
}
.recommended-copy{
    color: #182642;
    font-family: var(--font-family-base-v1);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 8px;
}
.recommended-label{
    background: #fcfcfc;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    font-family: var(--font-family-base-v1);
    color: var(--blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin: auto 0 0 0;
    padding: 6px 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.recommended-label::after{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #e5e5e5;
    border-right: 2px solid #e5e5e5;
    transform: rotate(45deg);
    margin-left: auto;
}
.recommended-article-grid a:hover .recommended-label::after{
    border-color: var(--black);
}
.recommended-article-grid a:hover .recommended-title-copy{
    top: 0;
}
.recommended-close{
    background: #fff;
    border-radius: 0 18px 18px 0;
    border: 1px solid #d9d9d9;
    border-left: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: absolute;
    right: -37px;
    top: 10px;
    padding: 18px;
}
.recommended-close:hover{
    background: #f2f2f2;
}
.recommended-close::before,
.recommended-close::after{
    background: #666;
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    transform: rotate(45deg);
    position: absolute;
}
.recommended-close::after{
    transform: rotate(-45deg);
}
.recommended-container.close-recommended .recommended-close::before{
    transform: rotate(0);
}
.recommended-container.close-recommended .recommended-close::after{
    transform: rotate(90deg);
}
.flipbook-external-buttons{
    display: flex;
    margin-top:10px;
}
.btn-download-item,
.button-expand{
    border:0;
    color: white;
    cursor:pointer;
    font-size:16px;
    font-weight: bold;
    flex-basis:50%;
    outline:none;
    padding:20px 20px;
}
.btn-download-item{
    background-color: #85ce3f;
}
.btn-download-item:hover{
    background-color: #9dd865;
    text-decoration:underline;
}
.button-expand{
    background-color: #eaeaea;
    color:#2f4ba0;
}
.button-expand:hover{
    background-color: #ddd;
    color:#0d0d0d;
    text-decoration:underline;
}
.article-pagination.recommended-bottom{
    display: none;
}
.article-pagination.recommended-bottom .article-pagination-right{
    flex-basis: 100%;
}
.article-pagination.recommended-bottom .recommended-bottom-text{
    color: #666;
    font-family: var(--font-family-base);
    font-weight: normal;
    font-size: 1.3rem;
    line-height: 1.5;
}
.article-pagination.recommended-bottom .pagination-text{
    width: 100%;
}
._3d-flip-book{
    min-height: 484px;
}

@media (min-width: 1471px) {
    .article-pagination{
        display: flex;
    }
}

@media (max-width: 1470px) {
    .article-pagination.recommended-bottom{
        display: flex;
    }
    .recommended-container{
        display: none;
    }
}

@media (max-width: 767px) {
    .article-pagination.recommended-bottom .pagination-blocks{
        display: none;
    }
    .article-pagination.recommended-bottom .pagination-titles{
        margin: 0;
        text-align: center;
    }
    .btn-download-item,
    .button-expand{
        font-size: 14px;
    }
    ._3d-flip-book{
        min-height: 184px;
    }
}