/*########################*/
/*##### GOOGLE FONTS #####*/
/*########################*/
@import url(https://fonts.googleapis.com/css?family=Shrikhand);
@import url(https://fonts.googleapis.com/css?family=Roboto);
/*##################*/
/*##### COLORS #####*/
/*##################*/
.primary__button {
  background-image: -webkit-linear-gradient(to left top, #9356DC, #FF79DA);
  background-image: linear-gradient(to left top, #9356DC, #FF79DA);
  font-family: "Roboto";
  margin-top: 30px;
  margin-bottom: 25px;
  padding: 15px 45px 15px 45px;
  border-radius: 30px 30px 30px 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: #FFFFFF;
  font-size: 15px;
  border: none;
}

/*##################*/
/*##### HEADER #####*/
/*##################*/
.header {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}
.header__logo {
  width: 170px;
  height: 30px;
}

/*#############################*/
/*#############################*/
/*##### RESTAURANTS PAGES #####*/
/*#############################*/
/*#############################*/
.header {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}
.header .back-arrow {
  margin-left: -75px;
  color: #353535;
  font-size: 20px;
}

/**************************************************** Media queries ****************************************************/
/***************************** Large devices (desktop, more/equal than 1024px) *****************************/
@media all and (min-width: 1024px) {
  /*#############################*/
  /*#############################*/
  /*##### RESTAURANTS PAGES #####*/
  /*#############################*/
  /*#############################*/
  .header {
    height: 80px;
  }
  .header .back-arrow {
    margin-left: 0;
    left: 20px;
    top: 40px;
    position: absolute;
    color: #353535;
    font-size: 20px;
  }
  .header__logo {
    height: 35px;
    width: 200px;
  }
}
/*##################*/
/*##### FOOTER #####*/
/*##################*/
.footer {
  background-color: #353535;
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: 145px;
}
.footer .footer__title {
  color: white;
  font-family: "Shrikhand";
  padding-bottom: 15px;
  font-size: 18px;
}
.footer .footer__link__container {
  display: flex;
  flex-direction: column;
}
.footer .footer__first__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer .footer__second__link {
  display: flex;
  flex-direction: column;
}
.footer .footer__link {
  display: flex;
  color: white;
  font-family: "Roboto";
  font-size: 15px;
  margin: 4px;
}
.footer .footer__link .icon__container {
  display: flex;
  justify-content: flex-start;
  height: 20px;
  width: 20px;
}
.footer .footer__link .icon__container .footer__icon {
  color: white;
  font-size: 13px;
  margin-right: 10px;
  margin-top: 2px;
  --fa-rotate-angle: -45deg;
}

/**************************************************** Media queries ****************************************************/
/***************************** Large devices (desktop, more/equal than 1024px) *****************************/
@media all and (min-width: 1024px) {
  /*##################*/
  /*##### FOOTER #####*/
  /*##################*/
  .footer {
    flex-direction: row-reverse;
    height: 85px;
    padding: 0;
    bottom: 0;
  }
  .footer .footer__title {
    width: 240px;
    height: 40px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    font-size: 18px;
  }
  .footer .footer__link__container {
    flex-direction: row;
    height: 40px;
    margin-top: 30px;
    width: 600px;
    justify-content: space-between;
  }
  .footer .footer__first__link {
    flex-direction: row;
    width: 400px;
    font-weight: 500;
  }
  .footer .footer__second__link {
    flex-direction: row;
    width: 200px;
    justify-content: space-between;
  }
  .footer .footer__link {
    font-size: 16px;
  }
}
/*##################*/
/*##### LOADER #####*/
/*##################*/
.loader {
  background: linear-gradient(to left top, #9356DC, #FF79DA);
  height: 100%;
  width: 100%;
  font-size: 200%;
  font-family: "Roboto";
  -webkit-animation: display-loader both;
  animation: display-loader both;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader__base {
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
}
.loader__element {
  border-radius: 50px;
  border: 6px solid transparent;
  border-top-color: #FF79DA;
  border-bottom-color: #FF79DA;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
  /* keyframe loader rotation */
  /* keyframe loader display */
}
.loader__element::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 6px solid transparent;
  border-top-color: #9356DC;
  border-bottom-color: #9356DC;
  border-radius: 50px;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
  opacity: 0.6;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes display-loader {
  0% {
    z-index: 10;
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}
@keyframes display-loader {
  0% {
    z-index: 10;
    opacity: 1;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}

/*####################*/
/*##### LOCATION #####*/
/*####################*/
.location {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px inset;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #EAEAEA;
}
.location__icon {
  margin-right: 25px;
  font-size: 20px;
}
.location__text {
  font-family: "Roboto";
}

/*########################*/
/*##### PRESENTATION #####*/
/*########################*/
.presentation {
  background-color: #F6F6F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 20px 30px 20px;
}
.presentation h1 {
  font-family: "Roboto";
  width: 70%;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.presentation p {
  font-family: "Roboto";
  width: 100%;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
}
.presentation .link__restaurants {
  -moz-transition: box-shadow 2s, background-image 2s;
  -webkit-transition: box-shadow 2s, background-image 2s;
  transition: box-shadow 2s, background-image 2s;
}
.presentation .link__restaurants:hover {
  box-shadow: rgba(0, 0, 0, 0.34) 0px 10px 15px;
  background-image: -webkit-linear-gradient(to left top, #a16be0, #ff93e1);
  background-image: linear-gradient(to left top, #a16be0, #ff93e1);
  -moz-transition: box-shadow 2s, background-image 2s;
  -webkit-transition: box-shadow 2s, background-image 2s;
  transition: box-shadow 2s, background-image 2s;
}
.presentation .link__restaurants .link__text {
  color: white;
}

/*#######################*/
/*##### FUNCTIONING #####*/
/*#######################*/
.functioning-section {
  height: 400px;
}
.functioning-section h2 {
  font-family: "Roboto";
  margin-top: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  margin-left: 15px;
  font-size: 23px;
}
.functioning-section .functioning {
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.functioning-section .functioning__element {
  background-color: #F6F6F6;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 85%;
  border-radius: 20px;
  padding: 25px 5px 25px 5px;
  font-family: "Roboto";
  font-weight: 600;
}
.functioning-section .functioning__element .functioning__number {
  border: 2px #9356DC solid;
  background-color: #9356DC;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -17px;
}
.functioning-section .functioning__element .icon__container {
  display: flex;
  justify-content: center;
  height: 20px;
  width: 40px;
  margin-right: 10px;
  margin-left: 10px;
}
.functioning-section .functioning__element .functioning__icon {
  color: #7E7E7E;
  font-size: 18px;
}
.functioning-section .functioning__element .functioning__icon--purple {
  color: #9356DC;
}

/*#######################*/
/*##### RESTAURANTS #####*/
/*#######################*/
#restaurants {
  background-color: #F6F6F6;
  font-family: "Roboto";
  padding-top: 50px;
  padding-bottom: 70px;
}
#restaurants .restaurants__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
#restaurants h2 {
  width: 90%;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 22px;
  letter-spacing: 0.5px;
}
#restaurants .restaurant__link {
  background-color: #FFFFFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 250px;
  margin-top: 15px;
}
#restaurants .restaurant__link .restaurant__card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#restaurants .restaurant__link .restaurant__card img {
  object-fit: cover;
  height: 170px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#restaurants .restaurant__link .restaurant__card--new {
  background-color: #99E2D0;
  color: #008766;
  border-radius: 2px;
  font-family: "Roboto";
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 65%;
  width: 80px;
  height: 30px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: absolute;
  z-index: 1;
}
#restaurants .restaurant__link .restaurant__card .restaurant__description {
  display: flex;
  flex-direction: row;
  height: 70px;
}
#restaurants .restaurant__link .restaurant__card .restaurant__description--txt {
  padding-left: 10px;
  width: 80%;
  height: 100%;
}
#restaurants .restaurant__link .restaurant__card .restaurant__description--title {
  font-size: 17px;
  letter-spacing: 0.5px;
  padding-top: 15px;
  padding-bottom: 5px;
}
#restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container {
  position: relative;
  padding: 10px;
  border: 0px;
}
#restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container .heart__icon {
  position: absolute;
  opacity: 1;
  -moz-transition: opacity 1500ms;
  -webkit-transition: opacity 1500ms;
  transition: opacity 1500ms;
  font-size: 25px;
}
#restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container .heart__icon--purple {
  position: absolute;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to left top, #9356DC, #FF79DA);
  opacity: 0;
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition: opacity 500ms;
  -webkit-transition: opacity 500ms;
  transition: all 500ms;
  font-size: 25px;
}
#restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container:hover .heart__icon {
  opacity: 0;
}
#restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container:hover .heart__icon--purple {
  opacity: 1;
  transform: scale(1);
  transform-origin: bottom;
}

/*###########################*/
/*##### END RESTAURANTS #####*/
/*###########################*/
/**************************************************** Media queries ****************************************************/
/***************************** Large devices (desktop, more/equal than 1024px) *****************************/
@media all and (min-width: 1024px) {
  /*#######################*/
  /*##### FUNCTIONING #####*/
  /*#######################*/
  .functioning-section {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    height: 180px;
  }
  .functioning-section h2 {
    margin-left: 0;
  }
  .functioning-section .functioning {
    flex-direction: row;
    height: 80px;
  }
  .functioning-section .functioning__element {
    width: 30%;
  }
  /*#######################*/
  /*##### RESTAURANTS #####*/
  /*#######################*/
  #restaurants {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 10px;
    height: 600px;
  }
  #restaurants .restaurants__container {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #restaurants h2 {
    width: 100%;
    margin-left: 0;
  }
  #restaurants .restaurant__link {
    width: 45%;
  }
  #restaurants .restaurant__link .restaurant__card--new {
    margin-left: 28%;
  }
  #restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container {
    position: relative;
    padding: 10px;
    border: 0px;
  }
  #restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container .heart__icon {
    margin-left: 30px;
    position: absolute;
    opacity: 1;
    transition: opacity 1500ms;
    font-size: 25px;
    left: -10px;
  }
  #restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container .heart__icon--purple {
    position: absolute;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(to left top, #9356DC, #FF79DA);
    opacity: 0;
    transform: scale(0);
    transition: all 500ms;
    left: 20px;
    font-size: 25px;
  }
  #restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container:hover .heart__icon {
    opacity: 0;
  }
  #restaurants .restaurant__link .restaurant__card .restaurant__description .heart__container:hover .heart__icon--purple {
    opacity: 1;
    transform: scale(1);
    transform-origin: bottom;
  }
}
/*#############################*/
/*#############################*/
/*##### RESTAURANTS PAGES #####*/
/*#############################*/
/*#############################*/
.container__img {
  height: 260px;
  margin-bottom: -50px;
  position: relative;
  z-index: 1;
}
.container__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.menu {
  background-color: #F6F6F6;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding-top: 20px;
  position: relative;
  z-index: 2;
  /* keyframe progressive menu display */
  /* first element display time */
  /* second element display time */
  /* third element display time */
  /* fourth element display time */
}
.menu__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 90%;
  margin-left: 5%;
}
.menu h1 {
  font-family: "Shrikhand";
  font-weight: 500;
  font-size: 28px;
  margin-left: 10px;
}
.menu .heart__container {
  position: relative;
  padding: 10px;
  border: 0px;
}
.menu .heart__container .heart__icon {
  position: absolute;
  opacity: 1;
  transition: opacity 1500ms;
  font-size: 25px;
  right: 8px;
}
.menu .heart__container .heart__icon--purple {
  position: absolute;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to left top, #9356DC, #FF79DA);
  opacity: 0;
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition: opacity 500ms;
  -webkit-transition: opacity 500ms;
  transition: all 500ms;
  right: 8px;
  font-size: 25px;
}
.menu .heart__container:hover .heart__icon {
  opacity: 0;
}
.menu .heart__container:hover .heart__icon--purple {
  opacity: 1;
  transform: scale(1);
  transform-origin: bottom;
}
.menu__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 35px;
}
.menu__step h2 {
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 5px;
  font-weight: 100;
  max-width: 10%;
  font-family: "Roboto";
  border-bottom-style: solid;
  border-bottom-color: #99E2D0;
  margin-left: -80%;
}
.menu__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 20px;
  height: 39px;
  margin-top: 15px;
  width: 85%;
  padding: 15px;
  font-family: "Roboto";
  background-color: #FFFFFF;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px;
}
.menu__item--text {
  height: 50px;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu__item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  height: 50%;
}
.menu__item--description {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  height: 30px;
}
.menu__item--price {
  margin-top: 25px;
  margin-right: -25px;
  font-weight: 800;
  transition: all 1.2s ease-in-out;
}
.menu__item .selected {
  transform: translateX(0%);
  width: 0px;
  height: 28px;
  padding: 20px 15px 20px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 20px 20px 0;
  margin: -15px -15px 0 0;
  transition: all 0.7s ease-in-out;
}
.menu__item .selected__icon {
  opacity: 0;
  transform: translateX(0%);
  color: #99E2D0;
  border-radius: 25px;
  padding: 3px;
  background-color: white;
  transition: all 0.5s ease-in-out;
}
@keyframes progressive-display {
  0% {
    transform: translateY(60%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.menu .menu__item:nth-of-type(1) {
  animation: progressive-display 900ms ease-in-out;
}
.menu .menu__item:nth-of-type(2) {
  animation: progressive-display 1500ms ease-in-out;
}
.menu .menu__item:nth-of-type(3) {
  animation: progressive-display 2300ms ease-in-out;
}
.menu .menu__item:nth-of-type(4) {
  animation: progressive-display 3300ms ease-in-out;
}
.menu .menu__item:hover .menu__item--price {
  margin-right: 5px;
  transition: all 0.5s ease-in-out;
}
.menu .menu__item:hover .selected {
  transform: translateX(-1%);
  height: 29px;
  width: 30px;
  background-color: #99E2D0;
  padding: 20px 15px 20px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 20px 20px 0;
  margin: -15px -15px 0 0;
  transition: all 0.5s ease-in-out;
}
.menu .menu__item:hover .selected__icon {
  opacity: 1;
  color: #99E2D0;
  border-radius: 25px;
  padding: 3px;
  background-color: white;
  transition: all 0.7s ease-in-out;
  transform: translateX(-1%);
}
.menu .order__button__container {
  display: flex;
  justify-content: center;
}
.menu .order__button__container .order__button {
  -moz-transition: box-shadow 2s, background-image 2s;
  -webkit-transition: box-shadow 2s, background-image 2s;
  transition: box-shadow 2s, background-image 2s;
}
.menu .order__button__container .order__button:hover {
  box-shadow: rgba(0, 0, 0, 0.34) 0px 10px 15px;
  background-image: -webkit-linear-gradient(to left top, #a16be0, #ff93e1);
  background-image: linear-gradient(to left top, #a16be0, #ff93e1);
  -moz-transition: box-shadow 2s, background-image 2s;
  -webkit-transition: box-shadow 2s, background-image 2s;
  transition: box-shadow 2s, background-image 2s;
}

/**************************************************** Media queries ****************************************************/
/***************************** Large devices (desktop, more/equal than 1024px) *****************************/
@media all and (min-width: 1024px) {
  /*#############################*/
  /*#############################*/
  /*##### RESTAURANTS PAGES #####*/
  /*#############################*/
  /*#############################*/
  .container__img {
    height: 390px;
  }
  .container__img img {
    object-fit: fill;
    height: 100%;
    width: 100%;
  }
  .menu {
    width: 60%;
    margin-left: 20%;
    display: flex;
    align-items: center;
  }
  .menu__title {
    justify-content: center;
  }
  .menu__title .card-icon {
    margin-left: 25px;
  }
  .menu__title .heart__container {
    position: relative;
    padding: 10px;
    border: 0px;
    width: 30px;
  }
  .menu__title .heart__container .heart__icon {
    position: absolute;
    opacity: 1;
    transition: opacity 1500ms;
    font-size: 25px;
  }
  .menu__title .heart__container .heart__icon--purple {
    position: absolute;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(to left top, #9356DC, #FF79DA);
    opacity: 0;
    transform: scale(0);
    transition: all 500ms;
  }
  .menu__title .heart__container:hover .heart__icon {
    opacity: 0;
  }
  .menu__title .heart__container:hover .heart__icon--purple {
    opacity: 1;
    transform: scale(1);
    transform-origin: bottom;
  }
  .menu__step {
    width: 70%;
  }
  .menu__step h2 {
    width: 6%;
  }
}
/*###################*/
/*##### GENERAL #####*/
/*###################*/
*,
::after,
a:visited {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: black;
}

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