.first {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.logo_img {
  width: 4rem;
  height: 4rem;
}

.logo__text {
  flex: 1;
}

.hover__nav:hover {
  color: var(--hover-color);
}

.hover__nav {
  font-size: 1.3rem !important;
}

.container {
  background-color: var(--body-color);
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  position: relative;
}

.header__logo__div {
  width: 10rem;
  height: 10rem;
}

.header__logo {
  width: 100%;
  height: 100%;
}

.header {
  background-color: var(--primary-color);
  grid-column: 1 / -1;
  padding: .5rem;
}

.header__sticky {
  z-index: 1000;
  position: fixed;
  top: 0;
}

.quickBox {
  background-color: var(--bookmark-color);
  cursor: pointer;
  border-radius: 1.5rem 0 0 1.5rem;
  gap: 2rem;
  width: 100%;
  padding: 1rem;
  list-style-type: none;
  display: flex;
}

.show__button {
  display: none;
}

.nav__item {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  place-items: center;
  gap: .2rem;
  display: flex;
}

.bookmarkTab {
  background-color: var(--bookmark-color);
  z-index: 10;
  width: 22rem;
  padding: 1rem;
  position: absolute;
  top: 5rem;
}

.bookmarks__list {
  list-style-type: none;
}

.preview__link {
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .5rem;
  display: flex;
}

.preview__link:hover {
  background-color: var(--hover-color);
}

.preview__data {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.preview__fig {
  background-color: var(--body-color);
  border-radius: 5rem;
  width: 4rem;
  height: 4rem;
}

.preview {
  padding-bottom: 1rem;
  list-style-type: none;
}

.nav {
  cursor: pointer;
  justify-content: space-around;
  display: flex;
}

.search {
  display: flex;
  position: relative;
}

.search__field {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  border-radius: .8rem;
  width: 100%;
  max-width: 30rem;
  height: 3rem;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all .3s;
  box-shadow: inset 0 2px 5px #0000000d, 0 2px 8px #00000014;
}

.search__field:focus {
  background-color: var(--body-color);
  border: 1rem thin var(--hover-color);
  outline: none;
}

.search__btn {
  border-radius: 0;
  width: 6rem;
  height: 3rem;
  padding: .5rem;
  position: absolute;
  right: 0;
}

.btn__direction {
  border-radius: 0;
}

.nav__item:hover {
  color: var(--hover-color);
}

.click__bookmark {
  position: relative;
}

.search__cancel {
  width: 8rem;
  padding: .8rem;
}

.search-results {
  background-color: var(--secondary-color);
  z-index: 1001;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: .5rem;
  display: flex;
}

.results {
  flex: 1;
}

.pagination {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.recipe {
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  display: flex;
}

.error, .message, .spinner {
  flex-direction: row;
  gap: 1rem;
  height: 20rem;
  margin: 5rem auto;
  display: flex;
}

.recipe__ingredient {
  gap: 1rem;
  display: flex;
}

.direction {
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.recipe__img {
  filter: brightness(1.05) contrast(.95) saturate(.92) blur(.3px);
  object-fit: cover;
  background-position: center;
  background-size: cover;
  border-radius: 1rem;
  width: 98%;
  height: 30rem;
  overflow: hidden;
  box-shadow: 0 6px 20px #00000014;
}

.recipe__fig {
  height: 34rem;
}

.recipe__details {
  flex-direction: row;
  justify-content: space-around;
  align-items: baseline;
  padding: 1rem;
  display: flex;
  box-shadow: 0 0 5px #0000004a;
}

.recipe__ingredient {
  display: flex;
}

.recipe__ingredient-list {
  grid-template-columns: 1fr 1fr;
  padding: 0;
  display: grid;
}

.btn--tiny {
  background-color: var(--transparent);
  border: none;
  border-radius: 2rem;
}

.btn--round {
  background-color: var(--transparent);
  border: none;
}

.recipe__info-buttons {
  justify-content: space-around;
  display: flex;
}

.recipe__directions {
  flex-direction: column;
  gap: 2rem;
  padding: .8rem;
  display: flex;
  box-shadow: 0 0 5px #0000004a;
}

.add-recipe-window {
  z-index: 1111;
  background: var(--bookmark-color);
  width: 40rem;
  box-shadow: 0 2rem 4rem var(--box-shadow-color);
  border-radius: 10px;
  margin: 2rem auto;
  padding: 2rem;
  font-size: 2rem;
  position: absolute;
  top: 40rem;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hidden {
  display: none;
}

.btn--close-modal {
  float: right;
  background: var(--svg-color);
  color: var(--body-color);
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: .5rem 1rem;
  font-size: 2rem;
}

.upload__heading {
  color: var(--text-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.upload {
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 1rem 1.5rem;
  display: grid;
}

.upload label {
  text-align: right;
  font-size: 1.5rem;
  font-weight: bold;
}

.upload input {
  border: 1px solid var(--body-color);
  border-radius: 5px;
  width: 100%;
  padding: .5rem;
  font-size: 1.5rem;
}

.upload input:focus {
  border-color: var(--svg-color);
  outline: none;
}

.upload__btn {
  color: #fff;
  cursor: pointer;
  background: #28a745;
  border: none;
  border-radius: 5px;
  grid-column: 2 / 3;
  justify-self: start;
  margin-top: 1.5rem;
  padding: .8rem 1.5rem;
  font-weight: bold;
}

.blog {
  background-color: var(--html-color);
  max-width: 800px;
  color: var(--text-color);
  margin: 2rem auto;
  padding: 1rem;
  font-family: Segoe UI, sans-serif;
  transition: background-color 1s, color 1s;
}

.post {
  background-color: var(--primary-color);
  border: 1px solid var(--bookmark-color);
  box-shadow: 0 0 10px var(--box-shadow-color);
  border-radius: 1rem;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  transition: background-color 1s;
  display: flex;
}

.post__img {
  object-fit: cover;
  border-radius: .75rem;
  width: 100%;
  height: 30rem;
}

.post__info {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.post__heading {
  color: var(--button-color);
  text-align: center;
  font-size: 2rem;
  transition: color 1s;
}

.post.veg .post__heading {
  color: var(--button-color);
}

.post.non-veg .post__heading {
  color: var(--hover-color);
}

.post__meta {
  color: var(--svg-color);
  border-bottom: solid thin var(--hover-color);
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: .9rem;
}

.post__content {
  color: var(--text-color);
  flex-direction: column;
  gap: 1rem;
  font-size: 2rem;
  line-height: 1.6;
  display: flex;
}

.post__para {
  text-align: justify;
  margin: 0;
}

.dev {
  color: var(--hover-color);
}

.dev:hover {
  cursor: pointer;
}

.mainDiet {
  flex-direction: column;
  gap: 1rem;
  width: 45rem;
  margin: 0 auto;
  display: flex;
}

.dietMgt {
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.dietButton {
  border-radius: 1rem;
  width: 100%;
  padding: .6rem 1rem;
}

.dietBtnList {
  margin-top: .5rem;
  list-style-type: none;
}

.buttonContainer {
  width: 100%;
  height: 15rem;
  overflow: hidden scroll;
}

.search__result__diet {
  height: 15rem;
  font-size: 1.3rem;
  overflow-x: hidden;
}

.search__result__view {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.search__main {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.selectedDiet {
  background-color: var(--hover-color) !important;
}

.proceed__main {
  flex-direction: column-reverse;
  gap: 1rem;
  display: flex;
}

.diet__proceed__stack {
  flex-direction: column;
  flex: 2;
  gap: .5rem;
  list-style-type: none;
  display: flex;
}

.proceed__main {
  margin: 0 auto;
}

.diet__proceed__lists {
  background-color: var(--primary-color);
  width: 100%;
  box-shadow: 0 8px 20px var(--box-shadow-color);
  border: solid thin var(--hover-color);
  border-radius: .5rem;
  margin: .3rem auto;
  overflow: hidden;
}

.diet__proceed__lists:hover {
  border-color: var(--button-color);
  transition: all ease-out;
}

.diet__sublists:nth-child(2n) {
  background-color: var(--secondary-color);
}

.diet__sublists, td {
  vertical-align: top;
  padding: 1rem;
  font-size: 1rem;
}

.added__diets {
  box-shadow: 0px 0px 11px 0px var(--box-shadow-color);
  margin-top: 1.5rem;
  font-size: 1.3rem;
}

.diet__sublists td:first-child {
  color: var(--svg-color);
  width: 40%;
  font-weight: bold;
}

.diet__sublists td:last-child {
  color: var(--text-color);
  width: 60%;
}

.isolate {
  z-index: 100;
  position: absolute;
  top: -1rem;
  right: 0;
}

.list__body {
  position: relative;
}

.statistics {
  flex: 1;
  gap: 1rem;
}

.diet__summary {
  justify-content: space-between;
  list-style-type: none;
  display: flex;
}

.diet__summary span {
  font-size: 1.5rem;
}

.summary__box {
  margin-bottom: 2rem;
  padding: 1rem;
}

.chart {
  margin-bottom: 3rem;
}

.about__section {
  background-color: var(--body-color);
  border-top: 2px solid var(--secondary-color);
  padding: 2rem 1rem;
  transition: background-color 1s, color 1s;
}

.about__container {
  max-width: 800px;
  color: var(--text-color);
  height: 100vh;
  margin: 0 auto;
  font-family: sans-serif;
}

.about__title {
  color: var(--svg-color);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about__text {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.about__signature {
  text-align: right;
  color: var(--hover-color);
  font-style: italic;
}
/*# sourceMappingURL=repo.880d7d38.css.map */
