@media (min-width: 1024px) {
    /**/
    .p-category {
        margin: 0 0 50px 0;
    }

    .p-category-head {
        margin: 0 0 30px 0;
    }

    .p-category-head-title {
        font-size: 28px;
        font-weight: 500;
        line-height: 150%;
        margin: 0 0 10px 0;
        padding: 0;
    }

    .p-category-head-description {

    }

    /**/
    .p-category-container {
        display: flex;
        flex-wrap: wrap;
        margin: 0 0 50px 0;
    }

    .p-category-sidebar {

    }

    .p-category-container.is-sidebar .p-category-sidebar {
        width: 280px;
        margin: 0 20px 0 0;
    }

    .p-category-content {
        width: 100%;
    }

    .p-category-container.is-sidebar .p-category-content {
        width: calc(100% - 300px);
    }

    /*childs*/
    .p-category-childs {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 0 0 30px -10px;
    }

    .p-category-child {
        width: calc(25% - 10px);
        display: flex;
        align-items: center;
        margin: 0 0 10px 10px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 3px;
        overflow: hidden;
        padding: 10px;
    }

    .p-category-child img {
        width: 80px;
        height: 80px;
        margin: 0 10px 0 0;
        transition: .3s;
    }

    .p-category-child:hover img {
        transform: scale(0.9, 0.9);
    }

    .p-category-child span {
        font-size: 16px;
        transition: .3s;
    }

    .p-category-child:hover span {
        color: var(--orange-600);
    }

    /*top panel*/
    .p-category-content-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 20px 0;
    }

    /*filter button*/
    .p-category-filter-show {
        display: none;
        align-items: center;
        height: 40px;
        padding: 0 10px;
        border-radius: 3px;
        background: var(--red-700);
        color: var(--white);
        font-size: 14px;
        font-weight: 400;
        cursor: pointer;
        transition: .3s;
    }

    .p-category-filter-show:hover {
        background: var(--red-600);
    }

    .p-category-filter-show:before {
        content: '\e912';
        font-family: si-solid;
        color: var(--white);
        font-size: 20px;
        margin: 0 10px 0 0;
    }

    /*sorting*/
    .p-category-sorting {
        display: flex;
        align-items: center;
    }

    .p-category-sorting-name {
        margin: 0 10px 0 0;
    }

    .p-category-sorting-active {
        position: relative;
    }

    .p-category-sorting-active span {
        display: flex;
        align-items: center;
        height: 40px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        font-size: 14px;
        font-weight: 400;
        color: var(--black);
        min-width: 200px;
        padding: 0 10px;
        border-radius: 3px;
        cursor: pointer;;
    }

    .p-category-sorting-active span:after {
        content: '\e907';
        font-family: si-solid;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0, -50%);
    }

    .p-category-sorting-list {
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        background: var(--white);
        border-radius: 3px;
        z-index: 4;
        box-shadow: 0 0 10px rgb(0 0 0 / 7%);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }

    .p-category-sorting-active:hover .p-category-sorting-list {
        opacity: 1;
        visibility: visible;
    }

    .p-category-sorting-list li a {
        display: flex;
        padding: 10px;
        font-size: 14px;
        font-weight: 400;
        transition: .3s;
    }

    .p-category-sorting-list li a:hover {
        background: var(--gray-100);
    }

    /*Product List*/
    .product-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 0 0 -10px;
    }

    .p-category-container.is-sidebar .product-preview {
        width: calc(33.333333% - 10px);
    }

    /**/
    .p-category-footer {
        margin: 0 0 50px 0;
    }

    .p-category-footer-description {

    }
    /*pagination*/
    .pagination {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin: 20px 0 50px 0;
    }

    .pagination li {
        margin: 0 2px;
    }

    .pagination li a, .pagination li span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: #404040;
        font-weight: 400;
        font-size: 14px;
        color: var(--white);
        border-radius: 3px;
        transition: .3s;
    }

    .pagination li.disabled {
        display: none;
    }

    .pagination li.active a, .pagination li a:hover {
        background: var(--orange-600);
        color: var(--white);
    }
    /**/
    .p-category-footer{
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: 3px;
        padding: 20px;
    }
    .p-category-footer-description{
        max-height: 500px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px 0 0;
    }

}

/**********************************************************************************************************************/
@media (max-width: 1023px) {
    .p-category{

    }
    .p-category-head{
        margin:0 0 20px 0;
    }
    .p-category-head-title{
        font-size: 18px;
        font-weight: 500;
        margin:0 0 10px 0;
    }
    /*childs*/
    .p-category-childs {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 0 0 30px -10px;
    }

    .p-category-child {
        width: calc(50% - 10px);
        display: flex;
        align-items: center;
        margin: 0 0 10px 10px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 3px;
        overflow: hidden;
        padding: 10px;
    }

    .p-category-child img {
        width: 40px;
        height: 40px;
        margin: 0 10px 0 0;
        transition: .3s;
    }

    .p-category-child:hover img {
        transform: scale(0.9, 0.9);
    }

    .p-category-child span {
        font-size: 16px;
        transition: .3s;
    }

    .p-category-child:hover span {
        color: var(--orange-600);
    }
    /**/
    .p-category-content-top{
        display: flex;
        justify-content: space-between;
    }
    .p-category-content-top-a{

    }
    .p-category-filter-show{
        display: flex;
        align-items: center;
        color:var(--white);
        background: var(--orange-600);
    }
    .p-category-filter-show:before{
        content: '\e912';
        font-family: si-solid;
        color:var(--white);
        font-size:18px;
        margin:0 10px 0 0;
    }
    .p-category-content-top{
        margin:0 0 20px 0;
    }
    .p-category-content-top-b{

    }
    .p-category-sorting {
        display: flex;
        align-items: center;
    }

    .p-category-sorting-name {
        display: none;
    }

    .p-category-sorting-active {
        position: relative;
    }

    .p-category-sorting-active span {
        display: flex;
        align-items: center;
        height: 30px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        font-size: 14px;
        font-weight: 400;
        color: var(--black);
        padding: 0 30px 0 10px;
        border-radius: 3px;
        cursor: pointer;;
    }

    .p-category-sorting-active span:after {
        content: '\e907';
        font-family: si-solid;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0, -50%);
    }

    .p-category-sorting-list {
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        background: var(--white);
        border-radius: 3px;
        z-index: 4;
        box-shadow: 0 0 10px rgb(0 0 0 / 7%);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }

    .p-category-sorting-active:hover .p-category-sorting-list {
        opacity: 1;
        visibility: visible;
    }

    .p-category-sorting-list li a {
        display: flex;
        padding: 10px;
        font-size: 14px;
        font-weight: 400;
        transition: .3s;
    }

    .p-category-sorting-list li a:hover {
        background: var(--gray-100);
    }
    /**/
    .product-list{
        display: flex;
        flex-wrap: wrap;
        margin: 0 0 0 -10px;
    }
    .product-list .product-preview{
        width: calc(33.333333% - 10px);
    }
    /**/
    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0 50px 0;
    }
    .pagination li {
        margin: 0 2px;
    }
    .pagination li a, .pagination li span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: #404040;
        font-weight: 400;
        font-size: 12px;
        color: var(--white);
        border-radius: 3px;
        transition: .3s;
    }
    .pagination li.disabled {
        display: none;
    }
    .pagination li.active a, .pagination li a:hover {
        background: var(--orange-600);
        color: var(--white);
    }
    /**/
    .p-category-footer-description{
        background: var(--white);
        border-radius: 3px;
        padding: 20px;
        overflow: hidden;
        overflow-y: auto;
        max-height: 300px;
    }
    /**/
    .p-category-footer{
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: 3px;
        padding: 20px;
        margin:0 0 50px 0;
    }
    .p-category-footer-description{
        max-height: 300px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px 0 0;
    }




}
@media (max-width: 680px) {
    /*childs*/
    .p-category-child {
        width: calc(100% - 10px);
    }
    .product-list .product-preview{
        width: calc(50% - 10px);
    }
}
@media (max-width: 380px) {
    .product-list .product-preview{
        width: calc(100% - 10px);
    }
}