/*!
 *  Copyright 2023 ModuleFactory
 *
 *  @author    ModuleFactory
 *  @copyright ModuleFactory all rights reserved.
 *  @license   https://www.apache.org/licenses/LICENSE-2.0
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *  https://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

#fsaci-subcategories {
    margin-bottom: 20px;
}

#fsaci-subcategories-carousel {
    margin-left: -5px;
    margin-right: -2px;
}

#fsaci-subcategories-carousel .slick-slide {
    margin-left: 5px;
    margin-right: 5px;
    box-sizing: border-box;
}

.fsaci-subcategory {
    text-align: center;
    outline: none;
    display: flex !important;
    height: auto !important;
    max-width: 100%;
    float: left;
}

.fsaci-subcategory .fsaci-item {
    max-width: 100%;
}

.fsaci-subcategory.slick-slide .fsaci-item {
    margin-left: auto;
    margin-right: auto;
}

.fsaci-subcategory .fsaci-item img {
    max-width: 100%;
    width: 100%;
}

.fsaci-subcategory .fsaci-item h5 {
    margin-top: 6px;
    margin-bottom: 6px;
    overflow: hidden;
    padding-left: 3px;
    padding-right: 3px;
}

.fsaci-slick .slick-track {
    display: flex !important;
}

/* CSS Loader */
.fsaci-spinner {
    margin: 60px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.fsaci-spinner > div {
    background-color: #414141;
    height: 100%;
    width: 5px;
    display: inline-block;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.fsaci-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
    margin-left: 2px;
}

.fsaci-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
    margin-left: 2px;
}

.fsaci-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
    margin-left: 2px;
}

.fsaci-spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
    margin-left: 2px;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }  20% {
           transform: scaleY(1.0);
           -webkit-transform: scaleY(1.0);
       }
}