.wrap-contents.wrap-popup-content {
    position: relative;
    min-width: 30%;
    max-width: 100vw;
    padding: 0;
    transition: transform .2s;
    transform: translateX(100vw);
}

.wrap-contents {
    background: white;
    width: 400px;
    height: 100%;
    margin-right: 0px;
    overflow-y: auto;
    padding-bottom: 30px;
}

.wrap-popup-content .wrap-thumbnail{
    object-fit: contain;
    width: 100%;;
}

.search-box {
    align-items: center;
    display: flex;
}

.wrap-footer {
    line-height: 2.5;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    border-top: 1px solid #2CE080;
    background: #fff;
    color: #2CE080;
    padding: 5px;
    text-align: center;
    width: 100%;
    height: 50px;
}

.wrap-footer:hover {
    background: #2CE080;
    border: 1px solid #2CE080;
    color: #fff;
}

/* LIST */

.wrap-select-collections {
    padding-bottom: 75px!important;
    padding: 15px;
}

.bookmark-card-grid {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.bookmark-card {
    position: relative;
    cursor: pointer;
    box-shadow: 0 0px 3px #d2d2d2;
    margin-top: 15px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.bookmark-card .text {
    padding: 10px 15px;
    font-size: 17px;
    font-weight: bold;
    word-wrap: break-word;
}

.bookmark-card .wrap-icon {
    border: 1px solid rgba(189, 189, 189, 0.4);
}

.bookmark-card .icon {
    position: absolute;
    top: -2px;
    right: 0px;
    font-size: 28px;
    color: #bdbdbd;
    transition: color .2s;
}

.bookmark-card .icon.active {
    color: #2CE080;
}

/* END LIST */