.kopel-dropdown {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 32px;
    border: 1px solid rgb(177, 198, 219);
    display: block;
    position: relative;
    cursor: pointer;
}

.kopel-dropdown input {
    display: block;
    height: 29px;
    line-height: 29px;
    cursor: pointer;
}


.kop-open.kopel-dropdown {
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    border-left: 1px solid #999999;
    border-bottom: none;
}

.kopel-dropdown .list-wrapper {
    display: none;
    margin-top: 31px;
    position: absolute;
    z-index: 1000;
    left: -1px;
    right: -1px;
    border-left: 1px solid #999999;
    border-right: 1px solid #999999;
    border-bottom: 1px solid #999999;
}

.kopel-dropdown .list-container {
    width: 100%;
    height: 100%;
    background-color: #fff;
}


.kopel-dropdown .dropdown-icon {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    border-right: 1px solid rgb(177, 198, 219);
    text-align: center;
    line-height: 29px;
}

.kop-open.kopel-dropdown .dropdown-icon {
    transform: rotate(180deg);
}

.kop-open .dropdown-icon {
    border: none;
}

.dropdown-data-container {
    position: absolute;
    right: 0;
    left: 30px;
    top: 0;
    height: 31px;
    background-color: transparent;
}
.dropdown-data {
    border: none;
    outline: none;
    display: block;
    position: absolute;
    right: 0px;
	top: 1px;
    height: 30px;
    width: 100%;
    padding-right: 5px;
    background-color: #fff;
}

.dropdown-data:disabled {
    background-color: #eee;
}

.kopel-dropdown .dropdown-search-input {
    width: 100%;
    outline: none;
    height: 25px;
}

.kopel-dropdown .dropdown-search-icon {
    position: absolute;
    top: 3px;
    left: 5px;
}

.kopel-dropdown ul {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: scroll;
}

.kopel-dropdown li {
    height: 32px;
    border-bottom: 1px solid #eee;
    line-height: 32px;
    overflow: hidden;
	padding-right: 5px;
}

.kopel-dropdown li:hover {
    background-color: #eee;
    color: #333;
}


.kop-open .list-wrapper {
    display: block;
}

.kopel-disabled.kopel-dropdown {
    cursor: not-allowed!important;
}