main h1 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  position: relative;
  z-index: 1;
  padding: 0;
}

@media (min-width: 0) {
  main h1 {
    font-size: calc(0.25vw + 32px);
  }
}

@media (min-width: 1200px) {
  main h1 {
    font-size: 35px;
  }
}

main h2 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 12px;
}

main .btn {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
  padding: 8px 35px;
  display: inline-block;
  border-radius: 10px;
  background: linear-gradient(#ffa949 0%, #ffc079 100%);
  box-shadow: 0px 9px 14px rgba(250, 144, 20, 0.45);
  border: 0;
  margin-top: 10px;
  font-size: 16px;
  transition: 0.25s ease-in-out;
}

@media (min-width: 0) {
  main .btn {
    font-size: calc(0.0833333333vw + 16px);
  }
}

@media (min-width: 1200px) {
  main .btn {
    font-size: 17px;
  }
}

main .btn:hover {
  color: white;
  box-shadow: 0px 6px 8px rgba(250, 144, 20, 0.45);
}

main .btn-green {
  background: #7BD385;
  box-shadow: none;
}

main .btn-green:hover {
  color: white;
  box-shadow: none;
}

main .btn.btn-sm {
  font-size: 80%;
  padding: 8px 25px;
}

ul.road {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
}

ul.road li {
  margin: 0 5px;
  text-transform: uppercase;
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
}

ul.road li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  background: url("/images/icons/arrow_right_black.svg") center center no-repeat;
  background-size: contain;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

ul.road li.active {
  color: #7BD385;
}

@media (min-width: 768px) {
  ul.road li {
    margin: 0 15px;
  }

  ul.road li:not(:last-child):after {
    margin-left: 30px;
  }
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

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

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}

.modal-dialog .modal-content {
  border: 0;
  border-radius: 0;
}

.modal-dialog .modal-content h2 {
  font-size: 24px;
  text-align: center;
}

.modal-dialog .modal-content p small {
  color: #7BD385;
  display: block;
  width: 70%;
  margin: 0 auto;
}

.modal-dialog .modal-content p span.pts,
.modal-dialog .modal-content p.pts {
  display: inline-block;
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  color: white;
  padding: 8px 25px;
  border-radius: 20px;
  background: linear-gradient(#7ed58a 0%, #bfd670 100%);
  font-size: 20px;
  margin: 10px 0 25px 0;
}

.modal-dialog .modal-content p span.pts {
  padding: 4px 8px;
  margin: 0;
}

.modal-dialog .modal-content .btn-close {
  width: 25px;
  height: 25px;
  display: block;
  background: url("/images/icons/close.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 99;
  padding: 0;
}

.modal-dialog .modal-content .modal-body {
  padding: 55px 15px 15px;
}

.modal-dialog .modal-content .form-group {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .modal-dialog .modal-content h2 {
    margin-bottom: 25px;
  }

  .modal-dialog .modal-content label {
    font-size: 17px;
    margin-top: 25px;
    margin-bottom: 5px;
  }

  .modal-dialog .modal-content .btn {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .modal-dialog:not(.modal-lg) {
    max-width: 570px;
  }

  .modal-dialog .modal-content {
    padding: 10px 60px 40px 60px;
  }
}

#saleProduct {
  text-align: left;
}

#saleProduct summary {
  text-align: left;
  font-weight: 600;
  padding: 5px 0;
}

#saleProduct .products {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

#saleProduct .products li {
  flex-shrink: 0;
  transition: 0.25s;
  position: relative;
  width: calc(50% - 15px);
  margin-right: 15px;
}

#saleProduct .products li.show {
  opacity: 1;
}

#saleProduct .products li h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
}

@media (min-width: 0) {
  #saleProduct .products li h3 {
    font-size: calc(0.0833333333vw + 15px);
  }
}

@media (min-width: 1200px) {
  #saleProduct .products li h3 {
    font-size: 16px;
  }
}

#saleProduct .products li img {
  margin-bottom: 5px;
}

#saleProduct .products li > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#saleProduct .products li .addtocart {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 24px;
  background: url("/images/icons/add-checkout-orange.svg") center center no-repeat;
  background-size: contain;
  position: relative;
  top: -2px;
}

#saleProduct .products li .reduc {
  background: #7BD385;
  color: white;
  padding: 2px 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 14px;
}

@media (min-width: 0) {
  #saleProduct .products li .reduc {
    font-size: calc(0.1666666667vw + 14px);
  }
}

@media (min-width: 1200px) {
  #saleProduct .products li .reduc {
    font-size: 16px;
  }
}

#saleProduct .products li .prix {
  color: #7BD385;
  text-align: right;
  line-height: 1.1;
  margin: 0;
}

#saleProduct .products li .prix span {
  position: relative;
  color: #8F8F93;
  font-size: 16px;
  margin-right: 0;
}

#saleProduct .products li .prix span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #8F8F93;
  transform: translateY(-50%);
  display: block;
  z-index: 2;
}

@media (min-width: 768px) {
  #saleProduct .products li {
    width: calc((100% / 3) - (45px / 3));
  }
}

@media (max-width: 991.98px) {
  #saleProduct .products {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 992px) {
  #saleProduct .products {
    display: flex;
    flex-wrap: wrap;
  }

  #saleProduct .products li {
    width: calc((100% / 4) - (45px / 3));
  }
}

@media (min-width: 1200px) {
  #saleProduct .products li img {
    width: 100%;
  }

  #saleProduct .products li .prix {
    margin: 0 0 5px 0;
  }
}

@media (min-width: 1400px) {
  #saleProduct .products li {
    margin-bottom: 30px;
  }

  #saleProduct .products li h3 {
    width: 70%;
  }
}

section {
  padding: 25px 0 65px 0;
}

@media (min-width: 768px) {
  section {
    padding: 40px 0 80px 0;
  }
}

@media (min-width: 1200px) {
  section {
    padding: 100px 0;
  }
}

@media (max-width: 767.98px) {
  .no-cart {
    margin-bottom: 50px;
  }
}

.no-cart h1 {
  margin-top: 45px;
}

.no-cart p {
  margin-bottom: 45px;
}

.item {
  margin-bottom: 15px;
}

.item > div > h2 {
  font-size: 18px;
}

@media (min-width: 576px) {
  .item > div > h2 {
    font-size: calc(0.641025641vw + 14.3076923077px);
  }
}

@media (min-width: 1200px) {
  .item > div > h2 {
    font-size: 22px;
  }
}

.item .alert {
  display: inline-block;
  border: 0;
  margin: 0 0 10px 0;
  padding: 4px 12px;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.item .alert-warning {
  background: #FFA949;
}

.item .alert-success {
  background: #7BD385;
}

.item .alert-pts {
  margin-top: 10px;
  padding-bottom: 10px;
  display: block;
  width: 100%;
  border-bottom: 2px solid #7BD385;
  background: #FFF;
  color: #7BD385;
  border-radius: 0px;
}

.item .alert-pts .btn {
  display: block;
  font-size: 14px;
  padding: 4px 12px;
  width: 60%;
  margin: 4px auto;
  box-shadow: none;
}

@media (min-width: 768px) {
  .item {
    padding-bottom: 15px;
  }

  .item .align {
    display: flex;
    align-items: center;
  }

  .item .alert {
    margin-left: auto;
  }

  .item .alert-pts .btn {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px;
    width: auto;
  }

  .item:not(:last-child) {
    border-bottom: 1px solid #818181;
  }

  .item > div:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .item {
    margin-right: 40px;
  }
}

.row-item img {
  margin-right: 15px;
}

.row-item .align {
  display: flex;
  align-items: center;
}

.row-item .align.align-bottom {
  justify-content: space-between;
  margin-top: 10px;
}

.row-item h2 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 17px;
  margin: 0;
}

.row-item p {
  margin: 0;
  color: #818181;
  font-size: 14px;
}

.row-item p.ref {
  text-transform: uppercase;
}

.row-item p.total {
  color: #7BD385;
  font-weight: 600;
  font-size: 18px;
}

.row-item .form-action {
  display: flex;
  align-items: center;
  width: 30%;
  margin-left: 85px;
}

.row-item .form-action i {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #83d58d;
  cursor: pointer;
  flex-shrink: 0;
}

.row-item .form-action i.change-qty-less {
  background: #83d58d url("/images/icons/less.svg") center center no-repeat;
  background-size: 12px;
}

.row-item .form-action i.change-qty-more {
  background: #83d58d url("/images/icons/more.svg") center center no-repeat;
  background-size: 12px;
}

.row-item .form-action input {
  border: 0;
  background: #F4FCF6;
  font-weight: 600;
  color: #7BD385;
  font-size: 16px;
  text-align: center;
  padding: 0 5px;
}

.row-item .form-action input::-webkit-outer-spin-button,
.row-item .form-action input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.row-item .form-action input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.row-item .delete-item {
  display: block;
  height: 18px;
  width: 18px;
  background: url("/images/icons/btn_delete_basket.svg") center center no-repeat;
  background-size: contain;
  margin-left: auto;
}

.row-item .label-pts {
  color: #7BD385;
  font-weight: 600;
}

.row-item .suppr {
  margin-left: 5px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .row-item {
    display: flex;
    align-items: center;
  }

  .row-item .align {
    width: 40%;
  }

  .row-item .align.align-bottom {
    width: 60%;
    margin-top: 0;
  }

  .row-item .delete-item {
    margin-left: 20px;
  }
}

@media (min-width: 1200px) {
  .row-item .align {
    width: 60%;
  }

  .row-item .align.align-bottom {
    width: 40%;
  }
}

.aside {
  margin: 25px 0 15px 0;
}

.aside table {
  font-size: 17px;
}

.aside table th,
.aside table td {
  padding: 5px 0;
  border: 0;
}

.aside table th {
  font-weight: 400;
  color: #818181;
  font-size: 16px;
}

.aside table td {
  text-align: right;
  font-weight: 600;
}

.aside table .total-row {
  background: #F4FCF6;
}

.aside table .total-row th,
.aside table .total-row td {
  border-top: 20px solid white;
  color: #7BD385;
  padding: 15px;
  font-weight: 600;
  font-size: 17px;
}

.aside table.loyalty-table {
  background: #F4FCF6;
  position: relative;
  padding: 15px 0;
}

.aside table.loyalty-table th,
.aside table.loyalty-table td {
  font-size: 15px;
  width: 100%;
  padding: 5px 10px;
}

@media (min-width: 992px) {
  .aside table.loyalty-table {
    display: block;
    padding: 35px 0 15px 0;
    margin: -15px -15px 15px -15px;
    width: calc(100% + 30px);
  }

  .aside table.loyalty-table th,
  .aside table.loyalty-table td {
    padding-right: 15px;
    padding-left: 15px;
  }

  .aside table.loyalty-table:before {
    content: "";
    width: 55px;
    height: 55px;
    display: block;
    margin: 0 auto;
    background: url("/images/icons/loyalty.svg") center center no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
  }
}

@media (min-width: 1200px) {
  .aside table.loyalty-table {
    margin: -30px -30px 15px -30px;
    width: calc(100% + 60px);
  }

  .aside table.loyalty-table th,
  .aside table.loyalty-table td {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.aside .discount {
  display: none;
  margin-top: 15px;
}

.aside .discount input {
  width: calc(100% - 45px);
  margin-right: 10px;
  border-radius: 0;
  padding: 5px 0.75rem;
  color: #818181;
}

.aside .discount button {
  display: block;
  margin: 0;
  padding: 0;
  width: 35px;
  height: 35px;
  background: url("/images/icons/arrow-white.svg") center center no-repeat, linear-gradient(#ffa949 0%, #ffc079 100%);
  background-size: 20px 20px;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .aside {
    margin-top: 0;
    padding: 15px;
    box-shadow: 4px 4px 30px rgba(49, 49, 49, 0.1);
  }

  .aside table {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .aside {
    padding: 30px;
  }
}

.caption-buttons {
  margin-top: 40px;
}

.caption-buttons .btn,
.caption-buttons .btn-continue {
  display: block;
  width: 100%;
}

.caption-buttons .btn-continue {
  text-align: center;
  margin-top: 25px;
  font-size: 16px;
}

