@media all and (min-width: 880px) {
  body {
    margin: 20px 30px;
  }
}

section {
  margin-bottom: 20px;
}

.search {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 5px;
  background-color: #e7e7e7;
  font-family: "Lato", sans-serif;
}
.search::placeholder {
  font-size: 1.2em;
}
@media all and (min-width: 470px) {
  .search::placeholder {
    margin: 20px 30px;
    padding-left: 15px;
  }
}
@media all and (min-width: 880px) {
  .search::placeholder {
    background-image: url(/assets/icon/loupe.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position-x: right;
    padding-left: 15px;
  }
}

.form {
  display: flex;
  justify-content: space-between;
}

.header p {
  text-align: center;
  margin: 0;
}

.header h1 {
  color: #d04f4f;
  text-align: center;
  margin-top: 0;
}

.wrapper-btns-dropdown {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media all and (min-width: 470px) {
  .wrapper-btns-dropdown {
    width: 80%;
  }
}

.btn-dropdown-container__arrow-down {
  height: 12px;
  filter: invert(100%);
  cursor: pointer;
  position: absolute;
  right: 13px;
  top: 18px;
  z-index: 99;
  transform: rotate(0deg);
}

.btn-dropdown-container__arrow-down--onclick {
  transform: rotate(180deg);
}

.btn-dropdown-container {
  width: 32%;
  height: 50px;
  font-family: "Lato", sans-serif;
  position: relative;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  margin-right: 15px;
}
@media all and (min-width: 880px) {
  .btn-dropdown-container {
    width: 25%;
  }
}

.btn-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
  border: none;
  border-radius: 5px;
}
.btn-dropdown h3 {
  color: white;
  font-size: 0.9em;
  font-weight: lighter;
}

.btn-dropdown--onclick {
  display: none;
}

#container-ingredient .btn-dropdown:focus,
#container-appliances .btn-dropdown:focus {
  outline: none;
  background-size: 300% 100%;
}

#container-ingredient .btn-dropdown {
  background: #3282f7;
  cursor: pointer;
  height: 50px;
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
#container-ingredient .btn-dropdown:hover {
  background-image: linear-gradient(to right, #649ff7, #9ec1f7, #5999f8, #3282f7);
  box-shadow: 0 1px 15px 0 rgba(65, 132, 234, 0.75);
  background-position: 100% 0;
}

#container-appliances .btn-dropdown {
  background: #68d9a4;
  cursor: pointer;
  height: 50px;
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
#container-appliances .btn-dropdown:hover {
  background-image: linear-gradient(to right, #40e495, #aeebcd, #30dd8a, #68d9a4);
  box-shadow: 0 1px 15px 0 rgba(23, 168, 108, 0.75);
  background-position: 100% 0;
}

#container-ustensils .btn-dropdown {
  background: #ed6454;
  cursor: pointer;
  height: 50px;
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
#container-ustensils .btn-dropdown:hover {
  background-image: linear-gradient(to right, #f0968c, #f3d1cd, #f3867a, #ed6454);
  box-shadow: 0 1px 15px rgba(242, 97, 103, 0.4);
  background-position: 100% 0;
}

#container-ingredient,
#container-ingredient .popup-input,
#container-ingredient .input {
  background: #3282f7;
}

#container-appliances,
#container-appliances .popup-input,
#container-appliances .input {
  background: #68d9a4;
}

#container-ustensils,
#container-ustensils .popup-input,
#container-ustensils .input {
  background: #ed6454;
}

#container-ingredient .elements-liste::-webkit-scrollbar-thumb {
  background-image: linear-gradient(to right, #649ff7, #9ec1f7, #5999f8, #3282f7);
  box-shadow: 0 1px 15px 0 rgba(65, 132, 234, 0.75);
  background-position: 100% 0;
}

#container-appliances .elements-liste::-webkit-scrollbar-thumb {
  background-image: linear-gradient(to right, #40e495, #aeebcd, #30dd8a, #68d9a4);
  box-shadow: 0 1px 15px 0 rgba(23, 168, 108, 0.75);
  background-position: 100% 0;
}

#container-ustensils .elements-liste::-webkit-scrollbar-thumb {
  background-image: linear-gradient(to right, #f0968c, #f3d1cd, #f3867a, #ed6454);
  box-shadow: 0 1px 15px rgba(242, 97, 103, 0.4);
  background-position: 100% 0;
}

.elements-liste::-webkit-scrollbar-thumb {
  border-radius: 40px;
}

.elements-liste::-webkit-scrollbar {
  height: 8px;
}

.elements-liste::-webkit-scrollbar-track {
  background-color: #e7e7e7;
  border-radius: 40px;
  margin-left: 15px;
}

.btn-dropdown-container--onclick {
  width: 42%;
  margin-left: 5px;
  min-height: 50px;
  font-family: "Lato", sans-serif;
  position: relative;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  margin-right: 15px;
}

.popup-input {
  display: none;
  flex-direction: column;
  align-items: start;
  position: relative;
  border: none;
  border-radius: 5px;
}

.popup-input--onclick {
  display: flex;
}

.input {
  width: 100%;
  height: 50px;
  color: white;
  font-family: "Lato", sans-serif;
  border-radius: 5px 5px;
  border: none;
  padding: 0;
}

.input::placeholder {
  color: white;
  padding: 0 15px;
  font-size: 1.1em;
  opacity: 50%;
}

.popup-input--onclick {
  display: block;
  flex-direction: column;
  align-items: start;
  padding: 0;
  position: relative;
}

.elements-liste {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  max-height: 200px;
  flex-wrap: wrap;
  width: 95%;
  color: white;
}
.elements-liste li {
  padding: 0 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 0.9em;
}
.elements-liste li:hover {
  font-weight: bold;
}

.tag {
  display: none;
  border-radius: 5px;
  border: none;
  height: 30px;
  color: white;
  font-size: 0.8em;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.tag-container {
  display: none;
  flex-wrap: wrap;
}

.elements-liste-ing,
.elements-liste-appl,
.elements-liste-uts {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
  height: 200px;
  flex-wrap: wrap;
  width: 100%;
}

.btn-dropdown-container--onclick {
  width: inherit;
}

.input-liste {
  width: 30%;
  padding: 0 15px;
  font-size: 0.9em;
  line-height: 22px;
}

.wrapper-recipe-tittle-time {
  display: flex;
  justify-content: space-between;
  font-family: "Lato", sans-serif;
}

.recipe-time {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  font-size: 0.8em;
}
.recipe-time > div {
  font-weight: bold;
  padding-left: 5px;
}

.recipe-tittle {
  font-size: 0.8em;
  width: 60%;
}

.wrapper-recipe-ingredients-making {
  display: flex;
  justify-content: space-between;
}

.recipe-ingredients {
  width: 47%;
  font-size: 0.7em;
  font-family: "Lato", sans-serif;
  padding-left: 0;
  list-style-type: none;
  margin: 0;
}

.recipe-ingredients__li {
  display: flex;
  height: auto;
  flex-wrap: wrap;
}

.recipe-making {
  width: 50%;
  font-size: 0.7em;
  font-family: "Roboto", sans-serif;
}

.wrapper {
  padding: 0 10px 10px 10px;
  background-color: #e7e7e7;
  border-radius: 0 0 5px 5px;
  height: 160px;
  overflow: hidden;
}

.recipes {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
}
.recipes .wrapper-recipe:nth-child(1) {
  animation-delay: 200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(2) {
  animation-delay: 400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(3) {
  animation-delay: 600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(4) {
  animation-delay: 800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(5) {
  animation-delay: 1000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(6) {
  animation-delay: 1200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(7) {
  animation-delay: 1400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(8) {
  animation-delay: 1600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(9) {
  animation-delay: 1800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(10) {
  animation-delay: 2000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(11) {
  animation-delay: 2200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(12) {
  animation-delay: 2400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(13) {
  animation-delay: 2600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(14) {
  animation-delay: 2800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(15) {
  animation-delay: 3000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(16) {
  animation-delay: 3200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(17) {
  animation-delay: 3400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(18) {
  animation-delay: 3600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(19) {
  animation-delay: 3800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(20) {
  animation-delay: 4000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(21) {
  animation-delay: 4200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(22) {
  animation-delay: 4400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(23) {
  animation-delay: 4600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(24) {
  animation-delay: 4800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(25) {
  animation-delay: 5000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(26) {
  animation-delay: 5200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(27) {
  animation-delay: 5400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(28) {
  animation-delay: 5600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(29) {
  animation-delay: 5800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(30) {
  animation-delay: 6000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(31) {
  animation-delay: 6200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(32) {
  animation-delay: 6400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(33) {
  animation-delay: 6600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(34) {
  animation-delay: 6800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(35) {
  animation-delay: 7000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(36) {
  animation-delay: 7200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(37) {
  animation-delay: 7400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(38) {
  animation-delay: 7600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(39) {
  animation-delay: 7800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(40) {
  animation-delay: 8000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(41) {
  animation-delay: 8200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(42) {
  animation-delay: 8400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(43) {
  animation-delay: 8600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(44) {
  animation-delay: 8800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(45) {
  animation-delay: 9000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(46) {
  animation-delay: 9200ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(47) {
  animation-delay: 9400ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(48) {
  animation-delay: 9600ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(49) {
  animation-delay: 9800ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}
.recipes .wrapper-recipe:nth-child(50) {
  animation-delay: 10000ms;
  animation-name: carte;
  animation-duration: 1400ms;
  animation-fill-mode: forwards;
}

.wrapper-recipe {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 25px;
  opacity: 0;
}
.wrapper-recipe .recipe-img {
  height: 120px;
  background-color: #c7bebe;
  border-radius: 5px 5px 0 0;
}
@media all and (min-width: 470px) {
  .wrapper-recipe {
    width: 45%;
    margin-right: 20px;
  }
}
@media all and (min-width: 880px) {
  .wrapper-recipe {
    width: 30%;
    margin-right: 20px;
  }
}

@keyframes carte {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.message {
  color: #d04f4f;
  text-align: center;
  width: 100%;
  font-size: 1em;
  font-family: "Lato", sans-serif;
  animation: message 0.8s;
}

@keyframes message {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  25% {
    opacity: 0.3;
  }
  45% {
    opacity: 0.6;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
  }
}

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