/* Sass variables for media queries */
/* Burger nav variant
$menu-max-breakpoint: 999999px;
$menu-breakpoint: 1000000px;
$header-max-breakpoint: 999999px;
$header-breakpoint: 1000000px;
$footer-max-breakpoint: 1279px;
$footer-breakpoint: 1280px;
*/
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Mini cart */
#cart {
  margin-left: 10px;
}

#block-cart {
  float: right;
}

.cart--cart-block {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
@media (min-width: 1350px) {
  .cart--cart-block {
    margin-top: 5px;
  }
}
.cart--cart-block a {
  text-decoration: none;
}

.cart-block--contents__close span {
  float: right;
}
.cart-block--contents__close a {
  font-size: 0;
}
.cart-block--contents__close a i {
  font-size: 16px;
}
.cart-block--contents__close a svg {
  width: 20px;
  height: 20px;
  color: #2d2e82;
}
.cart-block--contents__close a svg:hover {
  color: #e95a0c;
}

.cart--cart-block li {
  padding: 0;
  font-size: inherit;
}

.cart-block--summary__count {
  display: flex;
}
.cart-block--summary__count .basket-text {
  font-size: 0;
}
.cart-block--summary__count svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  top: -10px;
  left: -6px;
}
html[data-theme=light] .cart-count {
  background-color: transparent;
  color: #2d2e82;
}
html[data-theme=dark] .cart-count {
  background-color: transparent;
  color: #2d2e82;
}

/* End mini cart */
/* Cart */
.checkout-pane,
.checkout-progress-wrapper,
fieldset {
  background: #f8f9fa;
  padding: 2.5rem 5rem;
  border-radius: 12px;
  border: 1px solid #e8e8ea;
}
.checkout-pane legend,
.checkout-progress-wrapper legend,
fieldset legend {
  font-family: "Goldman", Arial, Helvetica, sans-serif;
}

.checkout-pane-coupon-redemption,
.checkout-progress-wrapper {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

#block-cart {
  float: left;
  display: inline;
}

#block-cart ul {
  padding-left: 0;
}

.cart-block--contents {
  display: block;
  width: calc(100% - 30px);
  top: 0;
  right: 0;
  min-height: 100vh;
  transform: translateX(1000px);
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.1);
  z-index: 2000;
}
@media (min-width: 768px) {
  .cart-block--contents {
    width: 450px;
  }
}

.cart-block--contents__expanded {
  transform: translateX(0);
}

.cart-block--contents h1 {
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
}

.cart-block--contents__items {
  overflow: visible;
  max-height: none;
  padding: 10px;
}

.cart-block--contents ol {
  list-style-type: none;
  margin: 10px 0 0;
  padding: 0;
}

.topnav .cart-block--contents li {
  display: block;
  margin: 10px 0 0;
  padding: 0;
  text-align: left;
  padding-bottom: 28px;
}
html[data-theme=light] .topnav .cart-block--contents li {
  border-bottom: 1px solid #f8f9fa;
}
html[data-theme=dark] .topnav .cart-block--contents li {
  border-bottom: 1px solid #555555;
}

.cart-product {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e8e8ea;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 3rem);
}

.cart-product-header {
  display: flex;
  justify-content: flex-end;
}

.cart-product-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-form-product-image,
.cart-product-image {
  position: relative;
  margin-right: 20px;
}
.cart-form-product-image div,
.cart-product-image div {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
.cart-form-product-image div:first-of-type,
.cart-product-image div:first-of-type {
  position: static;
}
.cart-form-product-image img,
.cart-product-image img {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  object-fit: cover;
  width: 100%;
}

.cart-form-product-title,
.cart-product-title {
  /*font-size: 14px;*/
  font-weight: bold;
  text-align: right;
}
.cart-form-product-title a,
.cart-product-title a {
  font-size: inherit;
  text-decoration: none;
  font-weight: inherit;
}
html[data-theme=light] .cart-form-product-title a,
html[data-theme=light] .cart-product-title a {
  color: #545b61;
}
html[data-theme=dark] .cart-form-product-title a,
html[data-theme=dark] .cart-product-title a {
  color: #fefefe;
}
.cart-form-product-title .cart-product-sku,
.cart-product-title .cart-product-sku {
  font-weight: normal;
}

.cart-product-title .listing-offer {
  font-weight: normal;
  line-height: normal;
}

.checkout-price {
  text-align: right;
}

.cart-product-price-ex-vat,
.cart-product-price-inc-vat {
  text-align: right;
  clear: right;
}

.cart-product-total-price {
  font-weight: bold;
  font-size: 14px;
  text-align: right;
}

.cart-product-qty {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 576px) {
  .cart-product-qty {
    flex-direction: row;
    align-items: center;
  }
}
.cart-product-qty .cart-product-qty-input {
  display: flex;
  justify-content: center;
}

.cart-form-btn-remove,
.cart-btn-remove {
  margin: 5px 0 0 10px;
}
.cart-form-btn-remove .icon,
.cart-btn-remove .icon {
  display: flex;
}
.cart-form-btn-remove input[type=submit],
.cart-btn-remove input[type=submit] {
  font-size: 0;
  height: 0;
  padding: 0;
  opacity: 0;
}

.cart-form-btn-remove {
  margin: 0;
}
.cart-form-btn-remove .icon {
  justify-content: flex-end;
}

.cart-product-qty-label {
  margin-right: 20px;
  font-weight: 600;
  position: relative;
  top: 5px;
}

.cart-product-qty-update {
  margin-left: 20px;
}

.cart-update-btn {
  display: inline-block;
  margin: 0;
  padding: 5px 8px;
  position: relative;
  top: 1px;
  font-size: 14px;
}

.checkout .cart-update-btn {
  top: 0;
}

.checkout-link {
  padding: 11px 19px 12px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  display: block;
  border-radius: 8px;
  margin: 20px 10px;
}
html[data-theme=light] .checkout-link {
  background-color: #2d2e82;
  border: 2px solid #2d2e82;
}
html[data-theme=dark] .checkout-link {
  background-color: #e8e8ea;
  border: 2px solid #e8e8ea;
}
#header .checkout-link a {
  text-transform: uppercase;
  display: block;
}
html[data-theme=light] #header .checkout-link a {
  color: #fefefe;
}
html[data-theme=dark] #header .checkout-link a {
  color: #1d1d1d;
}
html[data-theme=light] .checkout-link:hover {
  background-color: #545b61;
  border: 2px solid #545b61;
}
html[data-theme=dark] .checkout-link:hover {
  background-color: #1d1d1d;
  border: 2px solid #e8e8ea;
}
html[data-theme=light] .checkout-link:hover a {
  color: !important;
}
html[data-theme=dark] .checkout-link:hover a {
  color: !important;
}

.cart-block--contents .form-actions {
  display: none;
}

/*
.cart-block--contents .order-total-line__adjustment,
.cart-form .order-total-line__adjustment,
*/
.cart-block--contents .order-total-line__order-total,
.cart-form .order-total-line__order-total,
.checkout-pane .order-total-line__order-total {
  display: none;
}

.checkout-pane .checkout-order-summary .order-total-line__order-total {
  display: block;
}

.cart-block--contents .modified_subtotal,
.cart-form .modified_subtotal {
  display: block;
}

.order-total-line__total {
  font-size: 20px;
  text-align: right;
}

.cart-block--contents .order-total-lines,
.cart-form .order-total-lines,
.checkout-pane .order-total-line__total {
  text-align: right;
  font-weight: 400;
  font-size: 20px;
}

.cart-block--contents .order-total-line__inc-vat-total,
.checkout-pane .order-total-line__inc-vat-total {
  font-weight: 600;
  font-size: 20px;
}

.cart-block--contents .order-total-line-suffix,
.checkout-pane .order-total-line-suffix {
  clear: both;
  float: right;
  margin-left: 10px;
}

.cart-block--contents h2 {
  font-size: 20px;
}

.order-total-line {
  padding: 0;
}
.order-total-line.order-total-line__total {
  font-weight: bold;
}

.modified_subtotal.order-total-line.order-total-line__total {
  font-weight: bold;
}

.modified_subtotal .order-total-line-value {
  width: auto;
  padding-left: 0.25em;
}

.cart-form #edit-actions {
  float: right;
}

.cart.cart-form .removing,
.cart.cart-form .updating {
  cursor: wait;
}
.cart.cart-form .cart-form-product-row {
  display: grid;
  gap: 1rem;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e8e8ea;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cart.cart-form .cart-form-product-row {
    grid-template: 70% 30%/70% 30%;
  }
}
@media (min-width: 1537px) {
  .cart.cart-form .cart-form-product-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: none;
    gap: 4rem;
  }
  .cart.cart-form .cart-form-product-row.complete {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}
.cart.cart-form .cart-form-product-details {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 25% 65% 10%;
}
.cart.cart-form .cart-form-product-qty {
  display: flex;
  justify-content: flex-end;
}
.cart.cart-form .cart-form-product-qty > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
.cart.cart-form .cart-form-product-qty > div > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart.cart-form .cart-form-product-qty a {
  text-decoration: none;
  color: black !important;
}
.cart.cart-form .cart-form-product-qty input {
  outline: none;
}
.cart.cart-form .cart-form-product-qty button {
  margin-left: 2rem;
}
.cart.cart-form .cart-form-product-total-price {
  font-weight: bold;
}
.cart.cart-form .cart-form-buy-again {
  text-align: right;
}

.cart.cart-form .checkout {
  padding: 0 0 2rem;
}

/* End Cart */
/* Spinners */
.spinner {
  line-height: 30px;
  height: 30px;
  margin-top: 0;
  display: inline-block;
  text-align: center;
}
html[data-theme=light] .spinner {
  border: 1px solid #f8f9fa;
}
html[data-theme=dark] .spinner {
  border: 1px solid #555555;
}

.ui-spinner-up {
  float: right;
  margin-right: 5px;
}

.ui-spinner-down {
  float: left;
  margin-left: 5px;
  position: relative;
  top: -2px;
}

.ui-spinner-button {
  cursor: pointer;
  font-size: 19px;
  font-weight: bold;
  color: #545b61 !important;
  text-decoration: none;
}
.ui-spinner-button:hover, .ui-spinner-button:active {
  text-decoration: none;
}

.ui-spinner-input {
  border: 0;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  outline: none;
}

.ui-spinner-hidden {
  display: none;
}

/* End Spinners */
.info-page .product-variation-col {
  width: 50%;
  float: left;
}

/* End card images */

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