/*
Theme Name:     Esperine
Theme URI:      http://example.com/
Description:    Thème enfant 
Author:         Aude Hesperine
Author URI:     http://example.com/about/
Template:       Divi                          
Version:        0.1.0
*/

/*burger img*/

span.mobile_menu_bar:before  {
    display: block;
    content: url(https://www.mapetitemob.esperine.com/wp-content/uploads/2024/08/burger.svg);
    height: 40px;
    width: 40px;
}
/*anim fleche*/

@keyframes jumpfleche {
    from{
        transform: translatex(0px) translatey(0px);
    }
    to{
        transform: translatex(0px) translatey(20px);
    }}
 
.fleche {
    animation: jumpfleche 1s ease infinite alternate;
     transform-origin: center;
}	

/*anim coeur*/

@keyframes jumpcoeur {
    from{
        transform: scale(1);    
    }
    to{
        transform: scale(1.2);    
    }}
 
.coeur {
    animation: jumpcoeur 1s ease infinite alternate;
     transform-origin: center;
}	


/*menu mob*/

@media only screen and (max-width: 980px) {
.mobile_menu_bar {
    position: fixed;
    right: 30px;
	top: 15px;}
#mobile_menu1{
    height: 100vh;
	background-color:#ffffff!important;
	}} 
#mobile_menu1 li{
text-align:center;
	line-height: 56px;}
