@charset "UTF-8";
body {
  /* 🔹 Container das carteiras digitais */
  /* 🔹 Botões genéricos de carteira digital */
  /* 🔸 Apple Pay */
  /* 🔸 Google Pay */
  /* 🔸 Responsividade */
}
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: 0 0.675rem !important;
}
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: var(--button-color);
  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: var(--button-color);
  color: var(--button-color);
}
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 .delivery-address-options .options > li,
body #onepage .delivery-options .options > li,
body #onepage .payment-options .options > li {
  border: 1px solid #DDD;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
body .box .option, body #onepage .delivery-address-options .options > li .option,
body #onepage .delivery-options .options > li .option,
body #onepage .payment-options .options > li .option {
  cursor: pointer;
}
body .box.selected, body #onepage .delivery-address-options .options > li.selected,
body #onepage .delivery-options .options > li.selected,
body #onepage .payment-options .options > li.selected {
  border-color: var(--color-secondary);
  background-color: #FAFAFA;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
body .box.selected .form, body #onepage .delivery-address-options .options > li.selected .form,
body #onepage .delivery-options .options > li.selected .form,
body #onepage .payment-options .options > li.selected .form {
  display: flex;
}
body .box:hover, body #onepage .delivery-address-options .options > li:hover,
body #onepage .delivery-options .options > li:hover,
body #onepage .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[data-step=customer] {
  height: 100%;
}
body #onepage #main > .wp {
  max-width: 750px;
  width: 100%;
}
body #onepage #main > .wp > header {
  background-color: white;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #DDD;
  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 .columns > li.subtotal,
body #onepage #basket .products > li.price,
body #onepage #basket .products > li.subtotal {
  width: 100px;
}
body #onepage #basket .columns > li.price del, body #onepage #basket .columns > li.subtotal del,
body #onepage #basket .products > li.price 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 .item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
body #onepage #basket .items .item:not(:last-child) {
  border-bottom: 1px solid #EEE;
  padding-bottom: 1rem;
}
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 .details h4 {
  line-height: 1;
}
body #onepage #basket .items .products .nested .image img {
  max-height: 30px;
  width: auto;
}
body #onepage #basket .items .products.additionals {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  background-color: #FEFEFE;
}
body #onepage #basket .items .products.additionals .quantity {
  border: none;
}
body #onepage #basket .items .products.additionals .actions {
  display: none;
}
body #onepage .social-login a.btn-facebook {
  background-color: #3b5998;
}
body #onepage .social-login a.btn-google {
  padding: 0;
  background-color: transparent;
}
body #onepage .social-login .or {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
body #onepage .social-login .or::before, body #onepage .social-login .or::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid #EEE;
  height: 1px;
  width: unset;
}
body #onepage .social-login .or small {
  padding-left: 1rem;
  padding-right: 1rem;
}
body #onepage .delivery-address-data,
body #onepage .customer-data,
body #onepage .delivery-data,
body #onepage .payment-data {
  border-bottom: 1px solid #EEE;
  padding-bottom: 1rem;
}
body #onepage .delivery-address-data .form,
body #onepage .customer-data .form,
body #onepage .delivery-data .form,
body #onepage .payment-data .form {
  transition: all 0.2s ease-in-out;
}
body #onepage .delivery-address-data .content,
body #onepage .customer-data .content,
body #onepage .delivery-data .content,
body #onepage .payment-data .content {
  transition: all 0.2s ease-in-out;
}
body #onepage .delivery-address-data .content ul,
body #onepage .customer-data .content ul,
body #onepage .delivery-data .content ul,
body #onepage .payment-data .content ul {
  display: flex;
  flex-direction: column;
}
body #onepage .delivery-address-data .content ul li,
body #onepage .customer-data .content ul li,
body #onepage .delivery-data .content ul li,
body #onepage .payment-data .content ul li {
  line-height: 120%;
}
body #onepage .delivery-address-data.opened .form,
body #onepage .customer-data.opened .form,
body #onepage .delivery-data.opened .form,
body #onepage .payment-data.opened .form {
  display: flex;
}
body #onepage .delivery-address-data.opened .content,
body #onepage .customer-data.opened .content,
body #onepage .delivery-data.opened .content,
body #onepage .payment-data.opened .content {
  display: none;
}
body #onepage .delivery-data .find-postal-code {
  transform: translate(-0.5rem, -50%);
  top: 50%;
}
body #onepage .delivery-data .btn-pick-up {
  white-space: nowrap;
}
body #onepage .delivery-address-options .form,
body #onepage .delivery-options .form,
body #onepage .payment-options .form {
  padding: 1rem 0 0;
}
body #onepage .payment-options .option img {
  max-width: 30px;
}
body #onepage .payment-options .option input[type=radio]:checked + img {
  filter: grayscale(0);
}
body #onepage .payment-options .option .group-item {
  cursor: pointer;
}
body #onepage .payment-options .option .group-title {
  text-transform: lowercase;
}
body #onepage .payment-options .option .group-title::first-letter {
  text-transform: uppercase;
}
body #onepage .payment-options .credit-card-form .input-card .card-flags {
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  flex-direction: column;
}
body #onepage .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 .payment-options .credit-card-form .input-card .card-flags li.selected {
  opacity: 1;
  visibility: visible;
}
body #onepage .payment-data {
  border-bottom: none;
  padding-bottom: 0;
}
body #onepage #summary {
  background-color: #f7f7f7;
}
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: 0.25rem;
  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 #order-summary #delivery .delivery-options .options > li {
  background-color: white;
}
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: var(--color-success);
  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 var(--color-secondary) !important;
}
body.options-grouped #onepage #sales-representative .result {
  padding: 0;
}
body .no-image {
  display: none;
}
body .shake {
  animation: shake 0.3s;
}
body .wallet-form {
  text-align: center;
  padding: 1rem 0;
}
body .wallet-form p {
  font-weight: 500;
}
body .wallet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  /* pill shape */
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
body .wallet-button img {
  height: 24px;
  width: auto;
}
body .wallet-button.apple-pay {
  background-color: #000;
  color: #fff;
}
body .wallet-button.apple-pay:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
body .wallet-button.google-pay {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #202124;
}
body .wallet-button.google-pay:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 6px rgba(32, 33, 36, 0.2);
}
@media (max-width: 480px) {
  body .wallet-button {
    width: 100%;
    justify-content: center;
  }
}
body .wd-error-summary-wrapper {
  display: none;
}
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: 200px;
  }
  body #onepage #checkout .delivery-address-data .content,
  body #onepage #checkout .delivery-data .content {
    display: none;
  }
  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 .errors header {
    display: flex;
  }
  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);
  }
  body #onepage #summary #order-summary.opened .total {
    margin-top: 1rem;
  }
  body #onepage #order-summary.opened {
    overflow: auto;
    height: 80vh;
  }
}
@media screen and (min-width: 1024px) {
  body #checkout-wrapper #main {
    padding: 1.5rem 4rem;
  }
  body #checkout-wrapper #summary {
    width: 45%;
    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);
  }
}

.oneclickbuy-box {
    background: #f4f4f4;
    border: 2px dashed #ddd;
    padding: 2em;
}

.oneclickbuy-box.save-card-box {
    padding: 1.4em;
    display: flex;
    width: 100%;
}

.oneclickbuy-box .inner-checkbox{
    float: left;
    width: 5%;
    min-width: 10px;
}

.oneclickbuy-box .inner-message {
    line-height: 10px;
    bottom: 31px;
    left: 40px;
    width: 100%;
    float: left;
}

.oneclickbuy-box .inner-message strong {
    padding-bottom: 8px;
    display: block;
    padding-top: 4px;
}

.oneclickbuy-box .inner-icon {
    float: right;
    width: 15%;
    min-width: 50px;
}

 .oneclickbuy-box .security-card-icon {
    position: relative;
}

.oneclickbuy-box .security-card-icon .card {
    font-size: 49px;
}

.oneclickbuy-box .security-card-icon .round {
    position: absolute;
    top: 24px;
    right: -11px;
    font-size: 26px;
    padding: 0;
    background-color: #4daf4d;
    border-radius: 50%;
    width: 31px;
    height: 30px;
    padding-left: 7px;
    padding-top: 2px;
}

.oneclickbuy-box .security-card-icon .check {
    position: absolute;
    bottom: 7px;
    right: 10px;
    color: #fff;
    font-size: 10px;
}

/*# sourceMappingURL=onepagecheckout.css.map */
