:root {
    --color-transit: #9e9e9e;
    --color-dye: #607D8B;
    --color-embroidary: #FF5722;
    --color-stitching: #009688;
}

html, body{
    height: 100%;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #222;
    margin: 0;
}

/** Loader Start **/

.ispinner {
    position: relative;
    width: 20px;
    height: 20px;
}
.ispinner .ispinner-blade {
    position: absolute;
    top: 6.5px;
    left: 8.5px;
    width: 2.5px;
    height: 6.5px;
    background-color: #333;
    border-radius: 1.25px;
    animation: iSpinnerBlade 1s linear infinite;
    will-change: opacity;
}
.ispinner .ispinner-blade:nth-child(1) {
    transform: rotate(45deg) translateY(-6.5px);
    animation-delay: -1.625s;
}
.ispinner .ispinner-blade:nth-child(2) {
    transform: rotate(90deg) translateY(-6.5px);
    animation-delay: -1.5s;
}
.ispinner .ispinner-blade:nth-child(3) {
    transform: rotate(135deg) translateY(-6.5px);
    animation-delay: -1.375s;
}
.ispinner .ispinner-blade:nth-child(4) {
    transform: rotate(180deg) translateY(-6.5px);
    animation-delay: -1.25s;
}
.ispinner .ispinner-blade:nth-child(5) {
    transform: rotate(225deg) translateY(-6.5px);
    animation-delay: -1.125s;
}
.ispinner .ispinner-blade:nth-child(6) {
    transform: rotate(270deg) translateY(-6.5px);
    animation-delay: -1s;
}
.ispinner .ispinner-blade:nth-child(7) {
    transform: rotate(315deg) translateY(-6.5px);
    animation-delay: -0.875s;
}
.ispinner .ispinner-blade:nth-child(8) {
    transform: rotate(360deg) translateY(-6.5px);
    animation-delay: -0.75s;
}
.ispinner.ispinner-large {
    width: 35px;
    height: 35px;
}
.ispinner.ispinner-large .ispinner-blade {
    top: 11.5px;
    left: 15px;
    width: 5px;
    height: 12px;
    border-radius: 2.5px;
}
.ispinner.ispinner-large .ispinner-blade:nth-child(1) {
    transform: rotate(45deg) translateY(-11.5px);
}
.ispinner.ispinner-large .ispinner-blade:nth-child(2) {
    transform: rotate(90deg) translateY(-11.5px);
}
.ispinner.ispinner-large .ispinner-blade:nth-child(3) {
    transform: rotate(135deg) translateY(-11.5px);
}
.ispinner.ispinner-large .ispinner-blade:nth-child(4) {
    transform: rotate(180deg) translateY(-11.5px);
}
.ispinner.ispinner-large .ispinner-blade:nth-child(5) {
    transform: rotate(225deg) translateY(-11.5px);
}
.ispinner.ispinner-large .ispinner-blade:nth-child(6) {
    transform: rotate(270deg) translateY(-11.5px);
}
.ispinner.ispinner-large .ispinner-blade:nth-child(7) {
    transform: rotate(315deg) translateY(-11.5px);
}
.ispinner.ispinner-large .ispinner-blade:nth-child(8) {
    transform: rotate(360deg) translateY(-11.5px);
}

@keyframes iSpinnerBlade {
  0% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.25;
    }
}


/** Loader End **/

/** Datepicker Start **/

.ui-datepicker-header{
    display: flex;
    height: 50px;
    border-radius: 8px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.ui-datepicker-title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ui-datepicker-next, .ui-datepicker-prev{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    font-weight: 300;
    background: #f1f5f8;
    border-radius: 4px;
}

.ui-datepicker-calendar{
    width: 100%;
    table-layout: fixed;
}

.ui-datepicker-calendar th{
    font-size: 13px;
    color: #b9c7cd;
    font-weight: 400;
    height: 30px;
}

.ui-datepicker-calendar td a, .ui-datepicker-calendar td span{
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 4px;
    width: 100%;
    display: block;
    text-decoration: none;
    background: transparent;
    font-size: 14px;
    color: #aaa;
}

.ui-datepicker-unselectable{
    opacity: 0.6;
}

.ui-datepicker-calendar td a{
    color: #414d55;
}

.ui-datepicker-calendar td a:hover{
    background: #dfe8ec;
}

.ui-datepicker-calendar .ui-datepicker-current-day a, .ui-datepicker-calendar .ui-datepicker-current-day a:hover{
    background: #2196F3;
    color: #fff;
}

.val-na{
    color: #aaa;
}

/** Datepicker End **/

.login-fluid{
    width: 100%;
    height: 100%;
    background: url(/assets/images/login-bg.jpg) no-repeat center center, #0f204f;
    box-sizing: border-box;
}

.login-container{
    background: #fff;
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-header-title{
    font-size: 2rem;
    font-weight: 700;
    color: #E91E63;
}

.login-header-subtitle{
    font-size: 1.3rem;
}

.login-box-title{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.login-label{
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 5px;
}

.login-input-wrap{
    height: 50px;
    background: #f1f5f8;
    display: flex;
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
    border: 1px solid transparent;
}

.login-input{
    flex: 1;
    width: 100%;
    background: none;
    border: none;
    padding: 0 15px;
    color: #414d55;
    font-family: inherit;
}

.login-input:focus{
    outline: none;
}

.login-input::placeholder{
    color: #b9c7cd;
}

.login-input-focus{
    border: 1px solid #b9c7cd;
}

.login-submit-holder{
    margin-top: 25px;
}

.login-error-wrap{
    font-size: 0.9rem;
    color: #f44336;
    margin-bottom: 20px;
    display: none;
}

.login-submit-button{
    height: 50px;
    background: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.login-copy{
    font-size: 0.9rem;
    color: #000;
    height: 70px;
    display: flex;
    align-items: flex-end;
}

/** Main Start **/

.container-fluid{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.sidebar-container{
    height: 100%;
    width: 320px;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

.main-container{
    width: 100%;
    height: 100%;
    padding-left: 320px;
    overflow: hidden;
    box-sizing: border-box;
}

.main-header{
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.container{
    background: #fff;
    width: 100%;
    height: calc(100% - 70px);
    box-sizing: border-box;
    padding: 15px;
    overflow-x: hidden;
}

.sidebar-header{
    height: 70px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    background: #e7f2fe;
    border-right: 1px solid #e7f2fe;
}

.sidebar-header-avatar{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 5px;
    background: #fff;
}

.sidebar-header-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.sidebar-header-info{
    flex: 1;
    padding-left: 15px;
    box-sizing: border-box;
}

.sidebar-header-name{
    font-size: 1.1rem;
}

.sidebar-header-position{
    font-size: 0.8rem;
    text-transform: capitalize;
}

.sidebar-inner{
    height: 100%;
}

.sidebar-body{
    height: calc(100% - 70px);
    padding: 2px 0;
    overflow-x: hidden;
    border-right: 1px solid #eee;
}

.sidebar-menu-item{
    display: flex;
    text-decoration: none;
    padding: 10px 15px;
    color: inherit;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2px;
}

.sidebar-menu-item:hover, .sidebar-menu-active{
    background: #f1f5f8;
}

.sidebar-menu-icon{
    font-size: 1.6rem;
    margin-right: 15px;
}

.sidebar-menu-name{
    flex: 1;
}

.sidebar-menu-header{
    flex: 1;
    display: flex;
    align-items: center;
}

.sidebar-menu-chevron{
    font-size: 1.6rem;
    color: #606771;
    transition: all 0.3s ease-in-out;
}

.sidebar-menu-expandable{
    flex-wrap: wrap;
}

.sidebar-submenu-container{
    width: 100%;
    padding: 10px;
    display: none;
}

.sidebar-submenu-open .sidebar-submenu-container{
    display: block;
}

.sidebar-submenu-item{
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 8px;
    transition: all 0.3s ease-in-out;
    color: inherit;
    text-decoration: none;
    margin-bottom: 2px;
}

.sidebar-submenu-item:hover, .sidebar-submenu-active{
    background: #fff;
}

.sidebar-submenu-item .sidebar-menu-icon{
    font-size: 1.4rem;
}

.sidebar-submenu-open{
    background: #f1f5f8;
}

.sidebar-submenu-open .sidebar-menu-chevron{
    transform: rotate(180deg);
}

.sidebar-logout-button{
    color: #f44336;
}

.header-action-wrap{
    display: flex;
}

.header-icon-btn{
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
}

.header-logout-button{
    height: 40px;
}

.main-header-title{
    font-size: 1.8rem;
    font-weight: 600;
    color: #3F51B5;
}

.header-action-wrap{
    display: flex;
    align-items: center;
}

.header-icon-btn{
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    color: #000;
    border-radius: 40px;
    border: 1px solid #eee;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-left: 20px;
    cursor: pointer;
}

.header-logout-button{
    height: 40px;
    margin-left: 20px;
    background: rgb(255 228 226);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    color: #f44336;
    border-radius: 4px;
    cursor: pointer;
}

.dashboard-grid-wrap{
    display: grid;
    grid-column-gap: 15px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 25px;
}

.dashboard-grid-item{
    background: #f1f5f8;
    padding: 15px;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.dashboard-grid-title{
    font-size: 1.2rem;
    font-weight: 600;
}

.dashboard-graph-container{
    display: flex;
    width: 100%;
    height: calc(100% - 25px);
    position: relative;
}

.dashboard-graph-line{
    position: absolute;
    bottom: 25px;
    width: 100%;
    height: 1px;
    background: #dfe5e9;
}

.dashboard-graph-item{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashboard-graph-wrap{
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.dashboard-graph{
    width: 20px;
    height: 0;
    background: #ddd;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.graph-one .dashboard-graph{
    background: var(--color-transit);
    height: 40%;
}

.graph-two .dashboard-graph{
    background: var(--color-dye);
    height: 70%;
}

.graph-three .dashboard-graph{
    background: var(--color-embroidary);
    height: 50%;
}

.graph-four .dashboard-graph{
    background: var(--color-stitching);
    height: 30%;
}

.dashboard-graph-label{
    height: 25px;
    display: flex;
    align-items: flex-end;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.dashboard-grid-main{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-grid-value{
    display: flex;
    align-items: center;
}

.dashboard-grid-number{
    font-size: 2rem;
    font-weight: 300;
    color: #222;
}

.dashboard-grid-footer{
    display: flex;
}

.dashboard-grid-alt{
    flex: 1;
}

.dashboard-grid-month{
    font-size: 0.9rem;
    font-weight: 500;
    color: #414d55;
}

.dashboard-grid-alt .dashboard-grid-number{
    font-size: 1.3rem;
}

.page-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}

.page-header-title{
    font-size: 2rem;
    font-weight: 700;
}

.page-header-button{
    background: #222;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0 25px;
    border-radius: 4px;
    margin-left: 15px;
    cursor: pointer;
}

.popup-fluid{
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: none;
}

.popup-container, .super-popup-container{
    width: 100%;
    min-height: calc(100% - 100px);
    box-sizing: border-box;
    background: #fff;
    margin: 50px auto;
    max-width: 900px;
    display: none;
}

.popup-inner{
    padding: 15px;
}

.popup-header{
    display: flex;
    align-items: center;
    padding: 5px;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.popup-header-title{
    font-size: 1.5rem;
    font-weight: 600;
}

.close-popup-fluid, .close-super-container{
    cursor: pointer;
    font-size: 1.8rem;
}

.popup-body{
    padding: 0 5px;
}

.form-input-holder{
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.form-input-holder:first-child{
    margin-top: 15px;
}

.form-input-container{
    width: 100%;
}

.form-label{
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 3px;
    display: block;
}

.form-input-wrap{
    background: #f1f5f8;
    width: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.form-input{
    height: 50px;
    border: none;
    background: none;
    box-sizing: border-box;
    padding: 0 15px;
    width: 100%;
    font-family: inherit;
}

.form-input:focus{
    outline: none;
}

.form-input-focus, .form-datepicker-open{
    border: 1px solid #b9c7cd;
}

.form-icon-wrap{
    width: 60px;
    height: 40px;
    border-left: 1px solid #dfe5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #606771;
}

.form-datepicker-wrap, .form-search-wrap{
    position: relative;
}

.form-datepicker-container, .form-search-container{
    position: absolute;
    background: #f1f5f8;
    top: calc(100% + 5px);
    border-radius: 4px;
    border: 1px solid #b9c7cd;
    display: none;
    width: 100%;
    left: 0;
    z-index: 2;
}

.form-search-inner{
    padding: 15px;
}

.form-search-empty{
    font-size: 0.9rem;
}

.form-search-item{
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfe5ed;
    margin-bottom: 10px;
    cursor: pointer;
}

.form-search-item:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.search-item-icon{
    font-size: 1.4rem;
    width: 34px;
}

.design-search-item, .dye-search-item, .embroidery-search-item, .stitching-search-item{
    align-items: center;
}

.design-search-item .search-item-icon, .dye-search-item .search-item-icon, .embroidery-search-item .search-item-icon, .stitching-search-item .search-item-icon{
    width: 34px;
    margin-right: 20px;
}

.search-item-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.search-item-maintext{
    font-size: 0.9rem;
    font-weight: 500;
}

.search-item-alttext{
    font-size: 0.8rem;
    color: #606771;
}

.form-section-separator{
    margin-top: 25px;
    border-top: 1px dashed #b9c7cd;
    margin-bottom: 15px;
}

.form-section-title{
    font-size: 1.2rem;
    margin-bottom: -15px;
}

.form-section-subtitle{
    margin-top: 30px;
    margin-bottom: -15px;
}

.order-total-container{
    font-size: 1.1rem;
    margin-top: 25px;
}

.order-total-error, .form-section-info{
    font-size: 0.8rem;
    color: #606771;
}

.form-section-info{
    margin-top: 10px;
}

.numeric-icon{
    color: #F44336;
    font-size: 1.2rem;
    line-height: 1;
}

.status-switch-container, .gst-switch-container, .service-switch-container{
    display: flex;
    height: 50px;
    padding: 5px;
    padding-left: 0;
    box-sizing: border-box;
    border: 1px solid #b9c7cd;
    border-radius: 4px;
    width: calc(50% - 10px);
    background: #f1f5f8;
    align-items: center;
}

.status-switch-item, .gst-switch-item, .service-switch-item{
    height: 40px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 5px;
    transition: all 0.3s ease-in-out;
    flex: 1;
}

.status-switch-item:hover, .gst-switch-item:hover, .service-switch-item:hover{
    background: #dfe5ed;
}

.status-switch-active, .status-switch-active:hover, .gst-switch-active, .gst-switch-active:hover, .service-switch-active, .service-switch-active:hover{
    background: #222;
    color: #fff;
    cursor: default;
}

.form-submit-holder{
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-error-wrap{
    font-size: 0.8rem;
    color: #f44336;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

.form-submit-button{
    background: #2196F3;
    width: calc(50% - 10px);
    max-width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
}

.page-table-empty{
    padding: 50px;
    text-align: center;
    font-size: 1.4rem;
    color: #b9c7cd;
}

.table-status-item{
    font-weight: 500;
}

.table-status-placed, .table-status-assigned{
    color: #414d55;
}

.table-status-transit, .table-status-dye, .table-status-requested{
    color: #ff9431;
}

.table-status-embroidery{
    color: #E91E63;
}

.table-status-stitching{
    color: #673AB7;
}

.table-status-delivered, .table-status-complete, .table-status-active{
    color: #009688;
}

.table-status-unassigned, .table-status-inactive, .table-status-awaiting{
    color: #999;
    text-transform: capitalize;
}

.table-status-approved{
    color: #2196F3;
}

.table-status-review{
    color: #f44336;
}

.product-id-status{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.view-item-id{
    background: #f1f5f8;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    width: max-content;
    border-radius: 2px;
    font-weight: 500;
}

.view-order-name{
    font-size: 1.3rem;
    margin-top: 15px;
    margin-bottom: -10px;
}

.product-item-value{
    font-size: 1.1rem;
    color: #606771;
    display: flex;
    align-items: center;
}

.product-item-value span{
    font-size: 0.8rem;
    margin-left: 5px;
    font-weight: 500;
}

.order-cost-table{
    margin-top: 30px;
    background: #f1f5f8;
    border: 1px solid #dfe5ed;
    border-bottom: none;
}

.cost-table-item{
    display: flex;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid #dfe5ed;
}

.cost-table-name{
    flex: 1;
    display: flex;
    height: 40px;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;
}

.cost-table-value{
    width: 150px;
    border: 1px solid #b9c7cd;
    border-top: 0;
    border-bottom: 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;
    justify-content: flex-end;
}

.cost-table-final{
    width: 150px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;
    justify-content: flex-end;
    font-weight: 600;
}

.cost-total-item{
    font-size: 1.3rem;
    text-align: right;
    padding: 10px;
    padding-bottom: 0;
    font-weight: 600;
}

.cost-total-small{
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.view-order-status{
    font-size: 1.2rem;
    font-weight: 600;
}

.note-submit-holder{
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
}

.note-submit-button{
    background: #222;
    color: #fff;
    height: 50px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.order-status-button, .stock-status-button, .alt-form-button{
    height: 50px;
    background: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    width: max-content;
    min-width: 220px;
    padding: 0 30px;
}

.view-notes-title{
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.view-note-item{
    background: rgb(230 244 254);
    padding: 10px 15px;
    box-sizing: border-box;
    margin-top: 10px;
}

.note-item-time{
    text-align: right;
    font-size: 12px;
    font-weight: 500;
    color: #606771;
}

.note-item-message{
    font-style: italic;
}

.form-file-label{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f8;
    font-size: 42px;
    color: #b9c7cd;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.form-file-label img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-design-photo{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    background: #dfe5ed;
}

.table-design-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-design-photo i{
    font-size: 20px;
    color: #b9c7cd;
}

.table-design-photo img.dress-placeholder{
    width: 80%;
    height: 80%;
}

.stock-nextstep-title{
    background: #dbf0fe;
    width: max-content;
    font-size: 0.8rem;
    padding: 2px 10px;
    color: #03A9F4;
    border-radius: 3px;
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.stock-nextstep-title i{
    font-size: 1rem;
    margin-right: 10px;
}

.form-counter-wrap{
    display: flex;
    height: 50px;
    background: #f1f5f8;
    width: 170px;
    border-radius: 4px;
    padding: 5px;
    box-sizing: border-box;
}

.form-counter-button{
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1.3rem;
}

.form-counter-input{
    width: 60px;
    background: none;
    border: none;
    text-align: center;
    font-size: 1.2rem;
    padding: 0;
}

.form-counter-input:focus{
    outline: none;
}

.counter-button-inactive{
    color: #aaa;
    cursor: default;
}

.stock-timeline-wrap{
    position: relative;
}

.stock-timeline-line{
    position: absolute;
    top: 25px;
    left: 25px;
    height: calc(100% - 50px);
    border-left: 3px dashed #dbf0fe;
}

.stock-timeline-item{
    display: flex;
    margin-top: 35px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stock-timeline-waiting{
    align-items: center;
    color: #b9c7cd;
}

.stock-timeline-icon{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbf0fe;
    color: #03A9F4;
    font-size: 28px;
}

.stock-timeline-waiting .stock-timeline-icon{
    color: #b9c7cd;
    background: #f1f5f8;
}

.stock-timeline-body{
    flex: 1;
    margin-left: 20px;
}

.stock-timeline-name{
    font-size: 1rem;
    font-weight: 700;
}

.stock-timeline-time{
    font-size: 0.7rem;
    font-weight: 500;
}

.header-switch-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dfe5ed;
    height: 40px;
    border-radius: 40px;
    padding: 5px;
    box-sizing: border-box;
    width: 215px;
}

.header-switch-button{
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
}

.header-switch-button:hover{
    background: #fff;
}

.header-switch-active{
    cursor: default;
    background: #333;
    color: #fff;
}

.header-switch-active:hover{
    background: #333;
}

.view-approve-wrap{
    display: flex;
    background: #f1f5f8;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 20px;
    align-items: center;
    border-radius: 4px;
}

.view-approve-title{
    font-size: 16px;
    flex: 1;
}

.approve-action-wrap{
    display: flex;
}

.button-view-reject{
    background: #f44336;
    height: 36px;
    width: 100px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.button-view-approve{
    margin-left: 15px;
    background: #222;
    color: #fff;
    width: 120px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.view-product-photo{
    margin-top: 20px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
    background: #f1f5f8;
    color: #b9c7cd;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-product-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section-header{
    font-size: 18px;
    margin-bottom: 10px;
}

.view-history-item{
    background: #f1f5f8;
    margin-top: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.history-item-name{
    flex: 1;
    font-size: 13px;
    color: #606771;
}

.history-item-date{
    font-size: 13px;
    font-weight: 500;
}

.search-item-avatar{
    width: 36px;
    height: 36px;
    margin-right: 10px;
    background: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9c7cd;
    font-size: 18px;
    overflow: hidden;
}

.search-item-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.form-product-table, .view-product-table{
    margin-top: 20px;
}

.form-table-header, .view-table-header{
    display: flex;
    background: #dfe5ed;
    font-size: 13px;
    font-weight: 500;
}

.form-table-header .table-header-item, .view-table-header .table-header-item{
    height: 40px;
}

.form-table-empty, .view-table-empty{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f8;
    color: #b9c7cd;
}

.form-table-row, .view-table-row{
    display: flex;
    height: 45px;
    background: transparent;
    border-bottom: 1px solid #f1f5f8;
    font-size: 0.9rem;
    align-items: center;
}

.table-input-wrap{
    display: flex;
    align-items: center;
    padding: 0 5px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.table-input-focus{
    background: #f1f5f8;
}

.table-input-error{
    background: #fec9c4;
}

.table-input-wrap .input-currency-sym{
    margin-right: 5px;
}

.form-table-input{
    height: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    border: none;
    background: none;
    flex: 1;
    width: 100%;
    padding: 0;
}

.form-table-input:focus{
    outline: none;
}

.row-remove-btn{
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1.1rem;
}

.form-total-wrap{
    display: flex;
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}

.form-total-container .form-total-wrap{
    margin-top: 0;
}

.form-total-title{
    margin-right: 5px;
}

.view-table-sl{
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border-radius: 30px;
    color: #000;
    font-weight: 600;
}

#update-order-error{
    text-align: left;
    margin-bottom: 5px;
}

.form-total-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 8px;
    padding-bottom: 0;
}

.view-challan-button{
    height: 40px;
    background: #222;
    width: 180px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.view-challan-button i{
    font-size: 20px;
    margin-right: 15px;
}

.challan-fluid{
    position: fixed;
    z-index: 999;
    background: #f1f5f8;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-x: hidden;
    display: none;
}

.print-challan-button{
    position: fixed;
    background: #2196F3;
    color: #fff;
    height: 40px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    top: 10px;
    right: 70px;
    cursor: pointer;
}

.print-challan-button i{
    font-size: 18px;
    margin-right: 10px;
}

.close-challan-fluid{
    position: fixed;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 15px;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
}

.challan-container{
    width: calc(100% - 420px);
    min-height: calc(100% - 20px);
    margin: 10px auto;
    max-width: 800px;
    box-sizing: border-box;
    background: #fff;
    display: none;
}

.challan-loading-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.challan-inner{
    padding: 20px;
    box-sizing: border-box;
}

.challan-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.challan-business-container{
    text-align: center;
    padding: 30px 0;
    font-size: 18px;
}

.challan-business-title{
    font-size: 32px;
    font-weight: 600;
}

.challan-vendor-row{
    display: flex;
    font-weight: 500;
    margin-bottom: 15px;
}

.challan-row-name{
    width: 20%;
    max-width: 20%;
    min-width: 20%;
}

.challan-row-value{
    width: 80%;
    max-width: 80%;
    line-height: 25px;
    border-bottom: 2px dotted;
    font-weight: 400;
}

.challan-table{
    margin-top: 50px;
    border: 2px solid #222;
}

.challan-table-header{
    display: flex;
    background: #222;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
}

.challan-table-row{
    display: flex;
    font-size: 13px;
    border-bottom: 2px solid #222;
}

.challan-table-row .table-col{
    border-right: 2px solid #222;
    display: flex;
    align-items: center;
    font-weight: 500;
    white-space: pre-wrap;
    min-height: 45px;
    padding: 8px 5px;
}

.challan-table-row .table-col:last-child{
    border-right: none;
}

.challan-tax-container{
    border-bottom: 2px solid;
    display: flex;
}

.challan-tax-title{
    width: 80%;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: calc(10% + 5px);
    box-sizing: border-box;
    font-weight: 500;
}

.challan-tax-value{
    padding-left: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.challan-total-container{
    display: flex;
}

.total-word-container{
    width: 60%;
    border-right: 2px solid #222;
    box-sizing: border-box;
}

.total-word-title{
    height: 40px;
    border-bottom: 2px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 500;
}

.total-word-amount{
    padding: 10px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
}

.total-num-container{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.challan-note{
    text-align: center;
    margin-top: 10px;
    color: #f44336;
    -webkit-print-color-adjust: exact;
}

.challan-footer{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.challan-footer-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 60px;
}

.challan-footer-signature{
    font-size: 16px;
    font-weight: 500;
}

.design-stock-indicator{
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

.table-stock-item{
    font-weight: 500;
    color: #b9c7cd;
}

.table-stock-available{
    color: #414d55;
}

.table-stock-excess{
    color: #f44336;
}

.table-stock-requested{
    color: #ff9431;
}

.form-calculation-container{
    text-align: right;
    font-size: 1.1rem;
    margin-top: 20px;
    font-weight: 500;
}

.form-tax-value{
    margin-top: 5px;
}

.form-total-value{
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 10px;
}

.product-requirement-check, .service-product-check{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #606771;
    cursor: pointer;
}

.product-requirement-selected .product-requirement-check, .service-product-selected .service-product-check{
    color: #333;
}

.service-check-disabled{
    color: #b9c7cd;
    cursor: default;
}

.requirement-total-wrap{
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
}

.requirement-total-error{
    color: #f44336;
}

.view-service-section{
    margin-top: 25px;
}

.view-service-empty{
    display: flex;
    color: #b9c7cd;
    align-items: center;
}

.view-service-empty i{
    font-size: 1.2rem;
    margin-right: 10px;
}

.open-service-order{
    background: #f1f5f8;
    height: 50px;
    color: #2196F3;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    width: 220px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

.service-order-item{
    background: #f1f5f8;
    padding: 15px;
    margin-bottom: 20px;
}

.service-item-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.service-item-name{
    text-transform: capitalize;
    font-weight: 500;
}

.service-item-status{
    font-size: 0.9rem;
}

.service-item-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.service-item-col{
    width: calc(33% - 10px);
}

.service-col-label{
    font-size: 0.9rem;
    font-weight: 500;
}

.service-col-value{
    font-weight: 600;
}

.service-table-title{
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.service-table-header{
    display: flex;
    background: #dfe5ed;
    font-size: 13px;
    font-weight: 500;
}

.service-table-header .table-header-item{
    height: 40px;
}

.service-table-body{
    background: #fff;
}

.service-item-footer{
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.service-footer-left{
    display: flex;
    align-items: center;
    flex: 1;
}

.service-footer-left .form-total-wrap{
    margin-top: 0;
    margin-right: 15px;
}

.service-complete-button{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 210px;
    border-radius: 4px;
    cursor: pointer;
    background: #2196f3;
}

.alert-popup-fluid{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
}

.alert-popup-container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-popup-inner{
    background: #fff;
    border-radius: 13px;
    padding: 15px;
}

.alert-popup-header{
    font-size: 1.2rem;
    padding-bottom: 10px;
}

.alert-popup-body{
    color: #606771;
    margin-bottom: 10px;
}

.alert-popup-info{
    color: #f44336;
    font-size: 0.9rem;
    display: none;
}

.alert-popup-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.alert-cancel-btn{
    height: 40px;
    width: calc(50% - 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    background: #f1f5f8;
    color: #f44336;
}

.alert-confirm-btn{
    height: 40px;
    width: calc(50% - 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    background: #2196f3;
    color: #fff;
}

.page-header-action{
    display: flex;
}

.design-switch-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dfe5ed;
    height: 40px;
    border-radius: 4px;
    padding: 5px;
    box-sizing: border-box;
    width: 470px;
    margin-right: 15px;
}

.header-switch-item{
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
}

.header-switch-item:hover{
    background: #fff;
}

.design-switch-active, .design-switch-active:hover{
    background: #222;
    color: #fff;
}

.design-switch-item{
    width: 150px;
}

.header-icon-active{
    color: #fff;
    border: 1px solid #2196f3;
    background: #2196f3;
}

.setting-page-body{
    border-top: 2px solid;
}

.page-setting-section{
    margin-top: 20px;
}

.page-section-title{
    font-size: 1.5rem;
}

.section-submit-holder{
    margin-top: 25px;
}

.notification-fluid{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: none;
}

.notification-container{
    position: absolute;
    background: #fff;
    height: 100%;
    right: 0;
    width: 25%;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    display: none;
}

.notification-inner{
    width: 100%;
    height: 100%;
}

.notification-header{
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 1.3rem;
    color: #3F51B5;
    font-weight: 500;
    border-bottom: 1px solid #dfe5ed;
    box-sizing: border-box;
}

.close-notification-fluid{
    width: 32px;
    height: 32px;
    background: #f1f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 40px;
    cursor: pointer;
}

.not-found{
    color: #f44336;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.not-found i{
    font-size: 1.5rem;
    margin-right: 10px;
}

.form-label-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.form-label-wrap .form-label{
    margin-bottom: 0;
}

.form-label-link{
    font-size: 0.9rem;
    font-weight: 500;
    color: #2196F3;
    cursor: pointer;
}

.expire-fluid{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 999999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
}

.expire-container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expire-inner{
    background: #222;
    color: #fff;
    padding: 20px;
    font-size: 1.2rem;
}

.expire-login-button{
    background: #fff;
    color: #222;
    height: 40px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    cursor: pointer;
}

.notification-icon-btn{
    position: relative;
}

.noti-badge{
    position: absolute;
    background: #f44336;
    min-width: 16px;
    height: 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    top: -2px;
    right: -2px;
    padding: 0 5px;
    box-sizing: border-box;
}

.notification-body{
    height: calc(100% - 50px);
    overflow-x: hidden;
}

.notification-body-empty{
    padding: 20px 10px;
    color: #b9c7cd;
}

.notification-item{
    margin: 10px;
    padding: 10px;
    border: 1px solid #f1f5f8;
    box-sizing: border-box;
    position: relative;
    background: white;
    transition: all 0.3s;
    cursor: pointer;
}

.notification-item:hover{
    background: #f1f5f8;
}

.notification-item-header{
    display: flex;
}

.notification-item-title{
    flex: 1;
    padding-right: 5px;
    font-weight: 500;
}

.notification-time{
    font-size: 0.8rem;
    font-weight: 500;
}

.notification-message{
    font-size: 0.9rem;
    margin-top: 8px;
}

.notification-message span{
    font-weight: 600;
}

.view-activity-item{
    display: flex;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f8;
}

.view-activity-item:last-child{
    border-bottom: none;
}

.activity-item-icon{
    width: 40px;
    font-size: 24px;
}

.activity-item-info{
    flex: 1;
}

.activity-item-header{
    display: flex;
}

.activity-item-title{
    flex: 1;
    font-weight: 500;
}

.activity-item-time{
    font-size: 0.8rem;
    font-weight: 600;
}

.activity-item-message{
    margin-top: 8px;
    font-size: 0.9rem;
}

.activity-item-message span{
    font-weight: 600;
}

.header-search-wrap{
    border: 1px solid #f1f5f8;
    display: flex;
    margin-left: 15px;
    border-radius: 4px;
    padding: 5px 0;
    box-sizing: border-box;
    height: 40px;
    transition: all 0.3s ease;
}

.header-search-focus{
    border: 1px solid #606771;
}

.header-search-input{
    width: 200px;
    padding: 0 10px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
}

.header-search-input:focus{
    outline: none;
}

.header-search-icon{
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #606771;
    border-left: 1px solid #f1f5f8;
}

.page-filter-container{
    position: relative;
    margin-left: 15px;
}

.page-filter-header{
    display: flex;
    height: 40px;
    background: #f1f5f8;
    align-items: center;
    padding-left: 20px;
    padding-right: 18px;
    border-radius: 4px;
    font-weight: 500;
    color: #3F51B5;
    cursor: pointer;
}

.page-filter-header i{
    font-size: 1.2rem;
    margin-left: 15px;
}

.filter-dropdown-container{
    position: absolute;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    top: calc(100% + 10px);
    right: 0;
    width: max-content;
    border-radius: 4px;
    min-width: 200px;
    display: none;
}

.filter-dropdown-inner{
    padding: 10px;
    padding-bottom: 5px;
}

.filter-dropdown-item{
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-bottom: 5px;
}

.filter-dropdown-item:hover{
    background: #f1f5f8;
}

.filter-item-active{
    color: #3F51B5;
    background: #f1f5f8;
}

.reset-order-search{
    cursor: pointer;
}

.update-order-products{
    margin-top: 25px;
    display: none;
}

.review-switch-container{
    display: flex;
    height: 50px;
    padding: 5px;
    padding-left: 0;
    box-sizing: border-box;
    border: 1px solid #b9c7cd;
    border-radius: 4px;
    width: calc(50% - 10px);
    background: #f1f5f8;
    align-items: center;
    margin-bottom: 25px;
}

.review-switch-item{
    height: 40px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 5px;
    transition: all 0.3s ease-in-out;
    flex: 1;
}

.review-switch-item:hover{
    background: #fff;
}

.review-switch-active, .review-switch-active:hover{
    background: #009688;
    color: #fff;
}

.review-staff-note{
    color: #f44336;
}

.review-status-item{
    background: #dfe5ed;
    width: max-content;
    padding: 4px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.review-status-done{
    background: #009688;
    color: #fff;
}

.stock-release-item{
    background: #f1f5f8;
    margin-top: 15px;
    padding: 15px;
}

.release-item-body{
    display: flex;
    justify-content: space-between;
}

.release-item-col{
    flex: 1;
    width: calc(33.3% - 10px);
}

.release-item-name{
    font-size: 0.9rem;
}

.release-item-value{
    font-weight: 500;
}

.release-item-footer{
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

.release-reject-button{
    width: 200px;
    background: #dfe5ed;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    color: #f44336;
    border-radius: 4px;
}

.release-approve-button{
    height: 40px;
    width: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009688;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
}

.release-rejected-footer{
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.release-rejected-message{
    font-weight: 500;
    color: #f44336;
}

.release-rejected-note{
    font-size: 0.9rem;
    margin-top: 5px;
}

.reject-footer-separator{
    margin-top: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.reject-separator-line{
    background: #ddd;
    height: 1px;
    flex: 1;
    margin-left: 15px;
}

.reject-switch-container{
    display: flex;
    margin: 15px 0 20px;
    background: #fff;
    width: 375px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 5px;
    border-radius: 4px;
}

.reject-switch-item{
    background: transparent;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
}

.reject-switch-item:hover{
    background: #f1f5f8;
}

.reject-switch-active, .reject-switch-active:hover{
    background: #222;
    color: #fff;
}

.reject-review-button{
    height: 40px;
    width: 220px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    background: #2196F3;
}

.view-service-order-button, .view-timeline-order-button{
    height: 40px;
    background: #222;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
}

.cost-table-header, .history-table-header{
    display: flex;
    border: 1px solid #222;
}

.cost-table-header .table-header-item, .history-table-header .table-header-item{
    height: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    border-right: 1px solid #222;
}

.cost-table-header .table-header-item:last-child, .history-table-header .table-header-item:last-child{
    border-right: none;
}

.cost-table-row, .history-table-row{
    display: flex;
    font-size: 0.9rem;
    color: #606771;
    border: 1px solid #222;
    border-top: none;
}

.cost-table-col, .history-table-col{
    height: 40px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-right: 1px solid #222;
}

.cost-table-col:last-child, .history-table-col:last-child{
    border-right: none;
}

.table-col-noborder{
    border-right: 1px solid transparent;
}

.design-total-cost{
    margin-top: 15px;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
}

.design-complete-title{
    color: #2196f3;
}

.dashboard-activity-item{
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.dashboard-activity-icon{
    width: 50px;
    font-size: 24px;
    color: #333;
}

.dashboard-activity-info{
    flex: 1;
}

.dashboard-activity-title{
    font-size: 1.1rem;
    text-transform: capitalize;
    font-weight: 500;
}

.dashboard-activity-message{
    margin-top: 5px;
    color: #606771;
}

.dashboard-activity-message span{
    font-weight: 500;
}

.history-stock-item{
    font-weight: 500;
}

.history-stock-release{
    color: #f44336;
}

.history-stock-added{
    color: #009688;
}

.final-cost-wrap{
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.select-production-item{
    display: grid;
    grid-template-columns: 35px 1fr;
    cursor: pointer;
    padding: 15px 5px;
    border-bottom: 1px solid #f1f5f8;
}

.select-production-item:last-child{
    border-bottom: none;
}

.select-check{
    border: 1px solid #222;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.selected-production-item .select-check{
    border: 1px solid #2196F3;
    background: #2196F3;
}

.table-processed-sl{
    font-weight: 500;
    color: #606771;
    padding-left: 17px;
    position: relative;
}

.table-processed-sl:before{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: #b9c7cd;
    left: 2px;
    position: absolute;
    top: 6px;
}

.table-action-button{
    color: #fff;
    background: #222;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}










@media print{
    
    .challan-container{
        display: block;
        max-width: unset;
        width: 100%;
    }
    
    .print-challan-button, .close-challan-fluid{
        display: none;
    }
    
}

#stock-status-error{
    text-align: left;
}

.page-not-found{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f1f5f8;
}

.not-found-photo{
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.not-found-photo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.not-found-title{
    font-size: 3rem;
    font-weight: 700;
    color: #6e83b7;
}

.not-found-subtitle{
    font-size: 1.5rem;
    font-weight: 600;
    color: #b9c7cd;
}

.stock-section-separator{
    border-top: 1px solid #dfe5ed;
}

.form-checkbox-item{
    display: flex;
    align-items: center;
    margin-top: 5px;
    cursor: pointer;
    color: #606771;
    font-weight: 500;
}

.form-checkbox-icon{
    width: 30px;
    font-size: 24px;
    line-height: 1;
    color: #b9c7cd;
}

.form-checkbox-item:hover, .form-checkbox-checked{
    color: inherit;
}

.form-checkbox-checked .form-checkbox-icon{
    color: inherit;
}

input[type="file"]{
    display: none;
}

.form-textarea{
    height: 100px;
    padding: 10px 15px;
}

.form-input-50{
    width: calc(50% - 10px);
}

.form-input::placeholder{
    color: #b9c7cd;
}

.table-header-item{
    height: 50px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.page-table-header{
    display: flex;
    font-weight: 600;
    box-sizing: border-box;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
}

.page-table-item{
    display: flex;
    height: 50px;
    align-items: center;
    font-size: 0.9rem;
    color: #606771;
    cursor: pointer;
    margin-top: 2px;
    border-bottom: 1px solid #f1f5f8;
    transition: all 0.3s ease-in-out;
}

.page-table-item:hover{
    background: #f1f5f8;
}

.timeline-table-item{
    cursor: default;
}

.timeline-table-item:hover{
    background: transparent;
}

.timeline-pill{
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b9c7cd;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
}

.timeline-na-pill{
    background: #b9c7cd;
    color: #fff;
    cursor: default;
}

.timeline-progress-pill{
    background: #f44336;
    color: #fff;
}

.timeline-multiple-progress-pill{
    background: #ff9431;
    color: #fff;
}

.timeline-complete-pill{
    background: #009688;
    color: #fff;
}

.table-col{
    padding: 0 5px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-item-5{
    width: 5%;
    max-width: 5%;
    min-width: 5%;
}

.table-item-10{
    width: 10%;
    max-width: 10%;
    min-width: 10%;
}

.table-item-15{
    width: 15%;
    max-width: 15%;
    min-width: 15%;
}

.table-item-20{
    width: 20%;
    max-width: 20%;
    min-width: 20%;
}

.table-item-25{
    width: 25%;
    max-width: 25%;
    min-width: 25%;
}

.table-item-30{
    width: 30%;
    max-width: 30%;
    min-width: 30%;
}

.table-item-35{
    width: 35%;
    max-width: 35%;
    min-width: 35%;
}

.table-item-50{
    width: 50%;
    max-width: 50%;
    min-width: 50%;
}

.table-justify-center{
    display: flex;
    justify-content: center;
}

.table-justify-end{
    display: flex;
    justify-content: flex-end;
}

.stock-unavailable{
    background: #f44336;
}

.stock-available{
    background: #009688;
}

.stock-partial{
    background: #ff9431;
}

.form-loading-container{
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.form-loading-item{
    height: 50px;
    background: #f1f5f8;
    border-radius: 4px;
    width: calc(50% - 10px);
}

.list-loading-item{
    display: flex;
    height: 50px;
    align-items: center;
    margin-top: 2px;
    border-bottom: 1px solid #f1f5f8;
}

.list-loading-line{
    width: 30%;
    height: 16px;
    background: #f1f5f8;
    border-radius: 3px;
}

.loading-line-large{
    margin-left: 50px;
    width: 50%;
}

.font-bold{
    font-weight: 600;
    font-size: 1.3rem;
}

.pl-5{
    padding-left: 5px;
}

.table-row-disabled{
    color: #b9c7cd;
}

.table-row-total{
    font-weight: 500;
}

.service-calculation-container{
    text-align: left;
}

.form-input-hidden{
    display: none;
}

.session-timeout-message{
    margin-top: 20px;
    color: #606771;
}

.session-timeout-message span{
    color: #2196F3;
    text-decoration: underline;
    cursor: pointer;
}

.button-loading, .button-inactive{
    background: #b9c7cd;
    cursor: default;
}

.no-overflow{
    overflow: hidden;
}