.step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}
.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #007bff;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer; /* Added cursor pointer */
}
.step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: #007bff;
    z-index: -1;
}
#multi-step-form{
    overflow-x: hidden;
}
.next-step, .next-step:hover {
    float: right;
    background-color: #00002a;
    color: #fff;
    border: 0;
}
.prev-step, .prev-step:hover {
    background-color: #f5f5f5;
    color: #00002a;
    border-color: #f5f5f5;
}
.other-input, .other-subinput {
    display: none;
}
#merchant-wizard .field-row .field-col .field-pwd {
    height: 45px;
    padding: 0;
}
.badge-style {
    line-height: 1.3;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    white-space: normal;
    text-align: end;
}
.list>div, .list-preview>div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #00002a;
    border-bottom: 1px solid #f5f5f5;
    padding: .5rem 0;
}
.subtotal_value {
    font-size: 18px;
    font-weight: 500;
}
.list > div>div {
    flex: 1;
}
.list > div div+div {
    text-align: right;
    flex: 1;
}
.list-preview > div>div {
    flex: 1;
}
.list-preview > div div+div {
    text-align: right;
    flex: 1;
}
input#coupon_code {
    height: 45px;
    background-color: transparent;
    border: 1px solid rgb(13 61 64);
    border-radius: 6px 0px 0px 6px;
    border-right: 0px;
}
.btn-code-apply {
    background-color: #00002a;
    color: #fff;
    border: 1px solid #00002a;
    border-radius: 0px 6px 6px 0px;
}
.btn-code-apply:hover {
    border: 1px solid #00002a;
    color: #00002a;
    background-color: #fff;
}
.card_detail .form-label {
    color: #00002a;
    font-size: 14px;
    font-weight: 400;
}
.card_detail .input-group .form-control {
    border-color: #00002a;
    border-left: 0;
    border-radius: 0px 6px 6px 0px;
    background-color: #fff;
}
.card_detail .input-group-text {
    border-color: transparent;
    background-color: transparent;
    color: #00002a;
    font-size: 20px;
}
span.field-mandatory {
    color: #d00c27;
}
.card_detail .input-group .form-control:focus {
    border: 1px solid #00002a;
    border-left: 0;
}
.select_multiple .bootstrap-select>.dropdown-toggle {
    background-color: transparent;
    padding: 10px 5px;
    border: 0;
}
.select_multiple .bootstrap-select .dropdown-toggle:focus {
    outline: 0 !important;
    outline: 0 !important;
    outline-offset: 0;
}
.select_multiple .btn-group.btn-group-sm {
    width: 100%;
}
.select_multiple .bs-searchbox .form-control {
    border: 1px solid #f1f1f1;
}
.time-slot-tbl td {
    white-space: nowrap;
    vertical-align: middle;
    padding: 5px 1px !important;
    border: 0;
    font-weight: 500;
    text-align: center;
    color: #00002a;
}
.time-slot-tbl th {
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
}
.time-slot-tbl .time-input, .time-slot-tbl .time-input:focus {
    height: auto;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 6px;
    color: #00002a;
}
.time-slot-tbl select.status_select {
    height: auto;
    border-radius: 6px;
    color: #00002a;
    font-weight: 400;
}
.payment-status-title {
    color: #00002a;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 1rem;
}
.payment-card-div {
    background-color: #dff0d8;
    border-radius: 6px;
    padding: 20px;
    display: none;
}
.payment-card-div p {
    color: #3c763d;
    font-size: 16px;
    margin-bottom: .75rem;
}
h3.step-head {
    color: #00002a;
    font-size: 30px;
    font-weight: 400;
}
.progress-area {
    height: 3px;
}
.select_multiple .dropdown-menu.show {
    background-color: #f5f5f5;
}
.select_multiple .bs-select-all, .select_multiple .bs-deselect-all {
    background-color: #ddd;
}

@media (max-width: 767px) {
    .time-slot-tbl table, .time-slot-tbl thead, .time-slot-tbl tbody, .time-slot-tbl th, .time-slot-tbl td, .time-slot-tbl tr { 
      display: block;
    }
    .time-slot-tbl thead tr { 
      display: none;
    }
    .time-slot-tbl tr { 
      margin-bottom: 10px; 
      border: 1px solid #ddd; 
      padding: 10px;
      border-radius: 6px;
    }
    .time-slot-tbl td {
      text-align: left;
      padding: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 45px;
      font-weight: bold;
    }
    .time-slot-tbl td::before {
      content: attr(data-label);
      font-weight: bold;
    }
    .time-slot-tbl .time-input, .time-slot-tbl select.status_select {
        width: 100px;
    }
  }