/* content-list styles */
.content-list__item {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    border-left: 8px solid hsl(var(--base)/.7);
    color: hsl(var(--black)/.7);
    font-weight: 500;
    align-items: center;
}

.content-list__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(var(--white)/.6);
    box-shadow: 0 0 5px hsl(var(--black)/.2);
    flex-shrink: 0;
    font-size: 18px;
    color: hsl(var(--base));
}

@media (max-width: 991px) {
    .content-list__item {
        background: hsl(var(--white)/.5);
    }
}

@media (max-width: 424px) {
    .content-list__item {
        padding: 5px 10px;
        font-size: 14px;
    }
    .content-list__icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb-wrapper__bottom {
    text-align: end;
    margin-bottom: 24px;
}

/* d--none and list styles */
.d--none {
    display: none;
}

li.items.list-group-item.in_list {
    background: hsl(var(--base) / 0.2);
}

.collections-list .collection-item {
    background: transparent;
    cursor: pointer;
    position: relative;
    border: 0;
    display: block !important;
}
