/* Базовые стили */
.stand-filters {
    position:relative;
}

.stand-filters__select {
    width:100%;
    display:inline-block;
}
.stand-filters__select > select {
    width:100%;
    opacity:0;
}

.stand-filters .stand-scopes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content:center;
    justify-content:center;
    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
}
.stand-filters .stand-scopes li {
    list-style:none;
    cursor:pointer;
}

.scope-item {
    margin:45px 0;
    padding:44px 24px 40px 64px;
    background:#fff;
    border-bottom:transparent 4px solid;
    -webkit-transition:.3s;
    -moz-transition:.3s;
    -o-transition:.3s;
    transition:.3s;
}
.scope-item:hover {
    border-color:#c51718;
}
.scope-item h4 {
    margin-bottom:30px;
}
.scope-item li {
    height:28px;
    float:left;
    margin:5px 40px 5px 0;
    list-style:none;
    line-height:30px;
    cursor:pointer;
    border-bottom:#7f7f7f 1px dashed;
    -webkit-transition:.3s;
    transition:.3s;
}
.scope-item a {
    text-decoration:none;
    color:inherit;
}
.scope-item li:hover {
    color:#c51718;
}
