

:root {
    --header-height: 80px;
}

.bark-share-buttons__item {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #FFF;
    cursor:pointer;
}

.bark-share-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bark-share-buttons #bark-share-buttons__link {
    position: relative;
}

.bark-share-buttons #bark-share-buttons__link #bark-mesasge-copy {
    position: absolute;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
    width: 300px;
}
.bark-share-buttons #bark-share-buttons__link.is-copied #bark-mesasge-copy{
    display: block;
    visibility: visible;
    opacity: 1;
}

.yoast-breadcrumbs span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 24px;
}

/* SIDEBAR STYLE */
.sidebar-sticky.is-below-header {
    margin-top: var(--header-height);
}

.inside-left-sidebar {
    height: 100%;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
    margin-block: 16px!important;
}

.entry-content p {
    margin-block: 16px!important;
}

/*
Blog filter chip estilos
 */

.bark-chip{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 12px;
    border:1px solid #111;
    background:#fff;
    color:#111;
    border-radius:999px;
    font-size:14px;
    line-height:1;
    margin: 0 0 16px 0;
}
.bark-chip__label{
    font-weight:600;
}
.bark-chip__close{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:22px;
    height:22px;
    border-radius:999px;
    border:1px solid #111;
    color:#111;
    text-decoration:none;
    font-size:14px;
    line-height:1;
}
.bark-chip__close:hover{
    background:#111;
    color:#fff;
    text-decoration: none;
}

@media (max-width: 768px){
    .yoast-breadcrumbs span {
        gap: 0 12px;
    }
}

