/** Shopify CDN: Minification failed

Line 64:16 Expected identifier but found whitespace
Line 64:17 Unexpected "1px"
Line 64:28 Unexpected "{"
Line 64:38 Expected ":"

**/
.ct-cart-drawer-overlay[visible] {
  display: block;
  animation: showCartDrawerOverlay 0.5s ease;
  animation-fill-mode: forwards;
}
@keyframes showCartDrawerOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ct-cart-drawer-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.7);
}
ct-cart-drawer[visible] {
  right: 0;
}
ct-cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 21;
  height: 100dvh;
  transition: height 0.5s ease, right 0.5s ease;
  max-width: 450px;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ct-cart-header {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ct-cart-header h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}
.ct-cart-header svg {
  margin-right: -6px;
}
.ct-cart-progress {
  padding: 12px 24px;
  border-bottom: 1px solid {{ settings.progress_background | color_darken: 10 }};
}
.ct-cart-progress span {
  font-size: 12px;
  font-weight: 700;
}
.ct-cart-emptybar {
  width: 100%;
  margin-top: 4px;
}
.ct-cart-fullbar {
  display: block !important;
  transition: width 0.5s ease-in-out;
}
.ct-cart-lineWrapper {
  padding: 12px 24px;
  padding-bottom: 0;
}
.ct-cart-goodChoice {
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.ct-cart-goodChoice svg {
  width: 20px;
  height: 20px;
}
.ct-cart-goodChoice img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
.ct-cart-goodChoice span {
  color: #378f00;
  font-size: 13px;
}
.ct-cart-lineItems {
  margin-top: 12px;
  overflow-y: auto;
}
.ct-cart-lineItem {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  overflow: hidden;
  max-height: 200px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.ct-cart-lineItem-image {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}
.ct-cart-lineItem-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ct-cart-lineItem-infos {
  display: flex;
  flex-direction: column;
}
.ct-cart-lineItem-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 100%;
  line-height: 16px;
  margin-bottom: 4px;
}
.ct-cart-price {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ct-cart-variant-name {
  font-size: 12px;
  margin-bottom: 4px;
}
.ct-cart-lineItem-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ct-cart-lineItem-quantity-control {
  display: flex;
  align-items: center;
  padding: 4px;
  width: fit-content;
  margin-top: 4px;
}
.ct-cart-lineItem-quantity-control input {
  height: 24px;
  width: 44px;
  text-align: center;
  border: none;
  -moz-appearance: textfield;
}
.ct-cart-lineItem-quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ct-cart-lineItem-quantity-control input:focus {
  outline: none;
  box-shadow: none;
}
.ct-cart-lineItem-quantity-button {
  display: flex;
  align-items: center;
  padding: 4px;
  height: 24px;
  cursor: pointer;
}
.ct-cart-lineItem-quantity-button svg {
  width: 16px;    
}
.ct-cart-quantity-remove {
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
  transition: scale 0.5s ease;
}
.ct-cart-quantity-remove:hover {
  scale: 1.02;
}
.ct-cart-footer {
  padding: 12px 24px;
}
.ct-cart-footer-infos-line {
  display: flex;
  justify-content: space-between;
}
.ct-cart-footer-infos-line span {
  font-size: 11px;
}
.ct-cart-footer-infos-line:first-child span {
  font-weight: 700;
}
.ct-cart-checkout {
  width: 100%;
  padding: 12px 24px;
  font-weight: 700;
  border: none;
  margin-top: 4px;
  cursor: pointer;
  transition: opacity 0.5s ease, scale 0.5s ease;
  border-radius: 0;
}
.ct-cart-checkout:hover {
  opacity: 0.8;
  scale: 1.05;
}
.ct-cart-checkout[disabled="disabled"] {
  opacity: 0.6;
}
@media screen and (max-width: 430px) {
  .ct-cart-header {
    padding: 12px 12px;
  }
  .ct-cart-progress {
    padding: 12px 12px;
  }
  .ct-cart-lineWrapper {
    padding: 12px 12px;
  }
  .ct-cart-footer {
    padding: 12px 12px;
  }
}
.ct-cart-lineItem.ct-cart-delete-lineItem {
  max-height: 0;
  padding: 0;
}
.ct-cart-lineItem-quantity-button[disabled] {
  opacity: 0.5;
  cursor: unset;
}