#favorites-container {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    max-width: 300px;
    min-height: 250px;
    background: #eff4f6;
    border-radius: 0px;
    margin-bottom: 50px;
    margin-right: 25px;
    margin-left: 25px;
    box-shadow: 1px 3px 6px #999999;
    z-index: 250;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#favorites-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cdcdcd;
    padding: 10px 15px;
}

#favorites-header h4 {
    padding: 0;
    margin: 0;
    color: #000;
    font-family: 'open_sansregular', sans-serif;
}

.favorites-row {
    width: 100%;
    display: block;
}

.favorites-paragraphs {
    display: flex;
    flex-wrap: wrap;    
}

#favorites-links {
    width: 100%;
}

#favorites-links, #favorites-links tbody, #favorites-links tbody tr, #favorites-links tbody tr td {
    background: #eff4f6;
    border-color: #eff4f6;
}

#favorites-links tbody tr td {
    padding: 5px;
}

#favorites-links tr td:last-child {
    text-align: right;
    width: 10%;
}

.favorites-remove p {
    padding: 0px;
}

.favorites-remove {
    cursor: pointer;
}

#favorites-close-bookmarks {
    cursor: pointer;
}

#favorites-menu-container {
    padding: 15px;
}

@media screen and (min-width: 1060px) {
    #favorites-container {
        min-width: 450px;
    }
}