﻿html {
  font-size: 14px;
}

body h1,
body h2,
body h3 {
  font-weight: bold;
}
body input[type=text],
body input[type=number],
body input[type=tel],
body input[type=password],
body input[type=email],
body select {
  padding: 1rem;
  border-radius: 5px;
  width: 100%;
  outline: transparent;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  height: 48px;
}
body input[type=text]:focus,
body input[type=number]:focus,
body input[type=tel]:focus,
body input[type=password]:focus,
body input[type=email]:focus,
body select:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}
body input[type=text][readonly=readonly],
body input[type=number][readonly=readonly],
body input[type=tel][readonly=readonly],
body input[type=password][readonly=readonly],
body input[type=email][readonly=readonly],
body select[readonly=readonly] {
  pointer-events: none;
}
body select {
  padding-left: 0.675rem;
}
body del {
  color: #999;
}
body .input-group {
  position: relative;
  width: 100%;
}
body .input-group input,
body .input-group select {
  border-radius: 5px;
  border: 1px solid #DDD;
  width: 100%;
}
body .input-group label {
  position: absolute;
  top: 20%;
  left: 1rem;
  font-size: 0.75rem;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  color: #333;
}
body .input-group.populated label {
  opacity: 1;
  top: 0.45rem;
  visibility: visible;
}
body .input-group.populated input,
body .input-group.populated select {
  padding-bottom: 0.15rem;
}
body .input-group.error {
  border-color: salmon;
}
body .input-group.error input,
body .input-group.error select {
  background-color: rgba(250, 128, 114, 0.5);
}
body .input-group.error input:focus,
body .input-group.error select:focus {
  box-shadow: 0 0 0 2px rgba(250, 128, 114, 0.5);
}
body .input-group.error small {
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  font-size: 0.675rem;
  color: red;
}
body .input-group.listsingle label {
  opacity: 1;
  top: 0.45rem;
  visibility: visible;
}
body .btn {
  padding: 0.5rem 1rem;
  background-color: black;
  color: white;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  position: relative;
  border: 1px solid transparent;
}
body .btn.btn-outline {
  background-color: transparent;
  border-color: black;
  color: black;
}
body .btn.finish {
  background-color: #28a745;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.05rem;
}
body .btn:hover {
  opacity: 0.8;
}
body .input-radio {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
}
body .icon {
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid black;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.675rem;
  position: relative;
  cursor: pointer;
}
body .icon small {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  height: 0;
  position: absolute;
  background-color: black;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: white;
  font-weight: normal;
  width: 0px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  top: -80px;
  scale: 0.5;
  height: 120px;
  width: 130px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
body .icon small::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: black transparent transparent;
  border-width: 5px 5px 0 5px;
}
body .icon:hover small {
  opacity: 1;
  visibility: visible;
  scale: 1;
  top: -130px;
}
body .hint {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  position: relative;
  border: 1px solid #EEE;
  border-radius: 2px;
  padding: 0 0.25rem;
  cursor: pointer;
}
body .hint .more-info {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  position: absolute;
  background-color: #333;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: white;
  font-weight: normal;
  width: 0px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  bottom: 0;
  scale: 0.5;
  min-width: 130px;
  max-width: 300px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  transform: scale(0);
  z-index: 1;
}
body .hint .more-info::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: #333 transparent transparent;
  border-width: 5px 5px 0 5px;
}
body .hint:hover .more-info {
  opacity: 1;
  visibility: visible;
  scale: 1;
  bottom: 1.5rem;
  transform: scale(1);
}
body .box, body #onepage #checkout .delivery-address-options .options > li,
body #onepage #checkout .delivery-options .options > li,
body #onepage #checkout .payment-options .options > li {
  border: 1px solid #DDD;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
body .box .option, body #onepage #checkout .delivery-address-options .options > li .option,
body #onepage #checkout .delivery-options .options > li .option,
body #onepage #checkout .payment-options .options > li .option {
  cursor: pointer;
}
body .box.selected, body #onepage #checkout .delivery-address-options .options > li.selected,
body #onepage #checkout .delivery-options .options > li.selected,
body #onepage #checkout .payment-options .options > li.selected {
  border-color: black;
  background-color: #FAFAFA;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
body .box.selected .form, body #onepage #checkout .delivery-address-options .options > li.selected .form,
body #onepage #checkout .delivery-options .options > li.selected .form,
body #onepage #checkout .payment-options .options > li.selected .form {
  display: flex;
}
body .box:hover, body #onepage #checkout .delivery-address-options .options > li:hover,
body #onepage #checkout .delivery-options .options > li:hover,
body #onepage #checkout .payment-options .options > li:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
body .discount {
  background-color: #28a745;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  font-style: normal;
}
body .text-gray-500 {
  color: #999;
}
body #onepage {
  height: 100vh;
}
body #onepage.empty #main {
  grid-column: 1/3;
  justify-content: center;
}
body #onepage[data-step=customer] {
  height: 100%;
}
body #onepage #main > .wp {
  padding: 1.5rem;
  max-width: 750px;
  width: 100%;
}
body #onepage #main > .wp > header {
  background-color: white;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #DDD;
  padding: 1rem 0;
  box-shadow: 0 15px 20px -20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
body #onepage #main h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
body #onepage #basket .columns > li.product,
body #onepage #basket .products > li.product {
  flex: 1;
}
body #onepage #basket .columns > li.quantity,
body #onepage #basket .products > li.quantity {
  width: 70px;
  text-align: center;
}
body #onepage #basket .columns > li.price,
body #onepage #basket .products > li.price {
  width: 100px;
}
body #onepage #basket .columns > li.price del,
body #onepage #basket .products > li.price del {
  font-size: 0.675rem;
  color: #999;
}
body #onepage #basket .columns > li.subtotal,
body #onepage #basket .products > li.subtotal {
  width: 80px;
}
body #onepage #basket .columns > li.subtotal del,
body #onepage #basket .products > li.subtotal del {
  font-size: 0.675rem;
  color: #999;
}
body #onepage #basket .columns > li.subtotal,
body #onepage #basket .products > li.subtotal {
  text-align: right;
}
body #onepage #basket .columns > li.actions,
body #onepage #basket .products > li.actions {
  width: 20px;
}
body #onepage #basket .products .quantity {
  border: 1px solid #EEE;
  padding: 0.5rem;
}
body #onepage #basket .products .quantity > div {
  justify-content: center;
}
body #onepage #basket .items .wp-product:not(:last-child) {
  border-bottom: 1px solid #EEE;
}
body #onepage #basket .items .products .image img {
  width: 80px;
  max-width: 120px;
}
body #onepage #basket .items .products .nested .image img {
  max-height: 30px;
  width: auto;
}
body #onepage #basket .items .products.additionals .quantity {
  border: none;
}
body #onepage[data-step=newCustomer] .customer-data {
  border: 1px solid #232323;
  border-bottom: 1px solid #232323 !important;
}
body #onepage[data-step=newCustomer] .customer-data .header {
  box-shadow: none;
  background-color: #f1f1f1;
  text-align: center;
  padding: 0.5rem;
  font-weight: 600;
}
body #onepage[data-step=newCustomer] .customer-data h3 {
  background-color: #f1f1f1;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
}
body #onepage[data-step=newCustomer] .customer-data form {
  padding: 0 1.5rem;
}
body #onepage #checkout .social-login a.btn-facebook {
  background-color: #3b5998;
}
body #onepage #checkout .social-login a.btn-google {
  padding: 0;
  background-color: transparent;
}
body #onepage #checkout .social-login .or {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
body #onepage #checkout .social-login .or::before, body #onepage #checkout .social-login .or::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid #EEE;
  height: 1px;
  width: unset;
}
body #onepage #checkout .social-login .or small {
  padding-left: 1rem;
  padding-right: 1rem;
}
body #onepage #checkout .identify {
  border: 1px solid #232323;
}
body #onepage #checkout .identify .header {
  box-shadow: none;
  background-color: #f1f1f1;
  text-align: center;
  padding: 0.5rem;
  font-weight: 600;
}
body #onepage #checkout .identify h3 {
  padding: 0 1.5rem;
}
body #onepage #checkout .identify form {
  padding: 0 1.5rem;
}
body #onepage #checkout .identify .footer {
  padding: 0 1.5rem 1rem;
}
body #onepage #checkout .identify .footer span {
  font-style: italic;
}
body #onepage #checkout .identify .footer small {
  font-weight: 600;
  font-size: 12px;
  color: rgb(74, 174, 81);
}
body #onepage #checkout .identify .footer small svg {
  fill: rgb(74, 174, 81);
}
body #onepage #checkout .delivery-address-data,
body #onepage #checkout .customer-data,
body #onepage #checkout .delivery-data,
body #onepage #checkout .payment-data {
  border-bottom: 1px solid #EEE;
  padding-bottom: 1rem;
}
body #onepage #checkout .delivery-address-data .form,
body #onepage #checkout .customer-data .form,
body #onepage #checkout .delivery-data .form,
body #onepage #checkout .payment-data .form {
  transition: all 0.2s ease-in-out;
}
body #onepage #checkout .delivery-address-data .content,
body #onepage #checkout .customer-data .content,
body #onepage #checkout .delivery-data .content,
body #onepage #checkout .payment-data .content {
  transition: all 0.2s ease-in-out;
}
body #onepage #checkout .delivery-address-data .content ul,
body #onepage #checkout .customer-data .content ul,
body #onepage #checkout .delivery-data .content ul,
body #onepage #checkout .payment-data .content ul {
  display: flex;
  flex-direction: column;
}
body #onepage #checkout .delivery-address-data .content ul li,
body #onepage #checkout .customer-data .content ul li,
body #onepage #checkout .delivery-data .content ul li,
body #onepage #checkout .payment-data .content ul li {
  line-height: 120%;
}
body #onepage #checkout .delivery-address-data.opened .form,
body #onepage #checkout .customer-data.opened .form,
body #onepage #checkout .delivery-data.opened .form,
body #onepage #checkout .payment-data.opened .form {
  display: flex;
}
body #onepage #checkout .delivery-address-data.opened .content,
body #onepage #checkout .customer-data.opened .content,
body #onepage #checkout .delivery-data.opened .content,
body #onepage #checkout .payment-data.opened .content {
  display: none;
}
body #onepage #checkout .delivery-data .find-postal-code {
  transform: translate(-0.5rem, -50%);
  top: 50%;
}
body #onepage #checkout .delivery-data .btn-pick-up {
  white-space: nowrap;
}
body #onepage #checkout .delivery-address-options .form,
body #onepage #checkout .delivery-options .form,
body #onepage #checkout .payment-options .form {
  padding: 1rem 0 0;
}
body #onepage #checkout .payment-options .option img {
  max-width: 30px;
}
body #onepage #checkout .payment-options .option input[type=radio]:checked + img {
  filter: grayscale(0);
}
body #onepage #checkout .payment-options .option .group-item {
  cursor: pointer;
}
body #onepage #checkout .payment-options .option .group-title {
  text-transform: lowercase;
}
body #onepage #checkout .payment-options .option .group-title::first-letter {
  text-transform: uppercase;
}
body #onepage #checkout .payment-options .credit-card-form .input-card .card-flags {
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  flex-direction: column;
}
body #onepage #checkout .payment-options .credit-card-form .input-card .card-flags li {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}
body #onepage #checkout .payment-options .credit-card-form .input-card .card-flags li.selected {
  opacity: 1;
  visibility: visible;
}
body #onepage #checkout .payment-data {
  border-bottom: none;
  padding-bottom: 0;
}
body #onepage #summary {
  background-color: white;
}
body #onepage #order-summary {
  background-color: #f7f7f7;
  max-width: 550px;
  width: 100%;
  top: 4rem;
}
body #onepage #order-summary h1 {
  font-size: 1rem;
}
body #onepage #order-summary .wp {
  top: 4rem;
}
body #onepage #order-summary .basket .image img {
  max-width: 50px;
  border: 1px solid #DDD;
}
body #onepage #order-summary .basket .image em {
  width: 1rem;
  height: 1rem;
  background-color: black;
  color: white;
  font-size: 0.675rem;
  font-style: normal;
  top: -0.5rem;
  right: -0.51rem;
}
body #onepage #order-summary .summary > li {
  border-bottom: 1px solid #EEE;
}
body #onepage #order-summary .summary > li.total {
  border-bottom: none;
}
body #onepage #order-summary .show-all {
  position: absolute;
  left: 50%;
  top: 0rem;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
body #onepage #order-summary .basket > ul > li:not(:last-child) {
  border-bottom: 1px solid #EEE;
  padding-bottom: 1rem;
}
body #onepage #sales-representative .result {
  padding: 0.5rem;
  border-radius: 0.5rem;
  min-height: 40px;
}
body #onepage #sales-representative .result img {
  max-width: 30px;
  border-radius: 50%;
}
body #onepage #sales-representative .result.limit {
  max-height: 200px;
  overflow: auto;
}
body #onepage #sales-representative .result.limit::-webkit-scrollbar {
  width: 5px;
}
body #onepage #sales-representative .result.limit::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 8px;
}
body #onepage #sales-representative .result.limit::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
  height: 40px;
}
body #onepage #sales-representative .result.populated {
  background-color: white;
}
body #onepage .logo img {
  max-height: 4rem;
}
body #onepage .show-more-options {
  position: relative;
}
body #onepage .show-more-options .more-options {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  position: absolute;
  background-color: black;
  color: white;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  top: -40px;
  right: 50%;
  border-radius: 5px;
  transform: translate(50%, 0);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
body #onepage .show-more-options .more-options ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body #onepage .show-more-options .more-options::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: black transparent transparent;
  border-width: 5px 5px 0 5px;
}
body #onepage .show-more-options .more-options.show {
  opacity: 1;
  visibility: visible;
  top: -80px;
}
body #backdrop {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 4;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: fixed;
}
body .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  background-color: white;
  z-index: 5;
  border-radius: 5px;
  padding: 1rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  width: 90vw;
  max-width: 600px;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body .modal header strong {
  font-size: 1.15rem;
}
body .modal .modal-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body .modal .body .actions {
  padding-top: 1rem;
}
body .modal.show {
  opacity: 1;
  visibility: visible;
}
body.blocked #backdrop {
  opacity: 1;
  visibility: visible;
}
body.loading::after {
  content: "";
  position: fixed;
  z-index: 6;
  top: 50%;
  left: 50%;
  margin-left: calc(-48px / 2);
  margin-top: calc(-48px / 2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #999;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
body.loading::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 7;
}
body .loading {
  opacity: 0.5;
}
body .loading::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  margin-left: calc(-24px / 2);
  margin-top: calc(-24px / 2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #999;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
body .loading::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 7;
}
body .loading-into::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  margin-left: calc(-24px / 2);
  margin-top: calc(-24px / 2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #999;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
body .loading-into::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 7;
}
body .loading-into::before {
  display: none;
}
body .message {
  border: 1px solid orange;
  background-color: rgba(255, 165, 0, 0.5);
  border-radius: 5px;
  font-size: 0.875rem;
}
body .message.alert {
  border-color: salmon;
  background-color: rgba(250, 128, 114, 0.5);
}
body .message.information {
  border-color: cornflowerblue;
  background-color: rgba(100, 149, 237, 0.5);
}
body .message.success {
  border-color: #a3cfbb;
  background-color: #d1e7dd;
}
body #bg-success {
  background-color: green;
  scale: 1;
  width: 0px;
  height: 0px;
  transition: all 1s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: 5;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  border-radius: 100%;
}
body.success #bg-success {
  width: 3000px;
  height: 3000px;
  opacity: 1;
  visibility: visible;
  scale: 1;
  z-index: 8;
}
body.success.order-generated #order {
  opacity: 1;
  visibility: visible;
}
body #order {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  width: 90vw;
  max-width: 700px;
  z-index: 9;
  max-height: 90vh;
  overflow: hidden;
}
body #order header {
  font-size: 1.5rem;
  text-align: center;
  line-height: 120%;
}
body #order .body {
  overflow: auto;
}
body #order .body::-webkit-scrollbar {
  width: 5px;
}
body #order .body::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 8px;
}
body #order .body::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
  height: 40px;
}
body #order #order-summary {
  background-color: white;
  max-width: inherit;
}
body.show-checkout #checkout-wrapper {
  height: auto;
}
body.show-checkout #basket {
  display: none;
}
body.show-checkout #checkout-wrapper {
  display: flex;
}
body.show-checkout #order-summary .basket {
  display: flex;
}
body #notification {
  position: fixed;
  bottom: 20px;
  right: -200px;
  background: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 9999;
}
body #notification.show {
  opacity: 1;
  right: 1rem;
}
body .index {
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: black;
  border-radius: 50%;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: 0.675rem;
}
body .fade-enter-active,
body .fade-leave-active {
  transition: opacity 0.3s ease;
}
body .fade-enter,
body .fade-leave-to {
  opacity: 0;
}
body.options-grouped ul.options:not([data-length="1"]) {
  gap: 0;
}
body.options-grouped ul.options:not([data-length="1"]) > li {
  border-radius: 0 !important;
  border-bottom: none !important;
}
body.options-grouped ul.options:not([data-length="1"]) > li:first-child {
  border-radius: 0.5rem 0.5rem 0 0 !important;
  border-top: 1px solid #DDD !important;
  border-bottom: none !important;
}
body.options-grouped ul.options:not([data-length="1"]) > li:last-child {
  border-radius: 0 0 0.5rem 0.5rem !important;
  border-bottom: 1px solid #DDD !important;
}
body.options-grouped ul.options:not([data-length="1"]) > li.selected {
  border: 1px solid black !important;
}
body.options-grouped #onepage #sales-representative .result {
  padding: 0;
}
body .no-image {
  display: none;
}
body .shake {
  animation: shake 0.3s;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
  height: 40px;
}

@media screen and (max-width: 1023px) {
  body #onepage {
    padding-bottom: 150px;
  }
  body #onepage #checkout .delivery-address-data.opened .content,
  body #onepage #checkout .delivery-data.opened .content {
    display: flex;
  }
  body #onepage #checkout #finish {
    display: none;
  }
  body #onepage #summary {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  body #onepage #summary header,
  body #onepage #summary .basket,
  body #onepage #summary .summary {
    display: none;
  }
  body #onepage #summary #order-summary.opened header,
  body #onepage #summary #order-summary.opened .basket,
  body #onepage #summary #order-summary.opened .summary {
    display: flex;
  }
  body #onepage #summary #order-summary.opened .show-all {
    transform: translateX(-50%) rotate(-180deg);
  }
}
@media screen and (min-width: 1024px) {
  body #onepage {
    display: grid;
    grid-template-columns: 1fr 45%;
  }
  body #onepage #footer {
    grid-column: 1/3;
  }
  body #checkout-wrapper #main {
    padding: 1.5rem 4rem;
  }
  body #checkout-wrapper #summary {
    padding: 4rem;
  }
  body #checkout-wrapper #order .body {
    padding: 0 1rem;
  }
}
@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    transform: scale(1.2);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: scale(1);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-bottom: none;
  position: relative;
  background-color: white;
  grid-column: 1/3;
}
.header > div {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

.products.dashed {
  max-width: 1380px;
  margin: 0 auto;
  padding: 2rem 1rem;
  grid-column: 1/3;
  background-color: #F1F1F1;
  width: -webkit-fill-available;
}
.products.dashed .upsell-remover {
  justify-content: flex-end;
  max-width: 1380px;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}
.products.dashed .swiper-slide .product-line {
  border: 2px dashed #232323;
}
.products.dashed .swiper-slide .product-line .link-product {
  padding: 20px 19px 15px;
  display: grid;
  grid-template-columns: 80px auto;
  column-gap: 12px;
  background-color: white;
}
.products.dashed .swiper-slide .product-line img {
  position: relative;
  top: 0;
  transition: top 0.2s ease-in-out;
}
.products.dashed .swiper-slide .product-line h3 {
  order: 1;
  line-height: 18px;
  min-height: 36px;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 8px;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products.dashed .swiper-slide .product-line .medias figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products.dashed .swiper-slide .product-line .medias picture {
  max-width: 100%;
}
.products.dashed .swiper-slide .product-line .medias picture img {
  display: table;
  margin: 0 auto;
}
.products.dashed .swiper-slide .product-line .medias .info .add-to-cart {
  background-image: url("/Custom/Content/Themes/Clean/Svg/add-to-cart.svg");
  font-size: 0;
  width: 56px;
  height: 29px;
  display: flex;
}
.products.dashed .swiper-slide .product-line .medias .add-to-wishlist {
  position: absolute;
  right: 0;
  z-index: 1;
}
.products.dashed .swiper-slide .product-line .medias .flags {
  position: absolute;
  bottom: 0;
  left: 0;
}
.products.dashed .swiper-slide .product-line .medias .flags .flag {
  background-color: #dad7d7;
  font-size: 10px;
  line-height: 14px;
  padding: 3px 7px;
}
.products.dashed .swiper-slide .product-line .medias .flags .flag.novidades {
  display: none;
}
.products.dashed .swiper-slide .product-line .medias .flags.top {
  top: 0;
  left: 0;
}
.products.dashed .swiper-slide .product-line .medias .flags.top .flag.novidades {
  display: block;
  position: absolute;
  background-color: rgb(35, 35, 35);
  color: white;
  top: 0;
  left: 0;
}
.products.dashed .swiper-slide .product-line .variations {
  display: none;
}
.products.dashed .swiper-slide .product-line .variations .variation {
  display: none;
}
.products.dashed .swiper-slide .product-line .variations .variation[data-index="1"] {
  display: flex;
}
.products.dashed .swiper-slide .product-line .variations .variation .title {
  display: none;
}
.products.dashed .swiper-slide .product-line .variations .variation[data-label=Tamanho] {
  display: none;
}
.products.dashed .swiper-slide .product-line .variations .options {
  justify-content: center;
}
.products.dashed .swiper-slide .product-line .variations .options li {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
}
.products.dashed .swiper-slide .product-line .variations .options li button {
  text-indent: -9999px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 0;
  font-size: 0;
}
.products.dashed .swiper-slide .product-line .variations .options li.selected {
  font-weight: bold;
  opacity: 1;
}
.products.dashed .swiper-slide .product-line .variations .options li:not(.selected) {
  border-color: transparent !important;
}
.products.dashed .swiper-slide .product-line .bottom {
  flex-direction: column;
}
.products.dashed .swiper-slide .product-line .bottom .wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.products.dashed .swiper-slide .product-line .bottom.has-variations .wp {
  flex-direction: column;
}
.products.dashed .swiper-slide .product-line .condition {
  display: none;
}
.products.dashed .swiper-slide .product-line .qty {
  order: 2;
  display: flex;
  flex-direction: column;
}
.products.dashed .swiper-slide .product-line .qty label {
  font-size: 11px;
}
.products.dashed .swiper-slide .product-line .qty input {
  max-width: 60px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  border: 2px solid #E3E3E3;
}
.products.dashed .swiper-slide .product-line .qty input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.products.dashed .swiper-slide .product-line .qty input[type=number]::-webkit-outer-spin-button, .products.dashed .swiper-slide .product-line .qty input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.products.dashed .swiper-slide .product-line.loading-photo .medias::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  margin-left: calc(-48px / 2);
  margin-top: calc(-48px / 2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #999;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.products.dashed .swiper-slide .product-line.loading-photo .medias::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 7;
}
.products.dashed .swiper-slide .add-to-cart-checkout {
  margin: 1rem auto 0 auto;
  width: 100%;
  max-width: 280px;
  display: flex;
}

#footer {
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid #E3E3E3;
}
#footer .font-semibold {
  font-weight: 600;
  font-size: 1rem;
}
#footer .links > li {
  border-bottom: 1px solid #000;
}
#footer .service-float {
  display: none;
}
#footer .message {
  border: none;
  background-color: transparent;
}
#footer .message svg {
  flex: 0 0 24px;
}
#footer .social {
  padding: 0 1rem;
  margin-bottom: 2rem;
}
#footer .social ul {
  gap: 1rem;
}
#footer .social ul svg {
  width: 34px;
  height: 34px;
}
#footer .social a {
  display: flex;
  font-size: 0;
}
#footer .logo {
  font-size: 0;
  padding: 2rem 1rem 1rem 1rem;
}
#footer .payments {
  padding: 0 1rem;
  margin-top: 1rem;
}
#footer .payments > span {
  display: block;
  height: 40px;
}
#footer .about .wp-page.open ul, #footer .central .wp-page.open ul {
  max-height: 106px;
}
#footer .policy .wp-page.open ul {
  max-height: 212px;
}
#footer .logo-linx {
  margin: auto;
  padding-bottom: 2rem;
  padding-top: 1rem;
}
#footer .disclaimer {
  font: 10px/16px "Roboto";
  padding: 0 1rem;
}
#footer .security {
  margin-top: 30px;
  padding: 0 1rem;
  margin-bottom: 30px;
}
#footer .security > span {
  height: 40px;
  display: block;
}
#footer .security ul {
  flex-wrap: wrap;
  gap: 1.25rem;
}

@media screen and (max-width: 1023px) {
  #footer .logo-linx {
    margin-bottom: 91px !important;
  }
}
@media screen and (min-width: 1024px) {
  .header > div {
    justify-content: space-between;
  }
  .products.dashed {
    margin: 3rem auto;
    padding: 2rem;
  }
  body #onepage #order-summary {
    padding: 3rem 2rem;
  }
  body #footer {
    margin-bottom: 0;
    border-top: 1px solid #E3E3E3;
  }
  body #footer #disclaimer {
    border-top: 1px solid #E6E1E6;
    padding-top: 1.5rem;
  }
  body #footer .logo-social {
    border-top: 1px solid #E6E1E6;
    border-bottom: 1px solid #E6E1E6;
  }
  body #footer .logo-social .social {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0;
  }
  body #footer .logo-social .logo {
    padding: 26px 0;
  }
  body #footer .middle {
    grid-template-columns: calc(50% - 1rem) calc(50% - 1rem);
    gap: 2rem;
    display: grid;
    grid-template-areas: "area1 area2";
    grid-template-rows: auto auto;
    max-width: 1380px;
  }
  body #footer .middle > .protect {
    display: flex;
    width: 320px;
    font-size: 25px;
    color: #4AAE51;
  }
  body #footer .middle > .protect svg {
    min-width: 50px;
  }
  body #footer .middle > .message {
    font-size: 16px;
  }
  body #footer .middle .payment-security {
    grid-column: 2 span;
    flex-direction: row;
  }
  body #footer .middle .payment-security .security, body #footer .middle .payment-security .payments {
    margin-top: 0;
    flex: 0 0 50%;
  }
  body #footer .middle .payment-security .security > span, body #footer .middle .payment-security .payments > span {
    font-size: 16px;
  }
  body #footer .middle .payment-security .security ul {
    gap: 2rem;
  }
}
/*# sourceMappingURL=onepagecheckout.css.map */
