/* coustom css */
#userrolelist {
    display: inline-block !important;
    font-size: 16px;
    margin: 0 0 7px 0;
}

#addclients {
    float: right;
    /* right: 102px; */
}

#adduserrole {
    float: right;
}

#clientuserdelete {
    float: right;
}

.custom-style {
    display: inline-block !important;
    font-size: 16px;
    margin: 0 0 7px 0;
}

.custom-right {
    float: right !important;
}

.custom-list .custom-search {
    padding: 0px !important;
}

.app-search .search-icon {
    position: relative;
    /* padding-right: 5px; */
    z-index: 10;
    font-size: 13px;
    line-height: 38px;
    right: 30px;
    top: 0;
    color: var(--bs-header-item-color);
}

.btnSearch {
    float: right !important;
}

.position-relative .listing-search {
    width: 78%;
    display: inline-block;
}

.status-btn {
    cursor: pointer !important;
}

#temp {
    display: flex;
    flex-direction: row-reverse;
    /* background-color: var(--bs-secondary);
    overflow: hidden; */
}

.col-md-6 .billing-title {
    display: inline-block !important;
}

#edit-billing-address {
    color: deepskyblue;
    cursor: pointer;
}

#billing-box {
    display: none;
    background-color: #e4ebf1;
}

#edit-shipping-address {
    color: deepskyblue;
    cursor: pointer;
}

#price-tbl {
    background-color: #e4ebf1;
    display: none;
}

#product-price-body {
    display: none;
}

#product-listing {
    /* display: none; */
    float: right;
}

#final-submit-btn {
    display: none;
}

#total-section {
    display: none;
    float: right;
    background-color: #e4ebf1;
}

.total-price-sec .price-label {
    font-size: 20px;
}

/* .table-editable th,
.table-editable td,
.table-editable input {
    width: 85px;
}

.table-editable th:nth-child(1) {
    width: 8%;
}

.table-editable th:nth-child(2),
.table-editable td:nth-child(2),
.table-editable input:nth-child(2) {
    width: 50%;
} */

#add-product-btn {
    margin: 9px 10px -8px 5px;
    float: right;
}

.product-name.mb-1 {
    font-size: 16px;
}

.discount-btn {
    display: flex;
    align-items: flex-end;
}

.discount-section {
    display: none;
}

#quotation-template-title {
    text-align: center;
    font-size: 40px;
}

.rowbrdr .client-cmp-name {
    margin-bottom: 0.1rem !important;
}

.right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

@media print {
    .page-break-after {
        page-break-after: always;
    }
}

.modal:nth-of-type(even) {
    z-index: 1052 !important;
}

.modal-backdrop.show:nth-of-type(even) {
    z-index: 1051 !important;
}

.text-wrap {
    white-space: normal;
}

.width-200 {
    width: 200px;
}

#add-new-product {
    cursor: pointer;
}

.table-responsive .dt-responsive .wider-column {

    white-space: nowrap;
    /* Prevent line breaks */
    overflow: hidden;
    /* Hide overflowing content */
    text-overflow: ellipsis;
    /* Display an ellipsis (...) when content overflows */
    /* width: 150px !important;  */
}

#display-print-roll-no {
    display: none;
}

.add-pointer-link-prop {
    color: var(--bs-primary) !important;
    cursor: pointer !important;
}

.bottom-border {
    border-bottom: 1.7px solid black !important;
}

.box-border {
    border: 1px solid gray !important;
    padding: 14px !important;
}

.hr-with-icon {
    display: flex;
    align-items: center;
    width: 100%;
    margin: -15px 0;
}

.hr-with-icon .scissor-icon {
    margin-right: 10px;
    font-size: 1em;
}

.hr-with-icon hr {
    flex-grow: 1;
    border: none;
    border-top: 1px dashed #000;
    /* Dashed border */
}

.borderless-table {
    border: none !important;
}

.borderless-table tbody tr td {
    border: none !important;
}

/* Variables */
:root {
    --gray: #9F9FA3;
    --blue: #00637C;
    --white: #DBF1FF;
}

.ProgressBar {
    margin: 0 auto;
    padding: 2em 0 3em;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.ProgressBar-step {
    text-align: center;
    position: relative;
    width: 100%;
}

.ProgressBar-step:before,
.ProgressBar-step:after {
    content: "";
    height: 0.5em;
    background-color: var(--gray);
    position: absolute;
    z-index: 1;
    width: 100%;
    left: -50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all .25s ease-out;
}

.ProgressBar-step:first-child:before,
.ProgressBar-step:first-child:after {
    display: none;
}

.ProgressBar-step:after {
    background-color: var(--blue);
    width: 0%;
}

.ProgressBar-step.is-complete+.ProgressBar-step.is-current:after,
.ProgressBar-step.is-complete+.ProgressBar-step.is-complete:after {
    width: 100%;
}

.ProgressBar-icon {
    width: 2em;
    height: 2em;
    background-color: var(--gray);
    fill: var(--gray);
    border-radius: 50%;
    padding: 0.5em;
    max-width: 100%;
    z-index: 10;
    position: relative;
    transition: all .25s ease-out;
}

.is-current .ProgressBar-icon {
    fill: var(--blue);
    background-color: var(--blue);
}

.is-complete .ProgressBar-icon {
    fill: var(--white);
    background-color: var(--blue);
}

.ProgressBar-stepLabel {
    display: block;
    text-transform: uppercase;
    color: var(--gray);
    position: absolute;
    padding-top: 0.5em;
    width: 100%;
    transition: all .25s ease-out;
}

.is-current>.ProgressBar-stepLabel,
.is-complete>.ProgressBar-stepLabel {
    color: var(--blue);
}

/* FOR CODEPEN FORMATTING */
.wrapper {
    max-width: 1000px;
    margin: 4em auto;
    font-size: 16px;
}

.date-field-group {
    display: flex;
    align-items: center;
    gap: 5px;
    border: none;
    padding: 0;
    margin: 0;
}

.date-field-group .field-inline-block {
    margin: 0;
}