<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* 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 &lt;contact@prestashop.com&gt;
*  @copyright 2007-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark &amp; Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/


.detailsproduct-boxinfo {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    color: #fff;
    position: relative;
}
.detailsproduct-boxinfo-text p {
    margin-bottom: 0;
    color: #fff;
}
.detailsproduct-boxinfo-text {
    z-index: 2;
}
.detailsproduct-boxinfo-item {
    width: 30%;
    background: #000;
    padding: 15px 10px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
}

.detailsproduct-boxinfo-valeur {
    position: absolute;
    top: 0;
    left: 50%;
    background: #000;
    padding: 6px;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 2;
    font-size : 15px;
}

.detailsproduct-boxinfo-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
}
.detailsproduct-boxinfo-spacer{
    position: relative;
    min-width: 40px;
    min-height: 40px;
}
.detailsproduct-boxinfo-spacer:after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    color: #000;
    font-size: 29px;
    transform: translate(-50%, -50%);
}

@media (max-width: 1070px){
    .detailsproduct-boxinfo {
        flex-direction: column;
    }

    .detailsproduct-boxinfo-item {
        width: 100%;
        margin-bottom: 15px;
        min-height: 120px;
    }
    .detailsproduct-boxinfo-spacer {
        margin-bottom: 15px;
    }
    .detailsproduct-boxinfo {
        max-width: 350px;
        margin: auto;
    }
}

.detailsproduct-toptext {
    text-align: center;
    margin-bottom: 25px;
}

.detailsproduct-toptext * {
    font-size: 14px;
}

.review-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
}
.review-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 25px;
	flex-wrap: wrap;
}
.google-logo {
    font-size: 22px;
    font-weight: bold;
    color: #4285F4;
}
.stars {
    color: #FFD700;
    font-size: 20px;
}


.detailsproduct-toptext ul {
    color: #999;
  }
  .detailsproduct-toptext ul li{
    margin-top: 10px;
    display: inline-block;
  }
  .detailsproduct-toptext ul li:not(:last-child) {
	border-right: 2px solid;
	padding-right: 4px;
}
.texte-cadeaux p {
	text-align: center;
	color: #000;
	font-size: 18px;
	font-weight: 500;
}</pre></body></html>