@charset "utf-8";

.ingredient-btn-container {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .ingredient-btn-container {
    max-width: 100%;
  }
}

.ingredient-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #7fadd5;
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  font-size: 18px;
  line-height: 1.2;
  padding: 0 3em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .ingredient-btn {
    height: 15vw;
    border-radius: 4vw;
    font-size: 4vw;
  }
}

.ingredient-btn:after {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E904";
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 24px;
  transform: translateY(-50%);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .ingredient-btn:after {
    right: 5vw;
    font-size: 5vw;
  }
}

@media screen and (min-width: 769px) {
  .ingredient-btn {
    transition: opacity 0.3s;
  }

  .ingredient-btn:hover {
    opacity: 0.7;
  }
}
