@import url(https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css);
@import url(https://cdn-uicons.flaticon.com/uicons-bold-rounded/css/uicons-bold-rounded.css);
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.skeleton [class^=skeleton-] {
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: shine 1s ease infinite;
  border-radius: 4px;
}
.skeleton .skeleton-round-md {
  width: 80px;
  height: 80px;
  border-radius: 150px;
}
.skeleton .skeleton-round-xxl {
  width: 170px;
  height: 170px;
  border-radius: 150px;
}
.skeleton [class^=skeleton-bar] {
  height: 20px;
  margin-bottom: 5px;
}
.skeleton .skeleton-bar-80 {
  width: 80%;
}
.skeleton .skeleton-bar-20 {
  width: 20%;
}
.skeleton [class^=skeleton-btn] {
  height: 45px;
  margin-bottom: 5px;
}
.skeleton .skeleton-btn-80 {
  width: 80%;
}
.skeleton .skeleton-btn-20 {
  width: 20%;
}
.skeleton .skeleton-square-sm {
  width: 40px;
  height: 40px;
}

@keyframes shine {
  to {
    background-position: right -40px top 0;
  }
}
.custom-must-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.custom-must-checkbox.cmc__horizontal {
  flex-direction: column;
}
.custom-must-checkbox.cmc__horizontal .custom-must-checkbox__item {
  margin-bottom: 2px;
}
.custom-must-checkbox.cmc__horizontal .custom-must-checkbox__item .checkbox-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 5px 5px 15px;
}
.custom-must-checkbox.cmc__horizontal .custom-must-checkbox__item .checkbox-icon img {
  width: 35px;
  margin-right: 15px;
}
.custom-must-checkbox .custom-must-checkbox__item {
  flex: 1;
  margin: 5px;
}
.custom-must-checkbox .custom-must-checkbox__item img {
  max-height: 35px;
}
.custom-must-checkbox .custom-must-checkbox__item label.checkbox-wrapper {
  background-color: transparent !important;
  width: 100%;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-input:checked + .checkbox-tile {
  border-color: #9f128d;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #9f128d;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-input:checked + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #9f128d;
  border-color: #9f128d;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-input:checked + .checkbox-tile .checkbox-icon, .custom-must-checkbox .custom-must-checkbox__item .checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: #9f128d;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-input:focus + .checkbox-tile {
  border-color: #9f128d;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #f7b5fc;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-input:focus + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-input[disabled] + .checkbox-tile {
  background-color: #e8e5e5;
  border-color: #e8e5e5;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-input[disabled] + .checkbox-tile .checkbox-label {
  color: #9d9a9a;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /*min-height: 7rem;*/
  padding: 10px;
  border-radius: 0.5rem;
  border: 1px solid #f3d5f8;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-tile.left-tile {
  flex-direction: row;
  justify-content: flex-start;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-tile.left-tile span.checkbox-label {
  text-align: left;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-tile img {
  margin-bottom: 5px;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-tile:hover {
  border-color: #9f128d;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-icon {
  transition: 0.375s ease;
  color: #494949;
}
.custom-must-checkbox .custom-must-checkbox__item .checkbox-icon svg {
  width: 3rem;
  height: 3rem;
}
.custom-must-checkbox .custom-must-checkbox__item span.checkbox-label {
  color: var(--bs-gray-900) !important;
  transition: 0.375s ease;
  text-align: center;
  line-height: 15px;
}

.v-toast {
  /*.v-toast__item--bottom {
      margin-bottom: 72px !important;
  }*/
}
.v-toast .v-toast__item {
  margin: 4px;
}
.v-toast .v-toast__item.v-toast__item--error {
  background-color: var(--bs-red);
}
.v-toast .v-toast__item.v-toast__item--error .v-toast__text {
  color: white;
}
.v-toast .v-toast__item.v-toast__item--success {
  background-color: var(--bs-green);
}
.v-toast .v-toast__item.v-toast__item--success .v-toast__text {
  color: white;
}
.v-toast.v-toast--bottom {
  padding-bottom: 72px !important;
}

.invalid-form-group label {
  color: var(--bs-red) !important;
}
.invalid-form-group input {
  border-color: var(--bs-red) !important;
}
.invalid-form-group .invalid-feedback {
  display: block;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
  transition-delay: 0.5s;
}

.fade-enter {
  opacity: 0;
}

/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-enter-active {
  transition: all 0.3s ease;
}

.slide-fade-leave-active {
  transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter, .slide-fade-leave-to {
  transform: translatey(-10px);
  opacity: 0;
}

/*.theme-dark, .theme-dark .page-bg, .theme-dark #page {
    background: transparent;
}*/
#logo-must-burger-fixed {
  position: fixed;
  z-index: 100;
  max-width: 140px;
  right: 20px;
  top: 30px;
}
@media (max-width: 1250px) {
  #logo-must-burger-fixed {
    max-width: 120px;
  }
}
@media (max-width: 1170px) {
  #logo-must-burger-fixed {
    max-width: 90px;
  }
}
@media (max-width: 1115px) {
  #logo-must-burger-fixed {
    max-width: 70px;
  }
}
@media (max-width: 1050px) {
  #logo-must-burger-fixed {
    display: none;
  }
}

.menu-box-scroll-85vh {
  max-height: 85vh;
  overflow-y: scroll;
}

.input-style input {
  padding-left: 10px;
  padding-right: 10px;
}

body.theme-must {
  background: url("../images/main-bg.png") -250px 0px;
  background-size: 100vh;
  background-attachment: fixed;
  padding-top: 20px;
  margin: 0 auto;
  max-width: 900px;
  /**
  SLIDERS
   */
  /*.splide__arrows {
      .splide__arrow {
          svg {
              width: 2.5em;
              height: 2.5em;
          }
          &--prev {}
          &--next {}
      }
  }*/
  /**
  Detail commande
   */
  /**
   FOOTER
   */
}
@media (max-width: 592px) {
  body.theme-must {
    background-repeat: no-repeat;
    background-color: #010001;
  }
}
@media (max-width: 1000px) {
  body.theme-must {
    max-width: 800px;
  }
}
@media (max-width: 800px) {
  body.theme-must {
    max-width: 700px;
  }
}
@media (max-width: 700px) {
  body.theme-must {
    max-width: 580px;
  }
}
body.theme-must .menu,
body.theme-must #detail-commande,
body.theme-must #menu-install-pwa-android {
  margin: 0 auto;
  max-width: 900px;
}
@media (max-width: 1000px) {
  body.theme-must .menu,
body.theme-must #detail-commande,
body.theme-must #menu-install-pwa-android {
    max-width: 800px;
  }
}
@media (max-width: 800px) {
  body.theme-must .menu,
body.theme-must #detail-commande,
body.theme-must #menu-install-pwa-android {
    max-width: 700px;
  }
}
@media (max-width: 700px) {
  body.theme-must .menu,
body.theme-must #detail-commande,
body.theme-must #menu-install-pwa-android {
    max-width: 580px;
  }
}
body.theme-must .card-style {
  border-radius: 10px !important;
}
body.theme-must .input-style.input-style-active label {
  background-color: transparent;
}
body.theme-must #page {
  background: transparent !important;
  /**
  HEADER
   */
}
body.theme-must #page .header {
  background-color: transparent !important;
  height: calc(20px + env(safe-area-inset-top) * 0.8) !important;
  display: flex;
  align-items: center;
  position: initial !important;
}
body.theme-must #page .header img.logo-must {
  width: 100%;
}
body.theme-must .text-divider {
  color: white;
  margin: 0px 17px 15px 30px;
  font-size: 1.4rem;
  font-weight: 600;
}
body.theme-must #header-categories-slider-1 {
  padding-left: 18px;
  margin-bottom: 30px;
}
body.theme-must #header-categories-slider-1 .hcs-item {
  display: block;
  margin-right: 20px;
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
  padding: 8px;
}
body.theme-must #header-categories-slider-1 .hcs-item img {
  width: 45px;
  margin-top: 5px;
}
body.theme-must #header-categories-slider-1 .hcs-item .hcs-item-text {
  color: black;
  font-weight: 700;
  font-size: 0.8rem;
}
body.theme-must .splide-slider-images {
  padding-left: 18px;
  padding-right: 0 !important;
  margin-bottom: 30px;
}
body.theme-must .splide-slider-images .ssi-item {
  margin-right: 20px;
  border-radius: 10px;
  overflow: hidden;
}
body.theme-must .splide-slider-images .ssi-item img {
  width: 100%;
}
@media (max-width: 580px) {
  body.theme-must .splide-slider-images {
    padding-right: 50px !important;
  }
}
body.theme-must .menu-box__detail-produit {
  background-color: #fff !important;
  color: var(--bs-gray-900);
  position: fixed;
}
body.theme-must .menu-box__detail-produit .detail-commande-check {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}
body.theme-must .menu-box__detail-produit .detail-commande-check .icon-check {
  margin-left: -12px;
  margin-right: 0px;
  flex: auto;
}
body.theme-must .menu-box__detail-produit .detail-commande-check .icon-check label {
  padding: 0 3px 0 28px !important;
}
body.theme-must .menu-box__detail-produit .detail-commande-check .icon-check i {
  left: 21px !important;
}
body.theme-must .menu-box__detail-produit .dc__image img {
  width: 80%;
  max-width: 350px;
  margin-bottom: 25px;
}
body.theme-must .menu-box__detail-produit .dc__header {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 1px solid #ededed;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
body.theme-must .menu-box__detail-produit .dc__header .cd__title {
  margin-top: 5px;
}
body.theme-must .menu-box__detail-produit .dc__header .dc__price {
  color: var(--bs-danger);
}
body.theme-must .menu-box__detail-produit .content {
  position: initial;
}
body.theme-must .menu-box__detail-produit .content label.form-check-label {
  background-color: transparent !important;
}
body.theme-must .menu-box__detail-produit .content .icon-check label {
  cursor: pointer;
  font-size: 13px;
  padding: 0 5px 0 40px;
}
body.theme-must .menu-box__detail-produit .dc__actions {
  position: sticky;
  bottom: 0;
  padding-bottom: 15px;
  padding-top: 10px;
  border-top: 1px solid #e9e9e9;
  margin-bottom: 0;
  background-color: #fff;
}
body.theme-must .menu-box__detail-produit .dc__actions .dc__rappel_total {
  text-align: center;
}
body.theme-must #footer-bar {
  background-color: #fff;
  color: black;
}
body.theme-must #footer-bar a span {
  font-family: "Montserrat", serif !important;
}
body.theme-must #footer-bar a i {
  font-size: 24px;
}
body.theme-must #footer-bar a.router-link-exact-active i, body.theme-must #footer-bar a.router-link-exact-active span {
  color: #E9573F !important;
}
