.sort-line{
    min-height: 40px;
    line-height: 38px;
    color: #424242;
    font-size: 14px;
    margin: 20px 0 15px 0;
}
.sort-line:after {
    content: '';
    display: table;
    clear: both;
}
.sort-line .sort-col{
    float: left;
    height: 40px;
    font-weight: 600;
}
.sort-line .sort-col:first-child{
    padding: 0px 10px 0px 0px;
}
.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 span{

}
.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-line .sort-btn.active[data-sorttype="asc"]:after{
    content: '';
    width: 30px;
    height: 38px;
    background: url('images/asc-black.png') no-repeat center;
    position: absolute;
    right: 0px;
    top: 0px;
}
.sort-line .sort-btn.active[data-sorttype="desc"]:after{
    content: '';
    width: 30px;
    height: 38px;
    background: url('images/desc-black.png') no-repeat center;
    position: absolute;
    right: 0px;
    top: 0px;
}
.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;
}
.view-mode-box .view-mode-btn.tile{
    background-image: url('images/tile-bg-black.png');
}
.view-mode-box .view-mode-btn.list{
    background-image: url('images/list-bg-black.png');
}

.sort-type {
    float: left;
}

.sort-limit {
    float: right;
}

@media (max-width: 481px) {

    .sort-limit, .sort-type {
        float: left;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .sort-limit .sbHolder{
        margin-left: 5px;
    }
}