/* 02/07/2024 Tous droits réservés */

/****************************************************
 *      Effet grossissant avec ombre
 *****************************************************/
.grossi{
    /*position:absolute;*/
    /*z-index:1; */
    box-shadow:0 0 10px black;
    -webkit-transition:all .5s cubic-bezier(.6,2,.4,1);
    -moz-transition:all .5s cubic-bezier(.6,2,.4,1);
    -ms-transition:all .5s cubic-bezier(.6,2,.4,1);
    -o-transition:all .5s cubic-bezier(.6,2,.4,1);
    transition:all .5s cubic-bezier(.6,2,.4,1);
}
.grossi:hover{
    z-index:5;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
/****************************************************
 *      Bouton poussoir
 *****************************************************/
.push_button{
    position:relative;
    /*max-width: 18em;*/
    font-size: 0.7em;
    color:#FFF;
    display: inline-block;
    text-decoration:none;
    border-radius: 0.5em;
    border:solid 1px #FFF;
    background-color: #93675A;
    text-align:center;
    padding:10px 10px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    
    /*max-height: min-content;*/

    /* 
    rebord annulé 
    -webkit-box-shadow: 0px 9px 0px #84261a;
    -moz-box-shadow: 0px 9px 0px #84261a;
    box-shadow: 0px 9px 0px #84261a;
    */
    /* ombre portée */
    -webkit-box-shadow: 0 0 3px rgba(0,0,0, 0.4), 10px 10px 10px rgba(0,0,0, 0.7);
    -moz-box-shadow: 0 0 3px rgba(0,0,0, 0.4), 10px 10px 10px rgba(0,0,0, 0.7);
    box-shadow: 0 0 3px rgba(0,0,0, 0.4), 10px 10px 10px rgba(0,0,0, 0.7);
}

.push_button{
    /*position:absolute;*/
    /*z-index:1; */
    -webkit-transition:all .5s cubic-bezier(.6,2,.4,1);
    -moz-transition:all .5s cubic-bezier(.6,2,.4,1);
    -ms-transition:all .5s cubic-bezier(.6,2,.4,1);
    -o-transition:all .5s cubic-bezier(.6,2,.4,1);
    transition:all .5s cubic-bezier(.6,3,.4,1);
}
.push_button:active{
    position:relative;
    top:7px;
    -webkit-box-shadow: 0px 2px 0px #84261a;
    -moz-box-shadow: 0px 2px 0px #84261a;
    box-shadow: 0px 2px 0px #84261a;
}

.push_button:hover{
    z-index:5;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    box-shadow:0 0 10px black;
    background: #51342B; 
    cursor: pointer;
}

.push_buttonON{
    background:#CBCBCB;
    position:relative;
    color:#84261a;
    display: inline-block;
    text-decoration:none;
    margin:0 2px auto;
    border:none;
    text-align:center;
    padding:4px 4px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
}
.push_buttonOFF{
    background:#cb3b27;
    position:relative;
    color:#FFF;
    display: inline-block;
    text-decoration:none;
    margin:0 2px auto;
    border:none;
    text-align:center;
    padding:4px 4px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
}
.valeur2{
    background:#CBCBCB;
    position:relative;
    color:#84261a;
    display: inline-block;
    text-decoration:none;
    margin:0 2px auto;
    border:none;
    text-align:center;
    padding:4px 4px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
}


.SearchForm .react-destination-typeahead .search-destination-input input.control {
    background-image: linear-gradient(#0067db,#0067db);
    background-size: 0 3px;
    background-repeat: no-repeat;
    background-position: bottom,center 99%;
    transition: background .3s ease-out,box-shadow .3s ease-out,border-color .15s ease-out,border-width .15s ease-out,padding 50ms ease-out;
}

/* rotation au passage souris */
.rotation360Zoom {
    width: 200px;
    height: auto;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
    transition: width 2s, height 2s, transform 2s;
}
.rotation360Zoom img{
    max-width: 100%;                
}
.rotation360Zoom:hover {
    width: 300px;
    height: auto;
    transform: rotate(360deg);
}

.zigzag {
    overflow: hidden;
    animation: zigzag 3s alternate infinite;/* ease-in-out;*/
}

@keyframes zigzag {
    0% { 
        transform: rotatez(3deg) translateX(-20px);
    }
    100% {  
        transform: rotatez(-3deg) translateX(20px);;
    }
}

.zigzag2 {
    animation: zigzag2 3s alternate infinite;
    border-radius: 0.2em;
}

@keyframes zigzag2 {
    0% { 
        transform: translateX(0px) rotatez(0deg);
    }
    33% { 
        transform: translateX(-20px) rotatez(0deg);
    }
    66% { 
        transform: translateX(0px) rotatez(-4deg) scale(0.9,0.9);
    }
    100% { 
        transform: translateX(20px) rotatez(0deg);
    }
}

/* transforme opaque à transparent */
.opacity1-0 {
    animation: opacity1-0  5s;
}
/* transforme transparent à opaque après 5 secondes > total = 10 secondes */
.opacity1-0delai5s{
    animation-name: opacity1-0;
    animation-delay: 2s;
    animation-duration: 4s;
    animation-iteration-count: 1;
} 
@keyframes opacity1-0  {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

/* transforme transparent à opaque */
.opacity0-1{
    animation-name: opacity0-1;
    animation-duration: 5s;
    animation-iteration-count: 1;
} 
@keyframes opacity0-1  {
    0% {opacity: 0;}
    100% {opacity: 1;}
}


/* transforme opaque à transparent à opaque */
.opacity0-1-0 {
    animation-name: opacity0-1-0;
    animation-duration: 10s;
    animation-iteration-count: 1;
}
@keyframes opacity0-1-0  {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    } 
}