
.items-container {
    width: 100%;
    display: flex;
    position: relative;
    gap: 25px;
}
.items-container .items-sidebar {
    width: 280px;
}
.items-container .items-content {
    width: calc(100% - 310px);
    flex-grow: 1;
}
.items-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid var(--bs-gray-300);
    margin-bottom: 30px;
}
.items-toolbar .items-toolbar-title {
    padding: 5px 15px;
    font-weight: 500;
    font-size: 0.9rem;
}
.items-toolbar .items-toolbar-tools {
    display: flex;
    align-items: center;
    border-left:1px solid var(--bs-gray-200);
}
.items-toolbar .items-toolbar-tools .items-toolbar-grid, .items-toolbar .items-toolbar-tools .items-toolbar-filter, .items-toolbar .items-toolbar-tools .items-toolbar-order {
    border-left: 1px solid var(--bs-gray-100);
    padding: 10px;
    display: flex;
    gap: 5px;
}
.items-toolbar .items-toolbar-tools .items-toolbar-filter {
    display: none;
}
.items-toolbar .items-toolbar-tools .btn {
    font-size: 0.8rem;
    gap: 5px;
    padding: 0 15px;
    height: 40px;
    border:0 !important;
    box-shadow: none !important;
    outline: none !important;
    display: flex;
    align-items: center;
}
.items-toolbar .items-toolbar-tools .items-toolbar-grid .btn, .items-toolbar .items-toolbar-tools .items-toolbar-filter .btn  {
    width: 40px;
    height: 40px;
    padding: 0;
}
.items-toolbar .items-toolbar-tools .btn:hover {
    background-color: var(--bs-gray-100);
}
.items-toolbar .items-toolbar-tools .btn.active {
    background-color: var(--bs-gray-200);
    color: #000;
}
.items-toolbar .items-toolbar-tools .items-toolbar-order .btn[data-sort="asc"] span {
    transform: scaleY(-1);
}
.items-toolbar .items-toolbar-tools .btn .material-icons-outlined {
    font-size: 22px;
}
@media (max-width: 1199px) {
    .items-toolbar .items-toolbar-tools .items-toolbar-grid {
        display: none;
    }
    .items-toolbar .items-toolbar-tools .items-toolbar-grid, .items-toolbar .items-toolbar-tools .items-toolbar-filter, .items-toolbar .items-toolbar-tools .items-toolbar-order {
        padding: 5px;
    }
}
@media (max-width: 940px) {
    .items-toolbar {
        margin-bottom: 15px;
    }
    .items-toolbar .items-toolbar-tools .items-toolbar-filter {
        display: block;
    }
    .items-toolbar .items-toolbar-tools>div {
        align-items: stretch;
    }
    .items-toolbar .items-toolbar-tools .btn {
        --bs-btn-padding-x:0.5rem;
        font-size: 0.8rem;
        height: 34px;
    }
    .items-toolbar .items-toolbar-tools .btn .material-icons-outlined {
        font-size: 18px;
    }
    .items-container {
        gap: 0;
    }
    .items-container .items-sidebar {
        position: fixed !important;
        bottom: 0;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        width: 400px;
        height: 100vh;
        visibility: hidden;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        max-width: 100%;
        background-color: #fff;
        background-clip: padding-box;
        outline: 0;
        transition: transform .15s ease-in-out, visibility .15s ease-in-out;
        top: 0;
        left: 0;
        transform: translateX(-100%);
    }
    .items-container .items-sidebar.show {
        transform: none;
        visibility: visible;
    }
    .items-toolbar .items-toolbar-tools .items-toolbar-grid .btn, .items-toolbar .items-toolbar-tools .items-toolbar-filter .btn  {
        width: 34px;
        height: 34px;
    }
}
@media(max-width: 527px) {
    .items-toolbar .items-toolbar-title {
        display: none;
    }
    .items-toolbar .items-toolbar-tools {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
}
.filter-box {
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--bs-gray-300)
}
@media (min-width: 992px) {
    .filter-box {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
}

@media (max-width: 680px) {
    .items-container .items-sidebar {
        width: 100%;
    }
}

.filter-box .filter-header {
    padding: 15px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
}
.filter-box .filter-header .title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
}
.filter-box .filter-section {
    padding: 20px;
    border-bottom: 1px solid #eeeff0
}
.filter-box .filter-section:nth-last-child(1) {
    border-bottom: 0
}
.filter-box .filter-section h3.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}
.filter-section .filter-section-body .filter-form-control {
    padding-bottom: 15px
}
.filter-price-inp {
    text-align: left !important;
}
.filter-section .filter-section-body {
    display: block;
    padding-top: 20px
}

.filter-section.filter-collapse .filter-section-body {
    display:none;
}

.filter-section.filter-collapse h3.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-section-body>.filter-section-list {
    padding: 0;
    list-style: none;
    font-size: 14px;
    margin-bottom: 0;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-track-color:var(--bs-gray-200);
}
.filter-section-body>.filter-section-list .filter-section-item {
    padding: 0 0 10px 0;
    position: relative;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}
.filter-section-body>.filter-section-list .filter-section-item:nth-last-child(1) {
    padding-bottom:0;
}
.filter-section .filter-section-body .filter-form-control .filter-input {
    height: 36px;
    border: 2px solid var(--bs-gray-200);
    background-color: var(--bs-gray-100);
    box-shadow: none!important;
    outline: none!important;
    font-size: 13px;
    color: var(--text-color);
    width: 100%;
    border-radius: var(--border-radius);
    padding: 0 15px;
    transition: all 0.3s
}
.filter-section .filter-section-body .filter-form-control .filter-input:focus {
    border-color: var(--primary-blue-3);
    background-color: #fff;
}
.filter-section .filter-section-body .filter-form-control.filter-form-group {
    display:flex;
    gap:8px;
}
.filter-section .filter-section-body .filter-form-control.filter-form-group .filter-input {
    padding: 0 10px
}
.filter-section .filter-section-body .filter-form-control .filter-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    line-height: 39px;
    box-shadow: none!important;
    border: 0;
    outline: none!important;
    background-color: var(--bs-gray-400);
    color: #fff;
    font-size: 21px;
    border-radius: var(--border-radius);
    float: left;
    margin-left: 5px;
    transition: all 0.5s
}
.filter-section .filter-section-body .filter-form-control .filter-btn:hover {
    background-color: var(--primary-blue-3);
}
.filter-section .filter-section-body .filter-form-control .seperator {
    display: block;
    float: left;
    width: 22px;
    height: 36px;
    line-height: 36px;
    color: var(--bs-gray-500);
    font-size: 21px;
    text-align: center
}
.filter-section-body>.filter-section-list .filter-section-item .form-check-label {
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}
.filter-section-body>.filter-section-list .filter-section-item .form-check-label span.check-text {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.875rem;
    line-height: 1.5;
    text-overflow: ellipsis;
}
@media (max-width: 940px) {
    .filter-box {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    .filter-body {
        flex:1;
        overflow-y:auto;
    }
    .filter-box .filter-header {
        display: flex;
    }
}
.breadcrumb-title {
    position: relative;
    padding: 2rem 0 1rem;
}
/*LOADING*/
.skeleton-screen {
    max-width: 100%;
    margin: 0 auto;
}
.skeleton-header,
.skeleton-half-content,
.skeleton-min-content,
.skeleton-image,
.skeleton-content {
    width: 100%;
    height: 30px;
    background-color: var(--bs-gray-200);
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}
.skeleton-half-content {
    width: 50%;
}
.skeleton-min-content {
    width: 25%;
}
.skeleton-image {
    height: 200px;
    border-radius: var(--border-radius-lg);
}
.skeleton-header::before,
.skeleton-half-content::before,
.skeleton-min-content::before,
.skeleton-image::before,
.skeleton-content::before  {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, var(--bs-gray-100) 50%, transparent 100%);
    animation: loading 2s linear infinite;
}
@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
/*LOADING*/
.items-not-found {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    color: var(--passive-color);
    text-align: center;
    gap: 20px;
}
.items-not-found img {
    max-width: 500px;
    height: auto;
    width: 100%;
}