.notes-filter-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--color-grey-200);
    padding: 10px;
    border-radius: var(--border-radius-main);
    margin-bottom: 30px;
}

.clear-filter-notepad {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: auto 0;
    color: var(--color-green);
    cursor: pointer;
    position: relative;
}

.clear-filter-notepad::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}