/* @group Base */

.page select {
    display: none;
}

.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.chosen-container a {
    cursor: pointer;
}

.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    margin-top: 0px;
    z-index: 1010;
    width: 100%;
    border: 2px solid #D6D6D6;
    border-top: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}


.chosen-with-drop .chosen-drop {
    opacity: 1;
    visibility: visible;
}

.chosen-results {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 300px;
}

.chosen-results li {
    cursor: pointer;
    font-size: 13px;
    padding: 5px 15px 6px 25px;
    text-align: left;
}

.chosen-results li:hover {
    background: #1C3673;
    color: #fff;
}

/* @end */
/* @group Single Chosen */
.chosen-single {
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 25px 0 25px;
    height: 40px;
    border: 2px solid #D6D6D6;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 58px;
    z-index: 10;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.chosen-with-drop .chosen-single {}

.chosen-default {
    color: #333;
}

.chosen-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    text-align: center;
}

.chosen-arrow svg {
    stroke: #333;
    width: 15px;
    height: 7px;
    display: inline-block;
    vertical-align: middle;
}

.chosen-search {
    display: none !important;
}

/* @end */
/* @group Multi Chosen */

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0;
}

.chosen-container-multi .chosen-results li {
    position: relative;
    padding-left: 30px;
}

.chosen-container-multi .chosen-results li:hover {
    background: transparent;
    color: #d82a2a;
}

.chosen-container .no-results {
    display: none;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
    opacity: 0.5 !important;
    cursor: default;
}

.chosen-disabled .chosen-single {
    cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default;
}

/* @end */