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

.dbrecommendation {
    width: 100%;
    padding: 32px;
    margin-top: 48px;
    background-color: #FFF;
}
.dbrecommendation .h3.title {
    text-align: left;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}
.dbrecommendation .recommend {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.dbrecommendation .recommend .recommend_author {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 30%;
    align-items: center;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #E0E0E0;
}
.dbrecommendation .recommend .recommend_author img {
    margin-right: 20px;
    width: 115px;
    height: auto;
}
.dbrecommendation .recommend .recommend_author-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
}
.dbrecommendation .recommend .recommend_author-info .name {
    font-weight: 600;
}
.dbrecommendation .recommend .recommend_author-info .profession {
    font-weight: 400;
    margin-top: 4px;
    font-size: 14px;
    line-height: 23px;
}
.dbrecommendation .recommend .recommend_author-info .tag {
    background: #CEF2DA;
    color: #179942;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 12px;
    line-height: 19px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 12px 0 0 0;
}
.dbrecommendation .recommend .recommend_author-info .tag svg {
    margin: 0 4px 0 0;
    height: 16px;
    width: 16px;
    fill: #179942;
}
.dbrecommendation .recommend .recommend_text {
    max-width: calc(70% - 20px);
}
.dbrecommendation .recommend .recommend_text p {
    font-size: 15px;
    line-height: 24px;
}
.dbrecommendation .recommend .recommend_text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .dbrecommendation {
        padding: 1rem;
    }
    .dbrecommendation .recommend .recommend_author {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
        border-bottom: 1px solid #efeff0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    .dbrecommendation .recommend .recommend_author img {
        width: 95px;
    }
    .dbrecommendation .recommend .recommend_text {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0;
    }
    .dbrecommendation .recommend .recommend_author {
        padding-right: 0 !important;
        margin-right: 0 !important;
    }
}