@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
.loginForm .invalidPasswordWarning {
  color: red;
  visibility: hidden; }
  .loginForm .invalidPasswordWarning.visible {
    visibility: visible; }

nav {
  display: flex;
  width: 100%;
  z-index: 100; }
  @media only screen and (max-width: 600px) {
    nav {
      position: fixed;
      bottom: 0; } }
  nav .navButton {
    flex-grow: 1;
    width: 100%;
    min-height: 2em;
    font-size: 1em;
    border-radius: 0;
    border: none;
    font-family: 'Quicksand', sans-serif;
    color: #168556; }
    @media only screen and (max-width: 600px) {
      nav .navButton {
        border-top: 2px solid #1A9B64; }
        nav .navButton.selected {
          border-top-color: #168556; } }
    @media only screen and (min-width: 601px) {
      nav .navButton {
        border-bottom: 2px solid #1A9B64; }
        nav .navButton.selected {
          border-bottom-color: #168556; } }
    @media only screen and (max-width: 600px) {
      nav .navButton .text {
        display: none; } }
    nav .navButton.selected {
      color: #04180f; }

.recipeList {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .recipeList li.recipeListItem {
    margin: 0;
    margin-bottom: 0.3em; }
    .recipeList li.recipeListItem button {
      width: 100%;
      min-height: 2em;
      text-align: left;
      padding: 0.2em 1em; }

.recipe h2 {
  text-align: center;
  margin: 0;
  margin-top: 0.5em; }

.recipe h3 {
  font-size: 1.2em;
  margin-bottom: 1em; }
  .recipe h3.ingredientsHeader .ingredientsForAmount {
    font-size: 0.75em;
    color: #0f593a;
    margin: 0 0.7em; }
    .recipe h3.ingredientsHeader .ingredientsForAmount .number {
      display: inline-block;
      text-align: center;
      font-size: 1.1em;
      width: 1em; }
    .recipe h3.ingredientsHeader .ingredientsForAmount button {
      padding: 0em;
      background: none;
      border: none; }

.recipe .ingredientList {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-row-gap: 0.1em;
  grid-column-gap: 0.5em; }
  .recipe .ingredientList .ingredient {
    display: contents; }
    .recipe .ingredientList .ingredient.done {
      color: #666666; }
      .recipe .ingredientList .ingredient.done * {
        text-decoration: line-through; }
    .recipe .ingredientList .ingredient .unitAndAmount {
      display: flex;
      align-items: center;
      font-weight: 600;
      white-space: nowrap; }
      .recipe .ingredientList .ingredient .unitAndAmount .line {
        flex-grow: 1;
        min-width: 0.5em;
        margin-right: 0.5em;
        height: 2px;
        background-color: #86DFB5; }

.recipe .steps {
  padding: 0;
  list-style: none;
  counter-reset: number; }
  .recipe .steps .step {
    margin-bottom: 0.5em; }
    .recipe .steps .step:before {
      color: #0f593a;
      height: 100%;
      content: counter(number) "";
      counter-increment: number;
      font-weight: 700;
      margin-right: 0.1em;
      display: inline-block;
      width: 1em; }
    .recipe .steps .step.done {
      text-decoration: line-through;
      color: #666666; }

.editRecipe h3 {
  margin-bottom: 0.5em; }
  .editRecipe h3 span {
    font-size: 0.75em;
    color: #0f593a; }

.editRecipe input.name {
  width: 100%; }

.editRecipe input.ingredientsForAmount {
  width: 4.5em; }

.editRecipe .reorderToggle {
  margin-bottom: 0.2em; }

.editRecipe .stepList, .editRecipe .ingredientList {
  list-style: none;
  padding: 0;
  margin: 0; }
  .editRecipe .stepList li, .editRecipe .ingredientList li {
    display: flex;
    align-items: center;
    margin-bottom: 0.2em; }
    .editRecipe .stepList li .orderButtons, .editRecipe .ingredientList li .orderButtons {
      transition: width 0.5s;
      width: 2.6em;
      margin-right: 0.2em; }
      .editRecipe .stepList li .orderButtons.hidden, .editRecipe .ingredientList li .orderButtons.hidden {
        width: 0;
        margin: 0;
        display: none; }
      .editRecipe .stepList li .orderButtons div, .editRecipe .ingredientList li .orderButtons div {
        width: 2.6em; }
      .editRecipe .stepList li .orderButtons button, .editRecipe .ingredientList li .orderButtons button {
        padding: 0em 0.2em; }

.editRecipe .emptyWarning {
  text-align: center;
  margin: 1em 0;
  color: #1A9B64; }

.editRecipe .ingredientList .ingredientEdit .ingredientInputWrapper {
  display: flex;
  width: 100%; }
  .editRecipe .ingredientList .ingredientEdit .ingredientInputWrapper input {
    margin-right: 0.2em; }
  .editRecipe .ingredientList .ingredientEdit .ingredientInputWrapper .amount {
    width: 15%;
    min-width: 0em; }
    .editRecipe .ingredientList .ingredientEdit .ingredientInputWrapper .amount:focus {
      min-width: 4em; }
  .editRecipe .ingredientList .ingredientEdit .ingredientInputWrapper .unit {
    width: 20%;
    min-width: 0em; }
    .editRecipe .ingredientList .ingredientEdit .ingredientInputWrapper .unit:focus {
      min-width: 6em; }
  .editRecipe .ingredientList .ingredientEdit .ingredientInputWrapper .name {
    flex-grow: 1; }

.editRecipe .addIngredient {
  margin-top: 0.3em; }

.editRecipe .stepList {
  margin: 0;
  padding: 0; }
  .editRecipe .stepList .stepInput {
    padding: 7px;
    box-sizing: border-box;
    margin-right: 0.2em; }

.editRecipe .addStep {
  margin-top: 0.3em; }

.editRecipe .saveButton {
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  height: 2.5em; }

.recipeAddTool .urlInputBar {
  display: flex; }
  .recipeAddTool .urlInputBar .urlInput {
    flex-grow: 1;
    margin-right: 0.2em; }

.recipeAddTool .contentSelector {
  display: none; }
  .recipeAddTool .contentSelector .viewer {
    border: 2px solid #1A9B64;
    padding: 0.5em;
    word-wrap: break-word;
    background-color: #EEEEEE;
    display: flex;
    flex-direction: column; }
    .recipeAddTool .contentSelector .viewer .loadingIndicator {
      align-self: center;
      display: flex;
      flex-direction: column; }
      .recipeAddTool .contentSelector .viewer .loadingIndicator .loadIcon {
        align-self: center;
        font-size: 1.6em;
        color: #0b442c; }
    .recipeAddTool .contentSelector .viewer *:not(.dontRevert) {
      all: revert; }
    .recipeAddTool .contentSelector .viewer .fade {
      animation: fadeIn 2s ease-in-out 0s; }

@keyframes fadeIn {
  from {
    background-color: yellow; }
  to {
    background-color: rgba(255, 255, 0, 0); } }
    .recipeAddTool .contentSelector .viewer.viewer * {
      box-sizing: border-box; }
    .recipeAddTool .contentSelector .viewer.viewer p {
      margin: 0.5em 0; }
    .recipeAddTool .contentSelector .viewer.viewer .lowestLevelElem:not(:empty) {
      display: inline-block;
      border: 1px solid grey;
      padding: 0.2em; }
    .recipeAddTool .contentSelector .viewer.viewer .selected {
      background-color: #cccccc; }
  .recipeAddTool .contentSelector .inputBar {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #ADDDD0;
    border: 2px solid #1A9B64;
    padding: 0.5em; }
    .recipeAddTool .contentSelector .inputBar .step {
      display: none; }
      .recipeAddTool .contentSelector .inputBar .step.active {
        display: block; }
      .recipeAddTool .contentSelector .inputBar .step .topBar, .recipeAddTool .contentSelector .inputBar .step .bottomBar {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.3em; }
      .recipeAddTool .contentSelector .inputBar .step.step1 .name {
        width: 100%; }
      .recipeAddTool .contentSelector .inputBar .step.step2 .wrapper {
        display: flex; }
        .recipeAddTool .contentSelector .inputBar .step.step2 .wrapper .extendedInput {
          flex-grow: 1; }
          .recipeAddTool .contentSelector .inputBar .step.step2 .wrapper .extendedInput .ingredientsForAmount {
            width: 5em; }
      .recipeAddTool .contentSelector .inputBar .step.step3 .ingredientInputWrapper {
        display: flex;
        width: 100%; }
        .recipeAddTool .contentSelector .inputBar .step.step3 .ingredientInputWrapper input {
          margin-right: 0.2em; }
          .recipeAddTool .contentSelector .inputBar .step.step3 .ingredientInputWrapper input.amount {
            width: 15%;
            min-width: 0em; }
            .recipeAddTool .contentSelector .inputBar .step.step3 .ingredientInputWrapper input.amount:focus {
              min-width: 4em; }
          .recipeAddTool .contentSelector .inputBar .step.step3 .ingredientInputWrapper input.unit {
            width: 20%;
            min-width: 0em; }
            .recipeAddTool .contentSelector .inputBar .step.step3 .ingredientInputWrapper input.unit:focus {
              min-width: 6em; }
          .recipeAddTool .contentSelector .inputBar .step.step3 .ingredientInputWrapper input.name {
            flex-grow: 1; }
      .recipeAddTool .contentSelector .inputBar .step.step4 .step {
        display: block; }
      .recipeAddTool .contentSelector .inputBar .step.step4 .stepList {
        margin: 0;
        padding: 0;
        width: 100%;
        margin-right: 0.2em; }
        .recipeAddTool .contentSelector .inputBar .step.step4 .stepList textarea {
          width: 100%; }
      .recipeAddTool .contentSelector .inputBar .step.step5 .topBar {
        justify-content: space-around;
        align-items: center; }

.untestedRecipeList {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .untestedRecipeList li.untestedRecipeListItem {
    margin: 0;
    margin-bottom: 0.3em;
    overflow-wrap: break-word; }
    .untestedRecipeList li.untestedRecipeListItem button {
      text-align: left;
      padding: 0.2em 1em;
      width: 100%;
      min-height: 2em;
      margin-right: 0.3em; }
      .untestedRecipeList li.untestedRecipeListItem button h3 {
        font-size: 1em;
        margin: 0;
        padding: 0;
        margin-bottom: 0.2em; }
      .untestedRecipeList li.untestedRecipeListItem button .url {
        margin-bottom: 0.2em; }
      .untestedRecipeList li.untestedRecipeListItem button .alterations {
        color: #0b442c; }

.untestedRecipe .iframeWrapper {
  margin-top: 1em;
  border: 1px solid #1A9B64;
  padding: 1px;
  border-radius: 0.2em;
  background-color: white; }
  .untestedRecipe .iframeWrapper iframe {
    height: 100vh;
    width: 100%;
    border: none; }

.editUntestedRecipe input {
  width: 100%;
  margin: 0.6em 0; }

.editUntestedRecipe .saveButton {
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  height: 2.5em; }

.dinnerPlanningList {
  display: flex;
  flex-direction: column; }
  .dinnerPlanningList .day {
    width: 100%;
    margin-bottom: 0.6em; }
    .dinnerPlanningList .day .dateHeader {
      display: flex;
      align-items: center; }
      .dinnerPlanningList .day .dateHeader .date {
        font-size: 1.2em;
        font-weight: 600;
        margin-bottom: 0.2em;
        margin-right: 1rem; }
        .dinnerPlanningList .day .dateHeader .date .dayy {
          text-transform: uppercase; }
      .dinnerPlanningList .day .dateHeader .saveIcon.hidden {
        display: none; }
      .dinnerPlanningList .day .dateHeader .dayButtons {
        margin-left: auto; }
    .dinnerPlanningList .day.today .date {
      text-decoration: underline; }
    .dinnerPlanningList .day.past {
      color: #737373; }
      .dinnerPlanningList .day.past .recipe button {
        color: #4d4d4d; }
    .dinnerPlanningList .day .plan {
      padding-left: 0.4em;
      border-left: 3px solid #1A9B64;
      border-radius: 1.5px;
      padding-top: 0.2em; }
      .dinnerPlanningList .day .plan .recipe {
        display: flex; }
        .dinnerPlanningList .day .plan .recipe .recipeButton {
          flex-grow: 1;
          text-align: left; }
      .dinnerPlanningList .day .plan .text .invisibleInput {
        flex-grow: 1;
        box-sizing: border-box;
        resize: none;
        width: 100%;
        border: 0;
        outline: none;
        background-color: transparent;
        font-size: 1em;
        padding: 7px; }
  .dinnerPlanningList button.day {
    text-align: left; }
    .dinnerPlanningList button.day .plan .recipeName {
      font-size: 1.1em;
      font-weight: 600; }
  .dinnerPlanningList .separationDash {
    align-self: center;
    width: 85%;
    height: 3px;
    background-color: #86DFB5;
    margin: 1em 0;
    border-radius: 1.5px; }
    .dinnerPlanningList .separationDash:first-child {
      display: none; }

.dinnerPlanningPage .look-frame-button {
  margin-bottom: 2em; }
  .dinnerPlanningPage .look-frame-button i {
    margin-left: 1em;
    margin-right: 1em; }

.recipePage {
  display: flex;
  flex-direction: column; }
  .recipePage .topButtons .recipeButtons {
    align-self: flex-end; }
    .recipePage .topButtons .recipeButtons button {
      vertical-align: bottom;
      margin-right: 0.2em; }
      .recipePage .topButtons .recipeButtons button:last-child {
        margin-right: 0; }
      .recipePage .topButtons .recipeButtons button.castButton {
        padding: 0.25em; }
        .recipePage .topButtons .recipeButtons button.castButton.hidden {
          display: none; }

.cast .recipePage {
  margin-left: 2em; }
  .cast .recipePage .castButtons {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0.1em;
    padding-right: 0; }
    .cast .recipePage .castButtons button:not(:last-child) {
      margin-bottom: 0.2em; }
    .cast .recipePage .castButtons .scrollButton {
      flex-grow: 1; }
    .cast .recipePage .castButtons .radio {
      height: 2.2em; }

.recipesPage .topButtons {
  display: flex;
  margin-bottom: 0.5em;
  gap: 0.25em; }
  .recipesPage .topButtons button {
    flex-grow: 1; }

.recipesPage .searchBar {
  display: flex; }
  .recipesPage .searchBar input {
    flex-grow: 1;
    margin-right: 0.2em; }
  .recipesPage .searchBar button {
    margin-right: 0.2em; }
    .recipesPage .searchBar button:last-child {
      margin-right: 0; }

.recipesPage .resultOverview {
  align-self: center;
  font-size: 0.85em;
  color: #136f48; }

.recipesPage .searchResults {
  margin-top: 0.5em; }

.untestedRecipePage .topBar {
  position: fixed;
  top: 0;
  width: 100%; }
  .untestedRecipePage .topBar .hoverBar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6em;
    background-color: #ADDDD0;
    border-bottom: 2px solid #1A9B64;
    overflow: hidden; }
    .untestedRecipePage .topBar .hoverBar .topButtons {
      width: 100%; }
    .untestedRecipePage .topBar .hoverBar .url {
      padding: 0.5em;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      width: 100%; }
    .untestedRecipePage .topBar .hoverBar .alterations {
      padding: 0.5em;
      width: fit-content; }
  .untestedRecipePage .topBar .toggleButton {
    margin-top: 0.3em;
    display: flex;
    justify-content: center; }
    .untestedRecipePage .topBar .toggleButton button {
      width: 3em; }
  .untestedRecipePage .topBar.closed .hoverBar {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0; }
  .untestedRecipePage .topBar.closed .toggleButton i {
    transform: rotate(180deg); }

.untestedRecipePage iframe {
  width: 100vw;
  height: 100vh;
  border: none;
  background-color: white; }

.untestedRecipesPage .topButtons {
  display: flex;
  margin-bottom: 0.5em;
  gap: 0.25em; }
  .untestedRecipesPage .topButtons button {
    flex-grow: 1; }

.untestedRecipesPage .searchBar {
  display: flex; }
  .untestedRecipesPage .searchBar input {
    flex-grow: 1;
    margin-right: 0.2em; }

.untestedRecipesPage .resultOverview {
  align-self: center;
  font-size: 0.85em;
  color: #136f48; }

.untestedRecipesPage .searchResults {
  margin-top: 0.5em; }

.upgradeUntestedRecipePage .alterations h3 {
  margin: 0; }
  .upgradeUntestedRecipePage .alterations h3 .note {
    font-size: 0.7em;
    color: #136f48; }

* {
  box-sizing: border-box; }

body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-image: linear-gradient(#ADDDD0, #EEEEEE, #EEEEEE);
  font-family: "Quicksand", sans-serif;
  line-height: 1.3; }
  body .contentContainer {
    margin: auto;
    padding: 0.6em;
    max-width: 600px;
    width: 100%; }
    body .contentContainer.cast {
      max-width: none;
      font-size: 2em; }
    body .contentContainer .overlay {
      z-index: 0; }
    body .contentContainer.timeout .overlay {
      z-index: 99;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100%;
      background-color: transparent;
      backdrop-filter: brightness(20%);
      transition: backdrop-filter 3s ease; }
  body .page {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em; }
    body .page h1 {
      margin: 0;
      margin-bottom: 0.5em;
      text-align: center;
      color: #0b442c; }
    body .page .topButtons {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      body .page .topButtons button {
        height: 2em;
        width: 2em;
        padding: 0; }
      body .page .topButtons .line {
        flex-grow: 1;
        height: 5px;
        background-color: #1A9B64;
        margin: 0 1em; }
    body .page .message {
      position: absolute;
      top: 6em;
      left: 50%;
      transform: translate(-50%, -50%); }
      body .page .message.hidden {
        display: none; }
      body .page .message .text {
        padding: 2em;
        border-radius: 0.5em;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        font-weight: 600;
        white-space: nowrap; }
    body .page .linkBox {
      overflow: hidden;
      margin-top: 0.5em;
      background: #86DFB5;
      border-radius: 0.5em;
      padding: 0.5em;
      max-height: 5em;
      transition: max-height 1s, padding 1s;
      word-break: break-all; }
      body .page .linkBox.hidden {
        max-height: 0;
        padding: 0 0.5em; }
    body .page .sectionLine {
      border-top: 2px solid #86DFB5;
      width: 100%;
      margin: 1em 0; }
    body .page .bottomLine {
      align-self: center;
      width: 90%;
      height: 5px;
      background-color: #86DFB5;
      margin: 1em 0;
      border-radius: 0.5em; }
  body button, body .button {
    background-color: #86DFB5;
    border: 1px solid #1A9B64;
    font-family: "Quicksand", sans-serif;
    font-size: 0.9em;
    padding: 0.2em 0.5em;
    border-radius: 0.2em;
    font-weight: 500; }
    body button:disabled, body .button:disabled {
      color: #999999;
      background-color: #d7f4e6;
      border: 1px solid #3dde99; }
    body button:hover:enabled, body .button:hover:enabled {
      background-color: #5ed49c;
      cursor: pointer; }
    body button:active:enabled, body .button:active:enabled {
      background-color: #35ca84; }
  body input {
    height: 2.5em;
    font-family: "Quicksand", sans-serif;
    font-size: 0.8em;
    border: 1px solid #1A9B64;
    border-radius: 0.2em;
    background-color: #EEEEEE;
    padding: 0.6em; }
  body textarea {
    background-color: #EEEEEE;
    font-family: "Quicksand", sans-serif;
    font-size: 0.8em;
    border: 1px solid #1A9B64;
    width: 100%; }
