/* ----- custom select ----- */
.custom-select {
    display: inline-block;
    vertical-align: top;
    width: 50px;

    position: relative;

    font: normal 13px/13px "PT Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	background-color: #ffffff;
}
.custom-select.active .custom-select__switcher{
    color: #000000;
}
.custom-select__switcher{
    position: relative;
    border: 1px solid #dfe1e3;
    height: 31px;
    cursor: pointer;
    line-height: 31px;
    padding-left: 12px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(137,146,156);
}
.custom-select__icon{
    display: inline-block;
    vertical-align: bottom;

    position: absolute;
    top: 13px;
    right: 10px;

    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #89929c transparent transparent transparent;

    pointer-events: none;
}
.custom-select__list{
    display: none;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 31px;
    left: 0px;
    z-index: 10;
    list-style: none;
    border: 1px solid #eceeef;
    border-top: none !important;
    border-radius: 0 0 3px 3px;
    background-color: #fff;
}
.custom-select__option {
    cursor: pointer;
}
.custom-select__option:hover {
    background: #ccf6ff;
}
.custom-select__option a,
.sorted-links span {
    display: block;
    overflow: hidden;

    padding: 7px 6px 7px 12px;
    margin-bottom: 0;

    white-space: nowrap;
    color: #434c53 !important;
    text-decoration: none;
    text-overflow: ellipsis;
    font: normal 13px/19px "PT Sans", Arial, "Helvetica Neue", Helvetica, sans-serif !important;

    border-bottom: none !important;
}
.custom-select._opened .custom-select__switcher,
.custom-select._opened .custom-select__list,
.custom-select:hover .custom-select__switcher {
    border-color: #80d3e5;
}