/* ---------------------------
   SIDEBAR MENU
----------------------------*/

#myaccount {
  padding-top: 30px;
  padding-bottom: 30px;
}

#myaccount .list-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

#myaccount .list-categories li {
  margin-bottom: 12px;
}

#myaccount .list-categories a {
  display: block;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #e5e5e5;
  transition: all .3s ease-in-out;
}

#myaccount .list-categories a:hover {
  background: #0069d9;
  border-color: #0069d9;
  color: #fff;
}

#myaccount .list-categories a.active {
  background: #0069d9;
  color: #fff;
  border-color: #0069d9;
}

/* ---------------------------
 PROFILE FORM
----------------------------*/
.myaccount-form {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 1000px;
}

.myaccount-form h4 {
  font-family: Roboto Condensed;
}

/* .form-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.form-group label {
  width: 25%;
  font-weight: 600;
  color: #444;
}

.form-group input {
  width: 75%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color .3s;
  font-size: 14px;
}

.form-group input:focus {
  border-color: #0069d9;
  box-shadow: 0 0 5px rgba(0, 105, 217, 0.2);
}

.form-text.text-danger {
  margin-left: 25%;
  font-size: 12px;
  margin-top: 5px;
} */

/* ---------------------------
 BUTTONS
----------------------------*/
.button {
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: background .3s, transform .2s;
}

.button-secondary {
  background: #0069d9;
  color: #fff;
  border: none;
}

.button-secondary:hover {
  background: #0053b3;
  transform: translateY(-2px);
}

.flexbox {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.flexbox .box {
  flex: 1;
}

/* ---------------------------
 RESPONSIVE DESIGN
----------------------------*/
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-group.captcha
  {
      flex-direction: row !important;
  }
  .form-group label {
    width: 100%;
    margin-bottom: 6px;
  }

  .form-group input {
    width: 100%;
  }

  .flexbox {
    flex-direction: column;
  }

  #myaccount .col-sm-4,
  #myaccount .col-sm-8 {
    width: 100%;
    margin-bottom: 25px;
  }
}


/* ====== History ====== */
.history {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 1000px;
}

.history h5 {
  font-family: Roboto Condensed;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

/* ====== Table Styling ====== */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
}

thead {
  background: #f5f7fa;
}

thead th {
  font-family: Roboto Condensed;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
}

tbody td {
  padding: 15px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #eee;
}

tbody tr:hover {
  background: #f9fafc;
  transition: 0.3s ease;
}

/* ====== Status Labels ====== */
.table-status lable {
  padding: 5px 12px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
  color: #fff;
}

/* Status color style */
.lable-primary.Pending {
  background-color: #ff9800;
}

/* Add more statuses if needed */
.lable-primary.Success {
  background-color: #4caf50;
}

.lable-primary.Cancelled {
  background-color: #f44336;
}

/* ====== Buttons ====== */
.button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  background: #007bff;
  transition: all 0.3s;
}

.button:hover {
  background: #0056d2;
  transform: translateY(-2px);
}

/* Secondary button style */
.button-secondary {
  background: #0b4a85;
}

.button-secondary:hover {
  background: #00796b;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  table {
    font-size: 13px;
  }

  thead {
    display: none;
  }

  tbody tr {
    display: block;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    border-bottom: 1px dashed #ddd;
  }

  tbody td:last-child {
    border-bottom: none;
  }

  tbody td::before {
    content: attr(class);
    font-weight: 600;
    text-transform: capitalize;
    color: #555;
  }
}

/*Single Order details*/
/* ===========================
   GLOBAL CONTAINER
=========================== */
.single-history-details {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  margin: 25px auto;
  max-width: 1100px;
  font-family: Roboto Condensed;
}

.single-history-details h2 {
  font-family: Roboto Condensed;
  font-size: 26px;
  margin-bottom: 25px;
  color: #333;
}

.single-history-details h2 span {
  color: #007bff;
}

/* ===========================
 ORDER HEADER
=========================== */
.orderlist-head {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f5f7fa;
  border-radius: 10px;
  margin-bottom: 15px;
}

.orderlist-head h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* ===========================
 ORDER TRACKING TIMELINE
=========================== */
.order-track {
  margin: 20px 0;
}

.order-track-list {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding-left: 0;
}

.order-track-item {
  list-style: none;
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

.order-track-item i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 16px;
  color: #bbb;
}

.order-track-item.active i {
  color: #28a745;
}

.order-track-item.active span {
  color: #28a745;
  font-weight: 600;
  color: #fff;
}

/* ===========================
 ORDER DETAILS GRID
=========================== */
.orderlist-details {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}

.orderlist-details li {
  list-style: none;
  flex: 1 1 200px;
}

.orderlist-details h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #555;
}

.orderlist-details p {
  font-size: 14px;
  margin-top: 3px;
  color: #333;
}

/* ===========================
 DELIVERY SECTION
=========================== */
.orderlist-deliver {
  background: #f9fafc;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.orderlist-deliver h6 {
  font-size: 15px;
  font-weight: 600;
  color: #444;
}

/* ===========================
 PRODUCT TABLE
=========================== */
.table-responsive {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.cart_summary {
  width: 100%;
  border-collapse: collapse;
}

.cart_summary th {
  background: #eef0f4;
  padding: 12px;
  font-weight: 600;
  color: #444;
  font-size: 14px;
}

.cart_summary td {
  padding: 12px;
  vertical-align: middle;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.cart_summary img {
  border-radius: 6px;
}

.price {
  font-weight: 600;
  color: #333;
}

/* ===========================
 TOTAL SUMMARY TABLE
=========================== */
.table-bordered {
  margin-top: 20px;
  font-size: 14px;
}

.table-bordered td {
  padding: 10px 15px !important;
}

.table-bordered strong {
  font-weight: 600;
}

/* ===========================
 BUTTONS
=========================== */
.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  background: #007bff;
  transition: 0.3s ease;
}

.button:hover {
  background: #0056d2;
  transform: translateY(-2px);
}

/* Secondary button */
.button-secondary {
  background: #0b4a85;
}

.button-secondary:hover {
  background: #05a3e3;
  color: #fff;
}

/* ===========================
 RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {

  .orderlist-head {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .order-track-list {
    flex-direction: column;
  }

  .orderlist-details {
    flex-direction: column;
  }

  .cart_summary th,
  .cart_summary td {
    font-size: 13px;
  }
}

/*Change Password*/
.change-password {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 1000px;
}



/*old Css*/
.product-action {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}

.decrement-btn,
.increment-btn {
  background-color: #0b0907;
  border: none;
  border-radius: 5px;
  margin-left: 6px;
  margin-right: 6px;
  cursor: pointer;
}

.decrement-btn:hover,
.increment-btn:hover {
  background-color: #000;

}

.decrement-btn:before {
  font-family: FontAwesome;
  content: "-";
  font-size: 22px;
  line-height: 26px;
  display: table-cell;
  vertical-align: middle;
  padding: 8px 15px 8px 15px;
  color: #fff;

}

.increment-btn:before {
  font-family: FontAwesome;
  content: "+";
  font-size: 22px;
  line-height: 26px;
  display: table-cell;
  vertical-align: middle;
  padding: 8px 15px 8px 15px;
  color: #fff;
}


.cartquantity {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.action-input {
  padding: 0 8px;
  vertical-align: middle;
  border-radius: 5px;
  width: 50px;
  min-height: 36px;
  background-color: #ffffff;
  border: 1px solid rgba(36, 28, 21, 0.3);
  transition: all 0.2s ease-in-out 0s;
  font-size: 15px;
  line-height: 18px;
  font-weight: normal;

  :focus {
    outline: none;
    border: 1px solid #007c89;
    box-shadow: inset 0 0 0 1px #007c89;
  }

  text-align: center;

}

/*header*/
.moto-widget-store_sign-link span {
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
  color: #eec2cc;
  text-decoration: none;
  margin-top: 8px;
  line-height: 26px;
}

/*register*/
.moto-widget-contact_form.moto-preset-2 .moto-widget-contact_form-form .moto-widget-contact_form-field:focus {
  border: 2px solid #f2b7c4;
}

#termsbox .form-check-label {
  margin-left: 50px;
}

.accept {
  margin-left: 22px;
}

/* #terms{
  position: absolute;
  left: 15px;
  bottom: -40px;
  width: 15px;
  line-height: 26px;
} */
/*p{
  font-size: 16px;
  color: #000;
}*/
.invalid-feedback strong {
  color: red;
  font-weight: 400;
  text-align: left;
}

.register-form .alert-success {
  font-size: 15px;
  margin-bottom: 15px;
  color: green;
}

.moto-widget-contact_form-form .alert-success {
  font-size: 15px;
  margin-bottom: 15px;
  color: green;
}

/*reset*/
.reset {
  text-align: center;
  color: #eec2cc;
}

/*Profile*/
.profile {
  font-size: 18px !important;
  color: #dd8b9e !important;
  font-weight: 400 !important;
  font-family: Roboto Condensed;
}

.welcome h4 {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
  color: #dd8b9e;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
}

.quick_links {

  font-size: 19px;
  font-weight: 600;
  color: #000;
}

/* .quick_links li{

} */
.quick_links li:before {
  font-family: FontAwesome;
  content: "\f101" !important;
  font-size: 20px !important;
  line-height: 6px !important;
  display: table-cell !important;
  vertical-align: middle !important;

  list-style-type: none !important;
  background: none !important;
}

.quick_links li a {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
  color: #dd8b9e;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
}

.page-title {
  font-weight: 400;
  font-style: normal;
  font-family: Roboto Condensed;
  color: #e91e63;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 15px;
}

.cart-info a img {
  /*width: 100px!important;*/
  height: auto;
}

#profile .alert-success,
#guestlogin .alert-success {

  text-align: center;
  font-size: 18px;
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
  color: #3d4244;
  text-decoration: none;
  border-color: transparent;
  margin-bottom: 15px;
}

.normal {
  font-size: 17px;
  margin-left: 35px;
  font-weight: 599;
  color: #7b7878;
}

/*Product View Page*/
/* #carButton{
  background-color: #000;
  padding: 15px;
  color: #fff;
  border-radius: 5px;
} */
/*checkout*/
.bankdetail {
  margin-left: 30px;
}

.bankdetail h6 {
  font-size: 19px;
  margin-bottom: 5px;
  text-align: left;
  color: #65011b;
  line-height: 26px;
  font-weight: normal;
}

.bankdetail p {
  color: #7d7d7d;
  padding-bottom: 2px;
  margin-bottom: 0px;
}

/*paypal*/
.moto-widget-store-paypal-btns .moto-widget-button {
  display: flex;
  justify-content: center;
}

.moto-widget-store-confirmation .alert-success {
  font-size: 20px;
  text-align: center;
  margin: 15px;
  color: green;
}

.moto-widget-store-confirmation .alert-danger {
  font-size: 20px;
  text-align: center;
  margin: 15px;
  color: red;
}

/*stripe*/
#card-element {
  padding: 20px;
  border: 1px solid #dddada;
  border-radius: 32px;
}

#card-success {
  color: green;
  font-weight: bolder;
  text-align: center;
  font-size: 20px;
}

#create_new {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: green;
  padding: 15px;
}

.moto-widget-store-stripe-btns .moto-widget-button {
  display: flex;
  justify-content: center;
}

.moto-widget-breadcrumbs__item:nth-child(2)::after {
  content: '\\';
  margin-left: 10px;
}

.moto-widget-breadcrumbs__item:nth-child(3)::after {
  content: '\\';
  margin-left: 10px;
}

#customers {
  font-family: Roboto Condensed;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}

#customers td,
#customers th {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 18px;
  font-weight: normal;
}

#customers tr:nth-child(even) {
  background-color: #f2f2f2;
}

#customers tr:hover {
  background-color: #ddd;
}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #000;

  font-size: 16px;
  color: #fff;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
  font-weight: 600;
}

/*view Order By customer*/
.table-image img {
  width: 100px;
}

.orderlist-head h5 {
  font-size: 18px;
  margin-bottom: 18px;
  text-align: left;
  color: #000;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: 600;
}

/* .order-track{

} */

.orderlist {
  width: 100%;
}

.order-track-list,
.orderlist-details,
.orderlist-deliver {
  display: flex;
  flex-direction: row;
  flex-flow: row;
  justify-content: space-between;
  border: 1px solid #f3f3f3;
}

/* .order-track-list li::before, .orderlist-details li::before{
  position: absolute;
  left: 0;
  top: 50%;
  content: " >>";
  width: 5px;
  height: 5px;

  background:none!important;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
} */
.order-track-list li {
  list-style-type: none;
  padding: 10px !important;
  border-radius: 2px !important;
  color: #f00;
  font-size: 15px;
  font-weight: normal;
  line-height: 26px;
}

.order-track-list li.active {
  background-color: #202d8d;
  color: #fff;
}

.orderlist-details li p {
  margin-bottom: 25px;
  color: #5b5b5b;
  font-weight: 500;
  text-align: center;
}

.orderlist-details h6 {
  font-family: Roboto Condensed;
  font-size: 18px;
  text-align: center;
  color: #0b4a85;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
}

.orderlist-deliver h6 {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: left;
  color: #000;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
  padding: 10px;
}

.orderlist-details {
  list-style-type: none;
}

.GT .total {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: right;
  color: #dd8b9e;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
}

.moto-widget-order-view-buttons {
  margin-top: 30px;
}

.contactus .alert-success {
  font-size: 20px;
  text-align: center;
  margin: 15px;
  color: green;
}

#view_product .product-action {
  display: flex;
  margin-bottom: 20px;
  justify-content: left !important;
}

.text-center h4 {
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  color: #e91e63;
  text-decoration: none;
  border-color: transparent;
  text-align: center;
}

/* .moto-widget-image .moto-widget-image-picture {
  max-width: 100%;
  height: 240px!important;
  width: 240px !important;
  border: 2px solid #e92769;
} */

.moto-widget-image-link {
  /* display: table-cell;*/
  display: -webkit-box;
  width: 245px;
  height: 300px;
  vertical-align: baseline;
  background: #f2f2f2;
}

.moto-widget-image .moto-widget-image-picture {
  transition: .3s;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  text-align: center;
  /* vertical-align: middle; */
  margin: 0 auto;
  display: block;
  float: none;
}

.paypal_logo {
  width: 150px !important;
  position: absolute;
  top: 0;
  left: 100px;
}

.success {
  text-align: center;
  color: #497b00;
  font-size: 19px;
  margin-bottom: 30px;
}

.continue-shopping-btn {
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  color: #fff;
  text-decoration: none;
  border-color: transparent;
  text-align: center;
  margin-top: 20px;
  display: block;
  width: 20% !important;
  margin: 20px auto;
}

#checkoutform .alert-danger {
  font-size: 14px;
  color: red;
  font-weight: 600;
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
}

.moto-widget-contact_form-group span {
  color: #f00;
  font-size: 15px;
}

.form-group {
  margin-bottom: 15px;
  /* display: flex; */
}

.delivery-form-horizontal .form-group {
  display: flex;
}

/*carousel*/

.col-item {
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  background: #FFF;
}

.col-item .photo img {
  margin: 0 auto;
  width: 100%;
  height: 270px;
}

.col-item .info {
  padding: 10px;
  border-radius: 0 0 5px 5px;
  margin-top: 1px;
}

.col-item:hover .info {
  background-color: #F5F5DC;
}

.col-item .price {
  /*width: 50%;*/
  float: left;
  margin-top: 5px;
}

.col-item .price h5 {
  line-height: 20px;
  margin: 10px;
  font-size: 14px;
}

.price-text-color {
  color: #219FD1;
}

.col-item .info .rating {
  color: #777;
}

.col-item .rating {
  /*width: 50%;*/
  float: left;
  font-size: 17px;
  text-align: right;
  line-height: 52px;
  margin-bottom: 10px;
  height: 52px;
}

.col-item .separator {
  border-top: 1px solid #E1E1E1;
}

.clear-left {
  clear: left;
}

.col-item .separator p {
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 10px;
  text-align: center;
}

.col-item .separator p i {
  margin-right: 5px;
}

.col-item .btn-add {
  width: 50%;
  float: left;
}

.col-item .btn-add {
  border-right: 1px solid #E1E1E1;
}

.col-item .btn-details {
  width: 100%;
  float: left;
  padding-left: 10px;
}

.controls {
  margin-top: 20px;
}

[data-slide="prev"] {
  margin-right: 10px;
}

/*17-9-2024*/

.cart-img img {
  width: 50px;
}

.product-image img {
  width: 100px;
}

/* .bg-success {
  background-color: #28a745 !important;
  padding: 4px 15px;
  border-radius: 5px;
  color: #fff;
}

.bg-danger {
  background-color: #dc3545 !important;
  padding: 4px 15px;
  border-radius: 5px;
  color: #fff;
} */

.size-variation,
.color-variation {
  display: flex;
}

/*my account PAGE*/
.text-danger {
  color: #dc3545 !important;
  text-align: left;
  margin-bottom: 15px;
}

.order-preview h4 {
  color: #000;
  font-size: 20px;
  text-align: left;
  font-weight: 600;
  margin: 0 auto 30px auto;
}

.cart_summary th {
  background-color: #0b4a85;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
}

.myaccount {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  text-align: left;
}

.title h2 {
  text-align: left;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

#prostock-out {
  color: #fff;
  margin: 10px auto;
  font-weight: 600;
  position: absolute;
  right: 0;
  background-color: #ff0000;
  border-radius: 3px;
  padding: 4px;
  top: -10px;
}

#prostock {
  color: #fff;
  margin: 10px auto;
  font-weight: 600;
  position: absolute;
  right: 0;
  background-color: #016210;
  border-radius: 3px;
  padding: 5px 15px;
  top: -10px;
}

.account_section__welcome li.active a {
  color: #000;
}

.my_title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.Pending {
  font-size: 14px;
  font-weight: 600;
  color: red;
}

.Processing {
  font-size: 14px;
  font-weight: 600;
  color: rgb(255, 167, 0);
}

.Shipping {
  font-size: 14px;
  font-weight: 600;
  color: rgb(125, 178, 105);
}

.Completed {
  font-size: 14px;
  font-weight: 600;
  color: rgb(125, 178, 105);
}

.ajax-loader {
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  z-index: +100 !important;
  /* width: 100%;
  height:100%; */
  width: 41%;
  height: 65%;
}

.ajax-loader img {
  position: relative;
  top: 50%;
  left: 50%;
}

.empty-img {
  width: 300px;
}

div:where(.swal2-container) div:where(.swal2-popup) {

  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 250px !important;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: hsl(0, 0%, 33%);
  font-family: inherit;
  font-size: 15px !important;
}

div:where(.swal2-icon).swal2-error [class^="swal2-x-mark-line"] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: .3125em;
  border-radius: .125em;
  background-color: #f27474;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: .8em 1em 0;
  color: inherit;
  font-size: 14px !important;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

/*4-02-2025*/
.invalid-feedback {
  text-align: left;
}

.account .form-group {
  margin-bottom: 15px;
  /* display: flex; */

}

.account .flexbox {
  display: flex;
  justify-content: space-between;
}

.account table {
  font-weight: normal;
  width: 100%;
}

.account table thead tr {
  background: #fafafa;
}

.account table thead tr th {
  color: #000;
  padding: 15px;
  border-right: 1px solid #efefef;
}

.account table thead tr th:first-child {
  text-align: center;
}

.account table tbody tr {
  border-bottom: 1px solid #efefef;
  border-right: none;
  border-left: none;
  border-top: none;
}

.account table tbody tr td {
  align-items: center;
}

.account table tbody tr td {
  padding: 10px;
  border: none;
  border-right: 1px solid #efefef;
}

@media (min-width: 768px) {
  .account table tbody tr td {
    padding: 5px;
  }
}


.stock {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.category-content {
  font-size: 17px;
  font-weight: 600;
}

.subcategory-content {
  font-size: 17px;
  font-weight: 600;
}

.cart-top h2 {
  margin: 0px 20px;
  padding: 15px 10px;
  text-align: center;
}

.add-cart-variable {


  line-height: 40px;
  text-align: center;
  font-size: 15px;
  color: #efefef;
  background: #fff;
  display: inline-block;

  border: 1px solid #efefef;
  border-top-color: rgb(239, 239, 239);
  border-right-color: rgb(239, 239, 239);
  border-bottom-color: rgb(239, 239, 239);
  border-left-color: rgb(239, 239, 239);
  -webkit-border-radius: 5%;
  -moz-border-radius: 5%;
  border-radius: 5%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-item .product-inner:hover .add-cart-variable,
.product-item .product-inner.active .add-cart-variable {
  background: #000;
  border-color: #000;
}

.price-range input[type="text"] {
  border: medium none;
  float: none;
  height: 30px;
  letter-spacing: 3px;
  text-align: center;
  width: 56%;
  word-spacing: 7px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: #d19e66;
  line-height: 23px;
}

/*side search box*/
.header-form {
  width: calc(100% - 0px);
  justify-content: space-between;
}

.header-form input {
  width: calc(100% - 70px);
  border: none;
  margin-bottom: 0;
}

.header-form button {
  border: none;
  padding: 14.5px 20.2px;
  color: #fff;
  background: #000;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0;
}

.price {
  /* background-color: #f3f3f3; */
  padding: 5px 20px;
  margin-top: 10px;
  font-size: 15px;
  color: #f00;
  font-weight: normal;
  width: 100%;
  text-align: center;
  line-height: 26px;
  margin: 10px auto;
}

.filter_products p {
  font-size: 14px;
  margin-left: 10px;
  color: #000;
}

.pro-size,
.pro-color {
  padding: 10px 0px;
}

.pro-size label,
.pro-color label {
  font-size: 16px;
  color: #181818;
  font-weight: 700
}

.success h3 {
  text-align: center;
  margin: 10px 10px;
}

.success h5,
.failed h5 {
  text-align: center;
  margin: 10px 10px;
}

.success h6,
.failed h5 {
  text-align: center;
  margin: 10px 10px;
}

#myBtn1 {
  cursor: pointer;
}

/*Product Special Image*/
.wrapper,
img {
  display: inline-block;
}

#two {
  display: none;
}

.wrapper:hover #two {
  display: inline-block;
}

.wrapper:hover #one {
  display: none;
}


/*Products All Page*/
.wrapper {
  /*width: 240px;
  height: 220px;*/
  width: 260px;
  height: 220px;
  display: table-cell;
  vertical-align: middle;
  background: #f2f2f2;
}

.wrapper:hover #two {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  display: block;
  float: none;
}

.porduct-thumb .product-cate {
  width: 351px;
  height: 275px;
  display: table-cell;
  vertical-align: middle;
  background: #f2f2f2;
}

.product-cate img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  display: block;
  float: none;
}

.porduct-thumb a {
  width: 351px;
  height: 275px;
  display: table-cell;
  vertical-align: middle;
  background: #f2f2f2;
}

.porduct-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  display: block;
  float: none;
}

.product-grid-item .product-item {
  border: 1px solid #efefef;
  margin-top: -1px;
  margin-left: -1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

#order-review {}

/* Add this to your CSS */

/* Initially hide the user menu */
.user-content {
  opacity: 0;
  /* Hidden by default */
  visibility: hidden;
  /* Prevents interaction when hidden */
  pointer-events: none;
  /* Prevents interaction when hidden */
  transition: opacity 0.3s ease, visibility 0s 0.3s, pointer-events 0s 0.3s;
}

/* Show the user menu with smooth transition */
.user-content.show {
  opacity: 1;
  /* Make it visible */
  visibility: visible;
  /* Enable visibility */
  pointer-events: all;
  /* Enable interaction */
  transition: opacity 0.3s ease, visibility 0s 0s, pointer-events 0s;
}

.user-prof {
  position: absolute;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  margin-top: -20px;
}

#user-toggle-btn {
  cursor: pointer;
  font-size: 17px;
}

#user-menu-content {
  background-color: #448ee4;
  padding: 15px;
  width: 150px;
  border-radius: 5px;
  margin-top: 0px;
}

#user-menu-content li {
  color: #fff;
  font-size: 16px;
}

.form {
  background: #fff;
  padding: 30px 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.login-form {
  width: 500px;
  margin: 0 auto;
}

.form .form-header {
  margin-bottom: 30px;
}

.form form-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #06002E;
}

.form .form-group {
  margin-bottom: 25px;
}

.form .form-group .form-control {
  padding: 12px 18px;
  border-radius: 0px;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.register-form {
  width: 500px;
  margin: 0 auto;
}

.captcha {
  display: flex;
  justify-content: space-evenly;
  justify-content: start;
  gap: 15px;
}

.myaccount li a:hover {
  padding-left: 10px;
  color: #659494;
}

.myaccount li a {
  font-size: 16px;
  font-weight: 500;
  color: #343535;
  line-height: 45px;
  transition: all .5s ease-in-out;
}

.flexbox {
  display: flex;
  justify-content: space-between;
}

.nav-item {}

.nav-item p {
  font-size: 14px;
}


.myaccount li a.active {
  color: #448ee4;
}

.add-cart-variable {
  background-color: #0e2a86;
  color: #fff;
  padding: 0px 10px;
  border-radius: 5px;
}

.amount {
  margin-bottom: 10px;
}

/* .loading-img {
  width: 20px;  
  height: 20px;  
  margin-right: 10px;  
  vertical-align: middle;  
} */

/*Quantum Tonics 31-10-25*/
.table-cart-stepper {
  display: flex !important;
}

.fa-trash::before {
  content: "\f1f8";
  font-size: 20px;
  font-style: normal;
  color: red;
}

#social-links ul {
  display: inline-flex;
}

#social-links ul li {
  font-size: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.cart-qty:focus-within {
  border-color: #000;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

.cart-qty button {
  background: #f8f8f8;
  border: none;
  color: #333;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.cart-qty button:hover {
  background: #000;
  color: #fff;
}

.cart-qty button:active {
  transform: scale(0.95);
}

.cart-qty .qty-input {
  width: 50px;
  height: 38px;
  text-align: center;
  border: none;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: 16px;
  color: #333;
  outline: none;
  background: #fff;
  transition: all 0.2s ease;
}

.cart-qty .qty-input:focus {
  background: #f0f8ff;
}

/* Overlay covering the div */
.loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  /* semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Spinner styling */
.spinner {
  border: 5px solid #f3f3f3;
  /* light gray */
  border-top: 5px solid #3498db;
  /* blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*auth*/
/* Base container */
.rd-navbar-auth {
  display: flex;
  align-items: center;
}

/* User menu wrapper */
.user-menu {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
}

/* Toggle link */
.user-menu>a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.user-menu>a:hover {
  color: #000;
}

/* Dropdown menu */
.user-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 130px;
  display: none !important;
  z-index: 1000;
  border-radius: 4px;
}

/* Show dropdown on hover */
.user-menu:hover .user-dropdown {
  display: block !important;
}

/* Dropdown links */
.user-dropdown li {
  border-bottom: 1px solid #eee;
}

.user-dropdown li:last-child {
  border-bottom: none;
}

.user-dropdown a {
  display: inline-block;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #1a228a !important;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
  font-size: 15px;
  font-weight: normal;
}

.user-dropdown a:hover {
  background: #248ae3;
  color: #fff;
}

.user-dropdown i {
  width: 20px;
  text-align: center;
}

.fa-user::before {
  content: "\f007";
  font-size: 27px;
  font-style: initial;
}

/* Custom CSS for alert-success */
.alert {
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 16px;
}

.alert-success {
  background-color: #d4edda;
  /* Light green background */
  color: #155724;
  /* Dark green text */
  border: 1px solid #c3e6cb;
  /* Green border */
}

.alert-success a {
  color: #155724;
  /* Dark green links */
}

.alert-success .close {
  color: #155724;
}

.alert-danger {
  padding: 15px;
  border: 1px solid #f5c2c7;
  background-color: #f8d7da;
  color: #842029;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  margin: 10px 0;
}

.alert-danger strong {
  font-weight: bold;
}

.bi-person::before {
  content: "\f4e1";
  font-size: 28px;
}

.badge {
  padding: 10px 10px;
  font-size: 15px;
  border-radius: 10px;
  font-weight: normal;
}