/**
* 2007-2025 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-2025 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.
*/


.container_folders {
    display: flex;
    flex-wrap: wrap;
}
.folder-container {
    background-color: #F9F9F9;
    margin: 1em;
    border-radius: 10px;
    border: 1px solid #EDEDED;
    display: flex;
    flex-direction: column;
    flex: calc(33% - 2rem);
}
.folder-information {
    display: flex;
    flex-wrap: nowrap;
    border-radius: .625rem .625rem 0rem 0rem;
    align-items: center;
}
.folder-container .folder-information strong {
    max-width: 14rem;
    margin: 0;
    word-break: break-all;
}
.folder-information img {
    object-fit: contain;
    padding: .2rem 1rem;
}
.folder-container a {
	color:var(--color3);
    /* Ecoinnotec custom */
    display: flex;
    justify-content: center;
    margin: 1rem;
    /* Ecoinnotec custom */
}
.folder-image {
    display: flex;
    justify-content: center;
    margin: 1em 0;
}
.folder-image img {
    height: 5.625em;
    width: 90%;
    object-fit: cover;
}
.container_folders p {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0rem 1rem;
    color: black !important;
    margin-block-end: .9rem !important;
}
.folder-container:hover {
    border: 1px solid #EDEDED;
    background: #EBEBEB;
}
.folder-container:hover .folder-information {
    background-color: #dbdbdb;
}
@media(max-width:1199px) {
	.folder-container {
 	    margin: 0.5em;
 		flex: calc(33% - 1rem);
	}
}
@media(max-width:991px) {
	.folder-container {
 		flex: calc(50% - 1rem);
	}
}

@media(max-width:767px) {
	.folder-container {
    	margin: 1em 0px;
    	flex: 100%;
	}
	.folder-container .folder-information strong {
    	max-width: 12rem;
    	font-size: 14px;
	}
}
