.chosen-container {
    width: 100%;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    border-radius: 3px;
    border: 1px solid #c5c5c5;
    background: #fff;
    box-sizing: border-box;
}
.chosen-container a {
    color:#363b44;
    text-decoration:none;
}
.chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    cursor: text;
}

.chosen-drop {
    position: absolute;
    top: 100%;
    z-index: 1011;
    width: 100%;
    display: none;
    background: #fff;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    box-shadow: 0 14px 24px 1px rgba(0, 0, 0, .1);
    margin-top: 1px;
}

.chosen-with-drop .chosen-drop  {
    display: block;
    overflow: hidden;
}

.group-result {
    color: #363b44;
    background-color: #99ccff;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

.chosen-results li {
    padding: 8px;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.search-choice {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.search-choice span {
    word-wrap: break-word;
}


.chosen-choices li {
    float: left;
    margin: 2px;
    white-space: nowrap;
    padding: 3px 5px;
    background: #fff;
    border: 1px solid #c5c5c5;
}

.highlighted {
    background: #f5f5f5;
}

.result-selected {
    opacity: .4;
}

.chosen-choices .search-field {
    border-color: transparent;
}

input.chosen-search-input {
    color: #6b6d72;
}

.chosen-results {
    display: block;
    max-height: 194px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.chosen-single {
    margin: 2px;
    white-space: nowrap;
    padding: 3px 5px;
    background: #fff;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    cursor: pointer;
}

.chosen-container-single-nosearch .chosen-search {
    display: none;
}

.chosen-single div {
    display: none;
}

.chosen-single:after{
    border-top: 1px solid #363b44;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 1px solid #363b44;
    content: "";
    height: 6px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: rotate(45deg) translateX(-70%);
    width: 6px;
    z-index: 10;
}

.chosen-with-drop .chosen-single:after {
    border-top-color: transparent;
    border-right-color: #363b44;
    border-bottom-color: #363b44;
    border-left-color: transparent;
}

.chosen-single:not(.chosen-default) .search-choice-close,
.field_clear{
    width: 10px;
    height: 10px;
    cursor: pointer;
    top: 0;
    right: 22px;
    padding: 6px;
    opacity: .6;
    position: absolute;
}

.chosen-single:not(.chosen-default) .search-choice-close::before,
.chosen-single:not(.chosen-default) .search-choice-close::after,
.field_clear:before,
.field_clear:after{
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 1px;
    background-color: #363b44;
}

.chosen-single:not(.chosen-default) .search-choice-close::before,
.field_clear:before{
    transform: rotate(45deg);
}

.chosen-single:not(.chosen-default) .search-choice-close::after,
.field_clear:after{
    transform: rotate(-45deg);
}

.chosen-single:not(.chosen-default) .search-choice-close:hover, 
.field_clear:hover{
    opacity: 1;
}

.search-choice-close{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}