/* Breadcrumbs */
.breadcrumbs {
    list-style: none;
    padding-left: 0;
}

.breadcrumbs li {
    display: inline-block;
    padding-right: 6px;
}

.breadcrumbs li:not(:last-child) a:after {
    content: '/';
    padding-left: 6px;
}
/* Breadcrumbs */

/* Pagination */
.pagination {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
}

.pagination a, .pagination .current {
    display: block;
    padding: 4px 6px;
    margin: 0 6px;
    border: 1px solid #fccb46;
}

.pagination a.disabled, .pagination .current {
    pointer-events: none;
    color: #fff;
    background: #fccb46;
}

.pagination a:not(.disabled):hover {
    background: rgba(45,111,156,.1);
}

@media (min-width:1199px) {
    .pagination a {
        padding: 4px 8px;
    }
}

/* Pagination */

/* Prices */
.prices {
    margin-top: 25px;
    margin-bottom: 25px;
}
.prices .header {
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    font-size: 16px;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.prices ul {
    list-style: none;
    padding: 0;
}

.prices ul li {
    display: flex;
    justify-content: space-between;
}

.prices ul li {
    margin-bottom: 10px;
    font-weight: bold;
}

.prices ul li a {
    color: #222222;
}
/* Prices */

/* Sorting */
.sorting {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sorting .label {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
}

.sorting div:not(.label) {
    padding: 10px;
    border: 1px solid #ddd;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.sorting .active:not(.label) {
    background: #dddddd;
}

@media (min-width: 768px) {

    .sorting {
        justify-content: flex-start;
    }
    .sorting .label {
        width: auto;
        line-height: 38px;
        margin-bottom: 0;
    }
}
/* Sorting */