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

.dbproductquestions {
    background-color: #FFF;
    padding: 32px;
}
.dbproductquestions .title_info_product {
    margin-top: 0;
    font-size: 26px !important;
    line-height: 34px !important;
    font-weight: 700 !important;
    border: 0;
    padding: 0;
    margin-bottom: 32px;
    text-transform: inherit;
    display: table;
    width: 100%;
}
.dbproductquestions .questions .preguntas_no {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.dbproductquestions .questions .preguntas_no .no_pregutnas {
    font-size: 20px;
    font-weight: 700;
    color: #E0E0E0;
    margin-bottom: 0;
}

.dbproductquestions .question {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.dbproductquestions .question_content {
    width: 80%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-right: 20px;
}

.dbproductquestions .question_content .question_title {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
}

.dbproductquestions .question_content .question_info {
    margin-bottom: 0;
    color: #777;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.dbproductquestions .question_content .question_info .question_customer {
    margin-right: 8px;
    padding-right: 8px;
    border-right: 1px solid rgba(0, 0, 0, 0.125);
}

.dbproductquestions .question_content .question_info .response_button {
    color: #232323;
    cursor: pointer;
}

.dbproductquestions .question_content .question_info .show_respond {
    color: #232323;
    cursor: pointer;
    margin-left: 14px;
}

.dbproductquestions .question_content .question_info .show_respond svg {
    margin-left: 8px;
    height: 16px;
    width: auto;
}

.dbproductquestions .question_votes {
    width: 20%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.125);
}

.dbproductquestions .question_votes .vote_count {
    margin-left: 8px;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.dbproductquestions .question_votes .vote_count .total_votes {
    margin-right: 4px;
}

.dbproductquestions .question_votes .push_vote {
    cursor: pointer;
}

.dbproductquestions .question_votes .push_vote svg {
    width: 16px;
    height: auto;
}

.dbproductquestions .question_votes .push_vote svg path {
    fill: var(--color_font);
}

.dbproductquestions .responses {
    width: 100%;
    padding: 8px 48px 0;
}

.dbproductquestions .response {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.dbproductquestions .response:last-child {
    padding-bottom: 0;
    margin: 0;
    border: 0;
}

.dbproductquestions .response .response_content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin: 12px 0 0;
}

.dbproductquestions .response.response_client .response_content p {
    margin: 0 0 12px;
}

.dbproductquestions .response .response_image {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.dbproductquestions .response .response_top {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.dbproductquestions .response .response_date {
    color: #777;
}

.dbproductquestions .response .response_tag {
    background: #eafbf7;
    color: #1f9379;
    padding: 2px 8px;
    border-radius: 24px;
    font-size: .8rem;
}

.dbproductquestions .response .response_author {
    padding: 16px;
    background-color: #0000000d;
}

.dbproductquestions .btn_dbquestion {
    margin: 32px auto 0;
    display: block;
}

.btn_createquestion,
.btn_createrespond {
    margin: 1rem 0 0;
    display: block;
}

@media (max-width: 991px) {
    .dbproductquestions {
        padding: 1rem;
    }
    .dbproductquestions .question_content {
        width: 100%;
    }
    .dbproductquestions .question_votes {
        width: 100%;
        border-top: 1px solid #efeff0;
        border-bottom: 1px solid #efeff0;
        border-left: 0;
        margin: 1rem 0;
        padding: 1rem 0;
    }

}