.sort-line {
    color: #424242;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sort-line .sort-col {
    font-weight: 400;
    display: flex;
    font-size: 12px;
    line-height: 15px;
    align-items: center;
    line-height: 1;
    margin-right: 10px;
}

.sort-line .sort-col:last-child {
    color: #808080;
}

.sort-line .sort-col-right {
    float: right;
    width: 50px;
}

.sort-line .sort-btn {
    height: 38px;
    line-height: 38px;
    padding: 0px 10px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #555555;
    position: relative;
    font-size: 0.928571em;
}

.sort-line .sort-btn:hover {
    text-decoration: underline;
}

.sort-line .sort-btn.active {
    background: #eeeeee;
    color: #555555;
    border-radius: 4px;
    padding-right: 30px;
}

.sort-line .sort-btn.active:hover {
    text-decoration: underline;
}

.sort-element-cnt {
    margin-right: 4px;
}

.view-mode-box {
    margin: 0px 15px 0px 0px;
}

.view-mode-box .view-mode-btn {
    display: inline-block;
    vertical-align: top;
    width: 38px;
    height: 38px;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.view-mode-box .view-mode-btn.active {
    background-color: #eeeeee;
}


.sort-type {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sort-limit {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #dfdfdf;
    padding-left: 12px;
    height: 40px;
    background-color: #fff;
}

.sort-limit span, .sort-limit button {
    font-weight: 600;
    color: var(--main-txt);
    font-size: 14px;
}

.sort-col_number {
    display: flex;
    flex-wrap: wrap;
}

.another_view_goods {
    display: flex;
    align-items: center;
}

.view_change {
    background-color: transparent;
    display: block;
}

.view rect {
    transition: .3s ease;
}

.view:hover rect {
    stroke: var(--main_color);
}

.view.active rect {
    stroke: var(--main_color);
}

.view_chage {
    background-color: transparent;
    outline: none;
}

.sort-col_nubmer_button.active .btn_sort {
    color: var(--main_color);
}

.sort-col_nubmer_button:not(:last-child) {
    margin-right: 5px;
}

.sort-col_nubmer_button .btn_sort {
    padding: 3px 12px;
    outline: none;
    line-height: 1;
    color: var(--main-txt);
    background-color: transparent;
    transition: .3s;
}

.sort-col_nubmer_button .btn_sort:hover {
    color: var(--main_color);
}

.view + .view {
    margin-left: 10px;
}

.sbToggle {
    display: none;
}

.sorting_box {
    width: 100%;
}

.main_selects {
    display: inline-block;
    float: left
}

.sott-title, .sbSelector, .sbOptions a {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}

.sbHolder {
    position: relative;
    margin-left: 10px;
    transition: .3s ease;
}

.sbSelector {
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    position: relative;
    padding-right: 20px;
}

.sbHolder::after {
    content: '';
    height: 9px;
    width: 9px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 3px;
    background: url("images/arrow.svg") no-repeat center;
    background-size: contain;
    transform-origin: center;
    transition: .3s ease;
}

.sbHolder.open::after {
    transform: rotate(-180deg);
    top: 5px;
}

.sbHolder:hover {
    opacity: 0.6;
}

.sbHolder.open {
    z-index: 907;
    opacity: 1 !important;
}

.sbOptions {
    position: absolute;
    top: 24px !important;
    z-index: 1;
    max-height: none !important;
    display: block !important;
    height: auto !important;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 15%);
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.sbHolder.open .sbOptions {
    opacity: 1;
    pointer-events: auto;
}

.sbOptions a {
    font-weight: 500;
    white-space: nowrap;
    text-align: left;
    display: block;
    padding: 10px 10px;
    transition: .3s ease;
}

.sbOptions a:hover {
    background: var(--secondary_color);
}

.sorting_box {
    margin-bottom: 20px;
}

.desktop-views {
    display: block;
}

.mobile-views {
    display: none;
}
.view-title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    display: none;
    margin-right: 12px;
}

@media (max-width: 992px) {
    .desktop-views {
        display: none;
    }

    .mobile-views {
        display: block;
    }

    .view + .view {
        margin-left: 6px;
    }
}
@media (max-width: 450px) {
    .sort-line {
        flex-wrap: wrap;
    }
    .view-title {
        display: block;
    }
    .limit_and_view {
        width: 100%;
        margin-top: 12px;
        display: flex;
        align-items: center;
    }
}