/**
* Custom Cart To Order CSS
*/

.thank-you-for-order-page {
  min-height: 80vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg,#f8f9fa 0,#e9ecef 100%);
}

.thank-you-container {
  background: #fff;
  padding: 3rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 20px 40px rgba(28,41,71,.1);
  box-shadow: 0 20px 40px rgba(28,41,71,.1);
  max-width: 700px;
  width: 100%;
  text-align: center;
  -webkit-animation: slideUp .6s ease-out forwards;
  animation: slideUp .6s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.order-success__icon {
  margin-bottom: 2rem;
  -webkit-animation: scaleIn .5s ease-out .3s forwards;
  animation: scaleIn .5s ease-out .3s forwards;
  opacity: 0;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}

.order-success__icon i {
  font-size: 4rem;
  color: #1c2947;
  background: linear-gradient(135deg,#1c2947 0,#2a3f6f 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thank-you-order-title {
  color: #1c2947;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  -webkit-animation: fadeIn .5s ease-out .4s forwards;
  animation: fadeIn .5s ease-out .4s forwards;
  opacity: 0;
}

.order-success__content {
  animation: fadeIn .5s ease-out .5s forwards;
  opacity: 0;
}

.order-success__message p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.order-success__message p:last-child {
  margin-bottom: 0;
}

.cart-summary-footer {
  margin-top: .3rem;
}

.cart-summary-footer .btn-danger {
  width: 100%;
  text-transform: capitalize;
}

.product_description_code_order_textarea {
  background-color: rgb(66, 66, 66);
}

.textarea_label {
  font-size: 16px;
  font-weight: 700;
}

.thank-you-container {
  max-width: 600px;
  margin: 3rem auto;
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thank-you-title {
  color: #1c2947;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
}

.thank-you-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1c2947;
  margin: 1rem auto 0;
}

.order-info {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.order-detail {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #1c2947;
}

.order-id {
  font-weight: 600;
  color: #1c2947;
}

.order-total {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c2947;
}

.processing-message {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 2rem 0;
}

.back-home-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #1c2947;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-top: 1rem;
}

.back-home-btn:hover {
  background-color: #2c3e67;
  transform: translateY(-2px);
}

.divider {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin: 20px 0;
  position: relative;
}

.divider span {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin: 20px 0;
  position: relative;
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .thank-you-container {
    margin: 1rem;
    padding: 1.5rem;
  }

  .thank-you-title {
    font-size: 1.75rem;
  }

  .order-info {
    padding: 1rem;
  }

  .order-detail {
    font-size: 1rem;
  }
}

