#rds-iconbox {
    --box-cols: 8;
    width: 310px;
    padding: 0;
    
    #dashicons-search{
        margin: 8px 6px;
        width: 295px;
    }
    .rds-dashicons-wrapper{
        /* height: 250px; */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        overflow-y: scroll;
        background-color: white;

        button {
            flex-basis: calc(100% / var(--box-cols));
            width: 100%;
            aspect-ratio: 1;
            color: #555d66;
            border: none;
            background-color: unset;
        }
        
        button:hover, button:focus {
            background-color: whitesmoke;
            color: black;
            cursor: pointer;
        }
    }
}