.buttons-filter-section {
    width: 70vw;
    margin-left: 15vw;
    margin-right: 15vw;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.button-filter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.button-filter {
    background-color: rgba(255, 255, 255, 0);
    border: solid 2px var(--color1);
    font-size: 1.4rem;
    color: var(--color1);
    font-family: "JosefinSans-Regular";
    width: 100%;
    height: 55px;
}

.button-filter:hover {
    background-color: var(--color1);
    color: var(--color2);
    cursor: pointer;
}

.button-active {
    background-color: var(--color1);
    color: var(--color2);
}

.button-img-select {
    margin-top: 10px;
    display: none;
}

.button-img-select-active {
    display: block;
	animation: slide-in-elliptic-top-fwd 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@keyframes slide-in-elliptic-top-fwd {
    0% {
      -webkit-transform: translateY(-100px) rotateX(-30deg) scale(0);
              transform: translateY(-100px) rotateX(-30deg) scale(0);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) rotateX(0) scale(1);
              transform: translateY(0) rotateX(0) scale(1);
      -webkit-transform-origin: 50% 100px;
              transform-origin: 50% 100px;
      opacity: 1;
    }
  }


.menu-display-section {
    width: 70vw;
    margin-left: 15vw;
    margin-right: 15vw;
    margin-bottom: 10vh;
}

.menu {
    display: none;
    flex-direction: column;
    width: 100%;
}

.menu-active {
    display: flex;
    flex-direction: column;
}

.menu > .title {
    margin-bottom: 0px;
    margin-top: 3vh;
    
}

.menu > .paragraph {
    margin-bottom: 1.5vh;
    text-align: left;
}
.menu-separation {
    width: 100%;
    height: 4px;
    margin-bottom: 2vh;
    background-color: var(--color1);
}

.ou-separation {
    font-family:"JosefinSans-Light";
    font-size: 1.2rem;
    margin-bottom: 1vh;
}

.menu-tarif {
    width: 100%;
    background-color: var(--color1);
    padding: 1vh 2vh 1vh 2vh;
    margin-top: 4vh;
    -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.menu-tarif > .price-title {
    margin: 2vh;
    color: var(--color2);
    font-family:"JosefinSans-Regular";
    font-size: 1.5rem;
}

.menu-element-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menu-element-container > .paragraph {
    margin-bottom: 2vh;
    text-align: left;
}

@-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }




/* ECRAN 2K */
@media screen and (min-width: 2500px) and (min-height: 1400px) {
    .button-filter {
        background-color: rgba(255, 255, 255, 0);
        border: solid 2px var(--color1);
        font-size: 2rem;
        color: var(--color1);
        font-family: "JosefinSans-Regular";
        width: 100%;
        height: 75px;
    }
    .ou-separation {
        font-family:"JosefinSans-Light";
        font-size: 1.6rem;
        margin-bottom: 1vh;
    }
    .menu-tarif > .price-title {
        margin: 2vh;
        color: var(--color2);
        font-family:"JosefinSans-Regular";
        font-size: 2rem;
    }
}

/* ECRAN 4K */
@media screen and (min-width: 3500px) and (min-height: 2000px) {
    .button-filter {
        background-color: rgba(255, 255, 255, 0);
        border: solid 2px var(--color1);
        font-size: 2.6rem;
        color: var(--color1);
        font-family: "JosefinSans-Regular";
        width: 100%;
        height: 90px;
    }
    .ou-separation {
        font-family:"JosefinSans-Light";
        font-size: 2.3rem;
        margin-bottom: 1vh;
    }
    .menu-tarif > .price-title {
        margin: 2vh;
        color: var(--color2);
        font-family:"JosefinSans-Regular";
        font-size: 2.6rem;
    }
}

/* ECRAN +1920x1080 */
@media screen and (max-width: 1920px) and (max-height: 1080px) {

}

/* ECRAN 17 pouces large */
@media screen and (max-width: 1680px) and (max-height: 1100px) {

}

/* ECRAN 13 à 15 pouces standard */
@media screen and (max-width: 1400px) and (max-height: 1050px) {
    
}


/* TRES GRAND MOBILE 1050x1370 */
@media screen and (max-width: 1050px ) and (max-height: 1370px ) {
    
}

/* GRAND MOBILE 500x900 */
@media screen and (max-width: 500px ) and (max-height: 1000px ) {
    .buttons-filter-section {
        flex-direction: column;
        width: 86vw;
        margin-left: 7vw;
        margin-right: 7vw;
    }
    .menu-display-section {
        width: 86vw;
        margin-left: 7vw;
        margin-right: 7vw;
        margin-bottom: 10vh;
    }
    .button-img-select-active {
        display: none;
    }
    .menu-element-container > .paragraph {
        margin-right: 15px;
    }
    .menu-tarif {
        width: auto;
        
    }
}

/* MOYEN petit 700 */
@media screen and (max-width: 400px ) and (max-height: 750px ) {

}