@media (min-width: 1024px) {
    .hideDesktop{
        display: none !important;
    }
}

@media (max-width: 1024px) {

    .hideDesktop{
        display: inherit !important;
    }

    header{
        padding: 12px 16px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 3;
        min-height: 65px;
    }

    header .navbar-desktop{
        display: none;
    }

    header .navbar-mobile{
        display: block;
    }

    header.header.mobile{
        display: flex;
        transition: all 350ms linear;
        position: fixed;
        width: 100%;
        top: -100px;
        left: 0;
        z-index: 1;
    }

    header.header.mobile.active{
        top: 0;
    }
    main {
        margin-top: 65px;
        z-index: 1;
        position: relative;
    }
    main .sidebar{
        display: flex;
        position: fixed;
        top: 65px;
        left: -100%;
        z-index: 2;
        transition: all 150ms linear;
        padding-bottom: 100px;
        height: calc(100vh - 67px);
    }

    main .sidebar > #actions{
        display: none;
    }
    main .sidebar.active{
        left: 10px;
    }

    main .container{
        padding: 12px 16px;
    }

    main.product .container{
        flex-direction: column;
        align-items: center;
    }
    main.product .sidebar.active{
        display: flex;
        height: auto;
        margin-bottom: 50px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px;
        border-radius: 4px;
    }
    main.product .sidebar .product-profile{
        padding: 8px 12px;
        display: none;
    }

    main .content{
        max-height: none;
    }

    main.product .content .product-profile{
        display: flex;
        padding-bottom: 40px;
    }
    main.product .container{
        padding: 12px 4px;
    }

    main.product .sidebar .product-profile .profile-avatar{
        margin: 0;
    }

    main.product .content .product-wrapper{
        max-width: 100%;
    }

    main.product .content .product-buy .actions{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    main.product .content .product-buy .actions .btn{
        padding-left: 0;
        padding-right: 0;
    }

    .product .product-profile .profile-action .popup.active{
        
    }

    #search{
        display: none ;
    }

}


@media (min-width: 1440px) {
    .products-container{
        max-width: calc(590px * 2 + 48px + 40px); /* 1268px */
    }
}
