input, select, textarea{
    border-radius: 10px;
}
.section-b-space {
    padding-top: 50px;
    padding-bottom: 50px;
}
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }
  .notif-alert label{
    font-size: 12px;
    font-weight: bold;
    color: red !important;
  }
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
  }
  
  .stepper-item.active {
    font-weight: bold;
  }
  
  .stepper-item .step-name a {
    text-decoration: none;
    color:#000;
  }
  .stepper-item.completed .step-counter,.stepper-item.completed1 .step-counter {
    background-color: #25d366;
    font-weight: bold;color: white;
  }
  .stepper-item.active .step-counter {
    font-weight: bold;
    animation: changeColor 3s infinite;
  }
  .stepper-item.completed1::after {
    position: absolute;
    content: "";
    border: 2px solid #25d366;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    animation: changeColor 3s infinite;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }
  
  
  
    .breadcrumb-section {
    background-color: #f8f8f8;
    padding: 15px 0;
    }
  .image_product_mobile {
      height: 50vh;
      width: 100%;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      display: block;
      margin: 0px auto;
  }
    .image_product{
      height: 150px;
      width: 200px;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }
    #tb_cart tr{
      border-top:1px solid;
      border-bottom:1px solid;
    }
    #tb_cart td{
      vertical-align: middle;
      text-align: center;
    }
    .cart-section tbody tr td a{
      color: #25d366;
      font-weight: bold !important;
      font-size: 17px;
      text-transform: capitalize;
      margin-bottom: 0;
    }
    @keyframes changeColor {
        0% {
            border:3px solid #25d366;
        }
        50% {
            border:3px solid #ececee;
        }
        100% {
            border:3px solid #25d366;
        }
    }