/* FILE:1.0-JQUERY.EXPANDABLE.CSS*/
.expandable {
    transition: all 250ms ease-in-out;
}

.expandable .expand-bar {
    position: absolute;
    display: block;
    left: 0px;
    bottom: 0px;
    background-color: white;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 30px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 20px;
}

.expandable .expand-bar::before {
    position: absolute;
    width: 100%;
    height: 20px;
    top: -20px;
    left: 0px;
    display: block;
    content: "";
    background: rgba(237,237,237,0);
    background: -moz-linear-gradient(top, rgba(237,237,237,0) 0%, rgba(255,255,255,0.8) 41%, rgba(255,255,255,1) 70%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237,237,237,0)), color-stop(41%, rgba(255,255,255,0.8)), color-stop(70%, rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top, rgba(237,237,237,0) 0%, rgba(255,255,255,0.8) 41%, rgba(255,255,255,1) 70%);
    background: -o-linear-gradient(top, rgba(237,237,237,0) 0%, rgba(255,255,255,0.8) 41%, rgba(255,255,255,1) 70%);
    background: -ms-linear-gradient(top, rgba(237,237,237,0) 0%, rgba(255,255,255,0.8) 41%, rgba(255,255,255,1) 70%);
    background: linear-gradient(to bottom, rgba(237,237,237,0) 0%, rgba(255,255,255,0.8) 41%, rgba(255,255,255,1) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff', GradientType=0 );
}

.expandable .expand-bar i {
    transition: all 250ms ease-in-out;
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    top: 50%;
    right: 10px;
    margin-top: -10px;
    transform: rotate(-90deg);
}

.expandable.expanded .expand-bar i {
    transform: rotate(90deg);
}

.expandable .expand-bar i::before, .expandable .expand-bar i::after {
    position: absolute;
    width: 10px;
    height: 1px;
    background: #1d1d1d;
    content: "";
    left: 5px;
}

.expandable .expand-bar i::before {
    transform: rotate(45deg);
    top: 13px;
}

.expandable .expand-bar i::after {
    transform: rotate(-45deg);
    top: 6px;
}

/* FILE:1.0-JQUERY.SKELETON.CSS*/
/*
        Animation is here since we can't do this in JS with inline styles :(
      */
@keyframes skeletonAnimation {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.8;
    }
}

/*
        Reset all styles of an element
      */
.reset-this {
    animation: none;
    animation-delay: 0;
    animation-direction: normal;
    animation-duration: 0;
    animation-fill-mode: none;
    animation-iteration-count: 1;
    animation-name: none;
    animation-play-state: running;
    animation-timing-function: ease;
    backface-visibility: visible;
    background: 0;
    background-attachment: scroll;
    background-clip: border-box;
    background-color: transparent;
    background-image: none;
    background-origin: padding-box;
    background-position: 0 0;
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: repeat;
    background-size: auto auto;
    border: 0;
    border-style: none;
    border-width: medium;
    border-color: inherit;
    border-bottom: 0;
    border-bottom-color: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-collapse: separate;
    border-image: none;
    border-left: 0;
    border-left-color: inherit;
    border-left-style: none;
    border-left-width: medium;
    border-radius: 0;
    border-right: 0;
    border-right-color: inherit;
    border-right-style: none;
    border-right-width: medium;
    border-spacing: 0;
    border-top: 0;
    border-top-color: inherit;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top-style: none;
    border-top-width: medium;
    bottom: auto;
    box-shadow: none;
    box-sizing: content-box;
    caption-side: top;
    clear: none;
    clip: auto;
    color: inherit;
    columns: auto;
    column-count: auto;
    column-fill: balance;
    column-gap: normal;
    column-rule: medium none currentColor;
    column-rule-color: currentColor;
    column-rule-style: none;
    column-rule-width: none;
    column-span: 1;
    column-width: auto;
    content: normal;
    counter-increment: none;
    counter-reset: none;
    cursor: auto;
    direction: ltr;
    display: inline;
    empty-cells: show;
    float: none;
    font: normal;
    font-family: inherit;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    height: auto;
    hyphens: none;
    left: auto;
    letter-spacing: normal;
    line-height: normal;
    list-style: none;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: disc;
    margin: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    opacity: 1;
    orphans: 0;
    outline: 0;
    outline-color: invert;
    outline-style: none;
    outline-width: medium;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    padding: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    page-break-after: auto;
    page-break-before: auto;
    page-break-inside: auto;
    perspective: none;
    perspective-origin: 50% 50%;
    position: static;
    /* May need to alter quotes for different locales (e.g fr) */
    quotes: '\201C' '\201D' '\2018' '\2019';
    right: auto;
    tab-size: 8;
    table-layout: auto;
    text-align: inherit;
    text-align-last: auto;
    text-decoration: none;
    text-decoration-color: inherit;
    text-decoration-line: none;
    text-decoration-style: solid;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    top: auto;
    transform: none;
    transform-style: flat;
    transition: none;
    transition-delay: 0s;
    transition-duration: 0s;
    transition-property: none;
    transition-timing-function: ease;
    unicode-bidi: normal;
    vertical-align: baseline;
    visibility: visible;
    white-space: normal;
    widows: 0;
    width: auto;
    word-spacing: normal;
    z-index: auto;
    /* basic modern patch */
    all: initial;
    all: unset;
}



/*
        Pending styles for CSS class based example
      */
.pending {
    color: #bdc3c7 !important;
    background-color: #bdc3c7 !important;
    border-color: #bdc3c7 !important;
    animation-name: skeletonAnimation;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.pending_el {
    color: #ccc !important;
    background-color: #ccc !important;
    animation-name: skeletonAnimation;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.container2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.avatar {
    display: block;
    width: 150px;
    height: 150px;
}

.content {
    background-color: #f0f0f0 !important;
    padding: 10px 16px;
    color: #34495e !important;
    font-family: system-ui, sans-serif;
    width: -webkit-calc(100% - 150px);
    width: -moz-calc(100% - 150px);
    width: calc(100% - 150px);
}

.demo:empty {
    margin: auto;
    width: 500px;
    height: 600px; /* change height to see repeat-y behavior */
    background-image: radial-gradient( circle 50px at 50px 50px, lightgray 99%, transparent 0 ), linear-gradient( 100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80% ), linear-gradient( lightgray 20px, transparent 0 ), linear-gradient( lightgray 20px, transparent 0 ), linear-gradient( lightgray 20px, transparent 0 ), linear-gradient( lightgray 20px, transparent 0 );
    background-repeat: repeat-y;
    background-size: 100px 200px, /* circle */
    50px 200px, /* highlight */
    150px 200px, 350px 200px, 300px 200px, 250px 200px;
    background-position: 0 0, /* circle */
    0 0, /* highlight */
    120px 0, 120px 40px, 120px 80px, 120px 120px;
    animation: shine 1s infinite;
}

@keyframes shine {
    to {
        background-position: 0 0, 100% 0, /* move highlight to right */
        120px 0, 120px 40px, 120px 80px, 120px 120px;
    }
}

.bg-image {
    position: relative;
    height: 0;
    overflow: hidden;
    background-color: #f0f0f0;
    /*  background-image: url();   */
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 30%
}

/* FILE:9.0-STYLE-ALL.TRANSFER.CSS*/
.modal-backdrop {
    
    z-index: 0;
}
.product-name {
    font-family: 'Josefin Sans', sans-serif !important;
}
mark.count {
    background: transparent;
    color: lightgray;
}
.category-inshop figure {
    display:none;
}
.toolbox-item {
    flex-wrap: nowrap;
    margin-bottom: 0rem;
}
#main-filter {
    margin-top: 0px;
}
.modal-body input {
    -webkit-appearance: auto;
}
.toolbox .toolbox-sort .form-control {
    max-width: 25rem;
    
}
.not-found {
    background: #ffff0038;
    padding: 18px;
    font-size: 12px;
    max-width: 100%;
    flex: 0 0 98%;
    margin-left: 15px;
}
.product-media {
    padding: 0px;
    background: lightgrey;
    border-radius: 4px;
}
.brand-wrapper {
    margin-bottom: 0px;
    height: 50px;
}
    .brand-wrapper figure {
        padding: 2px;
        background: #fff;
        margin-right: 2px;
        border: 1px solid #ddd;
        border-radius: 4px;
        max-width: 190px;
        float: left;
    }
    .brand-wrapper figure:hover {
        border: 1px solid #9c27b0;
    }
    section.category-list {
        visibility: hidden;
    }

    section.category-list.category-inshop{
        text-align: justify;
        text-align-last: justify;
    }

        section.category-list.category-inshop::after {
            content: '';
            width: 100%;
            display: block;
            height: 0;
            line-height: 0;
            visibility: hidden;
            clear: both;
        }

        section.category-list.category-inshop.category-inshop-1 {
            width: 100%;
        }

        section.category-list.category-inshop div.label {
            display: inline-block;
            cursor: pointer;
            padding: 2px;
            margin-bottom: 10px;
            float: left;
            width: 14.2%;
            margin: 0px;
        }
        section.category-list.category-inshop section.label {
            display: inline-block;
            cursor: pointer;
            padding: 2px;
            margin-bottom: 10px;
            float: left;
            width: 14.2%;
            margin: 0px;
        }
.category .category-name {
    margin-bottom: .3rem;
    font-size: 13px;
}
    section .category-list.category-inshop.category-inshop-1 {
    margin-bottom: 25px;
}
.toolbox.sticky-toolbox {
    padding-top: 0rem;
}

.expandable {
    margin-bottom: 50px;
    padding-bottom: 50px;
}

    .expandable .expand-bar {
        width: 100%;
        line-height: 25px;
        text-align: center;
        padding-left: 0px;
        margin-bottom: 0px;
    }

        .expandable .expand-bar .more {
            border: 1px solid;
            padding: 3px 37px;
            border-radius: 0px;
            color: #000;
            background-color: transparent;
            border-width: 0.125em;
            border-style: solid;
            border-color: #000;
            color: #000;
        }

        .expandable .expand-bar i {
            top: 54%;
            transform: rotate( -90deg );
            left: calc(50% + 20px);
            margin-top: -11px;
        }

.expandable {
    padding-left: 20px;
}

.more, .less {
    border: 1px solid;
    padding: 5px 36px;
    border-radius: 0px;
    color: #000;
    background-color: transparent;
    border-width: 0.125em;
    border-style: solid;
    border-color: #000;
    color: #000;
    cursor: pointer;
    min-height: 1em;
    outline: none;
    border: none;
    vertical-align: baseline;
    background: #eff1f3;
    background: -webkit-linear-gradient(top, #f7f8fa, #e7e9ec);
    background: linear-gradient(to bottom, #f7f8fa, #e7e9ec);
    color: #111111;
    text-transform: none;
    text-shadow: none;
    font-weight: normal;
    line-height: 1em;
    font-style: normal;
    text-align: center;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 0 1px rgb(255 255 255 / 30%) inset, 0 0 0 1px #adb2bb inset;
    box-shadow: 0 1px 0 1px rgb(255 255 255 / 30%) inset, 0 0 0 1px #adb2bb inset;
}
.ratings-full, .ratings {
    width: 50%;
}
    .ratings-full .as-rate {
        
        width: 100%;

    }
section .category-list .category-icon {
    padding: 0.6rem .5rem;
}
section .category-list .category .category-name {
    margin-bottom: .3rem;
    font-size: 13px;
    margin-top: 10px;
    height: 15px;
    overflow: hidden;
}
/* FILE:9.1-STYLE-RESPONSIVE.TRANSFER.CSS*/
@media (max-width: 991px) {
    .sidebar-content {
        width: auto;
        transform: none;
        opacity: 1;
        position: relative;
        display: none;
    }
    .toolbox-item {
        flex-wrap: nowrap;
        margin-bottom: 0rem;
    }
        .sidebar-content .row {
            margin-right: -10px;
            margin-left: -10px;
        }
            .sidebar-content .row > * {
               
            }
    .brand-wrapper {
        margin-bottom: 15px;
    }
    .shop-boxed-banner {
        padding: 1.4rem 7% 2.4rem;
    }
    .category-hr {
      
        visibility: hidden;
    }
    section.category-list.category-inshop section.label, section.category-list.category-inshop div.label {
        width: 33.3%;
    }
    .sticky-toolbox.fixed {
        position: relative;
    }
    .select-parameter-box {
        margin-bottom: 20px;
        height: auto !important;
    }
    .ratings-full .as-rate {
       
        width: 100%;

    }
    .toolbox .toolbox-sort .form-control {
        border: 2px solid;
        border-radius: 5px;
    }
    .toolbox-item.toolbox-layout {
        display: block!important;
        margin-left: 15px;
    }
    .not-found {
      
        flex: 0 0 94%;
        margin-left: 10px;
    }
    .filter-main {
        background: #fff;
        border-radius: 0px !important;
        padding: 0px !important;
        margin-top: -20px;
    }
    .selectbox {
        
        border: 1px solid #ddd !important;
       
    }
    .select-parameter-box {
        border: 1px solid #ddd !important;
        padding: 10px !important;
        margin-bottom: 20px;
    }
    #filters-and-button .row {
        border: none !important;
    }
    .sticky-toolbox.fixed {
        padding: 1rem 1.5rem 10px 16px;
    }
}

