/**
* 2007-2021 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.categories {
    margin-bottom: 1rem;
}
.categories .block-categories .img-responsive {
    width: 100%;
}
.categories .block-categories {
    box-shadow: none;
    background: transparent; 
    padding: 0; 
    position: relative;
}
.categories .block-categories .categorie.cat_all, .categories .block-categories .categorie .cat_img_container2 {
    position: relative;
}
.categories .block-categories .categorie.cat_all .cat_img_container2 {
    /*border: 1px solid #333;*/
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}
.categories .block-categories .categorie.cat_all .cat_img_container2 h3 {
    font-weight: 300;
}
.categories .block-categories .categorie.cat_all a:hover .cat_img_container2 {
    color: #ffffff;
    background: rgba(0,158,255,1);
}
.categories .block-categories .categorie.cat_all h2 {
    position: absolute;
    width: 100%;
    bottom: 20%;
    left: 0;
}
.block-loader {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .7;
    top: 0;
    display: flex;
    background: #ffffff;
}
.loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #34383b;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    margin: auto;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}