.select {
    min-width: 0;
    position: relative;
    display: inline-block;
    margin: 0 0 0 4px;
    width: 200px;
    cursor: pointer;
    text-align: left;
}
.select__body {
    position: relative;
}
.select__title {
    width: 100%;
    position: relative;
    padding: 0 35px 0 14px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    height: 35px;
    border: 1px solid #d0d0d0;
    box-shadow: 2px 2px 5px rgba(8, 9, 9, 0.1);
    background-color: white;
}
.select__value:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: url("../../images/icon_27.png") no-repeat 50% 50%;
    width: 35px;
    height: 35px;
    font-size: 0;
}
._select-open .select__value:after {
    transform: rotate(-180deg);
}
.select__value._select-pseudo-label::before {
    content: attr(data-pseudo-label);
    opacity: 0.5;
}
.select__content {
    display: block;
    white-space: nowrap;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    margin: 0 0 0 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    min-height: 18px;
    text-align: left;
}
.select__text {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%;
}
.select__options {
    position: absolute;
    overflow: auto;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    color: #000;
    font-size: 14px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 15px rgba(8, 9, 9, 0.15);
    -moz-box-shadow: 0 0 15px rgba(8, 9, 9, 0.15);
    box-shadow: 0 0 15px rgba(8, 9, 9, 0.15);
    padding: 0;
}
.select__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    list-style: none;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    min-height: 20px;
    width: auto;
    text-align: left;
    background: none;
    padding: 10px 0 0;
    border-top: none;
}
.select__option {
    display: block;
    padding: 10px 15px 10px 31px;
    color: #000;
    cursor: pointer;
    width: auto;
    margin-bottom: 0;
    border: none;
    position: relative;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    background: white;
    font-size: 14px;
    line-height: 20px;
    min-height: 20px;
    text-align: left;
    list-style: none;
    text-decoration: none;
}
.select__option:before {
    content: "";
    height: 1px;
    background: #ececec;
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
}
.select__option._select-selected {
    background: url("../../images/icon_28.png") no-repeat 12px 50% #f3f3f3;
}
@media (any-hover: hover) {

    .select__option:hover {
        background: #f3f3f3;
    }
}
.select__row {
    display: inline-flex;
}
.select--show-top .select__options {
    top: auto;
    bottom: calc(100% - 1px);
    border: 1px solid #d9d9d9;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    padding: 5px 0px 10px 0px;
}
._select-tag {
    cursor: pointer;
}