/* utils/ is where you store variables, functions, mixins, and %placeholders for extensions (if you use them). */
@import url("https://fonts.googleapis.com/css2?family=Roboto&family=Shrikhand&display=swap");
@-webkit-keyframes HideMe {
  0% {
    opacity: 5;
    z-index: 1000;
  }
  100% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
  }
}
@keyframes HideMe {
  0% {
    opacity: 5;
    z-index: 1000;
  }
  100% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
  }
}

@-webkit-keyframes SpinMe {
  0% {
    -webkit-transform: rotate(920deg);
            transform: rotate(920deg);
    z-index: 1000;
  }
  100% {
    visibility: hidden;
    z-index: -2;
    opacity: 5%;
  }
}

@keyframes SpinMe {
  0% {
    -webkit-transform: rotate(920deg);
            transform: rotate(920deg);
    z-index: 1000;
  }
  100% {
    visibility: hidden;
    z-index: -2;
    opacity: 5%;
  }
}

@-webkit-keyframes TurnAngle {
  to {
    -webkit-transform: rotate(120deg);
            transform: rotate(120deg);
  }
}

@keyframes TurnAngle {
  to {
    -webkit-transform: rotate(120deg);
            transform: rotate(120deg);
  }
}

@-webkit-keyframes ColorMe {
  0% {
    background: -webkit-gradient(linear, left top, left bottom, from(#9356DC), to(#FF79DA));
    background: linear-gradient(to bottom, #9356DC 0%, #FF79DA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 25%;
  }
  50% {
    background: -webkit-gradient(linear, left top, left bottom, from(#9356DC), color-stop(50%, #FF79DA));
    background: linear-gradient(to bottom, #9356DC 0%, #FF79DA 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 50%;
  }
  100% {
    background: -webkit-gradient(linear, left top, left bottom, from(#9356DC), to(#FF79DA));
    background: linear-gradient(to bottom, #9356DC 0%, #FF79DA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 100%;
  }
}

@keyframes ColorMe {
  0% {
    background: -webkit-gradient(linear, left top, left bottom, from(#9356DC), to(#FF79DA));
    background: linear-gradient(to bottom, #9356DC 0%, #FF79DA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 25%;
  }
  50% {
    background: -webkit-gradient(linear, left top, left bottom, from(#9356DC), color-stop(50%, #FF79DA));
    background: linear-gradient(to bottom, #9356DC 0%, #FF79DA 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 50%;
  }
  100% {
    background: -webkit-gradient(linear, left top, left bottom, from(#9356DC), to(#FF79DA));
    background: linear-gradient(to bottom, #9356DC 0%, #FF79DA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 100%;
  }
}

@-webkit-keyframes reveal {
  from {
    opacity: 0%;
    visibility: hidden;
  }
  to {
    opacity: 100%;
    visibility: visible;
  }
}

@keyframes reveal {
  from {
    opacity: 0%;
    visibility: hidden;
  }
  to {
    opacity: 100%;
    visibility: visible;
  }
}

@-webkit-keyframes slide {
  from {
    right: 1500px;
    -webkit-transform: rotate(0deg);
  }
  50% {
    right: -30px;
    -webkit-transform: rotate(5deg);
  }
  75% {
    right: 20px;
  }
  to {
    right: 0px;
  }
}

@-webkit-keyframes SpinCheck {
  0% {
    -webkit-transform: rotate(-250deg);
            transform: rotate(-250deg);
  }
}

@keyframes SpinCheck {
  0% {
    -webkit-transform: rotate(-250deg);
            transform: rotate(-250deg);
  }
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  height: 100%;
}

.slidemein {
  -webkit-animation: reveal 5ms backwards ease-in;
          animation: reveal 5ms backwards ease-in;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.browse_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f6f6f6;
  padding-bottom: 50px;
  padding-top: 20px;
}

.browse_container h1 {
  font-size: 25px;
}

.browse_container p {
  text-align: center;
  margin: 0px 30px 30px;
}

a {
  text-decoration: none;
}

.checkmark {
  content: '';
  color: white;
  position: absolute;
  right: -200px;
  top: 0px;
  font-size: 36px;
  padding: 13px;
  background-color: #99E2D0;
  width: 10%;
  min-height: 100%;
  -webkit-transition: right 2s;
  transition: right 2s;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

.btn1 {
  background: -webkit-gradient(linear, left top, right bottom, from(#FF79DA), to(#9356DC));
  background: linear-gradient(to bottom right, #FF79DA, #9356DC);
  color: white;
  border-radius: 4rem;
  padding: 20px 15px;
  -webkit-box-shadow: 2px 5px 16px 0px #a4aca5;
          box-shadow: 2px 5px 16px 0px #a4aca5;
  border: none;
}

.btn1:hover {
  -webkit-box-shadow: 1px 5px 5px 3px #353535;
          box-shadow: 1px 5px 5px 3px #353535;
}

.btn2 {
  width: 80%;
  border-radius: 1rem;
  border: none;
  padding: 19px 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
  -webkit-box-shadow: 2px 5px 1px 0px #e5e5e5, 1px 1px 5px 5px #e5e5e5;
  box-shadow: 2px 5px 1px 0px #e5e5e5, 1px 1px 5px 5px #e5e5e5;
}

.btn2:hover {
  background: #f5edff;
}

.btn2:hover .stick_left {
  color: #9356DC;
}

.fa-map-marker-alt {
  margin-right: 15px;
}

.order-button {
  width: 180px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF79DA), to(#9356DC));
  background: linear-gradient(to bottom, #FF79DA, #9356DC);
  color: white;
  border-radius: 3rem;
  padding: 15px 15px;
  border: none;
  -webkit-box-shadow: 2px 5px 1px 0px #e5e5e5, 1px 1px 5px 5px #e5e5e5;
  box-shadow: 2px 5px 1px 0px #e5e5e5, 1px 1px 5px 5px #e5e5e5;
  margin-top: 20px;
  margin-bottom: 60px;
}

.order-button:hover {
  -webkit-box-shadow: 5px 5px 5px 0px #353535;
          box-shadow: 5px 5px 5px 0px #353535;
}

.custom-counter {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@media only screen and (min-width: 993px) {
  body {
    background-color: #eaeaea;
  }
  .entrees {
    visibility: hidden;
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
  }
  .maindishes {
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    visibility: hidden;
  }
  .desserts {
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    visibility: hidden;
  }
  .center-image {
    min-height: 100%;
    min-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    position: fixed;
    opacity: 15%;
    z-index: -2;
  }
  .custom-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2%;
    margin-left: 5%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .custom-counter li {
    width: 20%;
  }
  .browse_container {
    margin: 0% 35% 0% 35%;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
  .location {
    margin: 0% 35% 0% 35%;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
  }
  #how_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2% 25% 2% 25%;
    font-family: Shrikhand;
    font-size: xx-large;
    font-weight: 400;
    letter-spacing: 5px;
  }
  .loader_style {
    position: fixed;
    right: 40%;
    bottom: 30%;
    font-size: 500px;
  }
  #restaurants-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 10%;
  }
  .restaurant-container {
    background-color: #f6f6f6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 5%;
    padding-bottom: 5%;
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .restaurant-container .restaurants_cards {
    margin-left: 3%;
  }
  .restaurant-container .restaurants_cards p {
    margin-left: 14px;
  }
  .restaurant-container .restaurants_cards h2 {
    margin-left: 1px;
  }
  .restaurant-container h1 {
    padding-left: 35px;
    position: relative;
    left: 45%;
    bottom: 6rem;
  }
  .restaurant__child {
    background-color: white;
    width: 21.5rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 30px 30px 30px 61px;
  }
  .restaurant__child .checkmark {
    position: absolute;
    right: -60px;
    top: 0%;
    max-height: 100%;
    width: 10%;
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;
    opacity: 100%;
    -webkit-transition: 2s;
    transition: 2s;
    z-index: 3;
  }
  .restaurant__child .restaurant_content:hover .checkmark {
    right: 0;
    -webkit-transition: right 1s;
    transition: right 1s;
    overflow: hidden;
    opacity: 100%;
    z-index: 2;
  }
  .restaurant__child .restaurant_content:hover .pricetags {
    left: 75%;
    -webkit-transition: left 1s;
    transition: left 1s;
    overflow: hidden;
    opacity: 100%;
    z-index: 2;
  }
  .restaurant__child .checkmarkspin {
    -webkit-animation: SpinCheck 1s infinite;
            animation: SpinCheck 1s infinite;
  }
  .pricetags {
    font-weight: bold;
    left: 90%;
    position: absolute;
    -webkit-transition: 2s;
    transition: 2s;
  }
  h2 {
    padding: 0px 0px 0px 12px;
    font-size: 18px;
    margin-bottom: 0px;
  }
  p {
    margin-top: 5px;
    margin-left: 4%;
    padding-bottom: 2px;
    font-size: small;
  }
  footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer li {
    margin-left: 50px;
    margin-right: 20px;
  }
  .food-menu {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background-color: #f6f6f6;
    padding-bottom: 25px;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .food-menu h1 {
    font-weight: 900;
    font-size: 29px;
    margin: 5%;
    padding: 10px 0px 0px 30px;
    font-family: Shrikhand;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .food-menu h1::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f004";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: absolute;
    right: 20px;
    position: -webkit-sticky;
    position: sticky;
    padding-left: 80px;
  }
  .food-menu h1:hover::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f004";
    -webkit-animation: ColorMe 1s ease-in-out infinite alternate;
            animation: ColorMe 1s ease-in-out infinite alternate;
    cursor: pointer;
  }
  .food-menu #how_header {
    margin-left: 20px;
    font-weight: bold;
  }
  .food-menu .restaurant_content:hover h2 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 17%;
    -webkit-transition: 800ms ease-out;
    transition: 800ms ease-out;
  }
  .food-menu .restaurant_content:hover p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 17%;
    -webkit-transition: 800ms ease-out;
    transition: 800ms ease-out;
  }
}

@media only screen and (min-width: 540px) and (max-width: 992px) {
  .center-image {
    width: 100%;
    margin-top: 0%;
    margin-bottom: 0;
    position: fixed;
    opacity: 30%;
    min-height: 100%;
    z-index: -10;
  }
  .restaurant_content:hover h2 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 17%;
    -webkit-transition: 800ms ease-out;
    transition: 800ms ease-out;
  }
  .restaurant_content:hover p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 17%;
    -webkit-transition: 800ms ease-out;
    transition: 800ms ease-out;
  }
  footer {
    padding-right: 15px;
    padding-bottom: 10px;
  }
  .checkmarkspin {
    -webkit-animation: SpinCheck 2s infinite;
            animation: SpinCheck 2s infinite;
  }
  .restaurant_content:hover .checkmark {
    -webkit-transition: 1s;
    transition: 1s;
    right: 0;
  }
  .restaurant__child {
    background-color: white;
    border-radius: 1rem;
    position: relative;
    overflow: visible;
  }
  .restaurant__child .checkmark {
    content: '';
    color: white;
    position: absolute;
    right: -200px;
    top: 0px;
    font-size: 36px;
    padding: 13px;
    background-color: #99E2D0;
    width: 10%;
    min-height: 67%;
    -webkit-transition: right 2s;
    -webkit-transition: 2s;
    transition: 2s;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
  .entrees {
    overflow: hidden;
  }
  .maindishes {
    overflow: hidden;
  }
  .desserts {
    overflow: hidden;
  }
  .loader_style {
    margin-left: 40rem;
  }
  .entrees {
    visibility: hidden;
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
  }
  .maindishes {
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    visibility: hidden;
  }
  .desserts {
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    visibility: hidden;
  }
  #how_header {
    margin-left: 40%;
  }
  .custom-counter {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-left: 20%;
    margin-right: 20%;
  }
  .card_images {
    width: 100%;
    min-height: 20em;
  }
  .food-menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
  }
  .food-menu h1 {
    font-weight: 900;
    font-size: 29px;
    margin: 10% 33% 3% 13%;
    padding: 10px 0px 0px 0px;
    font-family: Shrikhand;
  }
  .food-menu h1::after {
    position: fixed;
    left: 70%;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f004";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: absolute;
    right: 20px;
    margin-top: 5px;
  }
  .food-menu h1:hover::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f004";
    -webkit-animation: ColorMe 1s ease-in-out infinite alternate;
            animation: ColorMe 1s ease-in-out infinite alternate;
    cursor: pointer;
  }
  .food-menu .order-button {
    margin-top: 10%;
    margin-bottom: 10%;
    font-weight: 700;
  }
  .food-menu .groups {
    margin-top: 7.5%;
    margin-bottom: 7.5%;
  }
  .food-menu .restaurant__child {
    margin-top: 5%;
  }
  .food-menu .restaurant__child .pricetags {
    left: 88%;
    font-weight: 900;
    position: -webkit-sticky;
    position: sticky;
    -webkit-transition-delay: 600ms;
            transition-delay: 600ms;
  }
  .groups {
    display: block;
    font-size: 18px;
    position: relative;
    left: 30%;
    font-weight: 400;
  }
  .groups:hover::after {
    width: 100px;
    -webkit-transition: width 1s;
    transition: width 1s;
  }
  .groups footer {
    padding-bottom: 4px;
  }
  .restaurant__child {
    background-color: #eaeaea;
    border-radius: 1rem;
    width: 25rem;
    height: 80px;
  }
  .restaurant__child h2 {
    font-size: 15px;
    padding-top: 10px;
    margin-left: 20px;
  }
  .restaurant__child p {
    font-size: 15px;
    padding-bottom: 10px;
    margin-left: 20px;
  }
  footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 50px;
  }
  footer ul li {
    margin-left: 25px;
  }
}

.groups {
  display: block;
  font-size: 18px;
  margin-left: 12%;
  font-weight: 400;
}

.groups:hover::after {
  width: 100px;
  -webkit-transition: width 1s;
  transition: width 1s;
}

.custom-counter li {
  counter-increment: step-counter;
  margin-bottom: 5px;
}

.custom-counter li:hover {
  -webkit-filter: drop-shadow(0px 5px 10px #353535);
          filter: drop-shadow(0px 5px 10px #353535);
}

.custom-counter li::before {
  content: counter(step-counter);
  margin-right: 20px;
  font-size: 80%;
  background-color: #9356DC;
  color: white;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 11px;
  position: relative;
  left: 30px;
}

.card_images {
  min-width: 20em;
  max-height: 180px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

@media only screen and (max-width: 520px) {
  .restaurant-container {
    background-color: #f6f6f6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 50px;
  }
  .restaurant-container h1 {
    margin-right: auto;
    padding-left: 1rem;
    font-size: 20px;
  }
  .restaurant_content:hover h2 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 17%;
    -webkit-transition: 800ms ease-out;
    transition: 800ms ease-out;
  }
  .restaurant_content:hover p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 17%;
    -webkit-transition: 800ms ease-out;
    transition: 800ms ease-out;
  }
  #how_header {
    margin-left: 20px;
    font-weight: bold;
  }
  .food-menu {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background-color: #f6f6f6;
    padding-bottom: 25px;
    margin-top: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .food-menu h1 {
    font-weight: 900;
    font-size: 29px;
    margin: 3% 33% 3% 0%;
    padding: 10px 0px 0px 0px;
    font-family: Shrikhand;
  }
  .food-menu h1::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f004";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: absolute;
    right: 20px;
    margin-top: 5px;
  }
  .food-menu h1:hover::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f004";
    -webkit-animation: ColorMe 1s ease-in-out infinite alternate;
            animation: ColorMe 1s ease-in-out infinite alternate;
    cursor: pointer;
  }
  #bastilleh {
    margin-right: auto;
    margin-left: 20px;
  }
  .center-image {
    position: absolute;
    top: 30px;
    opacity: 1;
    z-index: -1;
    width: 100%;
    max-height: 200px;
  }
  .restaurant__child {
    background-color: white;
    border-radius: 1rem;
    text-align: left;
    min-width: 44vh;
    position: relative;
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 5%;
    overflow: hidden;
  }
  .restaurant__child .pricetags {
    display: inline-block;
    position: absolute;
    left: 85%;
    font-weight: bold;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .restaurant__child h2 {
    padding: 0px 15px 0px 11px;
    font-size: 18px;
    margin-bottom: 0px;
  }
  .restaurant__child p {
    margin-top: 5px;
    margin-left: 3%;
    font-size: 14px;
  }
  .checkmarkspin {
    -webkit-animation: SpinCheck 2s infinite;
            animation: SpinCheck 2s infinite;
  }
  .restaurant_content:hover .checkmark {
    right: 0;
    -webkit-transition: right 1s;
    transition: right 1s;
    overflow: hidden;
    opacity: 100%;
    z-index: 2;
  }
  .restaurant_content:hover .pricetags {
    left: 75%;
    -webkit-transition: left 1s;
    transition: left 1s;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
    overflow: hidden;
    opacity: 100%;
    z-index: 2;
  }
  .groups {
    display: block;
    font-size: 18px;
    margin-left: 2%;
    font-weight: 400;
  }
  .groups:hover::after {
    width: 100px;
    -webkit-transition: width 1s;
    transition: width 1s;
  }
  .entrees {
    visibility: hidden;
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
  }
  .maindishes {
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    visibility: hidden;
  }
  .desserts {
    -webkit-animation: reveal 2s linear forwards;
            animation: reveal 2s linear forwards;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    visibility: hidden;
  }
  .order-button {
    width: 40%;
  }
  footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 0;
  }
  footer h1 {
    margin-bottom: 0;
  }
  footer li {
    margin-left: 40px;
    margin-right: 20px;
  }
  footer #footerlogo {
    margin-left: 20%;
  }
}

.restaurants_cards {
  background-color: white;
  margin: 10px 10px;
  border-radius: 1rem;
  position: relative;
}

.restaurants_cards h2::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f004";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  right: 20px;
}

.restaurants_cards h2:hover::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f004";
  -webkit-animation: ColorMe 1s ease-in-out infinite alternate;
          animation: ColorMe 1s ease-in-out infinite alternate;
  cursor: pointer;
}

.restaurants_cards h2 {
  color: black;
  font-weight: bold;
  font-size: 18px;
  margin: 5px 10px;
}

.restaurants_cards p {
  color: black;
  margin: 5px 10px;
  padding-bottom: 10px;
}

footer {
  background-color: #353535;
  width: 100%;
  padding-top: 1px;
  padding-bottom: 2px;
}

footer #footerlogo {
  max-height: 20px;
  margin-left: 40px;
}

footer ul li, footer ul a {
  list-style-type: none;
  color: white;
  margin-bottom: 5px;
}

.fa-arrow-left {
  position: absolute;
  left: 20px;
  top: 7px;
  color: black;
}

.fa-utensils {
  padding-right: 11px;
}

.fa-hands-helping {
  padding-right: 6px;
}

.stick_left {
  margin-left: 15px;
  margin-right: 15px;
  color: #7e7e7e;
}

.new_label {
  background-color: #99e2d0;
  position: absolute;
  top: 8px;
  right: 16px;
  padding: 5px 20px;
  color: #139274;
}

.groups::after {
  content: '';
  display: block;
  width: 40px;
  color: #99E2D0;
  padding: 0px;
  border-top: solid 3px;
  margin-right: 100%;
}

.location {
  background-color: #eaeaea;
  padding: 10px;
  -webkit-box-shadow: inset 0px 1.6px 3px 0px #a4aca5;
          box-shadow: inset 0px 1.6px 3px 0px #a4aca5;
  margin-top: 15px;
}

.loader {
  position: fixed;
  -webkit-animation: HideMe 3s forwards;
          animation: HideMe 3s forwards;
  top: -50%;
  left: -50%;
  font-size: 190px;
  background: -webkit-gradient(linear, left top, left bottom, from(#9356DC), to(#FF79DA));
  background: linear-gradient(to bottom, #9356DC, #FF79DA);
  margin-left: 25%;
  padding: 0;
  width: 200%;
  height: 200%;
}

.loader_style {
  color: burlywood;
  background-color: black;
  border-radius: 50%;
  padding: 10px;
  margin-left: 25%;
  margin-top: 70%;
  -webkit-animation: SpinMe 3s forwards;
          animation: SpinMe 3s forwards;
}
/*# sourceMappingURL=main.css.map */