body,
main { 
	overflow-x: hidden; 
}
.gid_mega_content {
  position: fixed;
  left: 0;
  right: 0;
  top: -9999px;
  background: #fff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.gid_mega_content.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media only screen and (min-width: 768px) {
	 .hide-lg {
		 display: none !important
	 }
}

.woocommerce-notice--success {
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  font-weight: 500;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  text-align: center;
}

.woocommerce-order-overview.order_details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 28px;
}
.woocommerce-order-overview li {
  flex: 1 1 180px;
  background: #f9fafb;
	padding: 15px !important;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 12px 16px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
.woocommerce-order-overview li strong {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}


.shop_table.order_details {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: none !important;
	border: none !important
}
.shop_table.order_details thead {
  background: #f1f5f9;
}
.shop_table.order_details th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
}
.shop_table.order_details td {
  padding: 14px 18px;
  border-top: 1px solid #f3f4f6;
  vertical-align: middle;
  font-size: 15px;
}
.shop_table.order_details a {
  color: #0284c7;
  font-weight: 500;
}
.shop_table.order_details tfoot th {
  color: #6b7280;
  font-weight: 500;
}
.shop_table.order_details tfoot td {
  text-align: right;
  font-weight: 700;
  color: #111827;
}


.woocommerce-customer-details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 20px;
  margin-top: 28px;
  box-shadow: none;
}
.woocommerce-customer-details h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.woocommerce-customer-details address {
  margin: 0;
  line-height: 1.7;
  color: #374151;
  font-size: 15px;
}
.woocommerce-customer-details p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.woocommerce-customer-details address {
  border: none !important;
  padding: 0 !important;
}

/* Responsive */
@media (max-width: 640px) {
  .woocommerce-order-overview.order_details {
    flex-direction: column;
  }
  .woocommerce-order-overview li {
    flex: 1 1 100%;
  }
  .shop_table.order_details thead {
    display: none;
  }
  .shop_table.order_details tr {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
  }
  .shop_table.order_details td {
    border: none;
    padding: 6px 12px;
  }
}