* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif !important;
}

html {
  height: 100%;
}

body {
  background: #fff;
  color: #040405;
  padding: 0 6rem;
  margin: 0 auto;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  max-width: 1500px;
}

body.noScroll {
  overflow: hidden;
}

button {
  cursor: pointer;
  font-size: 1rem;
}

button:active, button:focus {
  outline: none;
}

input,
textarea {
  border: 1px solid #dbdbdd;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
}

input:active, input:focus,
textarea:active,
textarea:focus {
  box-shadow: none;
  outline: none;
}

ion-icon {
  visibility: inherit !important;
}

a {
  color: #040405;
  text-decoration: none;
}

p {
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #8e8f91;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

app-footer {
  margin-top: auto;
}

.mainBtn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 50px;
  padding: 0.5rem 1.8rem;
  color: #fff;
  background: #4aa722;
  border: none;
  font-size: 0.9rem;
  transition: transform 0.4s;
}

.mainBtn:active {
  transform: scale(0.9);
}

.mainBtn.black {
  background: #040405;
}

.userIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.userIcon .cover {
  width: 42px;
  height: 42px;
}

.userIcon .cover img {
  border-radius: 50px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.userIcon .cover .empty {
  width: 100%;
  height: 100%;
  background-color: #4aa7221e;
  border-radius: 50px;
  font-size: 1.4rem;
  color: #4aa722;
  display: flex;
  align-items: center;
  justify-content: center;
}

.userIcon .info {
  margin-left: 0.8rem;
  text-align: left;
}

.userIcon .info .name {
  font-weight: 700;
}

.userIcon .info .tagline {
  color: #8e8f91;
}

.recipeCard {
  position: relative;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.recipeCard .cover {
  top: -70px;
  position: absolute;
  margin: 0 auto;
  height: 140px;
  width: 140px;
  border-radius: 100px;
}

.recipeCard .cover img {
  object-fit: cover;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.2);
}

.recipeCard .bookmark {
  position: absolute;
  top: -2px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #8e8f91;
}

.recipeCard .bookmark.active {
  color: #4aa722;
}

.recipeCard .wrapper {
  width: 100%;
  height: 100%;
  box-shadow: 8px 8px 35px 0px rgba(0, 0, 0, 0.14);
  border-radius: 18px;
  background-color: #fff;
  padding: 90px 1rem 1rem 1rem;
}

.recipeCard .wrapper .info .name {
  min-height: 46px;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipeCard .wrapper .info .calories {
  margin-top: 0.2rem;
  color: #8e8f91;
}

.recipeCard .wrapper .meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dbdbdd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recipeCard .wrapper .meta > div div:first-child {
  color: #8e8f91;
}

.recipeCard .wrapper .meta > div:nth-child(1) {
  text-align: left;
}

.recipeCard .wrapper .meta > div:nth-child(2) {
  text-align: right;
}

.recipeCard .wrapper .counts {
  font-size: 0.9rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dbdbdd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8e8f91;
}

.recipeCard .wrapper .counts > div {
  display: flex;
  align-items: center;
}

.recipeCard .wrapper .counts ion-icon {
  font-size: 1.2rem;
  margin-right: 0.2rem;
}

.recipeCard .wrapper .option {
  font-size: 0.9rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dbdbdd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recipeCard .wrapper .option button {
  background: none;
  border: none;
  width: 100%;
  font-size: 0.9rem;
}

.recipeCard .wrapper .option button.edit:hover {
  color: #0070f3;
}

.recipeCard .wrapper .option button.delete:hover {
  color: #e00;
}

.dropdown {
  position: relative;
}

.dropdown > button {
  border: 1px solid #dbdbdd;
  background: transparent;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.04);
  background-color: #fff;
}

.dropdown.selected.show > button {
  color: #fff !important;
}

.dropdown.selected > button {
  color: #fff;
  border-color: #4aa722;
  background: #4aa722;
}

.dropdown.show > button {
  color: #4aa722;
  border-color: #4aa722;
}

.dropdown.show .dropmenu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0rem);
}

.dropdown .dropmenu {
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(-1rem);
  opacity: 0;
  min-width: 130px;
  pointer-events: none;
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 2px 2px 30px 1px rgba(0, 0, 0, 0.08);
}

.dropdown .dropmenu button {
  border: none;
  background: transparent;
  white-space: nowrap;
  text-align: left;
  padding: 0.6rem 1rem;
}

.dropdown .dropmenu button:hover {
  color: #4aa722;
}

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