/**
* 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.
*/
:root {
    --secondary-color: #ecedff;
    --primary-color: #fff;
    --primary-black-color: #000111;
    --primary-b-secondary-color: #292b2c;
    --bg-color: #f2f2f2;
    --bg-secondary-color: #e9e9e9;
    --font-size: 14px;
}


.RadiFlow {
    color: var(--primary-black-color);

}

.RadiFlowHeader{
    margin-bottom: 1rem;
    border-bottom: 8px solid var(--bg-secondary-color);
    padding: 0.5rem;
    border-radius: 5px;
    background: var(--primary-color);
}
.RadiFlowBodyItems,
.RadiFlowCreateNewSuggest,
.RadiFlowCreateNewComment {
    margin-bottom: 1rem;
    border: 1px solid var(--bg-color);
    padding: 0.5rem;
    border-radius: 5px;
    background: var(--bg-color);
}

.RadiFlowBodySuggestComment{
    /* margin-bottom: 1rem; */
    /* border: 1px solid var(--bg-color); */
    padding: 1rem 0.5rem 0.5rem;
    background: var(--secondary-color);
    color: var(--primary-black-color);
    border-radius: 0.25rem 0.25rem 0 0;
}
.RadiFlowBodyItems .nameBox {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.RadiFlowBodyItems .descriptionBox {
    /*font-size: 18px;*/
    font-weight: 300;
    color: var(--primary-b-secondary-color);
}

.RadiFlowHeaderTitle{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.RadiFlowBodyItems .voteBox {
    font-size: 12px;
}

.RadiFlowBodyItems .detailCreateBox {
    font-size: 12px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;}

.CreateNewItem {
    margin-bottom: 1rem;
}

span.voteItem {
    cursor: pointer;
    font-size: 14px;
    margin-left: 0.5rem;
}

.RadiFlowBodySuggestCommentBox .voteItems {
    width: 50%;
    padding: 0.5rem;
    color: #fff;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}


.RadiFlowBodySuggestCommentBox .voteBox .votePlusBox {
    background: #4CAF50;
    border-bottom-right-radius: 0.25rem;
}
.RadiFlowBodySuggestCommentBox .voteBox .voteMinusBox{
    background: #F44336;
    border-bottom-left-radius: 0.25rem;
}

.RadiFlowBodySuggestCommentBox .voteBox {
    display: flex;
    justify-content: space-between;
}

.RadiFlowBodySuggestCommentBox .VoteBoxInSuggestCommentTitle {
    margin-top: 0.5rem;
    font-size: 12px;
    padding: 0.5rem 0;
}

.VoteBoxInSuggestComment {
    border-radius: 0.5rem;
    border: 8px solid #e9e9e9;
    /* border-radius: 0.5rem; */
}

.TitleSuggestComment {
    font-size: 16px;
}

.descriptionBox {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
}

.CustomerCommentTitle {
    background: #fff;
    font-size: 18px;
    margin: 2rem 0 1rem;
    position: relative;
    z-index: 9;
    text-align: center;
}


.CustomerCommentTitle:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--bg-secondary-color);
    top: 50%;
    right: 0;
    z-index: 1;
    border-radius: 110%;
}

.CustomerCommentTitle span {
    z-index: 999;
    background: #fff;
    position: relative;
    padding: 0 0.75rem;
}

.voteBox .count {
    margin-right: 0.25rem;
}