/* bookmark list*/
.btn-bookmark-list {
    padding: 0px 10px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.top-bar .btn-bookmark-list {
    height: 27px;
}
.top-bar .bookmark-list {
    top: calc(100% + 10px);
}
.btn-bookmark-link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bookmark-list {
    position: absolute;
    right: -5px;
    top: -webkit-calc(100%);
    top: -moz-calc(100%);
    top: calc(100%);
    width: 350px;
    height: auto;
    background-color: #FFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 9999999;
    overflow: hidden;
    padding: 30px 0 30px 0;
    visibility: hidden;
    opacity: 0;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -webkit-box-shadow: 0 15px 29px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 15px 29px rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 29px rgba(0, 0, 0, 0.05);
}
.bookmark-list .posts-list {
    margin: -15px 0;
}
.bookmark-list .list-item:not(:last-child) {
    border-bottom: 1px solid var(--color-border-black);
}
.bookmark-list .list-item {
    padding: 15px 25px;
}
.btn-bookmark-list:hover .bookmark-list {
    overflow: initial;
    visibility: visible;
    opacity: 1;
}
.bookmark-list .post--horizontal .post__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    white-space: normal;
}
.bookmark-list .bookmark-see-more {
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 10px 25px;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--color-primary);
    width: fit-content;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-white-contrast-100);
    text-decoration: none;
}
.bookmark-list .bookmark-see-more span {
    margin-right: 7px;
}
.header-element-inverse .btn-bookmark-link svg path,
.navigation-bar--inverse .btn-bookmark-link svg path {
    stroke: var(--color-white-contrast-80);
}
.navigation-bar--inverse .navigation--main>li.current-menu-item>a {
    color: var(--color-white-contrast-100);
}
.header-element-inverse .btn-bookmark-link:hover svg path,
.navigation-bar--inverse .btn-bookmark-link:hover svg path {
    stroke:var(--color-white-contrast-70);
}
.btn-bookmark-link:hover svg path {
    stroke: var(--color-dark-contrast-30);
}
.atbs-bookmark-btn-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-header .btn-bookmark-list {
    height: auto;
}
.mobile-header--inverse svg.icon-bookmark-default path {
    fill: transparent;
    stroke: var(--color-white-contrast-100);;
}
/* .bookmark list*/