.tags__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 5px;
}

.tags__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: calc(100% - 115px);
}

.tags__title {
    font-size: 15px;
    font-family: "MullerBold";
    color: #445274;
    min-width: 115px;
    width: 115px;
    margin-top: 6px;
    line-height: 1;
}

.tags__item {
    display: block;
    background: #00be68;
    font-size: 16px;
    font-family: "MullerRegular";
    color: white;
    text-align: center;
    border-radius: 3px;
    background-color: #00be68;
    margin-right: 10px;
    margin-bottom: 10px;
    height: 26px;
    line-height: 1;
    padding: 5px 10px;
    cursor: pointer;
}

.tags__item.active {
    background: #4ea059;
}

a.tags__item:visited, a.tags__item:hover, a.tags__item:active {
    color: white;
    background-color: #00be68;
}

.dropdown-menu .dropdown-header {
    font-size: 16px;
    font-family: "MullerLight";
    color: #333333;
    line-height: 1.5;
    text-align: right;
    border: none;
}

.dropdown-select {
    position: relative;
    width: 100%;
}

.dropdown-select__input {
    display: none;
}

.dropdown-select__result {
    border: 1px solid #cccccc;
    height: 45px;
    width: 100%;
    border-radius: 4px;
    background: #ffffff;
    box-sizing: border-box;
    font-size: 15px;
    font-family: "MullerLight";
    color: #949393;
    font-weight: 600;
    line-height: 1;
    padding: 14px;
    cursor: pointer;
    position: relative;
}

.dropdown-select__result:after {
    content: '';
    display: block;
    width: 12px;
    height: 7px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../img/caret.png");
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}

.dropdown-select__result[data-open="open"] {
    background-color: #efefef;
}

.dropdown-select__result[data-open="open"]:after {
    transform: rotate(180deg);
}

.dropdown-select__box {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 0 0 6px 6px;
    border: 1px solid #00be68;
    border-top-color: #ffffff;
    padding: 15px;
    max-height: 335px;
    overflow-y: scroll;
}

.dropdown-select__box.show {
    display: block;
}

.dropdown-select__input {
    border-radius: 4px;
    background-color: rgba(239, 239, 239, 0.502);
    width: 100%;
    height: 42px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
}

.dropdown-select__input:focus, .dropdown-select__input:hover {
    outline: none;
    box-shadow: none;
}

@media all and (max-width: 769px) {
    .tags__content {
        flex-direction: column;
        margin-bottom: 5px;
    }

    .tags__wrap {
        width: 100%;
    }

    .tags__title {
        margin-bottom: 10px;
    }
}

/*# sourceMappingURL=new.css.map */
