div.nice-input {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    outline: none;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
      -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    width: 100%;
}
div.nice-input.open .outer {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); 
}
div.nice-input.disabled {
    background-color: #eee;
    cursor: not-allowed;
}
div.nice-input.wide {
    width: 100%;
}
div.nice-input.wide .list {
    left: 0 !important;
    right: 0 !important;
}
div.nice-input.right {
    float: right;
}
div.nice-input.right .list {
    left: auto;
    right: 0;
}
div.nice-input.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}
div.nice-input.small:after {
    height: 4px;
    width: 4px;
}
div.nice-input.small .option {
    line-height: 34px;
    min-height: 34px;
}
div.nice-input .outer {
    background-color: #fff;
    border-radius: 5px;
	border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
	overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}
div.nice-input .list {
	max-height: 400px;
	overflow: auto;
	margin-bottom: 0;
	padding-left: 0px;
}
div.nice-input .list:hover .option:not(:hover) {
    background-color: transparent !important;
}
div.nice-input .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 12px;
    padding-right: 12px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
div.nice-input .option:hover, div.nice-input .option.focus, div.nice-input .option.selected.focus {
    background-color: #f6f6f6;
}
div.nice-input .option.selected {
    font-weight: bold;
}
div.nice-input .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}
.no-csspointerevents .nice-input .list {
    display: none;
}
.no-csspointerevents .nice-input.open .list {
    display: block;
}
.nice-input.form-control.in-input-group {
    border-bottom-left-radius: 4px !important;
    border-top-left-radius: 4px !important;
    z-index: 9;
}
