.ItemList {
    input.form-control:focus {
        box-shadow: none;
    }

    .CheckboxLabel {
        display: flex;
        font-size: 13px;
        letter-spacing: 1px;
        margin-left: 20px;
        margin-top: 12px;
    }

    label {
        cursor: pointer;

        // Overriden the existing(font-weight: 500 and  text-transform: uppercase) values
        // that have been added in upgraded version of suite-component and suite-frontend
        font-weight: 400;
        text-transform: none;
    }

    .SearchField {
        clear: both;
        top: 6px;
    }

    .SearchFieldInput {
        font-size: 14px;
    }

    &-Checkbox {
        width: 13px;
        position: absolute;
    }

    &-Header {
        color: var(--gray-600);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;

        &-Left {
            float: left;
        }

        &-Right {
            float: right;
        }
    }

    &-Items {
        border: 1px solid var(--gray-300);
        height: 300px;
        margin-top: 16px;
        position: relative;
        overflow-y: auto;
    }

    &-Item {
        padding: 1px 10px;
    }

    &-Item:nth-of-type(1) {
        border-bottom: 1px solid var(--gray-300);
        background-color: #f6f4f6;
        font-weight: 500;
        padding-bottom: 12px;
        position: sticky;
        top: 0;
        z-index: 1;

        .ItemList-Checkbox {
            margin-top: 16px;
        }
    }

    &-MoveItemsButton {
        background: var(--midnight-500, #468ee5);
        color: var(--white);
        cursor: pointer;
        margin: 20px 0 0;
        padding: 10px 25px;
        display: flex;
        align-items: center;
        justify-content: center;

        &-Text {
            text-align: center;
            width: 420px;
        }

        &-Icons {
            width: 44px;

            .ChevronRightGlyphIcon:nth-of-type(3) {
                color: var(--white);
            }

            .ChevronRightGlyphIcon:nth-of-type(2) {
                color: var(--gray-300);
                margin-right: -8px;
            }

            .ChevronRightGlyphIcon:nth-of-type(1) {
                color: var(--gray-400);
                margin-right: -8px;
            }

            .ChevronLeftGlyphIcon:nth-of-type(1) {
                color: var(--white);
            }

            .ChevronLeftGlyphIcon:nth-of-type(2) {
                color: var(--gray-300);
                margin-left: -8px;
            }

            .ChevronLeftGlyphIcon:nth-of-type(3) {
                color: var(--gray-400);
                margin-left: -8px;
            }
        }
    }

    &-UndoMoveItems {
        background: var(--midnight-150, #d2e3f8);
        display: inline-block;
        padding: 10px 15px;
        width: 100%;

        &-Msg {
            font-size: 13px;
            float: left;
            color: var(--gray-700);
        }

        &-Link {
            color: var(--anchor-default);
            cursor: pointer;
            font-weight: 500;
            float: right;
        }
    }

    &-ButtonDisable {
        background: var(--midnight-100, #e5f0f6);
    }

    &-LinkDisable {
        color: var(--gray-500);
    }
}
