html {
  /*disable selection*/
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /*disable right click*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
  overflow-y: scroll;
}

nav {
  background-color: #FF7900 !important;
}

.menu-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#bloc-carte {
  font-family: 'Roboto';
}

.ligne-article {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.bloc-formule,
.bloc-article-option,
.bloc-article {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  cursor: pointer;
  font-family: 'Montserrat';
  position: relative;
}

.bloc-formule:active,
.bloc-article:active,
.bloc-article-option:active {
  filter: saturate(50%) brightness(90%);
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.notify-badge {
  position: absolute;
  top: 2px;
  right: 10px;
  background: red;
  text-align: center;
  border-radius: 30px 30px 30px 30px;
  color: white;
  padding: 5px 10px;
  font-size: 0.6em;
}

#svg-panier {
  scale: 1.5;
  color: black;
}

#btns-categories {
  font-family: 'Roboto';
}

.font-acceuil,
.modal-content {
  font-family: 'Montserrat';
}

@keyframes shine {
  0% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: rotate(180deg) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: rotate(360deg) scale(1);
  }
}

#icone-couverts {
  animation: shine 3s infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

#bloc-logo-panier {
  animation: pulsate 3s infinite;
}

@keyframes shimmer {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
}

#instruction {
  width: 90%;
  animation: shimmer 3s infinite;
}

.prix-option {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

#icone-question {
  position: fixed;
  bottom: 50px;
  left: 20px;
  z-index: 100 !important;
  height: 60px;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
}