.select {
    position: relative;
    line-height: 1
}

.select__item {
    position: relative;
    width: 100%
}

.form__line {
    width: 100%
}

.select__title {
    color: #000;
    background-color: #fff;
    cursor: pointer;
    border-radius: 4px
}

.select__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    height: 30px;
    padding: 0px 17px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.select__value span {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.select__value:before {
    content: "";
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 16px;
    height: 10px;
    background: url(../../portal/img/icon_4.4.svg) center/100% no-repeat
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%
}

.select__options {
    color: #000;
    display: none;
    position: relative;
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    opacity: 0;
    left: 0;
    background-color: #fff;
    border-top: 0;
    font-size: 14px;
    padding: 10px 0px 5px 0px
}

.select__option {
    cursor: pointer;
    padding: 5px 15px;
    margin: 0px 0px 0px 0px
}

.select._active {
    z-index: 5
}

.select._active .select__value:before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.select._active .select__options {
    display: block;
    opacity: 1
}

.select__value .select-span {
    margin-left: auto;
    margin-right: 17px;
    height: 80%;
    width: 2px;
    background: #d9eadd
}

.popup-3 .popup__select {
    position: relative
}

@media (min-width: 992px) {
    .select__option:hover {
        background: #d9d9d9 !important
    }
}

@media (max-width: 991.98px) {
    .select__title {
        font-size: 18px
    }

    .select__options {
        font-size: 18px
    }
}