/**
* 2007-2022 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-2022 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.
*/
/*** GENERAL ***/
.ratings_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.ratings_container .link_opinion {
    display:flex;
    align-items: center;
}
.ratings_container .link_opinion a {
    display:flex;
    align-items: center;
}
.ratings {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
}
.full-stars {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
}
.empty-stars svg path {
    /*fill: #E0E0E0;*/
}
.full-stars svg path {
    fill: #fabc2a;
}
.empty-stars,
.full-stars {
    display: inline-block;
}
.empty-stars.max svg,
.full-stars.max svg {
    width: 20px;
    height: auto;
}
.empty-stars.min svg,
.full-stars.min svg {
    width: 14px;
    height: auto;
}
.empty-stars.med svg,
.full-stars.med svg {
    width: 20px;
    height: auto;
}
.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
}
.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #1F1F1F;
    transition: width .6s ease;
}
.dbproductcomments_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.dbproductcomments_nav > span {
    margin-right: 4px;
}

/*** PRODUCT LIST ***/
.dbproduct_list_reviews {
    margin: 8px auto 0;
    text-align: center;
}
.dbproduct_list_reviews .total_stars {
    font-size: 13px;
    margin-left: 4px;
}


/*** CATEGORY ***/
#splide_productcommentscategory.splide .splide__track {
    margin-left: 0;
    margin-right: 0;
}
#splide_productcommentscategory .splide__arrow {
    top: 50%;
}
#splide_productcommentscategory .splide__arrow--prev {
    left: 12px;
    right: auto;
}


/*** CATEGORY ***/
#splide_productcommentshome.splide .splide__track {
    margin-left: 0;
    margin-right: 0;
}
#splide_productcommentshome .splide__arrow {
    top: 50%;
}
#splide_productcommentshome .splide__arrow--prev {
    left: 12px;
    right: auto;
}

#index .dbproductcomments,
#category .dbproductcomments {
    /*display: table;*/
    background-color: #FFF;
    padding: 24px;
    width: 100%;
    margin-top: 32px;
}
.dbcomments_category {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: 0;
}
.dbcomments_category .info_total {
    width: 25%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.dbcomments_category #splide_productcommentscategory {
    width: 75%;
}
.dbcomments_category #splide_productcommentscategory .info_comment {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #E0E0E0;
}
.dbcomments_category #splide_productcommentshome {
    width: 75%;
}
.dbcomments_category #splide_productcommentshome .info_comment {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #E0E0E0;
}
.dbcomments_category .info_total {
    /*border-right: 1px solid #E0E0E0;*/
    padding: 16px;
}
.dbcomments_category .info_total .num_comments {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}
.dbcomments_category .info_total .category {
    text-transform: lowercase;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}
.dbcomments_category .info_total .media_comments {
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    margin: 12px auto 8px;
}
.dbcomments_category .info_comment {
    border-right: 1px solid #E0E0E0;
    padding: 16px;
    text-align: center;
}
.dbcomments_category .info_comment:last-child {
    border: none;
}

.dbcomments_category .info_comment .date_comment {
    font-size: 13px;
    margin-top: 8px;
}
.dbcomments_category .info_comment a {
    font-size: 13px;
}
.dbcomments_category .info_comment a:hover {
    text-decoration: underline;
}
.dbcomments_category .info_comment .ratings {
    margin-top: 8px;
}
@media (max-width: 991px) {
    .dbcomments_category > div {
        width: 100%;
    }
    .dbcomments_category .info_comment {
        width: 33%;
    }
    .dbcomments_category .info_comment,
    .dbcomments_category .info_total {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    }
}
@media (max-width: 480px) {
    .dbcomments_category > div {
        width: 100%;
    }
    .dbcomments_category .info_comment {
        width: 100%;
    }
    .dbcomments_category .info_comment,
    .dbcomments_category .info_total {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    }
}

/*** PRODUCT ***/
.dbproductcomments_product {
    background-color: #FFF;
    padding: 32px;
}
.dbproductcomments_product > .title.h3 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    border: 0;
    padding: 0;
    margin-bottom: 32px;
    text-transform: inherit;
    display: table;
    width: 100%;
}



@media (max-width: 991px) {

    
    .dbproductcomments_product .general_rating {
        background-color: inherit;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
      
    }

    .dbproductcomments_product .general_rating .opinion_left {
        border-right: 1px solid #E0E0E0;
        width: 100%;
        padding: 0 32px 0 0;
    }
    
    .dbproductcomments_product .general_rating .opinion_right {
        width: 100%;
        padding: 0 0 0 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-right: 12px;
    }

    .dbproductcomments_product .general_rating .opinion_center {
        background: var(--Absolute-White, #FFF);
        min-width: 280px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }
    

}


@media (min-width: 991px) {

    div#expert_opinions {
        margin-right: 20px;
    }


    .dbproductcomments_product .general_rating {
        background-color: inherit;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
      
    }

    .dbproductcomments_product .general_rating .opinion_left {
        border-right: 1px solid #E0E0E0;
        width: 40%;
        padding: 0 32px 0 0;
    }
    
    .dbproductcomments_product .general_rating .opinion_right {
        width: 60%;
        padding: 0 0 0 32px;
        display: flex;
        flex-direction: column;
        margin-right: 12px;
    }
    

}

@media (min-width: 991px) and (max-width: 1199px) {
    .dbproductcomments_product .general_rating .opinion_right {

        margin-left: 12px;
        margin-top: 12px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .dbproductcomments_product .general_rating .opinion_center {
        margin-top: 0 !important;
    
    }

    .dbproductcomments_product .general_rating .opinion_left {
        margin-bottom: 12px;
    }
}

@media (min-width: 500px) and (max-width: 767px) {
    .dbproductcomments_product .general_rating .opinion_center {

        min-width: 341px !important;
    
    }

}


.dbproductcomments_product .general_rating .comment_circle {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: flex-start
}
.dbproductcomments_product .general_rating .comment_circle .rate {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 12px;
}
.dbproductcomments_product .general_rating .comment_circle .ratings {
    margin-bottom: 8px;
}
.dbproductcomments_product .general_rating .comment_circle .total_stars {
    font-weight: 400;
    font-size: 14px;
}
.comment_breakdown {
    /*margin-bottom: 24px;*/
}
.comment_breakdown .breakdown_star {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 12px 0;
}
.comment_breakdown .breakdown_star > span {
    width: 100px;
    font-size: 14px;
}
.comment_breakdown .breakdown_star .progress {
    width: calc(100% - 100px);
    height: 12px;
    background-color: #F1F0F0;
    border-radius: 8px;
    margin-bottom: 0;
}
.dbproductcomments_product .progress-bar {
    background-color: #1F1F1F;
}
.btn_opinion {
    border: 0;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    cursor: pointer;
    margin-top: 32px;
    text-transform: inherit;
}
.dbproductcomments_product .general_rating .opinion_no {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.dbproductcomments_product .general_rating .opinion_no .no_opinion {
    font-size: 20px;
    font-weight: 700;
    color: #E0E0E0;
    margin-bottom: 0;
}
.row_opinions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 20px;
    overflow-y: auto;
    max-height: 980px;
}
.dbproductcomments_product .row_opinions .opinion {
    padding: 10px 0;
    margin-top: 0;
    border-top: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    /*height:fit-content;*/
}
.row_opinions .opinion:first-child {
    border-top: none;
}
.row_opinions .opinion .opinion_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;

}
.row_opinions .opinion .opinion_header .verificado {
    margin-left: auto;
    color: #179942;
    font-weight: 400;
    font-size: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.row_opinions .opinion .opinion_header .verificado > span {
    margin-left: 4px;
}
.row_opinions .opinion .opinion_header .verificado svg path {
    fill: #179942;
}
.row_opinions .opinion .opinion_header .author,
.row_opinions .opinion .opinion_header .date {
    font-weight: 400;
    font-size: 13px;
    margin-left: 8px;
}
.row_opinions .opinion .title_opinion {
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
}
.row_opinions .opinion .text {
    width: 100%;
    flex-grow:1;
}
.row_opinions .opinion .text p {
    color: #344054;
    /* Proyecto/Common/Body2/Body2 */
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
}
.row_opinions .opinion .recomendation .recommend {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 14px;
    width: 100%;
}
.row_opinions .opinion .recomendation .recommend svg {
    margin-right: 8px;
    width: 15px;
    height: auto;
}
.row_opinions .opinion .characteristics {
    width: 100%;
    margin-top: 16px;
}
.row_opinions .opinion .characteristics .title {
    font-weight: 600;
    font-size: 15px;
}
.row_opinions .opinion .characteristics .characteristic {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 12px;
}
.row_opinions .opinion .characteristics .characteristic .name {
    font-weight: 400;
    font-size: 14px;
    width: 125px;
    margin: 0 8px 0 0;
}
.row_opinions .opinion .characteristics .characteristic .rating {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.row_opinions .opinion .characteristics .characteristic .rating .charact {
    width: 24px;
    height: 12px;
    background-color: #F1F0F0;
    margin-right: 4px;
    content: "";
}
.row_opinions .opinion .characteristics .characteristic .rating .charact.active {
    background-color: #1F1F1F;
}
@media (max-width: 767px) {
    .dbproductcomments_product {
        padding: 16px;
    }
    .dbproductcomments_product .general_rating .opinion_left {
        width: 100%;
        padding-right: 0;
        padding-bottom: 32px;
        border-right: 0;
        border-bottom: 1px solid #E0E0E0;
    }
    .dbproductcomments_product .general_rating .opinion_right {
        width: 100%;
        padding: 32px 0 0 0;
    }
}

/*** PRODUCT SHOP ***/
.commentproduct_shop {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}
.commentproduct_shop span {
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
}
.commentproduct_shop span.exc {
    font-weight: 600;
    margin: 0 8px 0 4px;
}
.commentproduct_shop .image {
    height: 32px;
    width: auto;
    margin-left: auto;
    margin-right: 20px;
}

/*** ORDER CONFIRMATION ***/
.dbproductcomments_orderconfirmation {
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.dbproductcomments_orderconfirmation .content_text {
    width: 50%;
    background-color: #FFF;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 32px;
    margin-right: -50px;
    z-index: 9;
}
.dbproductcomments_orderconfirmation .img_sorteo {
    width: calc(50% + 50px);
    height: auto;
}
.dbproductcomments_orderconfirmation .content_text .title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 700;
    font-size: 26px;
    color: #1F1F1F;
    margin-bottom: 1rem;
}
.dbproductcomments_orderconfirmation .content_text .title svg {
    margin-right: 8px;
}
.dbproductcomments_orderconfirmation .content_text .text {
    font-weight: 400;
    font-size: 16px;
    color: #1F1F1F;
}
.dbproductcomments_orderconfirmation .content_text .btn {
    padding: 12px 40px;
}


/*** MY OPINIONS ***/
.card.opiniones {
    padding: 32px;
}
.card.opiniones .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 32px;
}
.nav_opinion {
    margin-bottom: 32px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.nav_opinion li.nav-item .nav-link {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 12px 12px;
}
.nav_opinion li.nav-item .nav-link.active {
    border-bottom: 2px solid #1F1F1F;
}
.nav_opinion li.nav-item .nav-link span {
    font-weight: 600;
    font-size: 16px;
    color: #666666;
}
.nav_opinion li.nav-item .nav-link.active span {
    color: #1F1F1F;
}
.nav_opinion li.nav-item .nav-link .number {
    margin-left: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: #666666;
    background: #FAF9F9;
    padding: 4px 12px;
}
.nav_opinion li.nav-item .nav-link .number.red {
    background: #FADBDD;
    color: #C81D25;
}
.banner_premios .banner {
    padding: 32px;
    width: 100%;
    background: linear-gradient(90deg, #171923 39.45%, #293649 76.59%);
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 1rem !important;
}
.banner_premios > p {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
}
.products_sin {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.products_sin .product {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 20px 0;
}
.products_sin .product > img {
    width: auto;
    height: 120px;
}
.products_sin .product .content {
    width: calc(100% - 140px);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: 20px;
}
.products_sin .product .content .marca {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
}
.products_sin .product .content .name {
    font-weight: 600;
    font-size: 16px;
    color: #1F1F1F;
    margin-bottom: 16px;
}
.products_sin .product .content .btn_comment {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-transform: inherit;
}
.products_con {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    max-height: inherit;
}
.products_con .product {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 32px;
    border-bottom: 1px solid #E0E0E0;
}
.products_con .product:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}
.products_con .product > img {
    width: auto;
    height: 120px;
}
.products_con .product .content {
    width: calc(100% - 140px);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: 20px;
}
.products_con .product .content .marca {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
}
.products_con .product .content .name {
    font-weight: 600;
    font-size: 16px;
    color: #1F1F1F;
    margin: 0 0 16px;
    width: 100%;
}
.products_con .product .content .title {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: #1F1F1F;
    margin: 8px 0;
}
.products_con .product .content .data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 8px 0 12px;
}
.products_con .product .content.data .verificado {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.products_con .product .content .data .verificado svg {
    width: 13px;
    height: auto;
    margin-right: 8px;
}
.products_con .product .content .data .verificado span {
    font-weight: 600;
    font-size: 12px;
    color: #1F1F1F;
}
.products_con .product .content .data .date {
    padding-left: 1rem;
    margin-left: 1rem;
    border-left: 1px solid #E0E0E0;
    font-weight: normal;
    font-size: 12px;
    color: #666666;
}
.products_con .product .content .recomendado {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.products_con .product .content .recomendado > span {
    margin-right: 4px;
}
.products_con .product .content .recomendado svg {
    width: 16px;
    height: auto;
}
.products_con .product .content .recomendado .text_recomendado {
    font-weight: normal;
    font-size: 13px;
    color: #1F1F1F;
}
#module-dbproductcomments-dbmisopiniones .row_opinions .opinion {
    margin-top: 0;
    width: 100%;
    margin-bottom: 32px;
}
#module-dbproductcomments-dbmisopiniones .row_opinions .opinion:first-of-type {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}
@media (max-width: 991px) {
    #opiniones-cta > div {
        flex-flow: column;
        flex-direction: column!important;
    }
}
@media (max-width: 767px) {
    .card.opiniones {
        background-color: #FFF;
        padding: 16px;
    }
    .products_con .product .content {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    .row_opinions .opinion .opinion_header .verificado {
        margin-left: 0;
    }
}

/*** FOOTER ***/
.cards_opinions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 3rem;
    margin: 3rem 0;
}
.cards_opinions .card_opinion {
    width: calc(33.33% - 20px);
    margin: 0 10px;
    background: linear-gradient(
            160deg, #FFF 50%, #F5F6F7 50%);
    border: 1px solid #E0E0E0;
    padding: 24px 32px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.cards_opinions .card_opinion .content {
    width: 50%;
}
.cards_opinions .card_opinion .content .rate {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.cards_opinions .card_opinion .content .rate span {
    font-weight: 600;
    font-size: 18px;
    color: #1F1F1F;
    margin-right: 4px;
}
.cards_opinions .card_opinion .content .totals {
    font-weight: 400;
    font-size: 12px;
    color: #1F1F1F;
    margin-top: 4px;
    margin-bottom: 0;
}
.cards_opinions .card_opinion .icon {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.cards_opinions .card_opinion .link {
    font-weight: 400;
    font-size: 10px;
    color: #666666;
    text-decoration: underline;
    margin-top: 16px;
}

/*** MENU TOP ***/
.commentmenutop_shop {
    background-color: #E0E0E0;
    padding: 8px 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.commentmenutop_shop span {
    font-weight: 400;
    font-size: 11px;
    color: #666666;
    line-height: 1.2;
}
.commentmenutop_shop span.exc {
    font-weight: 600;
    font-size: 12px;
    color: #666666;
    margin-left: 4px;
}
.commentmenutop_shop svg {
    margin-left: auto;
}

/*** MODAL COMMENT ***/
.vote_caracteristica,
.rating_global {
    position: relative;
}
.vote_caracteristica .rating_caracteristicas,
.valoracion_global .rating_global {
    width:auto;
    display:inline-block;
    position: relative;
}
.vote_caracteristica input,
.rating_global input {
    display:none;
}
.rating_global label {
    float:right;
    display:inline-block;
    width: 24px;
    height: 24px;
    margin: 0 8px 0 0;
    position: relative;
    transition:all .3s;
    cursor: pointer;
}
.rating_global label svg {
    width: 24px;
    height: 24px;
}
.rating_global label svg path {
    fill: #F1F0F0;
}
.vote_caracteristica label {
    float:right;
    display:inline-block;
    width:24px;
    height:12px;
    background:#F1F0F0;
    margin: 0 4px 0 0;
    position: relative;
    transition:all .3s;
    cursor: pointer;
}
.vote_caracteristica .rating_caracteristicas label:before {
    content: '';
    position: absolute;
    width:100%;
    height:100%;
    background: inherit;
    top:0;
    left:0;
    transition:all 0.1s;
}
.vote_caracteristica .rating_caracteristicas input:checked ~ label,
.vote_caracteristica .rating_caracteristicas label:hover ~ label,
.vote_caracteristica .rating_caracteristicas label:hover {
    background: #1F1F1F;
}
.valoracion_global .rating_global input:checked ~ label svg path,
.valoracion_global .rating_global label:hover ~ label svg path,
.valoracion_global .rating_global label svg:hover path {
    fill: #fabc2a;
}
.switch-field {
    display: flex;
    overflow: hidden;
}
.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}
.switch-field label {
    background-color: #F1F0F0;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    padding: 8px 16px;
    margin-right: -1px;
    transition: all 0.1s ease-in-out;
}
.switch-field label:hover {
    cursor: pointer;
}
.switch-field input:checked + label {
    background-color: #1F1F1F;
    color: #FFF;
    box-shadow: none;
}
.switch-field label:first-of-type {
    border-radius: 4px 0 0 4px;
}
.switch-field label:last-of-type {
    border-radius: 0 4px 4px 0;
}
#CommentModal .modal-body {
    padding: 24px;
}
#CommentModal .h3.title {
    margin-bottom: 8px;
    text-transform: inherit;
    font-size: 24px;
    line-height: 33px;
}
#CommentModal .subtitle {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 24px;
}
#CommentModal .minititle {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    text-align: left;
}
#CommentModal .minisubtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0px;
}
#CommentModal .valoracion_global,
#CommentModal .form-group,
#CommentModal .caracteristicas,
#CommentModal .recomendacion {
    margin-bottom: 32px;
}
#CommentModal .caracteristicas .minititle {
    margin-bottom: 12px;
}
#CommentModal .caracteristicas .vote_caracteristica {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
#CommentModal .caracteristicas .vote_caracteristica:first-of-type {
    margin-top: 20px;
}
#CommentModal .caracteristicas .vote_caracteristica .name {
    width: 15%;
    font-size: 16px;
    line-height: 26px;
}
#CommentModal .error_title_comment,
#CommentModal .error_content_comment {
    color: #C81D25;
    font-size: 12px;
    margin-top: 4px;
    display: table;
}

#CommentModalShop .modal-body {
    padding: 24px;
}
#CommentModalShop .h3.title {
    color: var(--Neutral-80, #1D2939);
    text-align: center;
    /* Proyecto/Desktop/H2 */
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 116.667% */
}
#CommentModalShop .subtitle {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 24px;
    color: var(--Neutral-60, #475467);
    text-align: center;
}
#CommentModalShop input {
    color: var(--Neutral-50, #667085);
    /* Proyecto/Common/Body2/Body2 */
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
}
#CommentModalShop p.createcomment {
    text-align:center;
    padding-top: 20px;
    margin-bottom: 0;
}


/* PAGINA DE OPINIONES (DBPRODUCTCOMMENTS */

/*

#module-dbproductcomments-dbopiniones * {
    font-family: "Nunito Sans";
}

*/

#wrapper .breadcrumb li span {
    color: #667085;
    /* Proyecto/Common/Detail/Detail */
    
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */

}

#module-dbproductcomments-dbopiniones .empty-stars.med svg,
#module-dbproductcomments-dbopiniones .full-stars.med svg {
    width: 16px;
    height: auto;
}

#module-dbproductcomments-dbopiniones .verificado span {
    color: #344054;
    /* Proyecto/Common/Detail/Detail-strong */
    
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 150% */
}
#module-dbproductcomments-dbopiniones .opinion_header {
    margin-bottom: 0;
    flex-grow:1;
}

#features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap:48px;
    padding:16px;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid var(--Neutral-30, #D0D5DD);
    background: var(--Neutral-10, #F2F4F7);

}
#features .feature {
    display:flex;
    text-align:center;
    align-items:center;
    gap:16px;
    max-width:300px;
}

#features .feature .feat-icon {
    border-radius: 50%;
    background-color:#fff;
    width:48px;
    height:48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 1;
}

#features .feature div:last-child {
    color: var(--Neutral-70, #344054);
    
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    text-align:left;
    max-width: 236px;
}

#features .feature div svg {
    width:28px;
    height:28px;
}

#opiniones-cta:not(.only-mobile) {
    display:flex;
}
#opiniones-cta {
    margin:24px auto;
    padding: 32px 24px;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis:100%;
    align-items:center;
    gap:24px;
     
    border: 1px solid #EAECF0;
    border-radius: 4px;
    background-color: #fff;
   
}

#opiniones-cta > div {
    width: calc(50% - 12px);
    display:flex;
}

#opiniones-cta span {
    width: 95%;
    white-space: break-spaces;
}

#opiniones-cta > div:first-child {
    flex-direction: row-reverse;
    color: var(--Neutral-70, #344054);
    text-align: right;
    align-items: center;
    /* Proyecto/Common/H4/H4-strong */
    
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 111.111% */
    
}
#opiniones-cta > div:last-child {
    flex-direction: row;
    display:flex;
    gap:12px;
    flex-shrink: 2;
}



#btn-resena {
    border-radius: 4px;
    border: 1px solid var(--Secondary-70, #55B087);
    background: var(--Secondary-70, #55B087);
    width: 170px;
    height:40px;
    /* shadow-xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color:#fff;
    padding: 8px 16px;
    font-family: "Nunito Sans";
    font-weight: 600;
    line-height: 24px;
}


#btn-opinar {
    border-radius: 4px;
    border: 1px solid var(--Secondary-30, #8BE3BC);
    background: var(--Absolute-White, #FFF);
    color: var(--Secondary-70, #55B087);
    width: 170px;
    height:40px;
    /* shadow-xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    display:flex;
    gap:8px;
    align-items:center;
    padding:16px;
    
}
#btn-opinar div {
    display:flex;
}

#opiniones-container {
    text-align:center;
}

#opiniones-container hr.hr-small {
    margin: 16px 0;
    background: #D0D5DD; /* Cambia el color de fondo */
    height: 1px; /* Ajusta el grosor del hr según sea necesario */
    border: none; /* Quita el borde predeterminado */
}
#opiniones-container hr.hr-big {
    margin: 32px 0;
    background: #D0D5DD; /* Cambia el color de fondo */
    height: 1px; /* Ajusta el grosor del hr según sea necesario */
    border: none; /* Quita el borde predeterminado */
}

#cabecera-opiniones {
    display:flex;
    align-content: center;
    flex-wrap: wrap;
    max-width:1032px;
    margin: 0 auto;
}
#opiniones-container .opinion_header .ratings_container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.google_ratings{
    display: flex;
    gap: 4px;
    margin-top: -4px;
}
.google_ratings img {
    width: 90px;
    height: auto;
}
#cabecera-opiniones > div{
    flex: 1 0 50%;
    display:flex;
    width:50%;
    min-width:300px;
    align-items:center;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
    flex-direction: column;
}
#cabecera-opiniones > div:first-child {
    padding:32px;
    background-color: #EAECF0;
}
#cabecera-opiniones > div:first-child > div {
    padding: 24px;
    background-color: white;
    width:100%;
    height:100%;
}
#cabecera-opiniones > div:last-child {
    justify-content: flex-start;
    flex-basis: 100%;
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: flex-start;
    gap: 8px;
    background: var(--Absolute-White, #FFF);
    color: #344054;
    /* Proyecto/Common/Body2/Body2 */
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
    border-radius: 4px;
    border: 1px solid var(--Neutral-30, #D0D5DD);
    padding: 12px 16px 12px 12px;
    text-align:left;
}

#cabecera-opiniones > div:last-child svg {
    flex-shrink: 0;
}

#cabecera-opiniones > div > hr {
    background: #D0D5DD;
    width:100%;
    margin: 0 auto;
}

#cabecera-opiniones picture {
    width:100%;
    overflow:hidden;
}


#cabecera-opiniones .cabecera-opinion {
    display:flex;
    flex-direction: column;
    gap: 8px;
}
#cabecera-opiniones .cabecera-opinion > div:first-child {
    color: var(--Neutral-80, #1D2939);
    text-align: center;

    /* Proyecto/Desktop/S */
    
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 100% */
}
#cabecera-opiniones .cabecera-opinion > div:last-child {
    color: var(--Neutral-80, #1D2939);

    /* Proyecto/Common/Body/Body-strong */
    
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    gap:8px;
}

#cabecera-opiniones .branding-opinion {
    display:flex;
    flex-direction: column;
    gap: 8px;
}
#cabecera-opiniones .branding-opinion img {
    width:auto!important;
}
#cabecera-opiniones .branding-opinion > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    align-self: stretch;
}
#cabecera-opiniones .branding-opinion > div:last-child {
    color: var(--Neutral-60, #475467);
    text-align: center;

    /* Proyecto/Common/Caption/Caption */
    
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
}

#objetivo {
    display: flex;
    width:100%;
}

#review-block {
    display:flex;
    gap:32px;
}

.row_opinions .opinion .text {
    text-align:left;
}

.only-mobile {
    display:none;
}


/*  Review professionales*/

.general_opiniones_professional {
    display: flex;
    padding: 16px 24px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid var(--Neutral-20, #EAECF0);
    background: var(--Absolute-White, #FFF);
    margin-top: 32px;
}

.home_shop_opinions .vermas {
    display: none;
}

.home_shop_opinions .opinion {
    height:100%;
}
.home_shop_opinions .opinion_container {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 4px;
    background: var(--Absolute-White, #FFF);
}



.home_shop_opinions .opinion_container > div {
    width: 100%;
    display: flex;
    align-items: baseline;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
}

.home_shop_opinions .opinion .opinion_header .title_opinion {
    text-align: left!important;
    color: #1D2939;
}

.home_shop_opinions .opinion .title_opinion {
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
}


.home_shop_opinions .opinion .text {
    text-align: left;
    width: 100%;
    flex-grow:1;
}

.home_shop_opinions  .opinion p {
    margin-bottom: 0;
}

.home_shop_opinions .opinion .text p {
    color: #344054;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.home_shop_opinions .opinion .opinion_header {
    flex-grow: 1;
}
.home_shop_opinions .opinion .opinion_header .author {
    color: var(--Neutral-50, #667085);
    font-family: "Nunito Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-left: 0;
}

.home_shop_opinions .opinion .opinion_header .author, .row_opinions .opinion .opinion_header .date {
    font-weight: 400;
    font-size: 13px;
}

.home_shop_opinions .opinion .opinion_container > div {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
}


.home_shop_opinions .opinion .verificado {
    display: flex;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid var(--Neutral-30, #D0D5DD);
    background: var(--Absolute-White, #FFF);
}


.home_shop_opinions .verificado span {
    color: #344054;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}


.opinions_link{
    color: var(--Primary-70, #1E8DCC);
text-align: center;
margin-top: 12px;
/* Proyecto/Common/Body3/Body3-strong */
font-family: "Nunito Sans";
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
}

.how_works{
    color: var(--Neutral-70, #344054);
    text-align: center;
    margin-bottom: 16px;
    margin-top: 4px;
    /* Proyecto/Common/Detail/Detail */
    font-family: "Nunito Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
    text-decoration: underline;
}


#cms  .dbproductcomments{
    margin-top: 60px;
}



/* Sorteo */


.sorteo_banner{
    width: 100%; 
    height: 100%; 
    padding-left: 24px;
     padding-right: 24px; 
     padding-top: 16px; 
     padding-bottom: 16px; 
     background: #83D7B1; 
     border-radius: 4px; 
     justify-content: space-between; 
     align-items: center;
    display: inline-flex;
}


.section1_sorteo{
    justify-content: flex-start; 
    align-items: center; 
    gap: 8px; 
    display: flex;
}


.section2_sorteo{
    width: 20px; 
    height: 20px; 
    position: relative;
}


.sorteo_coment{
    color: #1D2939; 
    font-size: 18px; 
    font-family: Nunito Sans; 
    font-weight: 600; 
    line-height: 20px;
    word-wrap: break-word;
}

.sorteo_conditions{
    border-radius: 4px; 
    justify-content: center; 
    align-items: center; 
    gap: 4px; 
    display: flex;
}


.sorteo_txt{
    text-align: center;
    color: #1E8DCC;
    font-size: 15px; 
    font-family: Nunito Sans;
    font-weight: 600; 
    line-height: 24px;
    word-wrap: break-word;
}

/* Pedido sorteo banner*/





.confirmation2_sorteo{
    flex: 1 1 0; 
    padding: 32px; 
    background: white; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 32px; 
    display: inline-flex;
}

.confirmation3_sorteo{
    align-self: stretch; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 16px; 
    display: flex;
}

.confirmation4_sorteo{
    align-self: stretch; 
    justify-content: center; 
    align-items: center; 
    gap: 4px; 
    display: inline-flex;
}

.confirmation5_sorteo{
    color: #1D2939; 
    font-size: 26px; 
    font-family: Nunito Sans; 
    font-weight: 600; 
    line-height: 28px; 
    word-wrap: break-word;
}

.card-sorteo {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem !important;
}

@media (max-width: 1200px) {

    .confirmation_sorteo{
        width: 100%;
        height: 100%; 
        background: white; 
        border-radius: 4px; 
        overflow: hidden; 
        justify-content: center; 
        align-items: center; 
        display: inline-flex;
        flex-direction: column;
   }
   

  }
  

  @media (min-width: 1201px) {

    .confirmation_sorteo{
        width: 100%;
        height: 100%; 
        background: white; 
        border-radius: 4px; 
        overflow: hidden; 
        justify-content: center; 
        align-items: center; 
        display: inline-flex;

   }
   

  }
  

  /* Responder comentarios por parte de la empresa */


  .response_box{

    width: 100%;
    height: 100%; 
    padding-top: 24px; 
    padding-bottom: 16px;
    padding-left: 16px; 
    padding-right: 16px; 
    background: #F2F4F7;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px; 
    flex-direction: column;
    justify-content: flex-start; 
    align-items: flex-start;
    gap: 16px;
    display: inline-flex;
    border-left: 2px solid #55B087;
    margin-top: 16px;

  }

  .response_box2{
    align-self: stretch; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: flex-start; 
    gap: 8px; 
    display: flex;
  }

  .response_box3{

    align-self: stretch; 
    flex-direction: column; 
    justify-content: flex-start;
    align-items: flex-start; 
    gap: 4px; 
    display: flex;

  }

  .response_box4{
    align-self: stretch; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: flex-start; 
    gap: 4px; 
    display: flex;
  }

  .coment_empresa{

    align-self: stretch; 
    color: #1D2939; 
    font-size: 15px; 
    font-family: Nunito Sans; 
    font-weight: 600; 
    line-height: 24px; 
    word-wrap: break-word;
    text-align: left;

  }

  .response_box5{

    align-self: stretch; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: flex-start; 
    gap: 8px; 
    display: flex

  }

  .answer_empresa{

    align-self: stretch; 
    color: #344054; 
    font-size: 15px; 
    font-family: Nunito Sans; 
    font-weight: 400; 
    line-height: 24px; 
    word-wrap: break-word;
    text-align: left;

  }

  .box_info_empleado{

    align-self: stretch; 
    justify-content: flex-start; 
    align-items: center; 
    gap: 4px; 
    display: inline-flex;

  }

  .info_flex{

    justify-content: flex-start; 
    align-items: center; 
    gap: 8px; 
    display: flex;

  }


  .name_date{
    flex-direction: column; 
    justify-content: center; 
    align-items: flex-start; 
    display: inline-flex;
  }

  .name_author{

    color: #344054; 
    font-size: 13px; 
    font-family: Nunito Sans; 
    font-weight: 400; 
    line-height: 20px; 
    word-wrap: break-word;

  }

  .fecha_answer{

   color: #667085; 
   font-size: 13px; 
   font-family: Nunito Sans; 
   font-weight: 400; 
   line-height: 20px; 
   word-wrap: break-word;

  }

  .flex_mg{
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    align-items: center;
  }

  .mg_count{
    display: flex;
  }

  .vote_count{

    color: #2D3748; 
    font-size: 12px; 
    font-family: Nunito Sans; 
    font-weight: 400; 
    line-height: 18px; 
    word-wrap: break-word;

  }

  .like-icon.clicked {
    animation: like-animation 0.5s ease;
}

@keyframes like-animation {
    0% {
        transform: scale(1);
        fill: #1D2939;
    }
    50% {
        transform: scale(1.5);
        fill: #ff0000; /* Cambia el color a rojo en el medio de la animación */
    }
    100% {
        transform: scale(1);
        fill: #1D2939; /* Vuelve al color original */
    }
}
.opinion_votes {
    cursor: pointer;
}
#VotesCommentModal .modal-body,
#VotesCommentModal .modal-title{
    padding-left: 24px!important;
    padding-bottom: 24px!important;
}
#opiniones-container #image-header > picture > img{
    width: 100%;
    height: auto;
}
#cabecera-opiniones  picture  img{
    width: 100%;
    height: auto;
}
#btn-resena{
    cursor: pointer;
}