/* ### ARTICLE FULL IMAGE ###*/

/* See SLIDESHOW */

/* ### BREADCRUMBS ###*/

.breadcrumbs {
    background-color: var(--gray-ex-light);
    padding: 1rem;
    margin: 3rem 0;
}

.breadcrumbs ol {
    display: flex;
    gap: .5rem;
    list-style: none;
}

.mod-breadcrumbs__item {
    display: flex;
    align-items: flex-start;
}

.mod-breadcrumbs__item+.mod-breadcrumbs__item::before {
    content: "\00276F";
    margin: 0 1rem;
    color: var(--dark-blue);
}

.mod-breadcrumbs__here {
    display: none;
}

/* ### DEFAULT ARTICLE ### */

.article-info,
.mod-breadcrumbs__item.active {
    font-size: 0px;
}

.com-content-article {
    width: 100%;
}

.article__title,
.com-content-category-blog h1 {
    padding: 3rem 0;
}

.com-content-article__body p {
    margin-bottom: 1rem;
}

.article__container {
    display: flex;
    width: 95%;
    margin: 0 auto;
    max-width: var(--max-width);
}

/* ### SIDEBAR TOGGLE HAMBURGER ### */

.sidebar__toggle {
    padding-top: 2rem;
    width: 150px;
    margin: 0 auto;
    display: block;
}

.sidebar__toggle-bars {
    margin: 0 auto;
    width: 30px;
}

.sidebar__toggle-bar {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 6px;
    background: var(--orange);
    border-radius: 3px;
    transition: transform 0.2s ease-out;
    cursor: pointer;
    opacity: .8;
}

.sidebar__toggle.open .sidebar__toggle-bars {
    transform: translateX(10px);
}

.sidebar__toggle-bar:first-child,
.sidebar__toggle-bar:nth-child(3) {
    transform-origin: 50% 50%;
}

.sidebar__toggle.open .sidebar__toggle-bar:first-child {
    transform: rotate(45deg) translate(0, 13px);
}

.sidebar__toggle.open .sidebar__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -13px);
}

.sidebar__toggle.open .sidebar__toggle-bar:nth-child(2) {
    opacity: 0;
}

.sidebar__toggle-text {
    height: 30px;
    width: 500px;
    margin: 0 auto;
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark-blue);
    width: 150px;
    text-align: center;
    opacity: .8;
}

@media only screen and (min-width: 900px) {
    .sidebar__toggle {
        display: none;
    }
}

/* ### SIDEBAR ARTICLE - PRICE LISTS ARTICLES ### */

.article-main-content {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: var(--max-width);
    margin: 0 auto;
}

.article-sidebar {
    flex: 1;
    padding: 2rem 1rem;
    position: absolute;
    background: #fff;
    width: 100%;
    box-shadow: var(--box-shadow);
    height: calc(100dvh - 210px);
    overflow: auto;
    display: none;
    z-index: 2;
}

.article-sidebar.open {
    display: block;
}

main {
    flex: 1;
}

.content-above {
    margin-top: 1rem;
}

@media only screen and (min-width: 550px) {
    .article-sidebar {
        width: 60%;
        left: 20%;
    }
}

@media only screen and (min-width: 900px) {
    .article-main-content {
        flex-direction: row;
        margin-top: 3rem;
    }
    .article-sidebar {
        position: static;
        width: 30%;
        box-shadow: none;
        display: block;
        padding: 2rem 0;
        height: 100%;
        max-height: 1500px;
    }
    main {
        flex: 3;
    }
    .content-above {
        margin-top: 2rem;
    }
}

/* ### SIDEBAR SCROLL ### */

.article-sidebar {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--sky-blue-10) transparent;
    scroll-margin-right: 10px;
}

.article-sidebar::-webkit-scrollbar {
    width: 5px;
}

.article-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.article-sidebar::-webkit-scrollbar-thumb {
    background-color: var(--sky-blue-10);
    border-radius: 20px;
    border: transparent;
}

/* ### CUSTOM MODULES IN THE SIDEBAR ### */

.article-sidebar .mod-custom {
    margin: 3rem 0;
    padding: 0 .7rem;
}

.article-sidebar .mod-custom>* {
    padding: .5rem 0;
}

.article-sidebar .mod-custom h2 {
    font-size: 1.25rem;
    /* margin: 1.8rem 0 1.3rem 0; */
    margin: 0;
}

.article-sidebar .mod-custom h3,
h4,
h5,
h6 {
    font-size: 1.1rem;
    /* margin: 1.4rem 0 1.2rem 0; */
    margin: 0;
}

.article-sidebar .mod-custom p,
li,
a,
span.mod-menu__heading,
span.mod-menu__separator {
    font-size: .95rem;
    line-height: 1.4;
    margin: 0;
}