#loader .loader-content {
  text-align: center;
}

#loader .loader-img {
  width: 80px;  /* You can adjust the size of the image */
  height: auto;
}

#loader .text-light {
  font-size: 1rem;  /* You can adjust the text size */
  margin-top: 10px;
}

.custom-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.custom-separator::before,
.custom-separator::after {
  content: "";
  height: 2px;
  background: linear-gradient(to right, #cccccc, #dee2e6);
  flex: 1;
  margin: 0;
}

.custom-separator .text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6c757d;
}

.is-invalid {
  border-color: red !important;
}

label.is-invalid {
  color: red !important;
  font-size: 12px;
  margin: 5px;
  text-align: left;
}

.password {
  cursor: pointer; 
}

.tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ccc;
}

.tab-button {
  flex: 1;
  padding: 10px;
  text-align: center;
  border: none;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.tab-button.active {
  background: #000000;
  color: #fff;
  border-bottom: 3px solid #ff003b;
}

.tab-button:hover {
  background: #e2e6ea;
}

.tab-contents {
  padding: 20px;
  background: #ffffff;
}

.tab-content.ordertab {
  display: none;
}

.tab-content.ordertab.active {
  display: block;
}

.item-title-container {
  position: relative;
}

.item-title-container a.item_summary_delete {
  position: absolute;
  right: 0;
  top: 13px;
}

.cart-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: auto;
  background-color: #f8f9fa; /* Light background */
  border: 1px solid #ddd; /* Border for better visibility */
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 15px;
  z-index: 1050; /* Ensure it stays above other elements */
}
.cart-box h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.cart-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-box ul li {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* Change placeholder text color for all input fields */
::placeholder {
  color: #CCCCCC !important;
  font-size: 14px !important; /* Change this to your desired color */
  opacity: 1; /* Ensures full opacity */
}

/* For specific browsers */
::-webkit-input-placeholder { 
  color: #CCCCCC !important;
  font-size: 14px !important; 
}
:-moz-placeholder { 
  color: #CCCCCC !important;
  font-size: 14px !important; 
}
::-moz-placeholder { 
  color: #CCCCCC !important;
  font-size: 14px !important; 
}
:-ms-input-placeholder { 
  color: #CCCCCC !important;
  font-size: 14px !important; 
}

.item-summary-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.item-summary-row ul {
    /* border: 1px solid #ccc;
    padding: 15px; */
    list-style: none;
    background-color: #f9f9f9;
}