.sortable-item {
    display: flex;
    height: 40px;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
    box-shadow: 0 -1px 0 0 var(--gray-200) inset;
    background-color: var(--white);

    &-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    &-handle {
        display: flex;
        align-content: center;
        justify-content: center;
        color: var(--gray-500);
    }

    &-close {
        display: flex;
        align-content: center;
        justify-content: center;

        .GlyphIcon path {
            fill: var(--gray-600);
        }
    }

    &-thumbnail {
        width: 50px;
        height: 30px;
        object-fit: contain;
    }
}
