.bookmark-after-content {
    margin-top: 20px;
}

.bookmark-icon {
    display: inline-block;
    cursor: pointer;
    transition: all 0.1s;
}

.bookmark-icon::before {
    content: "\f02e";
    font-family: FontAwesome;
    text-decoration: none;
}

.bookmark-check::before {
    content: "\f00c";
    font-family: FontAwesome;
}

.show-bookmarks {
    display: inline-block;
    cursor: pointer;
}

.bookmark-status {
    transition: all 0.1s;
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
    width: 160px;
}

#bookmark-splash {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10000;
    opacity: 0.8;
}

#bookmark-list {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    height: 80vh;
    /*
   
    top: 10vh;
    left: 10vw;
    */
    background-color: white;
    z-index: 10001;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
    min-width: 90vW;
}

@media (min-width: 850px) {
    #bookmark-list {
        min-width: 800px;
    }
}

#bookmark-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
}

.bookmark-item {
    margin-top: 20px;
    padding: 0 20px 0 0;
    overflow: hidden;
    position: relative;
}

.bookmark-item:hover {
    cursor: pointer;
}

.bookmark-item img::after {
    clear: left;
}

.bookmark-item-image {
    width: 200px;
    height: 200px;
    float: left;
    margin-right: 20px;
}

.bookmark-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bookmark-item h2 {
    font-size: 20px;
    padding-bottom: 6px;
}

.bookmark-item-meta {
    position: absolute;
    bottom: 0;
    right: 10px;
    padding: 10px 0;
    text-align: right;
}

.bookmark-item-timestamp,
.bookmark-item-email,
.bookmark-item-remove {
    display: inline-block;
    margin-left: 15px;
}

.bookmark-description {
    padding-bottom: 40px;
    padding-left: 10px;
}

#bookmark-sticky {
    position: relative;
    width: 100%;
    max-width: 800px;
    z-index: 10002;
    height: 70px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}

#bookmark-sticky h1 {
    font-size: 28px;
    padding: 10px 20px 10px 20px;
    color: white;
    line-height: 50px !important;
}

#bookmark-items {
    width: 100%;
    max-width: 800px;
    padding: 0px 20px 60px 20px;
    height: 400px;
    height: calc( 80vh - 70px);
    overflow-y: auto;
}

#bookmark-up {
    display: none;
    /*
    margin-top: calc( 80vh - 40px);
    margin-left: calc( 80vW - 40px);*/
    position: fixed;
    z-index: 10002;
    width: 30px;
    height: 30px;
    text-align: center;
    bottom: 20px;
    right: 30px;
}

#bookmark-up:hover {
    cursor: pointer;
}