.dragDropListWap {
    width: 100%;
    background: #F0F0F5;
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;

    .rows{
        height: 100%;
        background-color: #fff;

    }

  
    .listItemClass {
        display: flex;
        justify-content: space-between;
    }


    .emptyClass {
        text-align: center;
        height: 100%;
        padding-top: 1rem;
        box-sizing: border-box;
        background: #fff;

        div {
            margin-top: 0.1rem;
            color: #aaa;
        }
    }
}


.dragDropListWap-SortableItem {
    padding: 15px;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;


    .label {
        display: flex;
        font-size: 16px;
        align-items: center;
        img {
            height: 12px;
            margin-right: 10px;
        }
    }

    .checkbox {
        width: 32px;
        height: 18px;
        &::before {
            width: 32px;
            height: 18px;
        }

        &::after {
            width: 17px;
            height: 17px;
            top: -0.01px;
            left: -0.035px;
        }
    }

    .am-switch .checkbox:before {
        width: 32px;
        height: 18px;
        top: 0.005px;
        left: 0;
        background: #C8C8CD;

    }
}