.dual-listbox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

    .dual-listbox .dual-listbox__container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .dual-listbox .input-group {
        margin-bottom:20px;
    }

    .dual-listbox .dual-listbox__search {
        border: 1px solid #ccc;
        padding: 10px;
        width: 100%;
        
    }

    .dual-listbox .dual-listbox__available,
    .dual-listbox .dual-listbox__selected {
        border: 1px solid #ccc;
        height: 300px;
        overflow-y: auto;
        padding: 0;
        width: 100%;
        margin-top: 0;
        -webkit-margin-before: 0;
        border-radius:3px;
    }

    .dual-listbox .dual-listbox__buttons {
        /*display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;*/
        margin: 0
    }

    .dual-listbox .dual-listbox__button {
        width: 50%;
        float: left;
        margin-bottom: 10px;
        border: 0;
        border: 2px solid transparent;
        /*background-color: #eee;
        padding: 10px 0px;
        color: #fff;*/
    }


        .dual-listbox .dual-listbox__button i.la {
            margin: 0 7px;
            font-size: 18px;
            position: relative;
            top: 2px;
        }
        /*.dual-listbox .dual-listbox__button:hover {
            background-color: #ddd
        }*/
        .dual-listbox .dual-listbox__button:not(:last-child) {
            border-top-right-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
        }
        .dual-listbox .dual-listbox__button:last-child {
            border-top-left-radius: 0 !important;
            border-bottom-left-radius: 0 !important;
        }

        .dual-listbox .dual-listbox__title {
            padding: 15px 10px;
            font-size: 120%;
            font-weight: 700;
            /*border-left: 1px solid #efefef;
            border-right: 1px solid #efefef;
            border-top: 1px solid #efefef;*/
            margin-top: 1rem;
            -webkit-margin-before: 1rem
        }

    .dual-listbox .dual-listbox__item {
        display: block;
        padding: 10px 12px;
        line-height: 20px;
        cursor: pointer;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        border-bottom: 1px dotted #eee;
        transition: background .1s ease
    }

        .dual-listbox .dual-listbox__item.dual-listbox__item--selected {
            /*background-color: rgba(8, 157, 227, .7)*/
            color: #fff;
            background: #156ebe;
            outline:none;
            border-bottom: 1px solid transparent;
        }
		.dual-listbox .dual-listbox__item.dual-listbox__item--selected span{
			color: #d2d8f3;
        }
        .dual-listbox .dual-listbox__item:last-child {
            border-bottom: none;
        }

        .dual-listbox .dual-listbox__item span {
            width: 100%;
            display: inline-block;
            /*white-space: nowrap;*/
            padding: 0;
            margin:0;
            font-size: 12px;
            color: #a2aace;
        }
    .dual-listbox .dual-listbox__available::-webkit-scrollbar-track, .dual-listbox .dual-listbox__selected::-webkit-scrollbar-track {
        border-radius: 0px;
        background-color: #F5F5F5;
    }

    .dual-listbox .dual-listbox__available::-webkit-scrollbar, .dual-listbox .dual-listbox__selected::-webkit-scrollbar {
        height: 10px;
        width: 10px;
        background-color: #F5F5F5;
    }

    .dual-listbox .dual-listbox__available::-webkit-scrollbar-thumb, .dual-listbox .dual-listbox__selected::-webkit-scrollbar-thumb {
        border-radius: 2px;
        background-color: #6B6F82;
    }
.dual-listbox h5{
    color:#156ebe;
}

@media only screen and (max-width: 991px) 
{
	.availableList .dual-listbox__buttons .btn.btn-customblue i:before {
		content:"\f110";
	}
	.availableList .dual-listbox__buttons .btn.btn-customblue-outline i:before {
		content:"\f10c";
	}
	
	.selectedList .dual-listbox__buttons .btn.btn-customblue i:before {
		content:"\f113";
	}
	.selectedList .dual-listbox__buttons .btn.btn-customblue-outline i:before {
		content:"\f10f";
	}
}