@charset "UTF-8";

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;
}

div.alert {
  background-color: transparent;
  padding: 1px 15px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  border: 0;
  border-left: 3px solid #fff;
  line-height: 1.3;
  border-radius: 0;
  margin-bottom: 30px;
}

div.alert ul {
  padding: 0;
  margin: 0;
}

div.alert ul li {
  padding: 0;
  list-style: none;
}

div.alert-info {
  color: #5bb2e0;
  border-color: #5bb2e0;
}

div.alert-danger {
  color: #d58683;
  border-color: #d58683;
}

div.alert-warning {
  color: #d5af83;
  border-color: #d5af83;
}

div.alert-success {
  color: #83d58d;
  border-color: #83d58d;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group label {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  color: #22232B;
  margin: 0 10px 0 0;
  font-size: 18px;
}

.form-group label.mb-30 {
  margin-bottom: 30px;
}

.form-group .h-captcha {
  text-align: center;
}

.form-group.form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-group .checkbox-group {
  display: inline-block;
}

.form-group input.form-control {
  font-size: 16px;
  border: 1px solid rgba(175, 188, 188, 0.25);
  border-radius: 0;
  padding: 7px 10px;
  color: #5C7677;
}

@media (min-width: 0) {
  .form-group input.form-control {
    font-size: calc(0.1666666667vw + 16px);
  }
}

@media (min-width: 1200px) {
  .form-group input.form-control {
    font-size: 18px;
  }
}

.form-group input::-webkit-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input::-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-ms-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.form-group input:focus {
  outline: none;
}

.form-group textarea {
  border: 1px solid rgba(175, 188, 188, 0.25);
  border-radius: 0;
  padding: 7px 10px;
}

.form-group input[type=radio]:not(:checked),
.form-group input[type=radio]:checked,
.form-group input[type=checkbox]:not(:checked),
.form-group input[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

.form-group input[type=radio]:not(:checked) + label,
.form-group input[type=radio]:checked + label,
.form-group input[type=checkbox]:not(:checked) + label,
.form-group input[type=checkbox]:checked + label {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  position: relative;
  cursor: pointer;
  padding-left: 24px;
  margin: 0;
  margin-right: 15px;
}

.form-group input[type=radio]:not(:checked) + label:before,
.form-group input[type=radio]:checked + label:before,
.form-group input[type=checkbox]:not(:checked) + label:before,
.form-group input[type=checkbox]:checked + label:before {
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  border: 1px solid #e0e0e0;
  background: 0;
  border-radius: 0;
}

.form-group input[type=radio]:not(:checked) + label:after,
.form-group input[type=radio]:checked + label:after,
.form-group input[type=checkbox]:not(:checked) + label:after,
.form-group input[type=checkbox]:checked + label:after {
  position: absolute;
  top: 4px;
  left: 0px;
  width: 14px;
  height: 14px;
  content: " ";
  transition: all 0.2s;
  border: 1px solid #7BD385;
  background: #7BD385;
  border-radius: 0;
}

.form-group input[type=radio]:not(:checked) + label:after,
.form-group input[type=checkbox]:not(:checked) + label:after {
  transform: scale(0);
  opacity: 0;
}

.form-group input[type=radio]:checked + label:after,
.form-group input[type=checkbox]:checked + label:after {
  transform: scale(1);
  opacity: 1;
}

.form-group .forgot-password {
  color: #FFA949;
  font-size: 14px;
  text-decoration: none;
}

.form-group .invalid-feedback {
  position: absolute;
  left: 0;
  line-height: 1;
  font-size: 13px;
  color: #d58683;
}

select {
  -webkit-appearance: none;
  border: 0;
  background: url("/images/icons/select.svg") center right no-repeat;
  background-size: 11px 8px;
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  color: #22232B;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  border-bottom: 2px solid #E7E7E7;
}

.ss-main {
  margin: 10px 0;
}

.ss-main .ss-single-selected {
  padding: 8px 0 12px 0;
  font-size: 16px;
  color: #22232B;
  border: 0;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  border-bottom: 2px solid #E7E7E7;
  border-radius: 0;
  height: auto;
}

.ss-main .ss-option {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #22232B;
  font-size: 16px;
  transition: 0.25s;
}

.ss-main .ss-option:hover {
  background-color: #7BD385 !important;
}

.ss-main .ss-search input {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  border: 1px solid rgba(175, 188, 188, 0.25);
  color: #7BD385;
  border-radius: 0;
  height: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.ss-main .ss-search input::-webkit-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input::-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-ms-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.ss-main .ss-search input:focus {
  outline: none;
  box-shadow: none;
}

.noUi-horizontal {
  margin: 15px 0 60px 0;
  height: 2px;
  width: calc(100% - 15px);
}

.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #FFA949;
  background: linear-gradient(#ffa949 0%, #ffc079 100%);
  box-shadow: 0px 9px 9px rgba(255, 177, 90, 0.22);
  border: 0;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
  cursor: pointer;
}

.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
  content: none;
}

.noUi-horizontal .noUi-tooltip {
  border: 0;
  border-radius: 0;
  bottom: auto;
  top: 100%;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.noUi-horizontal .noUi-tooltip:after {
  content: "\20AC";
}

.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%;
  }
}

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;
}

div.alert {
  background-color: transparent;
  padding: 1px 15px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  border: 0;
  border-left: 3px solid #fff;
  line-height: 1.3;
  border-radius: 0;
  margin-bottom: 30px;
}

div.alert ul {
  padding: 0;
  margin: 0;
}

div.alert ul li {
  padding: 0;
  list-style: none;
}

div.alert-info {
  color: #5bb2e0;
  border-color: #5bb2e0;
}

div.alert-danger {
  color: #d58683;
  border-color: #d58683;
}

div.alert-warning {
  color: #d5af83;
  border-color: #d5af83;
}

div.alert-success {
  color: #83d58d;
  border-color: #83d58d;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group label {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  color: #22232B;
  margin: 0 10px 0 0;
  font-size: 18px;
}

.form-group label.mb-30 {
  margin-bottom: 30px;
}

.form-group .h-captcha {
  text-align: center;
}

.form-group.form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-group .checkbox-group {
  display: inline-block;
}

.form-group input.form-control {
  font-size: 16px;
  border: 1px solid rgba(175, 188, 188, 0.25);
  border-radius: 0;
  padding: 7px 10px;
  color: #5C7677;
}

@media (min-width: 0) {
  .form-group input.form-control {
    font-size: calc(0.1666666667vw + 16px);
  }
}

@media (min-width: 1200px) {
  .form-group input.form-control {
    font-size: 18px;
  }
}

.form-group input::-webkit-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input::-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-ms-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.form-group input:focus {
  outline: none;
}

.form-group textarea {
  border: 1px solid rgba(175, 188, 188, 0.25);
  border-radius: 0;
  padding: 7px 10px;
}

.form-group input[type=radio]:not(:checked),
.form-group input[type=radio]:checked,
.form-group input[type=checkbox]:not(:checked),
.form-group input[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

.form-group input[type=radio]:not(:checked) + label,
.form-group input[type=radio]:checked + label,
.form-group input[type=checkbox]:not(:checked) + label,
.form-group input[type=checkbox]:checked + label {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  position: relative;
  cursor: pointer;
  padding-left: 24px;
  margin: 0;
  margin-right: 15px;
}

.form-group input[type=radio]:not(:checked) + label:before,
.form-group input[type=radio]:checked + label:before,
.form-group input[type=checkbox]:not(:checked) + label:before,
.form-group input[type=checkbox]:checked + label:before {
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  border: 1px solid #e0e0e0;
  background: 0;
  border-radius: 0;
}

.form-group input[type=radio]:not(:checked) + label:after,
.form-group input[type=radio]:checked + label:after,
.form-group input[type=checkbox]:not(:checked) + label:after,
.form-group input[type=checkbox]:checked + label:after {
  position: absolute;
  top: 4px;
  left: 0px;
  width: 14px;
  height: 14px;
  content: " ";
  transition: all 0.2s;
  border: 1px solid #7BD385;
  background: #7BD385;
  border-radius: 0;
}

.form-group input[type=radio]:not(:checked) + label:after,
.form-group input[type=checkbox]:not(:checked) + label:after {
  transform: scale(0);
  opacity: 0;
}

.form-group input[type=radio]:checked + label:after,
.form-group input[type=checkbox]:checked + label:after {
  transform: scale(1);
  opacity: 1;
}

.form-group .forgot-password {
  color: #FFA949;
  font-size: 14px;
  text-decoration: none;
}

.form-group .invalid-feedback {
  position: absolute;
  left: 0;
  line-height: 1;
  font-size: 13px;
  color: #d58683;
}

select {
  -webkit-appearance: none;
  border: 0;
  background: url("/images/icons/select.svg") center right no-repeat;
  background-size: 11px 8px;
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  color: #22232B;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  border-bottom: 2px solid #E7E7E7;
}

.ss-main {
  margin: 10px 0;
}

.ss-main .ss-single-selected {
  padding: 8px 0 12px 0;
  font-size: 16px;
  color: #22232B;
  border: 0;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  border-bottom: 2px solid #E7E7E7;
  border-radius: 0;
  height: auto;
}

.ss-main .ss-option {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #22232B;
  font-size: 16px;
  transition: 0.25s;
}

.ss-main .ss-option:hover {
  background-color: #7BD385 !important;
}

.ss-main .ss-search input {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  border: 1px solid rgba(175, 188, 188, 0.25);
  color: #7BD385;
  border-radius: 0;
  height: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.ss-main .ss-search input::-webkit-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input::-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-ms-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.ss-main .ss-search input:focus {
  outline: none;
  box-shadow: none;
}

.noUi-horizontal {
  margin: 15px 0 60px 0;
  height: 2px;
  width: calc(100% - 15px);
}

.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #FFA949;
  background: linear-gradient(#ffa949 0%, #ffc079 100%);
  box-shadow: 0px 9px 9px rgba(255, 177, 90, 0.22);
  border: 0;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
  cursor: pointer;
}

.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
  content: none;
}

.noUi-horizontal .noUi-tooltip {
  border: 0;
  border-radius: 0;
  bottom: auto;
  top: 100%;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.noUi-horizontal .noUi-tooltip:after {
  content: "\20AC";
}

.alert-main {
  margin-top: 25px;
  margin-bottom: 0 !important;
}

.order {
  padding-bottom: 60px;
}

.order h1 {
  font-size: 28px;
}

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

@media (min-width: 1200px) {
  .order h1 {
    font-size: 25px;
  }
}

.order h1,
.order h2 {
  margin-bottom: 10px;
}

.order h2,
.order h3 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
}

.order .align {
  border-bottom: 1px solid #818181;
  margin-top: 5px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .order .align {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 55px;
  }
}

.order .alert {
  margin-bottom: 15px;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .order .alert {
    margin-top: 35px;
  }
}

.order p {
  margin: 0;
}

.order p.date {
  margin-top: 15px;
  color: #818181;
}

.order p.date + .align {
  margin-top: 15px;
}

.order p.total {
  font-weight: 600;
  font-size: 17px;
  padding-top: 8px;
}

.order .address {
  margin: 35px 35px 0 0;
}

.order .address h3 {
  margin-bottom: 10px;
}

.order .address p {
  margin: 0;
  line-height: 1.1;
}

.order table.table {
  font-size: 16px;
  margin: 15px 0 0 0;
}

@media (min-width: 768px) {
  .order table.table {
    margin: 25px 0 45px 0;
  }
}

.order table.table td {
  padding: 5px 0;
  border: 0;
}

.order table.table td:nth-child(2) {
  max-width: 40vw;
}

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

.order table.table td {
  font-weight: 600;
  vertical-align: middle;
}

.order table.table td:last-child {
  text-align: right;
}

.order table.table .tbody-line td {
  padding: 0 0 15px 0;
}

.order table.table .tbody-line td:first-child {
  width: 75px;
}

@media (min-width: 768px) {
  .order table.table .tbody-line td:first-child {
    width: 90px;
  }
}

.order table.table .tbody-total {
  border-top: 1px solid #818181;
}

.order table.table .tbody-total tr:first-child td {
  padding-top: 15px;
}

.order table.table .tbody-total .total-row td {
  border-top: 20px solid white;
  color: #7BD385;
  padding: 15px;
  font-weight: 600;
  font-size: 17px;
  background: #F4FCF6;
}

@media (min-width: 768px) {
  .order table.table .tbody-total .total-row td:first-of-type {
    background: #FFF;
  }
}

section {
  padding: 50px 0 30px 0;
}

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

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

body h1 {
  margin-bottom: 0;
  text-align: center;
  font-size: 26px;
}

@media (min-width: 576px) {
  body h1 {
    font-size: calc(0.641025641vw + 22.3076923077px);
  }
}

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

body h1 + p.main {
  text-align: center;
  font-size: 16px;
  color: #5C7677;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  body .form-group {
    margin-bottom: 40px;
  }

  body .form-group.form-mb {
    margin-bottom: 10px;
  }
}

body ul.type {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 30px;
  list-style: none;
  padding: 0 0 10px 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 30px;
  padding: 0 10px;
}

body ul.type li {
  flex-shrink: 0;
}

body ul.type li:not(:last-child) {
  margin-right: 20px;
}

body ul.type li a {
  font-weight: 400;
  position: relative;
  font-size: 18px;
}

body ul.type li a.active {
  color: #7BD385;
}

body ul.type li a.active:after {
  content: "";
  display: block;
  width: calc(100% + 15px);
  height: 9px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: #ECF9EE;
  z-index: -1;
  border-radius: 20px;
}

@media (min-width: 768px) {
  body ul.them {
    overflow: hidden;
    margin-bottom: 20px;
  }

  body ul.them li:not(:last-child) {
    margin-right: 35px;
  }
}

body section.account h1 {
  text-align: left;
}

body section.account h1 + p.main {
  text-align: left;
}

body section.account .account-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-bottom: 50px;
}

body section.account .account-header img {
  border-radius: 100%;
}

body section.account .account-header #avatar-delete {
  font-size: 80%;
  color: #d58683;
  margin-bottom: 10px;
}

body section.account .account-header #avatar-update {
  position: relative;
  display: block;
}

body section.account .account-header #avatar-update:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #FFA949 url("/images/icons/more.svg") center center no-repeat;
  background-size: 15px 15px;
  border-radius: 100%;
  opacity: 0;
  transition: 0.25s;
}

body section.account .account-header #avatar-update:hover:before {
  opacity: 0.85;
}

body section.account .account-header #frm-avatar {
  display: none;
}

body section.account .account-header p {
  margin: 0;
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
}

body section.account .account-header p.name {
  font-size: 20px;
  color: #022A2C;
}

body section.account .account-header p.point {
  color: #7BD385;
  background: #F4FCF6;
  border-radius: 25px;
  padding: 2px 10px 2px 25px;
  margin-left: 19px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

body section.account .account-header p.point:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #F4FCF6;
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
}

body section.account .account-header p.point:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: white;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid #7BD385;
}

@media (min-width: 768px) {
  body section.account .account-header #avatar-update {
    margin-bottom: 10px;
  }
}

body section.account ul.filter,
body section.account ul.links {
  list-style: none;
  padding: 0 0 10px 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
}

body section.account ul.filter li a,
body section.account ul.links li a {
  font-weight: 600;
  position: relative;
  font-size: 18px;
}

@media (min-width: 576px) {
  body section.account ul.filter li a,
  body section.account ul.links li a {
    font-size: calc(-0.9615384615vw + 23.5384615385px);
  }
}

@media (min-width: 992px) {
  body section.account ul.filter li a,
  body section.account ul.links li a {
    font-size: 14px;
  }
}

body section.account ul.filter li a.active,
body section.account ul.links li a.active {
  color: #7BD385;
}

@media (max-width: 767.98px) {
  body section.account ul.links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
  }

  body section.account ul.links li {
    flex-shrink: 0;
  }

  body section.account ul.links li:not(:last-child) {
    margin-right: 20px;
  }

  body section.account ul.links li a.active:after {
    content: "";
    display: block;
    width: calc(100% + 15px);
    height: 9px;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: #ECF9EE;
    z-index: -1;
    border-radius: 20px;
  }
}

@media (min-width: 768px) {
  body section.account .wrap {
    background: #fff;
    box-shadow: 4px 4px 30px rgba(49, 49, 49, 0.1);
    padding: 20px;
  }

  body section.account ul.links {
    margin: 0 -20px;
  }

  body section.account ul.links li a {
    padding: 10px 10px;
    display: block;
    font-weight: 400;
    color: #5C7677;
  }

  body section.account ul.links li a.active {
    background: #ECF9EE;
  }

  body section.account ul.links li a.active:after {
    content: "";
    position: absolute;
    background: url("/images/icons/arrow_green.svg") center center no-repeat;
    background-size: contain;
    width: 16px;
    height: 11px;
    display: block;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (min-width: 992px) {
  body section.account .wrap {
    padding: 30px 20px;
  }

  body section.account ul.links {
    margin: 0;
  }

  body section.account ul.links li {
    margin: 10px 0;
  }

  body section.account ul.links li a {
    padding: 15px 20px;
  }

  body section.account ul.links li a.active:after {
    content: "";
    right: 20px;
  }

  body section.account .btn {
    display: inline-block !important;
  }
}

body section.account ul.addresses {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

body section.account ul.addresses li.empty a {
  display: block;
  font-size: 14px;
  color: #C8C8C8;
  text-align: center;
  padding: 20px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23C8C8C8' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

body section.account ul.addresses li.empty a:before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 10px auto;
  background: url("/images/icons/plus.svg") center center no-repeat;
  background-size: contain;
}

body section.account ul.addresses li.addresse {
  margin-bottom: 30px;
  position: relative;
  background: #fff;
  box-shadow: 4px 4px 30px rgba(49, 49, 49, 0.1);
  padding: 35px 20px 0 20px;
}

body section.account ul.addresses li.addresse a.default {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #7BD385;
  font-size: 12px;
}

body section.account ul.addresses li.addresse a.default span {
  display: none;
  vertical-align: middle;
}

body section.account ul.addresses li.addresse a.default:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background: url("/images/icons/star_empty.svg") center center no-repeat;
  background-size: contain;
}

body section.account ul.addresses li.addresse a.default.active span {
  display: inline-block;
}

body section.account ul.addresses li.addresse a.default.active:after {
  background: url("/images/icons/star_full.svg") center center no-repeat;
  background-size: contain;
}

body section.account ul.addresses li.addresse p {
  margin: 0;
  font-size: 14px;
}

body section.account ul.addresses li.addresse strong,
body section.account ul.addresses li.addresse span {
  display: block;
}

body section.account ul.addresses li.addresse ul {
  list-style: none;
}

body section.account ul.addresses li.addresse ul.bouton {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

body section.account ul.addresses li.addresse ul.bouton li {
  margin-left: 10px;
}

body section.account ul.addresses li.addresse ul.bouton a {
  width: 40px;
  height: 40px;
  border-radius: 0px 0px 5px 5px;
  background: #f4fcf6;
  display: block;
}

body section.account ul.addresses li.addresse ul.bouton a.modify {
  background: url("/images/icons/modify.svg") center center no-repeat #f4fcf6;
  background-size: 21px 21px;
}

body section.account ul.addresses li.addresse ul.bouton a.delete {
  background: url("/images/icons/delete.svg") center center no-repeat #f4fcf6;
  background-size: 21px 21px;
}

@media (min-width: 1200px) {
  body section.account ul.addresses {
    flex-direction: row;
  }

  body section.account ul.addresses > li {
    width: calc(50% - 15px);
  }

  body section.account ul.addresses > li.empty a {
    height: calc(100% - 30px);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body section.account ul.addresses > li:nth-child(2n+1) {
    margin-right: 30px;
  }
}

body section.account ul.cards {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin-bottom: 30px;
}

body section.account ul.cards li.card {
  position: relative;
  background: #fff;
  box-shadow: 4px 4px 30px rgba(49, 49, 49, 0.1);
  padding: 35px 20px 65px 20px;
  margin-bottom: 15px;
  transition: 0.25s;
  opacity: 1;
}

body section.account ul.cards li.card img {
  width: 30px;
  margin-bottom: 5px;
  margin-right: 5px;
}

body section.account ul.cards li.card p {
  margin: 0;
  font-size: 16px;
}

body section.account ul.cards li.card p small {
  display: flex;
  justify-content: space-between;
}

body section.account ul.cards li.card strong,
body section.account ul.cards li.card span {
  display: block;
}

body section.account ul.cards li.card a {
  width: 40px;
  height: 40px;
  border-radius: 0px 0px 5px 5px;
  background: #f4fcf6;
  display: block;
  position: absolute;
  bottom: 0;
  right: 15px;
}

body section.account ul.cards li.card a.delete {
  background: url("/images/icons/delete.svg") center center no-repeat #f4fcf6;
  background-size: 21px 21px;
}

@media (min-width: 768px) {
  body section.account ul.cards {
    flex-direction: row;
  }

  body section.account ul.cards > li {
    width: calc((100% / 2) - 7.5px);
  }

  body section.account ul.cards > li:not(:nth-child(2n)) {
    margin-right: 15px;
  }
}

body section.account ul.filter {
  display: flex;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}

body section.account ul.filter li {
  flex-shrink: 0;
}

body section.account ul.filter li:not(:last-child) {
  margin-right: 20px;
}

body section.account ul.filter li a.active:after {
  content: "";
  display: block;
  width: calc(100% + 15px);
  height: 9px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: #ECF9EE;
  z-index: -1;
  border-radius: 20px;
}

body section.account ul.orders {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

body section.account ul.orders li {
  margin-bottom: 30px;
  position: relative;
  background: #fff;
  box-shadow: 4px 4px 30px rgba(49, 49, 49, 0.1);
  padding: 20px;
}

body section.account ul.orders li p.nb {
  color: #BCBCBF;
  font-size: 14px;
}

body section.account ul.orders li p.nb span {
  display: block;
  color: #7BD385;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 25px;
}

body section.account ul.orders li p.descr {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  color: #22232B;
}

@media (min-width: 768px) {
  body section.account ul.orders {
    flex-direction: row;
  }

  body section.account ul.orders li {
    width: calc(50% - 30px);
  }

  body section.account ul.orders li p.nb {
    text-align: center;
  }

  body section.account ul.orders li:nth-child(2n+1) {
    margin-right: 30px;
  }
}

@media (min-width: 1200px) {
  body section.account ul.orders li {
    width: calc(100% / 2 - 15px);
    padding: 30px 20px;
  }

  body section.account ul.orders li p {
    margin: 0;
  }

  body section.account ul.orders li p.descr {
    margin: 15px 0;
    padding: 15px 0;
    position: relative;
  }

  body section.account ul.orders li p.descr:before,
  body section.account ul.orders li p.descr:after {
    content: "";
    width: 60%;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #979797;
    opacity: 0.4;
  }

  body section.account ul.orders li p.descr:before {
    top: 0;
  }

  body section.account ul.orders li p.descr:after {
    bottom: 0;
  }

  body section.account ul.orders li:nth-child(2n+1) {
    margin-right: 30px;
  }
}

