.circle-loader {
  height: var(--circle-loader-height);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: rotate4 2s linear infinite;
          animation: rotate4 2s linear infinite;
  display: none;
}

circle {
  fill: none;
  stroke: var(--loader-color);
  stroke-width: 5;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  -webkit-animation: dash4 1.5s ease-in-out infinite;
          animation: dash4 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate4 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate4 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}
@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}
.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.skeleton div,
.skeleton span,
.skeleton img,
.skeleton .skeleton-child {
  position: relative;
  border-radius: 0.5rem;
}
.skeleton div::before,
.skeleton span::before,
.skeleton img::before,
.skeleton .skeleton-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  border-radius: 0.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#d4d4d4), color-stop(#e7e6e6), to(#dcdcdc));
  background: linear-gradient(90deg, #d4d4d4, #e7e6e6, #dcdcdc);
  background-size: 200%;
  animation: skeleton 1s linear reverse;
}

.skeleton::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: -webkit-gradient(linear, left top, right top, from(#eee), color-stop(#f9f9f9), to(#eee));
  background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
  background-size: 200%;
  animation: skeleton 1s infinite reverse;
}

@-webkit-keyframes skeleton {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes skeleton {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.image-skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.image-skeleton div,
.image-skeleton span,
.image-skeleton img,
.image-skeleton .image-skeleton-child {
  position: relative;
  border-radius: 0.5rem;
}
.image-skeleton div::before,
.image-skeleton span::before,
.image-skeleton img::before,
.image-skeleton .image-skeleton-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  border-radius: 0.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#d4d4d4), color-stop(#e7e6e6), to(#dcdcdc));
  background: linear-gradient(90deg, #d4d4d4, #e7e6e6, #dcdcdc);
  background-size: 200%;
  animation: image-skeleton 1s linear reverse;
}

.image-skeleton::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: -webkit-gradient(linear, left top, right top, from(#eee), color-stop(#f9f9f9), to(#eee));
  background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
  background-size: 200%;
  animation: image-skeleton 1s infinite reverse;
}

@-webkit-keyframes image-skeleton {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes image-skeleton {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.selection-color {
  color: #C18553;
}

.header-colour {
  background-color: #f5f5f5;
}

.heading-text {
  font-family: "DM sans", sans-serif;
  font-weight: 600;
  color: #505050;
}

.heading-text-2 {
  font-family: "DM sans";
  font-weight: 600;
  color: #333333;
  font-size: 24px;
}

.heading-text-grey {
  font-family: "DM sans", sans-serif;
  font-weight: 600;
  color: #afafaf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.heading-text-grey-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #B0B0B0;
}

.heading-text-coloured {
  font-family: "DM sans", sans-serif;
  font-weight: 600;
  color: #C18553;
}

.heading-text-active {
  font-family: "DM sans", sans-serif;
  font-weight: 600;
  color: #00A47B;
}

.heading-text-active-2 {
  font-family: "DM sans";
  font-size: 20px;
  color: #00A47B;
  background-color: #EBFEF6;
  border-radius: 10px;
}

.heading-text-white {
  font-family: "DM sans", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.lighter-text {
  font-family: "DM sans", sans-serif;
  font-weight: 400;
  color: #333333;
}

.link-color {
  color: #417a9a;
}

.text-color-2 {
  color: #898787;
}

.subtle-links {
  color: #898787;
}

.error-message {
  color: #f23116;
}

.page-title-grey {
  color: #555555;
}

.card {
  background-color: #ffffff;
}

.highlighted-card {
  background-color: #f4f9ef;
}

.horizontal-line-between {
  color: #d9d9d9;
  background-color: #d9d9d9;
}

.disabled-button {
  background-color: #878787;
}

.disabled-button-done-icon {
  color: #00A47B;
}

.disabled-button-not-done-icon {
  color: #ff5858;
}

.active-button {
  background-color: #00A47B;
  --loader-color: white;
  --circle-loader-height: 23.5px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.active-button:active {
  background-color: rgb(0, 113, 84.75);
}

.non-active-button {
  background-color: #E7E7E7;
}

.active-button-icons {
  color: #00A47B;
}

.active-button-2 {
  border: 1px solid #afafaf;
  background-color: white;
  --loader-color: #00A47B;
  --circle-loader-height: 23.5px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
}
.active-button-2:active {
  border: #fff;
  --circle-loader-height: 23.5px;
  --loader-color: #00A47B;
  background-color: #00A47B;
  color: #fff;
}

.active-button-text-only {
  font-size: 1rem;
  font-weight: 600;
  color: #00A47B;
  text-decoration: none;
}

.selected-button {
  color: #36393e;
}

.selected-bottom-tab {
  color: #ff5858;
}

.not-selected-button {
  color: #93959f;
}

.button-with-text-info {
  border: none;
  background-color: #f5f5f5;
}

.check-box {
  color: #417a9a;
}

.logo-bg-pink {
  background-color: #ffdadb;
}

.starred-food-item {
  border: 1px solid #E7E7E7;
}
.starred-food-item svg,
.starred-food-item span {
  fill: #C18553;
  color: #C18553;
}

.header {
  background-color: #f5f5f5;
}

.day-and-date {
  background-color: #f5f5f5;
  /* border: 1px solid #91BF5B; */
}

.selected-day {
  background-color: #666666;
  color: white;
}

.current-day {
  border: 0.23vw solid #666666;
  color: #333333;
}

.day-text {
  font-family: "DM sans", sans-serif;
}

.date-text {
  font-family: "DM sans", sans-serif;
}

.change-request-popup-text-area {
  border: 0.5px solid #d9d9d9;
  background-color: #ffffff;
  font-family: "DM sans", sans-serif;
  resize: none;
}

.characters-left {
  color: #B0B0B0;
  font-family: "DM sans", sans-serif;
}

.change-request-popup-text-area:focus {
  border: 1px solid #C18553;
}

.change-request-succesful-btn {
  border: 1px solid #ffffff;
}

.error-screen, .meal-error-screen {
  height: 100%;
  width: calc(100% - 4rem);
  padding: 0%;
  margin: 0rem 2rem;
  font-family: "DM sans", sans-serif;
}
.error-screen .error-img, .meal-error-screen .error-img {
  height: 58%;
  width: 100%;
  margin-bottom: 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.error-screen .error-img img, .meal-error-screen .error-img img {
  height: 100%;
  width: auto;
}
.error-screen .error-reason, .meal-error-screen .error-reason {
  height: 5%;
  width: 100%;
  margin-bottom: 3%;
  text-align: center;
}
.error-screen .error-text, .meal-error-screen .error-text {
  height: 20%;
  width: 100%;
  text-align: center;
}
.error-screen .error-text .error-info, .meal-error-screen .error-text .error-info {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  color: #505050;
}

.error-heading {
  color: #898787;
  font-size: 18px;
  font-weight: bold;
}

.meal-error-screen {
  height: calc(100% - 75px);
  padding: 100px 32px 0px;
  width: 100%;
  margin: 0px 0px;
}

.margin-left-right {
  margin-left: 20px;
  margin-right: 20px;
}