/* --- layout & grid --- */
.ck-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.3;
  margin: 0 -16px;
  width: 100%;
}

.ck-col-25 {
  flex: 25%;
  padding: 0 16px;
}

.ck-col-50 {
  flex: 50%;
  padding: 0 16px;
}

.ck-col-75 {
  flex: 75%;
  padding: 0 16px;
}

@media (max-width: 800px) {
  .ck-row {
    flex-direction: column-reverse;
  }
  .ck-col-25 {
    margin-bottom: 20px;
  }
}
/* --- wrappers --- */
.ck-wrapper {
  padding: 40px;
}

.ck-container {
  background: #f2f2f2;
  padding: 5px 20px 15px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
}

/* --- form elements --- */
.ck-container input[type=text] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.ck-container label {
  display: block;
  margin-bottom: 10px;
}

/* --- icons / payments --- */
.ck-icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.ck-icon-container .fa-cc-visa {
  color: navy;
}

.ck-icon-container .fa-cc-amex {
  color: blue;
}

.ck-icon-container .fa-cc-mastercard {
  color: red;
}

.ck-icon-container .fa-cc-discover {
  color: orange;
}

/* --- button --- */
.ck-btn {
  background: #04AA6D;
  color: #fff;
  padding: 12px;
  margin: 10px 0;
  border: 0;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.ck-btn:hover {
  background: #45a049;
}

/* --- price labels --- */
.ck-price {
  float: right;
  color: grey;
  font-weight: bold;
}

.ck-price--black {
  color: #000;
}

/* --- modal --- */
.ck-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.ck-modal-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  background: #fff;
  border-radius: 6px;
  overflow: auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  padding: 1rem;
}

.ck-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.ck-modal-body img, .ck-modal-body svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============  cart badge  ================= */
.ck-cart-item {
  position: relative;
}

.ck-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background: #e53935; /* red background */
  border-radius: 50%;
  transform: scale(0); /* start hidden */
  transition: transform 0.2s ease-out;
}

.ck-badge.show {
  transform: scale(1);
}

/* bounce on each update */
@keyframes ck-bounce {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.ck-badge.bounce {
  animation: ck-bounce 0.6s;
}

/* === cart svg wiggle === */
@keyframes ck-cart-pop {
  /* pop up fast */
  0% {
    transform: scale(1) rotate(0deg);
  }
  8% {
    transform: scale(1.6) rotate(-18deg);
  }
  /* dense wiggles */
  16% {
    transform: scale(1.55) rotate(14deg);
  }
  24% {
    transform: scale(1.52) rotate(-12deg);
  }
  32% {
    transform: scale(1.5) rotate(10deg);
  }
  40% {
    transform: scale(1.48) rotate(-8deg);
  }
  48% {
    transform: scale(1.45) rotate(6deg);
  }
  56% {
    transform: scale(1.4) rotate(-4deg);
  }
  64% {
    transform: scale(1.35) rotate(3deg);
  }
  72% {
    transform: scale(1.25) rotate(-2deg);
  }
  /* dampen & settle */
  80% {
    transform: scale(1.15) rotate(1deg);
  }
  90% {
    transform: scale(1.05) rotate(-0.5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
/* colour the whole svg red while animating */
.ck-cart-pop,
.ck-cart-pop path {
  color: #e53935;
  fill: #e53935;
}

.ck-cart-pop {
  animation: ck-cart-pop 1.8s cubic-bezier(0.35, 0.32, 0.18, 1) forwards;
  will-change: transform;
}

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