@import url("https://fonts.googleapis.com/css2?family=Roboto&family=Shrikhand&display=swap");
/* Fonts */
/* Colors */
/* Breakpoints */
/***** FUNCTIONS ******/
/* Return pastel color from a given HEX value color*/
/***** MIXINS *******/
/* To give border-radius the 2 corners on 1 side */
/* box shadow styles */
/* Break Points - The $breakpoints must be declared */
/* SPINNER ANIMATION */
/* Change Logo Size for Spinner animation */
@-webkit-keyframes image-grow {
  0%, 81% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes image-grow {
  0%, 81% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* Pink Spinner arc rotation*/
@-webkit-keyframes rotateSpinner1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: rotate(2turn);
            transform: rotate(2turn);
  }
  81% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes rotateSpinner1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: rotate(2turn);
            transform: rotate(2turn);
  }
  81% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

/* Violet Spinner arc rotation */
@-webkit-keyframes rotateSpinner2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: rotate(3.5turn);
            transform: rotate(3.5turn);
  }
  81% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes rotateSpinner2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: rotate(3.5turn);
            transform: rotate(3.5turn);
  }
  81% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

/* Change screen to 100vh and don't let scroll the page */
@-webkit-keyframes fullScreen {
  0%, 80% {
    min-height: 100vh;
    position: fixed;
  }
  81% {
    position: absolute;
  }
  100% {
    position: absolute;
    min-height: 0px;
  }
}
@keyframes fullScreen {
  0%, 80% {
    min-height: 100vh;
    position: fixed;
  }
  81% {
    position: absolute;
  }
  100% {
    position: absolute;
    min-height: 0px;
  }
}

/* RESTAURANT ANIMATION MENU ITEM INTRO */
@-webkit-keyframes introfade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes introfade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* General Styles */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Roboto";
}

img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

a:active {
  color: inherit;
}

li {
  list-style: none;
}

/* Do not see the color select text form buttons */
button::-moz-selection,
a::-moz-selection,
img::-moz-selection {
  background: transparent;
}
button::selection,
a::selection,
img::selection {
  background: transparent;
}

button::-moz-selection,
a::-moz-selection,
img::-moz-selection {
  background: transparent;
}

button::-moz-selection,
a::selection,
img::selection {
  background: transparent;
}

/* Button Styles Gradient and Hover Lighten */
.active-button {
  padding: 1em;
  border-radius: 2em;
  background: linear-gradient(350deg, #9356DC, #FF79DA 90%);
  color: white;
  border: none;
  margin: 1em;
  -webkit-box-shadow: 3px 6px 8px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 6px 8px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

@media screen and (min-width: 1024px) {
  .active-button {
    font-size: 1.5em;
  }
}

.active-button:hover {
  -webkit-box-shadow: 3px 6px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 6px 8px 0px rgba(0, 0, 0, 0.3);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

/* Like Button Heart */
label.like-fill-icon {
  padding: 0.5em;
  display: inline-block;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

label.like-fill-icon:hover i {
  color: #FF79DA;
}

label.like-fill-icon i {
  font-weight: 400;
  color: #7e7e7e;
  position: relative;
}

label.like-fill-icon > i::after {
  content: "\f004";
  position: absolute;
  right: 0;
  top: 0px;
  background-image: linear-gradient(330deg, #9356DC, #FF79DA 75%);
  -webkit-background-clip: text;
  background-clip: text;
  /* apply background only to text */
  -webkit-text-fill-color: transparent;
  /*transparent color only on text - Allow to see background */
  -moz-text-fill-color: transparent;
  font-weight: 900;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform 300ms ease-in;
  transition: -webkit-transform 300ms ease-in;
  transition: transform 300ms ease-in;
  transition: transform 300ms ease-in, -webkit-transform 300ms ease-in;
}

input.like-fill-icon:checked + label.like-fill-icon > i {
  color: #FF79DA;
}

input.like-fill-icon:checked + label.like-fill-icon > i::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*   General Container Layout */
.container {
  background-color: #f6f6f6;
}

.container.home {
  background: #f6f6f6;
}

/* Header */
header {
  padding: 1em;
  position: relative;
  /* To show the boxshadow*/
  -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.3);
  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;
  background-color: white;
}

header > a {
  font-size: 1.5em;
}

header .logo {
  width: 50%;
  height: 100%;
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

header .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 161px;
  width: 161px;
}

/* Header Animation Spinner */
header.spinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5em;
}

header.spinner .logo {
  background: white;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 3;
  -webkit-animation: fullScreen 3s linear;
          animation: fullScreen 3s linear;
}

header.spinner .logo div {
  position: relative;
  -webkit-animation: image-grow 3s linear;
          animation: image-grow 3s linear;
}

header.spinner .logo div::before,
header.spinner .logo div::after {
  content: "";
  position: absolute;
  border: 12px solid transparent;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 50%;
  opacity: 0;
}

header.spinner .logo div::before {
  top: -320%;
  bottom: -320%;
  left: -25%;
  right: -25%;
  border-top-color: #9356DC;
  -webkit-animation: rotateSpinner1 2500ms linear forwards;
          animation: rotateSpinner1 2500ms linear forwards;
}

header.spinner .logo div::after {
  top: -270%;
  bottom: -270%;
  left: -14%;
  right: -14%;
  border-top-color: #FF79DA;
  -webkit-animation: rotateSpinner2 2500ms linear forwards;
          animation: rotateSpinner2 2500ms linear forwards;
}

/* footer */
footer {
  padding: 0;
  background: #353535;
  text-align: left;
}

footer .footer-container {
  padding: 2em;
}

@media screen and (min-width: 1024px) {
  footer .footer-container {
    max-width: 990px;
    margin: auto;
  }
}

@media screen and (min-width: 768px) {
  footer .footer-container .logo {
    text-align: center;
    margin-bottom: 2em;
  }
}

footer a:hover {
  color: #99E2D0;
}

footer img {
  -webkit-filter: invert(1);
          filter: invert(1);
  height: 1em;
  width: auto;
}

footer nav {
  color: white;
}

footer nav ul {
  padding: 0;
}

@media screen and (min-width: 768px) {
  footer nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

footer nav a {
  color: white;
  line-height: 1.8em;
}

footer nav i {
  margin-right: 0.5em;
  width: 1em;
}

/* Introduction Call-to-action Layout */
.presentation-card {
  text-align: center;
  background: #f6f6f6;
}

@media screen and (min-width: 768px) {
  .presentation-card {
    height: 49vh;
    background: url(../images/general/backgroundBlur.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
}

@media screen and (min-width: 1024px) {
  .presentation-card {
    height: 67vh;
  }
}

.presentation-card > div {
  padding: 2em;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1024px) {
  .presentation-card > div {
    background: rgba(0, 0, 0, 0.5);
  }
}

.presentation-card h1 {
  margin: 1em 1em 0em 1em;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .presentation-card h1 {
    color: white;
  }
}

@media screen and (min-width: 1024px) {
  .presentation-card h1 {
    font-size: 3em;
  }
}

.presentation-card p {
  color: #575757;
}

@media screen and (min-width: 768px) {
  .presentation-card p {
    color: white;
  }
}

@media screen and (min-width: 1024px) {
  .presentation-card p {
    font-size: 1.5em;
  }
}

/* Restaurant Menu Page Layout */
/* Image of restaurant */
.thumbnail img {
  max-height: 265px;
}

@media screen and (min-width: 1024px) {
  .thumbnail img {
    max-height: 55vh;
  }
}

/* Restaurant menu layout */
.menu {
  padding: 1em;
  border-top-left-radius: 3em;
  border-top-right-radius: 3em;
  background: #f6f6f6;
  position: relative;
  top: -3em;
}

.menu .active-button {
  margin: 0 auto;
  display: block;
  padding: 1em 3em;
}

.menu__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .menu__title {
    margin: 0 auto;
    max-width: 700px;
  }
}

@media screen and (min-width: 1024px) {
  .menu__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.menu__title h1 {
  font-family: "Shrikhand";
}

.menu__title label {
  margin: auto 1.5em;
  font-size: 1.5em;
}

@media screen and (min-width: 768px) {
  .menu__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2em;
  }
}

.menu__body-section {
  margin-bottom: 3em;
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
  opacity: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .menu__body-section {
    margin: 1em auto;
    width: 80%;
    max-width: 500px;
  }
}

@media screen and (min-width: 1024px) {
  .menu__body-section {
    margin: 1em;
    width: 31%;
  }
}

.menu__body-section ul {
  padding: 0;
}

.menu__body-section h2 {
  font-weight: 100;
  text-transform: uppercase;
  font-size: 1.2em;
  margin: 1em;
  position: relative;
  max-width: 500px;
}

.menu__body-section h2::after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #99E2D0;
  padding-right: 2.5em;
  top: 1.4em;
  left: 0;
}

/* Add animation to menu restaurant layout (entrees, plats and desserts)*/
.menu__body-section:nth-child(1) {
  -webkit-animation: introfade 700ms ease-out forwards;
          animation: introfade 700ms ease-out forwards;
}

.menu-item:nth-child(1) {
  -webkit-animation: introfade 700ms ease-out forwards;
          animation: introfade 700ms ease-out forwards;
}

.menu__body-section:nth-child(2) {
  -webkit-animation: introfade 1000ms ease-out forwards;
          animation: introfade 1000ms ease-out forwards;
}

.menu-item:nth-child(2) {
  -webkit-animation: introfade 1000ms ease-out forwards;
          animation: introfade 1000ms ease-out forwards;
}

.menu__body-section:nth-child(3) {
  -webkit-animation: introfade 1300ms ease-out forwards;
          animation: introfade 1300ms ease-out forwards;
}

.menu-item:nth-child(3) {
  -webkit-animation: introfade 1300ms ease-out forwards;
          animation: introfade 1300ms ease-out forwards;
}

.menu__body-section:nth-child(4) {
  -webkit-animation: introfade 1600ms ease-out forwards;
          animation: introfade 1600ms ease-out forwards;
}

.menu-item:nth-child(4) {
  -webkit-animation: introfade 1600ms ease-out forwards;
          animation: introfade 1600ms ease-out forwards;
}

/* Form to add localisation function */
.geo-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em;
  background: #EAEAEA;
}

.geo-form input {
  padding: 1em;
  border: none;
  background: none;
  font-weight: bold;
  color: #575757;
  border: 2px solid transparent;
  z-index: 999;
}

.geo-form input:focus-visible, .geo-form input:focus, .geo-form input:hover {
  border-bottom: 2px solid #99E2D0;
  outline: none;
}

/* Instruction Component */
.guide-card {
  padding: 1em;
  margin: 1em auto;
  background-color: white;
}

@media screen and (min-width: 768px) {
  .guide-card {
    margin: auto;
  }
}

@media screen and (min-width: 1024px) {
  .guide-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .guide-card h2 {
    text-align: center;
  }
}

.guide-card ul {
  padding-left: 0;
  margin: 2em auto;
}

@media screen and (min-width: 768px) {
  .guide-card ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .guide-card ul li {
    margin: 1em;
  }
}

.guide-card__instruction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.5em auto;
}

.guide-card__instruction > span {
  padding: 4px 8px;
  background: #9356DC;
  border-radius: 50%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: small;
  color: white;
  margin-right: -10px;
  z-index: 2;
}

.guide-card__instruction div {
  padding: 1em;
  border-radius: 1.5em;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(126, 126, 126, 0.3);
          box-shadow: 0px 3px 9px 0px rgba(126, 126, 126, 0.3);
  width: 95%;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .guide-card__instruction div {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.guide-card__instruction div > * {
  padding: 0.5em;
}

.guide-card__instruction div i {
  color: #7e7e7e;
}

.guide-card__instruction:hover div {
  background-color: #f4ebff;
}

.guide-card__instruction:hover div i {
  color: #9356DC;
}

/* Restaurant List Element */
.restaurant-list {
  background-color: #f6f6f6;
  padding: 2em 1em 3em 1em;
  max-width: 1024px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .restaurant-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 768px) {
  .restaurant-list h2 {
    width: 100%;
  }
}

/* Restaurant Card Element */
.restaurant-card {
  background: #fff;
  border-radius: 1em;
  -webkit-box-shadow: 3px 6px 8px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 6px 8px 0px rgba(0, 0, 0, 0.15);
  margin: 1em auto;
}

.restaurant-card:hover {
  -webkit-box-shadow: 3px 6px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 768px) {
  .restaurant-card {
    width: 44%;
    margin: 3%;
  }
}

.restaurant-card--new .restaurant-card__image::after {
  content: "Nouveau";
  background: #99E2D0;
  border-radius: 0.2em;
  padding: 0.5em;
  top: 1em;
  right: 1em;
  position: absolute;
  color: #008766;
  font-weight: bold;
  font-size: small;
}

.restaurant-card__image {
  position: relative;
}

.restaurant-card__image img {
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.restaurant-card__description {
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.restaurant-card__description i {
  font-size: 1.5em;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.restaurant-card__description h3 {
  margin: 0;
  font-size: 1.2em;
}

.restaurant-card__description p {
  margin: 0.25em auto;
}

/* Menu Items Buttons */
.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
  -webkit-box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.5);
  border-radius: 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  margin: 1.5em auto;
  background: white;
  max-width: 500px;
  /* Show check icon */
  -webkit-transform: translateY(4em);
          transform: translateY(4em);
}

@media screen and (min-width: 768px) {
  .menu-item {
    width: 95%;
    min-width: 320px;
  }
}

.menu-item__titre {
  padding: 0.7em 0 0.7em 1em;
  width: 50%;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  line-height: 1.5;
}

.menu-item__titre p, .menu-item__titre h3 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-item__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.menu-item__button p {
  padding: 0 1em;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  font-weight: bold;
}

.menu-item__button div {
  background-color: #99E2D0;
  height: 100%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5em;
  max-width: 0px;
  -webkit-transition: max-width 400ms ease-in-out;
  transition: max-width 400ms ease-in-out;
}

.menu-item__button div i {
  padding: 0 1em;
}

.menu-item:hover .menu-item__button i {
  -webkit-transform: rotate(1turn);
          transform: rotate(1turn);
  /* rotate check icon */
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

.menu-item:hover .menu-item__button div {
  max-width: 150px;
  /* hide check icon */
}
/*# sourceMappingURL=style.css.map */