/**
* 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.
*/


#portail-svg {
    margin-top: 100px !important;
    margin-bottom: 200px !important;
    position: relative;
}

#portail-svg *:not(.plateau) {
    z-index: 9;
}
#portail-svg .tabs-list {
    z-index: 9999;
}

.portail {
    display: none;
}

.portail.shown {
    display: block;
}

.infoCateg {
    display: none;
    position: fixed;
    padding: 10px;
    background-color: rgb(25 39 68 / 80%);
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 40%);
    z-index: 500 !important;
    pointer-events: none;
    margin-left: 15px;
    margin-top: 15px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.infoCateg p {
    margin-bottom: 0;
    color: #fff;
}

svg g:not(#autre):not(#autre_2):not(#autre_1):hover * {
    fill: #406DC6;
    /* stroke: #e32527; */
    cursor: pointer;
}

.battant {
    /* position: absolute;
    top: 80px;
    left: 0px;
    transform: rotateY(90deg);
    width: 100%;
    height: 80%;
    transition: transform 0.8s ease-out; */
    position: relative;
    z-index: 200;
}
.coulissant {
    transition: transform 0.8s ease-in;
    position: relative;
}


.battant.shown {
    transition-delay: 0.8s;
    /* transform: rotateY(180deg) !important; */
}
.coulissant.shown {
    transition-delay: 0.8s;
    /* transform: rotateY(0deg) !important; */
}

.portailSvg {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.plateau {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    clip-path: ellipse(60% 300px);
    height: 100%;
    background-color: #fff;
    z-index: 0;
}
.plateau:after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    clip-path: ellipse(40% 100px);
    height: 100%;
    background-color: #f5f5f5;
    z-index: 1;
}
.plateau:before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    clip-path: ellipse(calc(40% - 2px) 98px);
    height: 100%;
    background-color: #fff;
    z-index: 2;
}

.piece-wrapper {
    display: flex;
    margin: 0 auto;
    width: fit-content;
}
.piece-info {
    display: flex;
    width: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.piece-img {
    max-height: 100px;
}

#portail-svg .piece-name {
    font-size: 18px;
    font-weight: 900;
    color: black;
    margin: 20px 0;
}

#portail-svg .btn {
    padding: 8px 15px !important;
    font-size: 16px !important;
}



/* ZONES */

.zoneHover .zone {
    position: absolute;
    width: 25%;
    height: 73%;
    top: 50px;
    cursor: pointer;
}
/* .zoneHover .zone:hover {
    border: 3px solid blue;
} */

.zone.a {
    left: 0;
}
.zone.b {
    left: 25%;
}
.zone.c {
    left: 50%;
}
.zone.d {
    left: 75%;
}

@media all and (max-width: 768px) {
    #portail-svg {
        margin-bottom: 60px !important;
    }
}