@charset "UTF-8";
/* Mes mixins */
/* Mes variables */
/* GÉNÉRAL */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
}

.main-container {
  width: 100%;
  min-width: 320px;
}

/* Ceci est mon bloc header */
.header__icon {
  position: relative;
  bottom: 23px;
  padding-left: 10px;
  font-size: 25px;
  color: black;
}

.header__logo {
  width: 180px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: calc(50% - 115px);
}

.header__image {
  object-fit: cover;
  width: 100%;
  height: 250px;
}

/* Ceci est mon bloc menu */
.blocmenu {
  width: 100%;
  padding-top: 20px;
  background-color: #F2F2F2;
  position: relative;
  top: -35px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-bottom: 20px;
  margin-block-end: -35px;
}
.blocmenu__title {
  display: flex;
  justify-content: center;
  font-family: shrikhand;
}
.blocmenu__title h1 {
  font-size: 1.4em;
}
.blocmenu__title .coeurs {
  margin-top: 17px;
  margin-left: 10px;
}
.blocmenu h2 {
  margin-left: 10px;
  padding-top: 15px;
}
.blocmenu h3 {
  margin-top: 15px;
}
.blocmenu__card {
  width: 93%;
  height: 65px;
  border: 1px solid white;
  background-color: white;
  margin-bottom: 15px;
  margin-left: 10px;
  padding-left: 10px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  box-shadow: -1px 2px 2px rgb(130, 124, 124);
  overflow: hidden;
}
.blocmenu__card:hover {
  margin-right: 50px;
}
.blocmenu__card__description {
  margin-top: -5px;
  width: 70%;
}
.blocmenu__card__description .card-title {
  margin-top: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.blocmenu__card__description .card-title :hover {
  width: calc(100% - 200px);
}
.blocmenu__card__description .card-subtitle {
  margin-top: -15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.blocmenu__card__description .card-subtitle :hover {
  width: calc(100% - 250px);
}
.blocmenu__card__flex {
  display: flex;
  justify-content: flex-end;
  width: 90px;
  margin-right: -50px;
  transition: 1s;
}
.blocmenu__card__flex__price {
  margin-top: 20px;
  margin-right: 10px;
}
.blocmenu__card:hover .blocmenu__card__flex {
  margin-right: 0px;
  transition: 1s;
}

/* Ceci est ma partie checkbox */
.checkbox {
  border: 1px solid white;
  background-color: white;
  border-radius: 50%;
  margin-top: 6px;
  margin-left: 15px;
  padding: 2px;
}
.checkbox__font {
  background-color: #99E2D0;
  width: 50px;
}

/* Partie coeurs */
.buttonheart {
  font-size: 30px;
  position: absolute;
  border: none;
  transition-property: all;
  transition-duration: 2s;
}
.buttonheart_solid {
  opacity: 0;
}
.buttonheart_solid:hover {
  opacity: 1;
  color: transparent;
  background-image: linear-gradient(#FF79DA, #9356DC);
  background-clip: text;
}

.green-border {
  border-bottom: 3px solid #99E2D0;
}

/* Ceci est mon bloc button */
.btn {
  border: none;
  background: linear-gradient(#FF79DA, #9356DC);
  border-radius: 50px;
  height: 50px;
  width: 180px;
  color: white;
  margin-bottom: 40px;
  margin-top: 30px;
  margin-left: calc(50% - 90px);
}
.btn:hover {
  opacity: 0.7;
}

/* Ceci est mon footer */
.footer {
  background-color: #353535;
  color: white;
  padding: 25px;
}
.footer__h3 {
  font-family: Shrikhand;
  padding-bottom: 15px;
}
.footer__link {
  color: white;
  text-decoration: none;
}

/* Mes media queries */
@media (min-width: 768px) {
  .blocmenu {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .blocmenu__title {
    text-align: center;
  }
  .blocmenu__card {
    width: 70%;
    margin-left: 15%;
  }
  .blocmenu h2 {
    margin-left: 15%;
  }
  .footer {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
  }
  .footer__h3 {
    margin-top: 12px;
  }
  .footer__textes {
    display: flex;
    gap: 20px;
  }
}

/*# sourceMappingURL=stylemenu.css.map */
