:root {
  --body: #f9f7fd;
  --main-text-color: #6a7695;
  --second-text-color: #6a7695a3;
  --primary: #b61b7a;
  --primary-tint: #c62985;
  --secondary: #ecb521;
  --third: #f5a416;
  --card-color: #fff;
}

html,
body {
  background: var(--body);
  min-height: 100vh;
  color: var(--main-text-color);
  /* font-weight: 700; */
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}

.choices__item {
  color: #5c5c5c;
}

.text-second {
  color: var(--second-text-color) !important;
}

.choices__list {
  z-index: 100000 !important;
}

.choices {
  margin-bottom: 0 !important;
}

.choices.is-invalid {
  border: 1px solid #dc3545;
}

.btn-shop {
  padding: 1.5rem 0 1.5rem 2rem;
  color: #fff;
  text-align: left;
}

.custom-control-input {
  z-index: 1;
}

.bg-third {
  background: var(--card-color);
}

.bg-second {
  background: var(--body);
}

.shop-list {
  min-width: 350px;
  max-width: 350px;
}

.input-lg {
  min-height: 46.5px;
}

.main-logo {
  width: 220px;
}

.btn-rgb {
  background: #ffffff4d;
  color: #fff;
}

.dropdown-cart {
  z-index: 10000;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  margin-top: 1rem;
  /* margin-right: -12.25rem; */
  min-width: 92vw;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
}

.btn-rgb:hover {
  color: #fff;
  -webkit-transform: translate3d(-3px, -5px, 0);
  transform: translate3d(-3px, -5px, 0);
  -webkit-box-shadow: 2px 4px 0px 0px rgb(110 110 110 / 30%);
  -moz-box-shadow: 2px 4px 0px 0px rgb(110 110 110 / 30%);
  box-shadow: 2px 4px 0px 0px rgb(110 110 110 / 30%);
}

.jc {
  justify-content: center;
}

.ac {
  align-items: center;
}

.jb {
  justify-content: space-between;
}

.je {
  justify-content: flex-end;
}

.text-primary {
  color: var(--primary) !important;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-25 {
  opacity: 0.25;
}

.nav-categories .nav-link,
.nav-categories .nav navbar > li > a,
.nav .nav-categories navbar > li > a {
  color: #372b27;
}

.menu-items .menu-item {
  border-top: 1px dashed #ccc;
  padding-top: 1.25rem;
  min-height: 142px;
  padding-bottom: 1.25rem;
}

.menu-items .menu-item:first-child {
  border-top: 0 none;
}

.affix-menu {
  position: -webkit-sticky;
  position: sticky;
  padding-top: 87px;
  top: 160px;
}

.affix-categories,
.affix-cart {
  position: -webkit-sticky;
  position: sticky;
  padding-top: 87px;
  top: 68px;
}

.mode-recup .recup-label:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.mode-recup .recup-label:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.recup-label.active {
  background-color: #d7d2d2;
  border-color: #d1cbcb;
}

.recup-label {
  border-radius: 0.25rem;
  background-color: #efeded;
  border-color: #efeded;
}

.cart-items {
  padding: 15px 1rem;
  max-height: 42vh;
  overflow-x: auto;
  margin: 0 -1.25rem;
}

.cart-items > ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

.cart-items > ul > li {
  overflow: hidden;
  padding: 5px 0;
}

.cart-items > ul > li:not(:first-child) {
  border-top: 1px solid #e9ecef;
}

.btn-light {
  color: #29201d;
  background-color: #efeded;
  border-color: #efeded;
}

.w-7 {
  width: 2rem;
}

.h-7 {
  height: 2rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-5 {
  width: 1.2rem;
}

.h-5 {
  height: 1.2rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #1a1412;
  text-decoration: none;
  background-color: #efeded;
}

.dropdown-item:active,
.dropdown-item.active {
  color: #372b27;
  text-decoration: none;
  background-color: #d7d2d2;
}

.menu-option .option-details,
.menu-option .size-details,
.menu-size .option-details,
.menu-size .size-details {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 10px 1rem;
  background-color: rgba(239, 237, 237, 1);
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}

.menu-option .custom-control,
.menu-size .custom-control {
  margin-top: 10px;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* BUTTONS */

.btn-secondary {
  color: #ffffff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn {
  padding: 0.01rem 0.75rem;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.open .dropdown-toggle.btn-secondary {
  color: #ffffff;
  background-color: #d93e00;
  border-color: var(--third);
}

.btn-secondary:active,
.btn-secondary.active,
.open .dropdown-toggle.btn-secondary {
  background-image: none;
}

.btn-primary {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn {
  padding: 0.01rem 0.75rem;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: var(--primary-tint);
  border-color: var(--primary);
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary .badge {
  color: var(--primary);
  background-color: #ffffff;
}

/* END BUTTONS */

.choices__list--dropdown,
.choices__list[aria-expanded] {
  z-index: 1000;
}

.pointer {
  cursor: pointer;
}

/*progressbar*/
#progressbar {
  margin-bottom: 10px;
  overflow: hidden;
  color: lightgrey;
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 10px;
}

#progressbar .active {
  color: #fff;
  background: var(--secondary);
  border: 2px solid var(--secondary);
}

#progressbar .active span {
  color: var(--secondary);
}

#progressbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#progressbar li span {
  position: absolute;
  color: var(--primary);
  margin-top: -20px;
  top: 60px;
  font-size: 0.8rem;
}

/* #progressbar li svg {
    color: #fff
} */

#progressbar li {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* font-size: 12px; */
  width: 25%;
  float: left;
  position: relative;
}

/*ProgressBar before any progress*/
#progressbar li {
  width: 40px;
  height: 40px;
  font-weight: 600;
  /* background: var(--primary); */
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 2px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--primary);
}

.multiselect {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.multiselect-list {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: 0;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 20px;
  background: #fff;
  border: 1px solid #607d8b;
  transition: opacity 0.25s cubic-bezier(0, 1, 0.4, 1),
    transform 0.25s cubic-bezier(0.18, 1.25, 0.4, 1);
}

.form-control-sm .multiselect-list {
  top: 34px;
}

.multiselect-option {
  list-style: none;
  display: block;
  height: 36px;
  width: 100%;
  padding: 0 16px;
  background: #fff;
  border: none;
  outline: none;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  border-top: 1px solid #607d8b;
}

.multiselect-options-list {
  padding-left: 0;
}

.multiselect-option:hover {
  background: #f9b756;
  color: #000;
}

.focused {
  border-color: #f9b756;
}

.multiselect-input {
  cursor: pointer;
}

.multiselect-input:after {
  transform: rotate(45deg);
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  pointer-events: none;
}

.multiselect-input::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 9px);
  right: 15px;
  width: 11px;
  height: 11px;
}

.modal-content {
  position: relative;
  font-size: 1rem;
  width: 100%;
  max-width: 800px;
  border-radius: 7px;

  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: -3px 5px 0px 0px rgb(12 11 11 / 18%);
  -moz-box-shadow: -3px 5px 0px 0px rgba(12, 11, 11, 0.18);
  box-shadow: -3px 5px 0px 0px rgb(12 11 11 / 18%);
}

.btn-lg {
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: 1.25rem 2.5rem 1.25rem;
}

.btn-theme {
  font-family: "Montserrat", sans-serif;
  padding: 1rem 1rem;
  /* display: inline-block !important; */
  color: #232223;
  font-weight: normal;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1rem;
  position: relative;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
  /* border-radius: 2rem; */
  position: relative;
  /* background: #ebe117; */
}

.show > .btn-primary.btn-theme.dropdown-toggle {
  background-color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-third {
  background-color: var(--secondary);
  color: #fff;
}

.mad-link,
a,
button {
  transition: all 0.3s ease !important;
}

.btn.btn-primary:hover {
  -webkit-transform: translate3d(-1px, -3px, 0);
  transform: translate3d(-1px, -3px, 0);
  -webkit-box-shadow: 2px 4px 0px 0px rgb(235 0 41 / 30%);
  -moz-box-shadow: 2px 4px 0px 0px rgba(235, 0, 41, 0.3);
  box-shadow: 2px 4px 0px 0px rgb(235 0 41 / 30%);
}

.btn.btn-secondary:hover {
  -webkit-transform: translate3d(-3px, -5px, 0);
  transform: translate3d(-3px, -5px, 0);
  -webkit-box-shadow: 2px 4px 0px 0px rgb(110 110 110 / 30%);
  -moz-box-shadow: 2px 4px 0px 0px rgb(110 110 110 / 30%);
  box-shadow: 2px 4px 0px 0px rgb(110 110 110 / 30%);
}

.btn.btn-third:hover {
  -webkit-transform: translate3d(-1px, -3px, 0);
  transform: translate3d(-1px, -3px, 0);
  -webkit-box-shadow: 2px 4px 0px 0px rgb(34 152 83 / 30%);
  -moz-box-shadow: 2px 4px 0px 0px rgb(34 152 83 / 30%);
  box-shadow: 2px 4px 0px 0px rgb(34 152 83 / 30%);
}

/* .btn {
    font-size: 0.9375rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
} */

.btn-sm {
  font-size: 0.9375rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.btn-xs {
  font-size: 0.9375rem;
  padding: 0.1rem 0.1rem;
}

.btn-rounded {
  border-radius: 50%;
  padding: 0px;
  width: 50px;
  height: 50px;
}

.card-product:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.card-product {
  border-radius: 7px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--card-color);
}

.main-header {
  min-height: 80px;
  width: 100%;
  background: var(--secondary);
  background-position: center;
  background-size: cover;
}

.row-content {
  background: #ececec;
  border-radius: 12px;
  margin-top: -80px;
}

.form-control {
  height: 46px;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--secondary);
}

.form-control.form-control-sm {
  height: 30px;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--secondary);
}

.form-group.floated label {
  color: var(--secondary);
  font-size: 0.9em;
  font-weight: 400;
  position: absolute;
  width: 100%;
  margin-top: 0.25rem;
  margin-left: 1px;
  padding: 0 0.8rem;
  z-index: 1;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.06rem var(--secondary);
}

.filters_menu_vertical {
  padding: 0;
  list-style-type: none;
  margin: 20px 0 20px 0;
}

.filters_menu_vertical li.active > a {
  color: var(--secondary);
  text-decoration: underline;
}

.filters_menu_vertical li {
  padding: 7px 15px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 25px;
}

.category-link a {
  color: #5c5c5c;
}

.filters_menu {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 20px 0 20px 0;
}

.filters_menu li.active > a {
  color: var(--secondary);
  text-decoration: underline;
  /* color: #ffffff; */
}

.filters_menu li {
  padding: 7px 15px;
  cursor: pointer;
  border-radius: 25px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.img-box {
  background: #f1f2f3;
  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;
  height: 215px;
  border-radius: 0 0 0 45px;
  margin: -1px;
  padding: 25px;
}

@media (max-width: 576px) {
  .btn-rounded {
    width: 40px;
    height: 40px;
  }

  .text-desc {
    font-size: 12px;
  }

  .h4 {
    font-size: 1.2rem;
  }

  .main-content {
    padding-top: 130px;
    padding-bottom: 105px;
  }

  .product-summary {
    min-height: 90px;
  }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .main-content {
    padding-top: 130px;
    padding-bottom: 105px;
  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .main-content {
    padding-top: 130px;
    padding-bottom: 105px;
  }

  .product-summary {
    min-height: 150px;
  }
}

/* // Extra large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .main-content {
    padding-top: 130px;
    padding-bottom: 105px;
  }
}

@media (min-width: 1500px) {
  .container-fluid {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .main-content {
    padding-top: 130px;
    padding-bottom: 105px;
  }
}

.card-address {
  padding: 1.875rem;
  border: 2px solid var(--secondary);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  color: #575457;
  margin: 0;
  cursor: pointer;
  height: 100%;
  display: block;
}

.text-green {
  color: var(--secondary);
}

.bb-dashed {
  border-bottom: 1px dashed #eee;
}

.card-address:hover {
  background: var(--secondary);
  color: #fff;
}

.card-address:hover .address-checked {
  color: #fff !important;
}

.address-checked {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 3rem;
  height: 3rem;
}

.slot-checked {
  visibility: hidden;
  position: absolute;
  top: 5px;
  left: 25px;
  width: 2rem;
  height: 2rem;
}

.btn-set-slot.selected {
  transform: scale(1.05);
  background: var(--secondary);
  color: #fff;
}

.btn-set-slot.selected .slot-checked {
  visibility: visible !important;
  color: #fff;
}

.btn-set-slot,
.card-shipping {
  transition: 0.6s;
}

.btn-set-slot:hover {
  transform: scale(1.05);
}

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--secondary);
  transition: 0.4s !important;
}

.btn-outline-green:hover {
  transform: scale(1.01);
}

.card-shipping.selected {
  transform: scale(1.001);
  border: 2px solid var(--secondary);
}

.card-shipping.warning {
  transform: scale(1.001);
  border: 2px solid var(--primary);
}

.icon-checked {
  visibility: hidden;
  position: absolute;
  top: 7px;
  left: 9px;
  width: 2rem;
  height: 2rem;
}

.icon-warning {
  /* visibility: hidden; */
  /* position: absolute; */
  color: var(--primary);
  /* top: 7px;
    left: 9px; */
  width: 2rem;
  height: 2rem;
}

.card-shipping.selected .icon-checked {
  visibility: visible;
  color: var(--secondary);
}

.card-shipping:hover {
  transform: scale(1.001);
}

.btn-payment {
  height: 45px;
  border: 1px solid #000000;
  padding: 0.2rem;
}

.btn-payment:hover {
  background: #ccc;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar-left {
  width: 360px;
  position: fixed;
  top: 0;
  left: -360px;
  height: 100vh;
  z-index: 999;
  background: var(--body);
  color: #fff;
  transition: all 0.3s;
  overflow-y: hidden;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar-left.active {
  left: 0;
}

#sidebar-left #dismiss {
  /* width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center; */
  background: var(--primary);
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#sidebar-left #dismiss:hover {
  background: #fff;
  color: var(--primary);
}

#sidebar-left ul.components {
  padding: 20px 0;
  border-bottom: 1px solid var(--primary);
}

#sidebar-left ul p {
  color: #fff;
  padding: 10px;
}

#sidebar-left ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  /* color: #fff; */
  text-decoration: none;
}

#sidebar-left ul li a:hover {
  color: #fff;
  background: var(--secondary);
}

#sidebar-left ul li.active > a,
a[aria-expanded="true"] {
  color: #fff;
  background: var(--secondary);
}

.overlay {
  top: 0;
  left: 0;
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar-right {
  width: 360px;
  position: fixed;
  top: 0;
  right: -360px;
  height: 100vh;
  z-index: 999;
  background: #fff;
  transition: all 0.3s;
  overflow-y: hidden;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar-right.active {
  right: 0;
}

#sidebar-right #dismiss {
  /* width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center; */
  background: var(--primary);
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#sidebar-right #dismiss:hover {
  background: #fff;
  color: var(--primary);
}

#sidebar-right ul.components {
  padding: 20px 0;
  border-bottom: 1px solid var(--primary);
}

#sidebar-right ul p {
  color: #fff;
  padding: 10px;
}

#sidebar-right ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  color: #fff;
  text-decoration: none;
}

#sidebar-right ul li a:hover {
  color: #fff;
  background: var(--secondary);
}

#sidebar-right ul li.active > a,
a[aria-expanded="true"] {
  color: #fff;
  background: var(--secondary);
}

.btn-checkout {
  position: fixed;
  border-radius: 0px !important;
  bottom: -1px;
  width: 100vw;
  display: flex !important;
  padding: 1.3rem 3.8rem;
}

.loading-overlay {
  position: "absolute";
  top: 0;
  left: 0;
}

.modal-header .close {
  padding: 0.5rem 0.5rem;
  margin: 0;
}

.close {
  position: absolute;
  right: 10px;
  top: 15px;
  height: 35px;
  width: 35px;
  margin: 0;
  padding: 0;
  z-index: 1000000;
  opacity: 1;
  background-color: var(--primary) !important;
}

.category-link {
  color: #5c5c5c;
  text-decoration: none;
}

li.active .category-link {
  color: #ffffff;
}

.shipping-section .card {
  border-radius: 0px;
  /* min-height: 300px; */
}

.checkout-cart {
  max-width: 700px;
  margin: 0 auto 20px;
}

.address-actions {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 10px;
  top: 10px;
}

.alert-success {
  background-color: #28b62c !important;
  border-color: #24a428 !important;
}

.alert-danger {
  background-color: #ff4136 !important;
  border-color: #e63b31 !important;
}

.toast.show {
  z-index: 1000;
  min-width: 320px;
}

.toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.header-info {
  width: 200px;
  margin: auto;
  border: 4px solid var(--primary);
  background: var(--primary);
  overflow-x: hidden;
  padding: 0.3rem 0;
}

.target {
  font-weight: bold;
  /* white-space: nowrap; */
  margin: 0;
  color: #fbfbfb;
  /* display: inline-block; */
  position: relative;
  text-align: center;
  /* animation: 15s linear 0s infinite move; */
  /* animation-direction: reverse; */
}

@keyframes move {
  0%,
  25% {
    /* transform: translateX(-100%); */
    left: -50%;
  }

  75%,
  100% {
    /* transform: translateX(-100%); */
    left: 100%;
  }
}

@keyframes rightToLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-200px);
  }
}

/* Important part */
.modal-dialog {
  overflow-y: initial !important;
}

.modal-body {
  max-height: 63vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.label-quantity {
  position: absolute;
  color: var(--secondary);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 0.7rem;
  top: 1px;
  text-align: center;
}

.inactive .loader {
  visibility: hidden !important;
}

a.card {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
  cursor: pointer;
}

a.card svg {
  color: var(--primary);
}

a.card:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  border: 2px solid var(--primary);
}

.center-home {
  top: calc(50% + 8.1rem);
  transform: translateY(-50%);
}

.container-xs {
  max-width: 560px !important;
}

.cart-items-number {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 7px;
  right: 7px;
  height: 15px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--body);
  border-radius: 50%;
  width: 15px;
}

.btn-bottom-cart {
  width: 100%;
  position: fixed;
  bottom: 0px;
}
.btn-bottom-cart button {
  width: 100%;
  height: 4rem;
}

.extra-sell-product-img {
  max-width: 50px;
}

.extra-sell-quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ed2c7d;
  border-radius: 500px;
  height: 36px;
  color: #ffffff;
}

.extra-sell-quantity.active.minus {
  display: block;
}

.extra-sell-quantity .minus {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  cursor: pointer;
}

.extra-sell-quantity .plus {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  cursor: pointer;
}

.cart-quantity {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 30px;
  color: #ffffff;
}

.cart-quantity .minus {
  width: 25px;
  height: 25px;
  background: #ed2c7d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  cursor: pointer;
}

.cart-quantity .plus {
  width: 25px;
  height: 25px;
  background: #ed2c7d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  cursor: pointer;
}

.extra-sell-quantity .minus:hover,
.extra-sell-quantity .plus:hover {
  background: rgb(255, 255, 255, 0.4);
}

.cart-quantity .minus:hover,
.cart-quantity .plus:hover {
  background-color: var(--primary-tint);
  border-color: var(--primary);
}

.quantity-val {
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-select{
  border: 2px solid var(--secondary);
}

.dropdown-wrapper {
  border: 2px solid var(--secondary);
  width: 100%;
  border-radius: 3px;
  margin: auto;
  /* margin-top: 100px; */
}

.u-hide {
  display: none;
}

.dropdown-inner {
  border-radius: 3px;
  padding: 15px 0px;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-family: "nnReg", Helvetica, Arial, sans-serif;
}
.dropdown-inner span {
  color: grey;
  padding-left: 13px;
  cursor: pointer;
  display: block;
  position: relative;
}
.dropdown-inner span::before {
  position: absolute;
  right: 10px;
}
.dropdown-inner ul {
  box-sizing: border-box;
  list-style-type: none;
  padding-top: 10px;
  padding-left: 0px;
}
.dropdown-inner ul li {
  box-sizing: border-box;
  padding: 15px 13px 15px 53px;
  position: relative;
  line-height: 20px;
  cursor: pointer;
  color: grey;
}
.dropdown-inner ul li::before {
  content: "";
  border: var(--secondary) solid 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 13px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  cursor: pointer;
}
.dropdown-inner ul li.selected {
  background-color: snow;
}
.dropdown-inner ul li.selected::after {
  content: "";
  border: var(--secondary) solid 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18.5px;
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background-color: var(--secondary);
}
.dropdown-inner ul li:hover {
  background-color: snow;
}

.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%;
  min-height: 100%;

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shop-select .center {
  position: relative;
  top: calc(50% + 0.1rem);
  transform: translateY(-50%);
  z-index: 2;
  justify-content: center;
  text-align: center;
}

a .velo {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 165px;
  transform: translate(-45%, 70%);
}

.shop-select-nav a .pizza {
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 0;
  transform: translate(35%, 50%);
  max-width: 6.5rem;
}

.shop-select-nav {
  padding: 1rem 2rem;
  background: var(--secondary);
  align-items: center;
}

.shop-select-nav ul li a {
  padding: 1rem 2.5rem;
  color: #020203;
  letter-spacing: 0.01em;
  display: block;
  font-size: 1.6rem;
}

.tigre {
  position: absolute;
  top: 15rem;
  left: 0;
  bottom: 10rem;
  transform: rotate(35deg) translate(-30%);
  z-index: 1;
}

.citron {
  position: absolute;
  right: 2rem;
  top: 25rem;
  z-index: 1;
}

footer .social {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
}

footer .social li a {
  display: block;
  padding: 0 1.5rem;
  color: var(--secondary);
  max-width: 5.5rem;
}

footer a,
footer label {
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.2em;
  display: block;
  color: #020203;
}

footer form {
  display: flex;
}

footer form {
  display: flex;
}

footer form label {
  min-width: 14rem;
}

footer form input {
  width: 100%;
  border-bottom: 2px solid #020203;
  background: transparent;
  font-family: Archivo Black, sans-serif;
  font-size: 1.2rem;
  padding: 0.2rem 0;
  margin: -0.2rem 0 0;
}

footer form input::-moz-placeholder {
  font-weight: 400;
  font-family: Archivo Narrow, sans-serif;
  line-height: 1.2em;
  color: #020203;
}

footer form input:-ms-input-placeholder {
  font-weight: 400;
  font-family: Archivo Narrow, sans-serif;
  line-height: 1.2em;
  color: #020203;
}

footer form input::-ms-input-placeholder {
  font-weight: 400;
  font-family: Archivo Narrow, sans-serif;
  line-height: 1.2em;
  color: #020203;
}

footer form input::placeholder {
  font-weight: 400;
  font-family: Archivo Narrow, sans-serif;
  line-height: 1.2em;
  color: #020203;
}

footer form input[type="submit"] {
  display: none;
}

footer .calzone img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
  z-index: 2;
  width: 60%;
}

footer .napoli {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  z-index: 2;
}

footer {
  background: var(--secondary);
  padding: 3rem 0 6rem;
  position: relative;
  z-index: 5;
}

img.gang {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-40%, 65%);
  max-width: 85px;
}

img.pizza {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-40%, 55%);
  max-width: 165px;
}

img.smartphone {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 59%);
  max-width: 50px;
}

.buttons-shop {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .center a {
    width: 65%;
    margin: 30px auto !important;
    text-align: center;
  }

  .buttons-shop {
    display: block;
  }

  .center img {
    display: none;
  }
  .citron {
    right: 2rem;
    top: 17rem;
    z-index: 12;
    max-width: 20%;
  }

  .tigre {
    top: 13rem;
    max-width: 30%;
    display: block;
  }

  .napoli {
    max-width: 20%;
    transform: translateY(-70%);
  }

  .shop-select-nav {
    padding: 1rem 1rem;
  }

  .btn-ddl-app {
    font-size: 0.7375rem;
  }

  img.smartphone {
    display: none;
  }

  .shop-select .center {
    top: 50%;
  }
}
