/* ============================================================================
WISH LIST STYLES
============================================================================ */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    align-items: center;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
#list .icons {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

#list li:hover .icons {
    visibility: visible;
    opacity: 1;
}


.number {
    width: 40px;
    text-align: right;
    color: #8C8FA3;
    display: flex;
    justify-content: flex-start;
}

.text {
    flex: 1;
    text-align: left;
    font-size: 20px;
    word-wrap: break-word;
    max-width: 339px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.icons {
    font-size: 14px;
    display: flex;
    justify-content: flex-end;
}

.icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-left: 10px;
    color: #8C8FA3;
}

.icons span:hover {
    opacity: .7;
}

.icon {
    width: 18px;
    height: 18px;
}

.emptyHint {
    line-height: 1.7;
    font-size: 15px;
    opacity: .35;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity .35s ease, filter .35s ease;
}

.emptyHint.hidden {
    opacity: 0;
    filter: blur(6px);
    pointer-events: none;
    height: 0;
    margin-top: 0;
    overflow: hidden;
}
