/* Hide increment and decrement icons in number input fields */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
@media (max-width: 576px) {
  .social-login {
    height: auto;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner {
    padding: 0px 20px 50px;
  }
}
@media (max-width: 767.98px) {
  .header .main-header .dashboard {
    display: none !important;
  }
}
.header .main-header {
  display: flex;
  align-items: center;
}
.header .main-header .dashboard {
  display: inline-block;
  width: 100%;
  text-align: right;
}
.header .main-header .header-right .member-login {
  display: inline-block;
  vertical-align: middle;
}
.header .main-header .header-right .member-login img {
  float: left;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin: 0px 10px 0px 0px;
  vertical-align: middle;
}
.header .main-header .header-right .member-login .info-member {
  padding-left: 45px;
  text-align: left;
  line-height: 19px;
}
.header .main-header .header-right .member-login .info-member strong {
  display: block;
}
.icon-down {
  display: inline-block;
  padding-right: 15px;
  background: url(../imgs/template/triangle.svg) no-repeat right center;
}
.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da; /* Bootstrap default border color */
  height: calc(
    2.25rem + 2px
  ); /* Match the height of the Bootstrap form-control */
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: calc(
    2.25rem
  ); /* Match the line-height of the Bootstrap form-control */
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: calc(2.25rem); /* Match the height of the Bootstrap form-control */
}
.badge-circle {
  position: relative;
  display: inline-block;
  padding: 0.5rem;
  border-radius: 50%;
  color: #fff;
}

.badge-circle .fa-shopping-cart {
  font-size: 1.2rem;
}

.badge-circle .cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: #ff0000;
  color: #fff;
  border-radius: 50%;
  padding: 0.2rem;
  width: 1.5rem; /* Set width */
  height: 1.5rem; /* Set height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #f9f9f9;
}

.cart-item-image img {
  max-width: 100px;
  border-radius: 0.5rem;
}

.cart-item-details {
  flex-grow: 1;
  margin-left: 1rem;
}

.cart-item-details h6 {
  margin-bottom: 0.5rem;
}

.cart-item-details .d-flex {
  align-items: center;
}

.cart-item-remove {
  margin-left: 1rem;
}

.cart-item-remove .remove-item {
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border: none;
  background: none;
  color: #dc3545;
  cursor: pointer;
}

.cart-item-remove .remove-item:hover {
  color: #c82333;
}

.btn-outline-secondary {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  /* Smaller font size */
}

.qty-text {
  width: 40px;
  /* Smaller width */
  text-align: center;
  padding: 0.25rem;
  /* Smaller padding */
  font-size: 0.875rem;
  /* Smaller font size */
}