#picIntro {
    max-width: 100%;
}

#photoBas {
    max-width: 90%;
    border-radius: 0.3em;
}

#picIntro {
    border-radius: 0.3em;
}

.btAjouterSki {
    cursor: pointer;
    display: block;
    text-decoration: none;
    background-color: #ebeb15;
    color: #505050;
    padding:1em;
    font-size: 1em;
    border-radius: 0.2em;
    font-weight: bold;
}

.checkVeille {
    width: 41px;
    height: 41px;
    margin-left: 10px;
}

.checkVeilleOn {
    background-image: url(pics/cocheMobileOn.png);
}

.checkVeilleOff {
    background-image: url(pics/cocheMobileOff.png);
}

.champSki {
    border: solid 2px #2752a2;
    color: #2752a2;
    font-size: 20px;
    text-align: center;
    margin: 5px;
}

/*-----------------------------------*/
    
.partenaireOk {
    background-image: url(pics/check_yes.png);
    width: 27px;
    height: 26px;
}

@keyframes partenaireKoAnim {
    0% {
        opacity: 1;
    }
    49% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
}

.partenaireKo {
    background-image: url(pics/check_no.png);
    width: 27px;
    height: 26px;
    animation-name: partenaireKoAnim;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}

.locSkiIntroduction {
    font-size: 1em;
    line-height: 1.8em;
    width: 80%;
    margin: 0px auto;
    color: #4a8cc6;
    margin-bottom: 32px;
    text-align: center;
}

.contProdSki {
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
}

.prodContainer {
    background-color: rgb(255, 255, 255);
    color: #343434;
    width: 30%;
    margin: 4px;
    margin-bottom: 1em;
    position: relative;
    /*border: solid 2px #e2e2e2;*/
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.12);
    /*position: relative;*/

}

.prodIllustration {
    display: flex;
    justify-content: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    background-color: #ffffff;
    overflow: hidden;
}


.btFinaliser {
    background-color: #ebeb15;
    border: solid 1px #deb074;

    color: #505050;
    font-size: 1em;
    font-weight: bold;
    padding: 1em;
    cursor: pointer;
}

@keyframes picEffectIn {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1.0);
    }
}

@keyframes picEffectOut {
    from {
        transform: scale(1.0);
    }
    to {
        transform: scale(0.95);
    }
}


.prodIllustration img {
    border: solid 1px #8b9cb1;
    animation-name: picEffectOut;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.prodIllustration img:hover {
    animation-name: picEffectIn;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.prodZoneBas {
    padding-top: 0.5em;
}

.prodTitle {
    font-family: titre;
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 0.5em;
    color:rgba(132, 132, 59, 0.71);
    letter-spacing: 0.2em;
    /*color: aliceblue;*/
}

.prodDesc {
    font-size: 1em;
    text-align: justify;
    width: 90%;
    margin: 0px auto;
    line-height: 1.3em;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 3em;
}

.prodAjouter {
    border: solid 1px #deb074;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: 1em;
    margin-bottom: 0.5em;
    position: absolute;
    bottom: 0em;
    right: 0em;
}

/*-------------------------*/

.ClBlock123 {
    height: auto;
    width: 1.3em;
    height: 2.6em;
    margin-right: 1em;
    padding-top: 1em;
}

.flex3ClBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    background-color: rgb(255, 255, 255);
    color: #325d83;
    
    margin: 0px auto;
    margin-bottom: 0em;
    line-height: 1.3em;
}

.p3click {
    color: #325d83;   
    font-weight: bold;
    text-align: center;
}

/*----------------------------*/

@keyframes emptyLabel {
    0% {
        border: solid 2px #a7c0d6;
    }
    49% {
        border: solid 2px #a7c0d6;
    }
    50% {
        border: solid 2px #c42c2c;
    }
    100% {
        border: solid 2px #c42c2c;
    }
}

.emptyLabel {
    animation-iteration-count: infinite;
    animation-name: emptyLabel;
    animation-duration: 1s;
    border: solid 2px #ffffff;
}

/*-------------------------*/

@media (max-width: 640px) {
        
    .prodContainer {
        width: 90%;
        box-shadow: 0em 1em 1em rgba(0, 0, 0, 0.12);
        border-bottom: solid 1px #b1b1b1;
    }
    
    .prodIllustration {
        display: inline;
        float: left;
        margin-right: 0.5em;
    }
    
    .prodDesc {
        font-weight: bold;
        color: #717171;
        text-align: left;
    }
    
    .illustration {
        height: 10em;
        width: auto;
    }
    
    #picIntro {
        display: none;
    }
    
    .p3click {
        width: 90%;
        margin: 0px auto;
        margin-bottom: 2em;
    }
    
    .flex3ClBlock {
        width: 95%;
    }
}