.dcls-modal {
	.dcls-modal-body {
		max-height: 500px;
		overflow-y: auto;
		@include scrollbar;
		ul {
			padding: 10px 0;
			margin-bottom: 0;
			list-style-type: none;
			li {
				cursor: pointer;
				padding: 10px 30px;
				div {
					display: inline-block;
					width: calc(100% - 58px);
					margin-left: 10px;
					padding: 0 10px;
					white-space: nowrap;
					overflow: hidden;
					line-height: 24px;
					text-overflow: ellipsis;
					vertical-align: bottom;
				}
				svg {
					fill: $text-color-default;
					
					&:last-of-type {
						float: right;
					}
				}

				&.dbq-prevent-sorting {
					svg:last-of-type {
						float: inherit;
					}
				}
			}
		}
	}

    .modal-footer {
        .btn {
            cursor: pointer;
        }
    }
}