.da-dropdown {
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    color: #555555;
    -webkit-box-shadow: 0 0 0 3px rgba(84, 88, 90, 0.2);
    -moz-box-shadow: 0 0 0 3px rgba(84, 88, 90, 0.2);
    box-shadow: 0 0 0 3px rgba(84, 88, 90, 0.2);
    background: white;
    margin: 7px 0px;
    display: inline-block;
    overflow-y: scroll;
    position: absolute;
    z-index: 9000;

    &:active, &.active {
        outline: 0;
        background-image: none;
    }

	// Button Sizes
	// --------------------------------------------------
	&.dd-sm {
		font-size: 10px;

		.dropdownList .dropdownItem {
            padding: 3px 10px 3px 10px;
		}
	}

	&.dd-md {
		font-size: 12px;

		.dropdownList .dropdownItem {
            padding: 5px 10px 5px 10px;
		}
	}

	&.dd-lg {
		font-size: 14px;

		.dropdownList .dropdownItem {
            padding: 7px 10px 7px 10px;
		}
	}

	&.domoScroll {
		overflow: hidden;
	}

	.dropdownList {
	    margin: 0px;
	    padding: 0px;
	    list-style-type: none;

	    .dropdownItem {
            padding: 7px 10px 7px 10px;
            cursor: pointer;
            line-height: 18px;
            min-height: 18px;
            background: #FFFFFF;

            &.active,
            &:active {
                background: #F2F2F3;
            }

            &.disabled {
            	background: #fff;
                pointer-events: none;
                text-align: center;
                font-style: italic;
                color: #A9A9A9;
            }

            &:hover,
            &.hover {
            	background: #C6E1F4;
            }

            .listItemIcon {
                float: left;
            }

            .dropdownItemContainer {
                word-wrap: break-word;
            }
	    }
	}
}