:root{
    --color-primary-blue: #012f47;
    --color-primary-alt: #005c8b;
    --color-secondary-blue: #2a7ba6;
    --color-secondary-alt: #5a96b8;
    --color-secondary-dark: #175e84;
    --color-orange: #fba047;
    --color-font-black: #1a1a1a;
    --color-light-gray: #f1f5f8;
    --color-border-gray: #dfe4e7;
    --color-light-black: #606771;
    --color-input-font: #414d55;
    --color-input-placeholder: #b9c7cd;
    --color-warning-yellow: #FFC107;
    --color-success-green: #CDDC39;
    --color-google-blue: #4285F4;
    --color-google-blue-dark: #3367D6;
    --color-google-green: #34A853;
    --color-google-green-dark: #2C8C47;
    --color-input-placeholder: #b9c7cd;
    --color-light-red: #ffada7;
    --sidebar-width: 230px;
    --font-rubik: 'Rubik', sans-serif;
    --font-open-sans: "Open Sans", sans-serif;
}

html, body{
    background: var(--color-light-gray);
    margin: 0;
    height: 100%;
    font-family: var(--font-rubik);
    font-size: 14px;
    color: var(--color-font-black);
}

.logout-body{
    background: #fff;
}

/** Login Screen Start **/

.login-topbar{
    height: 100px;
    box-sizing: border-box;
    padding: 0px 15px;
}

.login-logo-container{
    height: 70px;
    width: 70px;
}

.login-logo-container img{
    width: 100%;
    height: 100%;
}

.login-container{
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.login-box{
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border-gray);
}

.login-box-l{
    background: var(--color-primary-blue);
    padding: 40px;
}

.lb-company-logo{
    font-weight: 800;
    color: var(--color-orange);
    font-size: 25px;
}

.lb-title{
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
    color: #f1f5f8;
    margin-top: 113px;
    margin-bottom: 50px;
}

.lb-photo{
    width: 278px;
}

.lb-photo img{
    width: 100%;
}

.login-form-container{
    padding: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.login-form-title{
    font-size: 33px;
    color: #000;
}

.login-form-holder{
    width: 100%;
}

.login-input-holder{
    margin-top: 35px;
    width: 100%;
}

.login-input-wrap{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.login-label{
    position: absolute;
    top: 17px;
    font-size: 15px;
    transition: all 0.15s;
}

.login-input{
    background: none;
    flex: 1;
    border: none;
    height: 50px;
    font-size: 15px;
    color: var(--color-input-font);
}

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

.login-icon{
    font-size: 17px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-black);
}

.login-icon-btn{
    cursor: pointer;
}

.login-input-line{
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--color-border-gray);
    bottom: 0;
    left: 0;
}

.login-focus-line{
    width: 0;
    height: 100%;
    background: var(--color-font-black);
    transition: all 0.3s;
}

.login-input-focus .login-focus-line{
    width: 100%;
}

.login-input-focus .login-label{
    top: -10px;
    font-size: 13px;
    font-weight: 500;
}

.login-wrap-error .login-focus-line{
    background: red;
}

.login-wrap-error .login-label{
    color: red;
}

.login-input-error{
    background: red;
    font-size: 11px;
    color: #fff;
    padding: 3px 15px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    width: max-content;
    display: none;
}

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

.login-submit-button{
    width: 250px;
    height: 60px;
    background: var(--color-primary-blue);
    border-radius: 60px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    font-size: 18px;
    margin: auto;
    transition: all 0.3s;
}

.login-fp-link{
    color: var(--color-primary-blue);
    padding: 10px;
    cursor: pointer;
}

.login-fp-link:hover{
    text-decoration: underline;
}

.login-copyright{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin: 50px;
}

.copyright-logo{
    display: flex;
    align-items: center;
    color: var(--color-primary-blue);
}

.copyright-logo img{
    width: 30px;
}

.login-submit-loading{
    background: #aaa;
    cursor: default;
}

.login-error-wrap{
    text-align: center;
    color: red;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
}

/** 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 **/

/** Login Screen End **/

/** Main Start **/

.sidebar-container{
    position: fixed;
    z-index: 9;
    background: var(--color-primary-blue);
    width: var(--sidebar-width);
    height: 100%;
    overflow: hidden;
}

.dashboard-fluid{
    width: calc(100% - 230px);
    margin-left: 230px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.topbar-fluid{
    width: calc(100% - var(--sidebar-width));
    background: #fff;
    height: 60px;
    position: fixed;
    top: 0;
    left: var(--sidebar-width);
    z-index: 99;
    border-bottom: 1px solid var(--color-border-gray);
    box-sizing: border-box;
    transition: all 0.2s linear;
}

.topbar-fluid-full{
    left: 0;
    width: 100%;
}

/** Topbar Start **/

.topbar-container{
    display: flex;
    padding: 0 20px 0 10px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.topbar-collapse-btn{
    width: 32px;
    border: 2px solid var(--color-light-black);
    height: 24px;
    border-radius: 4px;
    box-sizing: border-box;
    padding-left: 6px;
    cursor: pointer;
}

.topbar-collapse-icon{
    height: 100%;
    display: flex;
    font-size: 13px;
    color: var(--color-light-black);
    border-left: 2px solid var(--color-light-black);
    align-items: center;
    justify-content: center;
}

.topbar-collapse-btn:hover{
    border: 2px solid var(--color-font-black);
}

.topbar-collapse-btn:hover .topbar-collapse-icon{
    color: var(--color-font-black);
    border-left: 2px solid var(--color-font-black);
}

.topbar-collapsed{
    transform: rotate(180deg);
}

.topbar-left{
    flex: 1;
    padding-left: 15px;
}

.topbar-right{
    display: flex;
    align-items: center;
    height: 100%;
}

.topbar-user-wrap{
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 5px;
    height: 100%;
    padding: 0 10px;
    position: relative;
    transition: all 0.3s;
}

.topbar-user-avatar{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid;
    box-sizing: border-box;
}

.topbar-user-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.topbar-avatar-empty{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: var(--color-primary-blue);
}

.topbar-user-info{
    margin: 0 10px;
    color: var(--color-primary-blue);
    min-width: 100px;
}

.topbar-user-role{
    font-size: 9px;
    text-transform: uppercase;
}

.topbar-user-arrow{
    transition: all 0.3s;
}

.tb-user-wrap-open{
    background: var(--color-primary-blue);
    color: #fff;
}

.tb-user-wrap-open .topbar-user-info{
    color: #fff;
}

.tb-user-wrap-open .topbar-user-arrow{
    transform: rotate(-180deg);
}

.topbar-action-btn{
    margin: 0 5px;
    position: relative;
}

.tb-action-header{
    color: var(--color-primary-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
    font-size: 18px;
}

.topbar-title{
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary-blue);
}

.topbar-path{
    font-size: 11px;
    margin-top: 3px;
    color: var(--color-orange);
}

.topbar-path a{
    color: #8a8a8a;
    text-decoration: none;
}

.topbar-path a:hover, .topbar-path .topbar-path-active{
    color: var(--color-primary-blue);
}

.topbar-path-active{
    font-weight: 500;
    cursor: default;
}

.tb-user-menu-container{
    position: absolute;
    top: 100%;
    width: 100%;
    background: #fff;
    left: 0;
    box-shadow: 0 5px 15px -5px rgb(0 0 0 / 20%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid var(--color-primary-blue);
    border-top: none;
    box-sizing: border-box;
    display: none;
    overflow: hidden;
}

.tbu-menu-item{
    display: flex;
    font-size: 14px;
    padding: 15px;
    cursor: pointer;
    color: var(--color-primary-blue);
    transition: all 0.3s;
    border-bottom: 1px dashed #ccc;
}

.tbu-menu-item:last-child{
    border-bottom: none;
}

.tbu-menu-icon{
    width: 25px;
    text-align: center;
    margin-right: 10px;
}

.tbu-menu-item:hover{
    color: var(--color-orange);
}

#topbar-logout:hover{
    color: red;
}

.topbar-add-container{
    position: absolute;
    background: #fff;
    width: 250px;
    border: 1px solid var(--color-border-gray);
    border-radius: 6px;
    top: calc(100% + 10px);
    left: 50%;
    margin-left: -125px;
    box-shadow: 0 2px 5px -2px rgb(0 0 0 / 20%);
    display: none;
    box-sizing: border-box;
    max-height: calc(100vh - 70px);
    overflow-x: hidden;
    scrollbar-width: none;
}

.topbar-add-item{
    padding: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: var(--color-light-black);
    border-bottom: 1px dashed var(--color-border-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.topbar-add-item i{
    font-size: 17px;
    margin-right: 10px;
    width: 30px;
    display: flex;
    justify-content: center;
    transition: all 0.2s ease;
}

.topbar-add-item:hover{
    color: var(--color-primary-blue);
}

.add-item-inactive, .add-item-inactive:hover{
    color: #aaa;
    cursor: default;
}

.topbar-add-item:last-child{
    border-bottom: none;
}

.topbar-add-container:before{
    content: '';
    border-bottom: 10px solid var(--color-primary-blue);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    bottom: 100%;
    position: absolute;
    left: 50%;
    margin-left: -10px;
}

/** Topbar End **/

/** Sidebar Start **/

.sidebar-logo-container{
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.sidebar-company-logo{
    font-size: 24px;
    font-weight: 700;
    color: var(--color-orange);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-inner{
    height: calc(100% - 60px);
    overflow-x: hidden;
}

.sidebar-menu-container{
    padding: 10px 20px;
}

.sidebar-menu-item{
    position: relative;
    margin: 10px 0;
    text-decoration: none;
    display: block;
}

.sidebar-menu-header{
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.sidebar-menu-header:hover, .sidebar-menu-active .sidebar-menu-header, .sidebar-menu-open .sidebar-menu-header{
    color: var(--color-orange);
}

.sb-menu-header-icon{
    font-size: 18px;
    line-height: 1;
    width: 24px;
    text-align: center;
}

.sb-menu-header-title{
    padding: 0 15px;
}

.sb-menu-header-chevron{
    font-size: 12px;
    transition: all 0.3s;
}

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

.sidebar-submenu-container{
    padding-left: 35px;
    display: none;
}

.sidebar-submenu-item{
    cursor: pointer;
    text-decoration: none;
}

.sb-submenu-title{
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    transition: all 0.3s;
}

.sb-submenu-title span{
    margin-right: 10px;
}

.sidebar-submenu-item:hover .sb-submenu-title, .sidebar-submenu-active .sb-submenu-title{
    color: var(--color-orange);
}

.sidebar-submenu-expandable .sb-submenu-title{
    display: flex;
    align-items: center;
}

.sb-submenu-chevron{
    font-size: 12px;
    margin-left: 15px;
    transition: all 0.3s;
}

.submenu-expand-container{
    padding-left: 15px;
    display: none;
}

.submenu-expand-item{
    font-size: 14px;
    color: #fff;
    padding: 10px 0;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.submenu-expand-item span{
    margin-right: 10px;
}

.submenu-expand-item:hover{
    color: var(--color-orange);
}

.sidebar-submenu-open .sb-submenu-title{
    color: var(--color-orange);
}

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

.sidebar-menu-disabled{
    opacity: 0.5;
}

.sidebar-menu-disabled .sidebar-menu-header{
    cursor: default;
}

.sidebar-menu-disabled:hover .sidebar-menu-header{
    color: #fff;
}

/** Sidebar End **/

.main-fluid{
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 60px;
    padding-left: var(--sidebar-width);
    transition: all 0.2s linear;
}

.main-fluid-full{
    padding-left: 0;
}

.main-container{
    background: #fff;
    width: calc(100% - 25px);
    height: calc(100% - 25px);
    margin-top: 15px;
    margin-left: 15px;
    border-radius: 6px;
    position: relative;
    border: 1px solid var(--color-border-gray);
}

.main-header{
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border-gray);
}

.main-header-left, .main-header-right{
    display: flex;
    align-items: center;
}

.main-header-left > div, .main-header-left > a{
    margin-left: 15px;
}

.main-header-left > div:first-child, .main-header-left > a:first-child{
    margin-left: 0;
}

.main-header-right > div, .main-header-right > a{
    margin-right: 15px;
}

.main-header-right > div:last-child, .main-header-right > a:last-child{
    margin-right: 0;
}

.search-container{
    position: relative;
}

.search-input{
    height: 34px;
    box-sizing: border-box;
    width: 200px;
    border: 1px solid var(--color-light-black);
    border-radius: 40px;
    font-family: inherit;
    padding: 0 35px 0 10px;
    color: var(--color-input-font);
    transition: all 0.15s ease;
}

.search-input:focus{
    width: 250px;
}

.search-container i{
    position: absolute;
    right: 12px;
    top: 10px;
}

.button-light{
    background: var(--color-light-gray);
    color: var(--color-input-font);
    display: flex;
    align-items: center;
    padding: 10px 30px;
    border-radius: 60px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
}

.button-light:hover{
    background: var(--color-border-gray);
    color: var(--color-font-black);
}

.button-delete, .button-delete:hover{
    color: #f44336;
}

.button-alt-secondary{
    background: var(--color-google-blue);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
}

.button-alt-secondary:hover{
    background: var(--color-google-blue-dark);
}

.button-with-icon i{
    font-size: 1.15em;
}

.main-header .button-light, .main-header .button-alt-secondary{
    height: 34px;
    padding: 0 20px;
    border-radius: 40px;
}

.button-secondary{
    background: var(--color-input-font);
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 30px;
    border-radius: 60px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    box-sizing: border-box;
}

.main-header .button-secondary, .main-header .button-primary{
    height: 34px;
    padding: 0 20px;
    border-radius: 40px;
}

.button-secondary:hover{
    background: var(--color-font-black);
}

.button-primary{
    background: var(--color-google-blue);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    border-radius: 60px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    gap: 10px;
    font-family: inherit;
    box-sizing: border-box;
    width: max-content;
}

.button-primary:hover{
    background: var(--color-google-blue-dark);
}

.table-container{
    padding: 20px;
    box-sizing: border-box;
    height: calc(100% - 70px);
}

.table-header{
    display: flex;
    border-bottom: 1px solid var(--color-border-gray);
    align-items: center;
    height: 40px;
}

.table-header-item{
    text-transform: uppercase;
    font-size: 13px;
}

.table-body{
    height: calc(100% - 40px);
    overflow-x: hidden;
    scrollbar-width: none
}

.table-row{
    display: flex;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid var(--color-border-gray);
}

.table-row:last-child{
    border-bottom: none;
}

.table-avatar{
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-black);
    border-radius: 34px;
    color: #fff;
    transition: all 0.15s ease;
}

.table-row-item a{
    color: var(--color-secondary-blue);
    text-decoration: none;
}

.table-row-item a:hover{
    text-decoration: underline;
}

.schedule-container{
    display: flex;
}

.schedule-list-container{
    width: 35%;
    box-sizing: border-box;
    height: 100%;
}

.schedule-list-header{
    display: flex;
    height: 55px;
    padding: 0 15px;
    border-bottom: 1px solid var(--color-border-gray);
    align-items: center;
    justify-content: space-between;
}

.schedule-list-header .button-light{
    height: 30px;
    padding: 0 16px;
    border-radius: 40px;
}

.schedule-list-calendar{
    display: flex;
    width: 100%;
    height: 70px;
    align-items: center;
    border-bottom: 1px solid var(--color-border-gray);
}

.cal-strip-btn{
    height: 34px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-font-black);
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--color-font-black);
    box-sizing: border-box;
}

.cal-strip-btn:hover{
    background: var(--color-font-black);
    color: #fff;
}

.cal-next-btn{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-right: none;
}

.cal-back-btn{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-left: none;
}

.cal-strip-btn-inactive, .cal-strip-btn-inactive:hover{
    background: var(--color-border-gray);
    cursor: default;
}

.schedule-cal-strip{
    flex: 1;
    display: flex;
    height: 58px;
    overflow: hidden;
}

#strip-calendar{
    display: flex;
}

.cal-strip-week{
    display: flex;
}

.cal-strip-date{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--color-light-black);
    transition: all 0.25s ease;
}

.strip-date-date{
    font-size: 13px;
    font-weight: 500;
    margin: 3px 0;
    color: var(--color-font-black);
}

.strip-date-day{
    font-size: 8px;
}

.strip-date-month{
    font-size: 8px;
    color: var(--color-light-black);
}

.cal-strip-date:hover{
    background: var(--color-light-gray);
}

.strip-date-selected, .strip-date-selected:hover{
    background: var(--color-font-black);
    box-shadow: 0 0 4px rgba(0,0,0,0.08);
    cursor: default;
}

.strip-date-selected .strip-date-month, .strip-date-selected .strip-date-day{
    color: var(--color-light-gray);
}

.strip-date-selected .strip-date-date{
    color: #fff;
}

.strip-date-selected, .strip-date-today{
    color: var(--color-secondary-blue);
}

.schedule-sidebar-body{
    height: calc(100% - 127px);
    overflow-x: hidden;
    box-sizing: border-box;
}

.schedule-list-start{
    background: #dfe5e9;
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.schedule-list-item{
    border-bottom: 1px solid var(--color-border-gray);
}

.schedule-list-item .drive-instruction{
    padding: 10px;
    padding-bottom: 0;
    font-size: 12px;
    display: flex;
    color: var(--color-light-black);
}

.schedule-list-item .schedule-item-body{
    display: flex;
    padding: 10px;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

.schedule-item-hover .schedule-item-body .item-num{
    background: var(--color-google-blue);
    color: #fff;
}

.schedule-item-vt.schedule-item-hover .item-type-icon{
    background: var(--color-primary-blue);
    color: #fff;
}

.schedule-item-ap.schedule-item-hover .item-type-icon{
    background: var(--color-orange);
    color: #fff;
}

.schedule-item-body .schedule-list-line{
    position: absolute;
    width: 3px;
    height: 100%;
    background: #f1f5f8;
    top: 0;
    left: 24px;
    z-index: -1;
    transition: all 0.25s ease;
}

.schedule-item-body .status-pill{
    font-size: 10px;
    position: absolute;
    right: 0;
}

.schedule-avatar-wrap{
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule-item-body .item-num{
    width: 30px;
    height: 30px;
    background: var(--color-light-gray);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-light-black);
    transition: all 0.15s ease;
}

.schedule-item-body .item-type-icon{
    width: 24px;
    height: 24px;
    margin-right: 7px;
    font-size: 13px;
    background: var(--color-light-gray);
    color: var(--color-light-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition: all 0.15s ease;
}

.schedule-item-body .item-detail{
    flex: 1;
    padding-left: 8px;
}

.schedule-item-selected .item-num{
    background: var(--color-secondary-blue);
    color: #fff;
}

.schedule-item-selected .schedule-list-line{
    background: var(--color-secondary-blue);
}

.schedule-item-body .item-detail-header{
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    height: 30px;
}

.schedule-item-body .item-detail-header .item-time{
    font-size: 12px;
    color: var(--color-font-black);
    font-weight: 500;
}

.schedule-item-body .item-detail-header .item-duration{
    height: 20px;
    margin: 0 10px;
    background: #f1f5f8;
    padding: 0 9px 0 7px;
    font-size: 11px;
    display: flex;
    align-items: center;
    color: #333;
    border-radius: 10px;
}

.item-duration i{
    margin-right: 7px;
    font-size: 12px;
}

.schedule-list-item .item-address{
    font-size: 13px;
    margin-top: 4px;
    color: var(--color-light-black);
}

.schedule-item-db .schedule-item-body{
    cursor: default;
}

.break-item-num{
    width: 40px;
    height: 40px;
    background: #a9a9a9;
    color: #fff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.schedule-map-container{
    position: relative;
    width: 65%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--color-border-gray);
}

#schedule-map{
    width: 100%;
    height: 100%;
}

/**
.schedule-marker {
    background-color: #4285F4;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 13px;
    padding: 5px;
    position: relative;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 150px;
    border: #4285F4;
}

.schedule-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4285F4;
}

**/

.schedule-marker, .site-marker {
  position: relative;
  background-color: var(--color-google-blue);
  color: white;
  font-size: 14px;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid white;
  display: flex;
  align-items: center;
  z-index: 10;
  transition: all 0.15s ease;
  cursor: pointer;
}

.schedule-marker::after, .site-marker::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid var(--color-google-blue);
  /* Add border and shadow to match the main box */
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
  transition: all 0.15s ease;
}

.schedule-marker-hover, .site-marker-hover{
    background: var(--color-google-blue-dark);
    transform: scale(1.1);
    z-index: 999;
}

.schedule-marker-hover::after, .site-marker-hover::after{
    border-top-color: var(--color-google-blue-dark);
}

.schedule-marker::before, .site-marker::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid white; /* to match the border color */
  z-index: -1;
}
.schedule-marker .marker-index, .site-marker .marker-index{
    display: flex;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background: var(--color-google-blue-dark);
    font-size: 13px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    color: #fff;
}

.schedule-marker-hover .marker-index, .site-marker-hover .marker-index{
    background: var(--color-google-blue);
}

.active-site-marker{
    z-index: 999;
}

.schedule-marker .marker-name, .site-marker .marker-name{
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.schedule-marker-blue{
    background: blue;
}

.schedule-marker-blue:after{
    border-top: 8px solid blue;
}

.schedule-marker-green{
    background: green;
}

.schedule-marker-green:after{
    border-top: 8px solid green;
}

.schedule-marker-yellow{
    background: yellow;
    color: black;
}

.schedule-marker-yellow:after{
    border-top: 8px solid yellow;
}

.schedule-marker-orange{
    background: orange;
}

.schedule-marker-orange:after{
    border-top: 8px solid orange;
}

.schedule-home-marker, .schedule-detail-marker {
    background-color: var(--color-font-black);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    padding: 12px;
    position: relative;
    z-index: 2;
}

.schedule-home-marker::after, .schedule-detail-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--color-font-black);
}

.custom-marker-popup {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 10px;
    min-width: 160px;
    z-index: 100;
}

.marker-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
}

.marker-popup-title {
    font-weight: bold;
    margin-bottom: 4px;
    text-align: center;
    color: var(--color-font-black);
}

.marker-popup-subtitle {
    color: var(--color-light-black);
    margin-bottom: 8px;
    text-align: center;
}

.marker-popup-button {
    background-color: var(--color-google-blue);
    border: none;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.marker-popup-button:hover {
    background-color: var(--color-google-blue-dark);
}

.view-switch-container{
    display: flex;
    align-items: center;
    background: var(--color-light-gray);
    border-radius: 40px;
    padding: 3px;
}

.view-switch-item{
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 40px;
    color: var(--color-light-black);
    cursor: pointer;
    transition: all 0.15s ease;
    margin-right: 3px;
    gap: 10px;
}

.view-switch-item:last-child{
    margin-right: 0;
}

.view-switch-item:hover{
    background: var(--color-border-gray);
    color: var(--color-font-black);
}

.view-switch-selected, .view-switch-selected:hover{
    background: #fff;
    color: var(--color-font-black);
    cursor: default;
}

.view-switch-selected i{
    color: var(--color-google-blue);
}

.main-body{
    height: calc(100% - 70px);
    padding: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.body-with-table{
    overflow: scroll;
}

.main-table-body{
    padding-top: 0;
}

.main-table, .main-detail-table{
    display: table;
    width: 100%;
    min-width: max-content;
    border-collapse: collapse;
}

.table-with-border{
    border: 1px solid var(--color-border-gray);
}

.table-with-border thead{
    height: 40px;
}

.main-table thead th, .main-detail-table thead th{
    font-size: 13px;
    text-transform: uppercase;
    text-align: left;
    padding: 8px 8.5px;
    padding-right: 0;
    font-weight: 400;
    background: #fff;
    border-bottom: 1px solid var(--color-border-gray);
}

.main-table tbody tr, .main-detail-table tbody tr{
    border-bottom: 1px solid var(--color-border-gray);
}

.main-table tbody tr.empty-tr, .main-detail-table tbody tr.empty-tr{
    border-bottom: none;
}

.main-table td, .main-detail-table td{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px;
    height: 34px;
    color: var(--color-light-black);
    transition: all 0.15s ease;
}


.category-bar td{
    height: 20px;
    font-weight: 500;
    color: var(--color-font-black);
    font-size: 13px;
    background: var(--color-light-gray);
}

.header-title-container{
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header-title{
    font-size: 28px;
    font-weight: 600;
}

.header-id-span{
    background: var(--color-light-gray);
    padding: 4px 8px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 12px;
    color: var(--color-light-black);
}

.body-with-section{
    display: flex;
    height: 100%;
}

.body-section{
    height: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    -webkit-scrollbar-width: none;
}

.container-padding{
    padding: 20px;
}

.company-units-wrap{
    border: 1px solid var(--color-border-gray);
    margin-bottom: 20px;
    border-radius: 6px;
    padding: 15px;
}

.company-grid-wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.company-grid-item{
    border: 1px solid var(--color-border-gray);
    border-radius: 6px;
    padding: 15px;
}

.company-grid-full{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

.grid-item-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border-gray);
}

.grid-item-title{
    color: var(--color-font-black);
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    text-decoration: none;
}

.grid-header-span{
    font-size: 12px;
    background: var(--color-light-gray);
    padding: 4px 14px;
    border-radius: 12px;
    color: var(--color-light-black);
}

.grid-item-body{
    padding-top: 10px;
    padding-bottom: 10px;
}

.grid-item-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.grid-row-title{
    color: var(--color-light-black);
}

.grid-row-value{
    font-weight: 500;
}

.grid-item-footer{
    border-top: 1px solid var(--color-border-gray);
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid-primary-button{
    background: var(--color-secondary-blue);
    color: #fff;
    padding: 6px 14px;
    text-decoration: none;
    font-size: 13px;
    border-radius: 40px;
    cursor: pointer;
}

.grid-secondary-button{
    background: var(--color-light-gray);
    color: var(--color-secondary-blue);
    padding: 6px 14px;
    text-decoration: none;
    font-size: 13px;
    border-radius: 40px;
}

.grid-primary-button i, .grid-secondary-button i{
    font-size: 1.1em;
    margin-right: 5px;
}

.grid-primary-button:hover{
    background: var(--color-secondary-dark);
}

.grid-secondary-button:hover{
    background: var(--color-border-gray);
}

.company-over-title{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.company-over-title:first-child{
    margin-top: 0;
}

.company-over-value{
    line-height: 20px;
    display: block;
}

.company-over-value p{
    margin: inherit;
}

.company-over-value .not-provided{
    color: var(--color-light-black);
}

.value-link{
    color: var(--color-secondary-alt);
    text-decoration: none;
}

.value-link:hover{
    color: var(--color-secondary-blue);
    text-decoration: underline;
}

.company-over-separator{
    border-top: 1px solid var(--color-border-gray);
    margin-top: 15px;
}

.tab-header-container{
    display: flex;
    position: relative;
    padding: 15px 20px 0;
    border-bottom: 1px solid var(--color-border-gray);
}

.tab-header-item{
    padding-bottom: 20px;
    padding-top: 10px;
    margin-left: 30px;
    cursor: pointer;
    color: var(--color-light-black);
    font-size: 15px;
}

.tab-header-item:first-child{
    margin-left: 0;
}

.tab-header-item:hover{
    color: var(--color-font-black);
}

.tab-header-active{
    color: var(--color-font-black);
    font-weight: 500;
}

.tab-header-line{
    position: absolute;
    height: 2px;
    background: var(--color-font-black);
    bottom: -1px;
    left: 20px;
}

.tab-body-container{
    position: relative;
}

.tab-body-item{
    display: none;
}

.tab-body-active{
    display: block;
}

td.table-avatar-td{
    width: 50px;
}

.detail-popup-fluid, .form-popup-fluid, .picker-popup-fluid{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(1 47 71 / 70%);
    display: none;
}

.picker-popup-fluid{
    background: rgb(1 47 71 / 20%);
}

.form-popup-fluid{
    z-index: 101;
}

.detail-popup-container, .form-popup-container{
    background: #fff;
    width: calc(100% - 120px);
    height: calc(100% - 120px);
    margin: 60px auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: width 0.2s ease;
}

.picker-popup-container{
    background: #fff;
    width: 500px;
    height: calc(100% - 120px);
    margin: 60px auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: none;
}

.popup-container-medium{
    max-width: 1000px;
}

.popup-container-small{
    max-width: 600px;
}

.detail-loading-container{
    padding: 30px;
    display: flex;
    justify-content: center;
}

.detail-loader{
    display: flex;
    align-items: center;
    background: var(--color-light-gray);
    width: 150px;
    height: 40px;
    justify-content: center;
    border-radius: 4px;
    color: var(--color-light-black);
}

.detail-loader .ispinner{
    margin-right: 10px;
}

.close-popup-detail, .close-popup-form, .close-invoice-form{
    width: 34px;
    height: 34px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-black);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.close-popup-detail:hover, .close-popup-form:hover, .close-invoice-form:hover{
    background: var(--color-light-gray);
    color: var(--color-font-black);
}

.contact-card-container{
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--color-border-gray);
    padding: 5px;
    display: flex;
    box-sizing: border-box;
}

.contact-card-container img{
    width: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.contact-flex-left{
    display: flex;
    flex: 1;
}

.contact-detail-avatar{
    width: 50px;
    height: 50px;
    background: var(--color-light-black);
    border-radius: 6px;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-name-position{
    margin-left: 15px;
    margin-top: 3px;
}

.contact-name{
    font-size: 20px;
    font-weight: 500;
}

.contact-access-wrap{
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.portal-access-switch{
    background: var(--color-border-gray);
    height: 34px;
    border-radius: 40px;
    position: relative;
    color: var(--color-light-black);
    box-sizing: border-box;
    padding: 5px;
    display: flex;
    align-items: center;
    width: 75px;
    margin-left: 10px;
    font-weight: 400;
    cursor: pointer;
}

.switch-value{
    position: absolute;
    width: calc(100% - 29px);
    left: 29px;
    text-align: center;
}

.switch-circle{
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 30px;
    left: 5px;
    transition: all 0.15s ease;
}

.switch-active{
    background: var(--color-secondary-blue);
}

.switch-active .switch-value{
    color: #fff;
    left: unset;
    right: 29px;
}

.switch-active .switch-circle{
    left: 46px;
}

.contact-grid-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 35px;
}

.contact-grid-item{
    padding: 5px 15px;
    border-left: 1px solid var(--color-border-gray);
    box-sizing: border-box;
    min-width: 0;
    word-break: break-word;
}

.contact-grid-item:first-child{
    padding-left: 0;
    border-left: none;
}

.contact-grid-item:last-child{
    padding-right: 0;
}

.notes-editor-container{
    margin-bottom: 35px;
}

.note-editor-disabled{
    border: 1px solid var(--color-font-black);
    height: 80px;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 6px;
    cursor: text;
}

.note-placeholder{
    color: var(--color-input-placeholder);
}

.note-editor-disabled:hover{
    background: var(--color-light-gray);
}

.note-editor-footer{
    display: flex;
    align-items: center;
    padding: 10px 5px;
}

.note-submit-button{
    background: var(--color-secondary-blue);
    color: #fff;
    border-radius: 4px;
    padding: 8px 14px;
    cursor: pointer;
}

.note-submit-button:hover{
    background: var(--color-secondary-dark);
}

.note-cancel-button{
    color: var(--color-light-black);
    padding: 8px 14px;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    margin-left: 10px;
}

.note-cancel-button:hover{
    background: var(--color-light-gray);
    color: var(--color-font-black);
}

.note-item{
    margin-top: 15px;
}

.note-user-wrap{
    display: flex;
    align-items: center;
}

.note-user-avatar{
    width: 26px;
    height: 26px;
    background: var(--color-light-black);
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.note-user-name{
    color: var(--color-light-black);
    margin-left: 8px;
}

.note-time{
    font-size: 12px;
    color: var(--color-light-black);
}

.delete-note-icon{
    margin-left: 10px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 4px;
    color: var(--color-light-black);
    cursor: pointer;
}

.delete-note-icon:hover{
    background: var(--color-light-gray);
    color: var(--color-font-black);
}

.note-richtext{
    padding: 6px;
    padding-left: 34px;
}

.note-richtext p, .note-richtext h1, .note-richtext h2, .note-richtext h3, .note-richtext h4, .note-richtext h5, .note-richtext h6{
    margin-block-start: 0;
    margin-block-end: 0;
}







/** Quill Editor **/

.notes-editor-container .ql-toolbar.ql-snow {
    border: 1px solid var(--color-font-black);
    box-sizing: border-box;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    padding: 8px;
    border-bottom: 1px solid var(--color-border-gray);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.notes-editor-container .ql-container.ql-snow {
    border: 1px solid var(--color-font-black);
    border-top: 0 !important;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    min-height: 70px;
    font-family: inherit;
    font-size: 14px;
    color: var(--color-input-font);
}

.ql-active{
    background: var(--color-light-gray);
    border-radius: 4px;
}

.form-textarea-wrap .ql-toolbar.ql-snow{
    border: 1px solid var(--color-border-gray);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: all 0.15s ease;
}

.form-textarea-wrap .ql-container.ql-snow{
    border: 1px solid var(--color-border-gray);
    border-top: 0;
    min-height: 70px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: all 0.15s ease;
    font-family: inherit;
    font-size: 14px;
    color: var(--color-input-font);
}

.form-textarea-wrap .ql-editor.ql-blank::before, .notes-editor-container .ql-editor.ql-blank::before{
    color: var(--color-input-placeholder);
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
}

.form-textarea-focus .ql-toolbar.ql-snow{
    border: 1px solid var(--color-font-black);
    border-bottom: 1px solid var(--color-border-gray);
}

.form-textarea-focus .ql-container.ql-snow{
    border: 1px solid var(--color-font-black);
    border-top: 0;
}

.body-without-header{
    height: 100%;
}

.grid-w-sidebar{
    display: grid;
    height: 100%;
    grid-template-columns: minmax(220px, max-content) 1fr;
}

.sidebar-tab-item{
    padding: 15px;
    color: var(--color-light-black);
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 4px;
    margin-bottom: 5px;
}

.sidebar-tab-item:hover, .sidebar-tab-active{
    background: var(--color-light-gray);
    color: var(--color-font-black);
}




/** Dashboard **/

.dashboard-container{
    overflow-x: hidden;
}

.dashboard-progress-block{
    border-radius: 12px;
    padding: 12px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border: 1px solid var(--color-border-gray);
}

.dashboard-progress-title{
    font-size: 16px;
    font-weight: 500;
}

.dashboard-progress-button{
    width: 150px;
    display: flex;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border-radius: 8px;
    overflow: hidden;
    justify-content: space-between;
    font-size: 14px;
}

.progress-button-item{
    flex: 1;
    max-width: 49%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.progress-button-selected{
    background: #fff;
    color: var(--color-primary-blue);
}

.progress-bar-title{
    font-size: 13px;
}

.progress-bar{
    width: 100%;
    height: 7px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    margin-top: 7px;
}

.progress-bar-progress{
    height: 100%;
    width: 50%;
    background: #fff;
    border-radius: 5px;
}

.dashboard-row{
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.dashboard-row-4{
    grid-template-columns: repeat(3, 1fr);
}

.dashboard-row-3{
    grid-template-columns: repeat(4, 1fr);
}

.dashboard-row-2{
    grid-template-columns: repeat(5, 1fr);
}

.dashboard-top-block{
    background: var(--color-primary-blue);
    height: 120px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(20, 46, 110, 0.4);
    position: relative;
}

.top-block-info{
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.top-block-value{
    font-size: 30px;
    font-weight: 700;
}

.top-block-icon{
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 60px;
    color: #fff;
    opacity: 0.2;
}

.dashboard-row-wrap{
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 0 3px;
    box-sizing: border-box;
}

.auto-col-4{
    width: calc(33.3% - 20px);
}

.dashboard-white-block{
    background: #fff;
    height: 220px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 8px rgba(20, 46, 110, 0.16);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.db-white-block-icon{
    width: 88px;
    height: 88px;
    background: var(--color-orange);
    border-radius: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.db-white-block-title{
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 20px 0 10px 0;
}

.db-white-block-subtitle{
    font-size: 13px;
}

.dashboard-white-block:hover{
    background: var(--color-primary-blue);
    color: #eee;
}

.dashboard-white-block:hover .db-white-block-title{
    color: #fff;
}

.dashboard-copyright{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #8e8e8e;
    margin: 10px;
}

.chart-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}

.chart-wrap{
    width: calc(50% - 10px);
    height: 350px;
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0px 9px 8px rgb(20 46 110 / 10%);
}

.chart-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    margin-bottom: 20px;
}

.chart-title{
    font-size: 18px;
    font-weight: 700;
    color: var(--bold-black-var);
}

.chart-right{
    display: flex;
}

.chart-dropdown-container{
    position: relative;
}

.chart-dropdown-header{
    display: flex;
    border: 1px solid rgb(217 225 231 / 80%);
    border-radius: 2px;
    padding: 5px;
    color: #8a8a8a;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
}

.cd-header-title{
    color: var(--bold-black-var);
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
}

.dashboard-stat-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.dashboard-stat-box{
    width: calc(25% - 10px);
    height: 135px;
    background: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 15px;
    box-shadow: 0px 9px 8px #142e6e1a;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.dashboard-stat-title{
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.dashboard-stat-value{
    font-size: 28px;
    color: var(--color-orange);
}

.dashboard-stat-link{
    color: var(--color-primary-blue);
    font-size: 13px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.dashboard-stat-link i{
    font-size: 11px;
    margin-left: 4px;
    transition: all 0.3s;
}

.dashboard-stat-link:hover i{
    margin-left: 10px;
}

.dashboard-col-2 .dashboard-block{
    background: var(--color-primary-blue);
    width: 100%;
    height: 150px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.dashboard-col-2 .dashboard-block .block-title{
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 300;
}

.block-title span{
    font-weight: 500;
}

.block-tab-row{
    display: flex;
}

.block-tab-item{
    margin-right: 10px;
    border-bottom: 1px solid transparent;
    color: #aaa;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 12px;
}

.block-tab-item:hover{
    color: #fff;
}

.block-tab-selected{
    border-bottom: 1px solid #fff;
    color: #fff;
    cursor: default;
}

.block-body{
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 5px;
}

.block-percent-item{
    margin-bottom: 10px;
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.block-percent-item .percent-green{
    font-size: 16px;
    color: #8bc34a;
    margin-right: 5px;
}

.block-percent-item .percent-red{
    font-size: 16px;
    color: #f44336;
    margin-right: 5px;
}

.block-large-text{
    font-size: 36px;
    color: #fff;
    line-height: 42px;
}

.block-large-text span{
    font-size: 22px;
    margin-right: 4px;
}

.block-small-text{
    font-size: 20px;
    color: #fff;
    line-height: 36px;
}

.block-small-text span{
    font-size: 16px;
    margin-right: 3px;
}

.block-contracts-item{
    flex: 1;
    display: flex;
    align-items: flex-start;
    color: #fff;
    justify-content: space-between;
    max-width: 48%;
}

.block-contracts-type{
    font-size: 13px;
    margin-top: 5px;
}

.block-large-icon{
    font-size: 36px;
    color: #cf1b0e;
    margin-bottom: 5px;
}

.dashboard-col-3 .dashboard-block{
    background: #fff;
    width: 100%;
    height: 220px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid var(--color-border-gray);
    display: flex;
    flex-direction: column;
}

.dashboard-item-wrap{
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-evenly;
}

.dashboard-col-3 .dashboard-block .block-title{
    font-size: 18px;
    color: var(--color-primary-blue);
    margin-bottom: 8px;
    font-weight: 300;
}

.dashboard-item-separator{
    height: 1px;
    background: #bbb;
}

.item-pill{
    position: absolute;
    top: 3px;
    right: 0;
    background: #cf1b0e;
    color: #fff;
    font-size: 10px;
    height: 15px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 15px;
}

.dashboard-item-row{
    position: relative;
}

.dashboard-item-row:last-child{
    border-bottom: none;
}

.dashboard-item-line{
    font-size: 13px;
    color: #606771;
}

.item-pill-red{
    background: #cf1b0e;
}

.item-pill-green{
    background: #8bc34a;
}

.item-pill-blue{
    background: var(--color-secondary-blue);
}

.item-flex-line{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #333;
}

.dashboard-item-price{
    text-align: right;
    font-size: 12px;
    color: #333;
}

.more-toggle-button{
    margin: auto;
    margin-bottom: 25px;
    margin-top: -15px;
    text-align: center;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    width: max-content;
    border-bottom: 1px solid transparent;
}

.more-toggle-show{
    color: var(--color-secondary-blue);
}

.more-toggle-button:hover{
    border-bottom: 1px solid;
}

.dashboard-progress-header{
    display: flex;
    justify-content: space-between;
}

.dashboard-progress-name, .dashboard-chart-name{
    font-size: 16px;
    color: var(--color-primary-blue);
    font-weight: 300;
}

.dashboard-progress-role{
    font-size: 12px;
}

.clockin-time-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clockin-title{
    font-size: 10px;
    color: #606771;
}

.clockin-time{
    font-size: 13px;
    color: var(--color-primary-blue);
    display: flex;
    align-items: center;
}

.clockin-time span{
    font-size: 10px;
    color: #777;
    margin-left: 5px;
}

.progress-slider-container{
    margin: 15px 0;
}

.progress-slider-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-slider-title{
    font-size: 14px;
    color: #333;
}

.progress-schedule-btn{
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 11px;
    padding: 3px 5px;
    display: flex;
    align-items: center;
    color: #333;
    cursor: pointer;
    background: none;
    transition: all 0.3s;
}

.progress-schedule-btn i{
    font-size: 10px;
    margin-left: 5px;
}

.progress-schedule-btn:hover{
    background: #333;
    color: #fff;
}

.progress-slider-bg{
    height: 12px;
    background: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.progress-slider-progress{
    height: 12px;
    background: #333;
    border-radius: 12px;
    width: 30%;
    transition: all 0.3s;
}

.progress-title{
    font-weight: 300;
    color: var(--color-primary-blue);
    font-size: 20px;
    margin-bottom: 10px;
}

.progress-schedule-container{
    display: flex;
}

.progress-schedule-wrap{
    flex: 1;
    padding-right: 10px;
    display: flex;
}

.icon-wrap{
    background: var(--color-orange);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
}

.progress-schedule{
    flex: 1;
    margin-left: 10px;
}

.progress-schedule-header{
    display: flex;
    font-size: 11px;
    color: #333;
    font-weight: 300;
    justify-content: space-between;
    align-items: center;
}

.progress-schedule-pill{
    background: #ddd;
    font-size: 9px;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 400;
    color: #fff;
}

.pill-yellow{
    background: #feb50d;
}

.pill-blue{
    background: #3c95c3;
}

.pill-purple{
    background: #521b95;
}

.pill-red{
    background: #d40004;
}

.pill-green{
    background: #77c126;
}

.progress-location-wrap{
    width: 45%;
    color: #333;
    flex: 0.45;
    overflow: hidden;
}

.progress-location-title{
    font-size: 12px;
}

.view-staff-location{
    text-decoration: underline;
    cursor: pointer;
}

.progress-location-updated{
    font-size: 8px;
    font-weight: 300;
    line-height: 12px;
}

.progress-location-map{
    width: 100%;
    height: 100px;
    background: #f1f5f8;
    margin-top: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.progress-schedule-time{
    font-size: 12px;
    color: #333;
    margin-top: 3px;
}

.progress-schedule-company{
    font-size: 15px;
    color: var(--color-primary-blue);
    margin-top: 3px;
    font-weight: 300;
}

.progress-schedule-site{
    font-size: 13px;
    color: var(--color-primary-blue);
    font-weight: 300;
}

.progress-schedule-address{
    font-size: 12px;
    color: #606771;
    margin-top: 4px;
}

.progress-wo-id{
    font-size: 11px;
    color: #333;
    margin-top: 3px;
    font-weight: 300;
}

.dashboard-more-wrap{
    display: none;
}

.more-toggle-button{
    margin: auto;
    margin-bottom: 25px;
    margin-top: -15px;
    text-align: center;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    width: max-content;
    border-bottom: 1px solid transparent;
}

.more-toggle-show{
    color: var(--color-secondary-blue);
}

.more-toggle-button:hover{
    border-bottom: 1px solid;
}

.dashboard-chart-block{
    border-radius: 12px;
    padding: 12px;
    height: 300px;
    border: 1px solid var(--color-border-gray);
}

.chart-tab-container{
    display: flex;
    margin: 8px 0 10px 0;
    align-items: center;
    height: 20px;
}

.chart-tab-wrap{
    display: flex;
    flex: 1;
}

.chart-tab-item{
    color: #888;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    margin-right: 10px;
    font-size: 13px;
}

.chart-tab-selected{
    color: var(--color-primary-blue);
    border-bottom: 1px solid var(--color-primary-blue);
    cursor: default;
}

.chart-tab-item:hover{
    color: var(--color-primary-blue);
}

.chart-tab-year{
    font-size: 12px;
    display: flex;
    border: 1px solid #333;
    padding: 2px 5px;
    border-radius: 3px;
    cursor: pointer;
    color: #333;
    align-items: center;
}

.chart-tab-year i{
    font-size: 11px;
    margin-left: 5px;
}

.dashboard-chart-container{
    height: calc(100% - 57px);
    padding-top: 10px;
    box-sizing: border-box;
}

.dashboard-chart-container canvas{
    width: 100%;
    height: 100%;
    margin: auto;
}

.chart-tab-title{
    color: #888;
    font-size: 13px;
}

.dashboard-funnel-chart{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.funnel-chart-item{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 10px;
    box-sizing: border-box;
}

#funnel-won{
    border-bottom: 45.5px solid #77c126;
}

.funnel-item-name{
    font-size: 11px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    padding: 0 10px;
    height: 16px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    position: absolute;
    width: max-content;
}

.funnel-item-top{
    bottom: 14.75px;
}

.funnel-item-bottom{
    top: 14.75px;
}

#oppo-area-map{
    border-radius: 8px;
}

/** Dashboard End **/

.filter-switch-container, .task-switch-container{
    height: 38px;
    border-radius: 40px;
    display: flex;
    gap: 5px;
    padding: 4px 5px;
    box-sizing: border-box;
    width: max-content;
    border: 1px solid var(--color-light-black);
}

.filter-switch-item, .task-switch-item{
    height: 28px;
    padding: 0 12px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-black);
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-switch-item i, .task-switch-item i{
    font-size: 13px;
    margin-right: 10px;
}

.filter-switch-item:hover, .task-switch-item:hover{
    color: var(--color-secondary-blue);
}

.filter-switch-active, .filter-switch-active:hover, .task-switch-active, .task-switch-active:hover{
    background: var(--color-secondary-blue);
    color: #fff;
}

.open-task-detail .past-due{
    color: #f44336;
}

.status-dropdown-wrap{
    position: relative;
}

.status-dropdown-header{
    height: 34px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid var(--color-border-gray);
    padding: 0 15px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-light-black);
    transition: all 0.15s ease;
}

.status-dropdown-header:hover{
    border: 1px solid var(--color-light-black);
}

.status-dropdown-title{
    padding-right: 15px;
}

.status-dropdown-header i{
    transition: all 0.15s ease;
}

.status-dropdown-open .status-dropdown-header{
    border: 1px solid var(--color-font-black);
}

.status-dropdown-open .status-dropdown-header i{
    transform: rotate(180deg);
}

.status-dropdown-container{
    position: absolute;
    display: none;
    top: calc(100% + 5px);
    right: 0;
    padding: 5px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--color-font-black);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
    width: max-content;
    min-width: 120px;
    
}

.status-dropdown-option{
    padding: 8px 5px;
    border-bottom: 1px solid var(--color-border-gray);
    cursor: pointer;
    color: var(--color-light-black);
}

.status-dropdown-option:last-child{
    border-bottom: none;
}

.status-dropdown-option:hover{
    color: var(--color-font-black);
}

.kanban-container{
    display: grid;
    gap: 10px;
    width: 100%;
    height: 100%;
    overflow: scroll;
}

.oppo-kanban-container{
    grid-template-columns: repeat(7, minmax(200px, calc((100% - 60px) / 7)));
}

.wo-kanban-container{
    grid-template-columns: repeat(5, minmax(200px, calc((100% - 40px) / 5)));
}

.kanban-item{
    position: relative;
}

.kanban-header{
    background: var(--color-light-gray);
    box-sizing: border-box;
    padding: 15px 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--color-light-black);
    position: sticky;
    top: 0;
    border-bottom: 10px solid #fff;
}

.kanban-body{
    background: var(--color-light-gray);
    padding: 5px;
    height: 100%;
}

.kanban-oppo-item, .kanban-wo-item{
    padding: 10px 5px;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.kanban-oppo-item:last-child, .kanban-wo-item:last-child{
    margin-bottom: 0;
}

.kanban-oppo-item:hover, .kanban-wo-item:hover{
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.oppo-item-id{
    font-size: 12px;
    background: var(--color-light-gray);
    padding: 3px 5px;
    border-radius: 3px;
}

.oppo-type{
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.oppo-unit-category{
    margin-top: 12px;
}

.oppo-item-machine{
    margin-top: 2px;
    margin-bottom: 8px;
    color: var(--color-light-black);
}

.oppo-company{
    font-size: 14px;
    color: var(--color-font-black);
}

.oppo-footer{
    margin-top: 8px;
}

.oppo-open-date{
    font-size: 12px;
    color: var(--color-light-black);
}

.oppo-user-avatar{
    font-size: 11px;
    width: 22px;
    height: 22px;
    background: var(--color-light-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    text-transform: uppercase;
}

.oppo-td-status{
    font-size: 13px;
    font-weight: 500;
    border-radius: 30px;
    padding: 4px 12px;
    border: 1px solid transparent;
}

.oppo-status-prospecting{
    color: #fff;
    background: #5b5b5b;
}

.oppo-status-discovery{
    color: #fff;
    background: #feb50d;
}

.oppo-status-proposal{
    color: #fff;
    background: #521b95;
}

.oppo-status-negotiation{
    color: #fff;
    background: #3c95c3;
}

.oppo-status-closed-won{
    color: #fff;
    background: #77c126;
}

.oppo-status-closed-lost{
    color: #fff;
    background: #d40004;
}

.oppo-status-demonstration{
    color: #521b95;
    border: 1px solid #521b95;
}

.table-action-btn{
    width: 34px;
    height: 34px;
    background: var(--color-light-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.table-edit-button{
    color: var(--color-light-black);
}

.table-edit-button:hover{
    color: var(--color-font-black);
}

.header-btn-loader{
    height: 34px;
    width: 200px;
    background: var(--color-light-gray);
    border-radius: 4px;
}

.steps-title-container{
    position: relative;
}

.steps-title-item{
    display: flex;
    margin-bottom: 30px;
}

.steps-title-item:last-child{
    margin-bottom: 0;
}

.steps-title-line{
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--color-border-gray);
    top: 0;
    left: 11px;
    z-index: 0;
}

.steps-title-line-over{
    position: absolute;
    width: 2px;
    height: 0;
    top: 0;
    left: 11px;
    background: var(--color-google-blue);
    transition: all 0.15s ease;
}

.steps-title-bullet{
    width: 24px;
    height: 24px;
    background: var(--color-border-gray);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    position: relative;
    z-index: 1;
}

.steps-title-bullet .bullet-circle{
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: var(--color-border-gray);
    transition: all 0.15s ease;
}

.steps-title-info{
    margin-left: 15px;
}

.steps-title-name{
    font-weight: 500;
    color: var(--color-light-black);
}

.steps-title-active .steps-title-bullet, .steps-title-done .steps-title-bullet{
    background: var(--color-google-blue);
}

.steps-title-active .steps-title-name, .steps-title-done .steps-title-name{
    color: var(--color-font-black);
}

.steps-title-active .bullet-circle{
    background: #fff;
}

.steps-title-done .bullet-circle{
    background: var(--color-google-blue);
}

.step-form-button-wrap{
    display: flex;
    gap: 20px;
}

.step-form-button{
    background: var(--color-light-gray);
    padding: 10px 18px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.step-form-button:hover{
    background: var(--color-border-gray);
}

.step-form-next{
    background: var(--color-google-blue);
    color: #fff;
}

.step-form-next:hover{
    background: var(--color-google-blue-dark);
}

.form-step-item{
    display: none;
}

.form-step-item:first-child{
    display: block;
}

.order-table-container{
    margin-top: 20px;
    border: 1px solid var(--color-border-gray);
}

.order-detail-table-container{
    margin-top: 0;
}

.inventory-item-table-container{
    margin-top: 5px;
}

.order-table-row{
    display: grid;
    grid-template-columns: 1fr 1fr 100px 100px 100px 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.order-table-row:last-child{
    border-bottom: none;
}

.order-ps-row{
    grid-template-columns: 1fr;
}

.order-table-header{
    text-transform: uppercase;
    line-height: 40px;
    box-sizing: border-box;
}

.ot-header-item{
    padding: 0 10px;
}

.ot-input-wrap{
    padding: 5px;
    transition: all 0.15s ease;
    position: relative;
}

.order-ps-row .ot-input-wrap, .order-ps-row .ot-check-wrap{
    display: none;
}

.order-ps-row .ot-part-col{
    display: block;
}

.ot-input{
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 5px;
    font-family: inherit;
    color: var(--color-input-font);
    font-size: 14px;
    background: #fff;
    border-radius: 4px;
    box-sizing: border-box;
}

.ot-input::placeholder{
    color: var(--color-input-placeholder);
}

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

.ot-input-focus{
    background: var(--color-border-gray);
}

.ot-input-error{
    background: #f44336;
}

.ot-total-wrap{
    line-height: 39px;
    color: var(--color-input-font);
    box-sizing: border-box;
    padding: 0 10px;
}

.ot-btn-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ot-search-wrap{
    position: relative;
    min-width: 0;
}

.ot-search-dropdown{
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 100%;
    left: 0;
    background: #fff;
    max-height: 240px;
    overflow-x: hidden;
    border-radius: 4px;
    border: 1px solid var(--color-font-black);
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    padding: 5px 10px;
    display: none;
}

.ot-search-option{
    display: grid;
    grid-template-columns: 70px 1fr;
    cursor: pointer;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--color-border-gray);
    justify-content: space-between;
    color: var(--color-light-black);
    transition: all 0.15s ease;
}

.picking-location-search-option{
    grid-template-columns: 1fr;
}

.inventory-location-search-option{
    grid-template-columns: 1fr 1fr;
}

.warehouse-search-option{
    grid-template-columns: 1fr;
}

.ot-search-option span{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ot-search-option span:first-child{
    padding-right: 10px;
    box-sizing: border-box;
}

.ot-search-option:last-child{
    border-bottom: none;
}

.ot-search-option:hover{
    color: var(--color-font-black);
}

.ot-row-button{
    width: 30px;
    height: 30px;
    background: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s ease;
    font-size: 13px;
}

.remove-row-button:hover{
    color: #f44336;
}

.ecommerce-add-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.ot-add-row{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-google-blue);
    cursor: pointer;
    transition: all 0.15s ease;
}

.open-partfinder{
    padding: 10px 14px;
}

.order-location-container{
    display: none;
    margin-top: 20px;
}

.order-total-container{
    margin-top: 25px;
}

.order-total-row{
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: var(--color-font-black);
    font-weight: 500;
    margin: 8px 0;
    justify-content: flex-end;
}

.order-payable-row{
    font-size: 18px;
    font-weight: 600;
}

.sidebar-tab-section-title{
    font-weight: 500;
    padding: 10px 15px 15px;
    font-size: 13px;
}

.inventory-table-row{
    display: grid;
    grid-template-columns: 200px 1fr 100px 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.inventory-row-warning{
    background: var(--color-light-red);
}

.partfinder-fluid{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: var(--color-light-gray);
    top: 0;
    left: 0;
    display: none;
}

.partfinder-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.partfinder-header{
    background: #fff;
    height: 60px;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-gray);
}

.partfinder-header-title{
    font-size: 22px;
    color: var(--color-primary-blue);
    font-weight: 500;
}

.close-partfinder{
    height: 34px;
    background: var(--color-light-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    padding: 0 15px;
    font-weight: 500;
}

.partfinder-body{
    background: #fff;
    height: calc(100% - 60px);
    width: 100%;
    box-sizing: border-box;
}

.partfinder-section-container{
    display: grid;
    grid-template-columns: 20% 1fr 20%;
    height: 100%;
}

.partfinder-main{
    height: 100%;
    overflow: hidden;
}

.partfinder-manual-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partfinder-manual-item{
    border: 1px solid var(--color-border-gray);
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.15s ease;
    background: var(--color-border-gray);
}

.pf-manu{
    color: var(--color-light-black);
}

.pf-model{
    font-size: 16px;
    color: var(--color-font-black);
    transition: all 0.15s ease;
    margin-top: 5px;
    font-weight: 600;
}

.partfinder-manual-item:hover{
    border: 1px solid var(--color-font-black);
}

.partfinder-manual-item:hover .pf-model{
    color: var(--color-font-black);
}

.pf-header-back{
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding-right: 5px;
    color: var(--color-light-black);
}

.pf-header-back:hover{
    color: var(--color-font-black);
}

.pf-machine-title{
    font-size: 22px;
    font-weight: 500;
    color: var(--color-google-blue);
}

.pf-header-span{
    background: var(--color-light-gray);
    text-transform: uppercase;
    margin-left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
}

.partfinder-section-item{
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-gray);
}

.partfinder-section-item:first-child{
    padding-top: 0;
}

.partfinder-section-item:last-child{
    border-bottom: none;
}

.pf-section-photo{
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: none;
}

.pf-section-photo img{
    width: 100%;
    height: 100%;
    transition: all 0.15s ease;
    object-fit: contain;
}

.pf-section-name{
    color: var(--color-light-black);
    transition: all 0.15s ease;
}

.pf-section-num{
    width: 34px;
    height: 34px;
    background: var(--color-light-gray);
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-right: 15px;
    transition: all 0.15s ease;
}

.partfinder-section-item:hover .pf-section-num{
    background: var(--color-light-black);
    color: #fff;
}

.partfinder-section-item:hover .pf-section-name{
    color: var(--color-font-black);
}

.pf-switch-container{
    display: flex;
    gap: 5px;
    background: var(--color-light-gray);
    height: 34px;
    border-radius: 4px;
    padding: 3px;
    box-sizing: border-box;
}

.pf-switch-item{
    width: 34px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-light-black);
    transition: all 0.15s ease;
}

.pf-switch-item:hover{
    background: var(--color-border-gray);
    color: var(--color-font-black);
}

.pf-switch-selected, .pf-switch-selected:hover{
    background: #fff;
    color: var(--color-font-black);
}

.machine-section-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.machine-section-grid .pf-section-name{
    padding: 15px 10px;
    border-top: 1px solid var(--color-border-gray);
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.machine-section-grid .pf-section-photo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pf-section-photo i{
    font-size: 36px;
    color: var(--color-input-placeholder);
}

.pf-section-photo span{
    color: var(--color-input-placeholder);
    font-size: 16px;
    margin-top: 10px;
}

.machine-section-grid .pf-section-num{
    display: none;
}

.machine-section-grid .partfinder-section-item{
    flex-direction: column;
    border: 1px solid var(--color-border-gray);
    border-radius: 4px;
    transition: all 0.15s ease;
    padding: 0;
    overflow: hidden;
}

.machine-section-grid .partfinder-section-item:hover{
    border: 1px solid var(--color-font-black);
}

.machine-section-grid .partfinder-section-item:hover .pf-section-photo img{
    transform: scale(1.1);
}

.pf-photo-body{
    position: relative;
    padding: 0;
}

.machine-section-photo{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.machine-section-photo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.15s ease;
    transform-origin: center center;
}

.machine-section-photo i{
    font-size: 54px;
    color: var(--color-input-placeholder);
}

.machine-section-photo span{
    font-size: 20px;
    color: var(--color-input-placeholder);
    margin-top: 20px;
}

.pf-photo-action-container{
    position: absolute;
    width: 210px;
    padding: 10px;
    background: #fff;
    bottom: 20px;
    display: flex;
    gap: 10px;
    left: 50%;
    margin-left: -105px;
    box-sizing: border-box;
    border: 1px solid var(--color-font-black);
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.pf-photo-action-btn{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-black);
    cursor: pointer;
    background: var(--color-light-gray);
    border-radius: 4px;
}

.pf-photo-action-btn:hover{
    color: var(--color-font-black);
}

.photo-transform-info{
    width: 180px;
    line-height: 24px;
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -90px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #fff;
    display: none;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
}

.pf-section-part-container{
    height: 100%;
    overflow: hidden;
}

.pf-section-part-header{
    height: 70px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.pf-section-part-header .header-btn-loader{
    width: 100%;
}

.pf-search-input-wrap{
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
}

.pf-search-input{
    height: 34px;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--color-light-black);
    border-radius: 4px;
    padding: 0 10px;
    font-family: inherit;
}

.pf-search-icon{
    position: absolute;
    width: 35px;
    text-align: center;
    right: 0;
    color: var(--color-light-black);
}

.pf-section-part-body{
    height: calc(100% - 70px);
    overflow-x: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.pf-part-block{
    display: flex;
    margin-bottom: 10px;
}

.pfb-item-num{
    width: 26px;
    height: 26px;
    background: var(--color-light-gray);
    border-radius: 26px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pfb-part-container{
    flex: 1;
    margin-left: 12px;
}

.pf-part-item{
    cursor: pointer;
    margin-top: 2px;
    padding-bottom: 10px;
    color: var(--color-light-black);
    position: relative;
}

.pf-part-item:last-child{
    border-bottom: 1px solid var(--color-light-gray);
}

.pf-part-item:hover, .part-item-selected{
    color: var(--color-font-black);
}

.pf-part-item-num{
    font-weight: 500;
}

.pf-part-item-desc{
    font-size: 13px;
    margin-top: 4px;
}

.pf-part-item-id{
    font-size: 12px;
    font-style: italic;
    margin-top: 3px;
}

.pfb-additional-title{
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.pfb-additional-title:after{
    content: '';
    background: var(--color-light-gray);
    height: 1px;
    flex: 1;
    margin-left: 10px;
}

.part-select-icon{
    position: absolute;
    right: -5px;
    top: 1px;
    color: var(--color-input-placeholder);
    font-size: 16px;
}

.part-selected-icon{
    color: var(--color-google-blue);
}

.selected-part-item{
    display: flex;
    margin-bottom: 10px;
}

.selected-part-index{
    width: 26px;
    height: 26px;
    background: var(--color-light-black);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
}

.selected-part-detail{
    flex: 1;
    color: var(--color-font-black);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-light-gray);
}

.selected-part-id{
    font-size: 12px;
    font-style: italic;
}

.selected-part-num{
    font-weight: 500;
}

.selected-part-desc{
    font-size: 13px;
    margin: 4px 0;
}

.selected-part-price-wrap, .selected-part-quantity-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-light-gray);
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.selected-part-price-label{
    font-size: 13px;
    font-weight: 500;
}

.selected-part-price-input{
    text-align: right;
    background: none;
    border: none;
    font-family: inherit;
}

.selected-part-price-input:focus{
    outline: none;
    color: var(--color-google-blue);
}

.selected-part-quantity-input{
    text-align: right;
    background: none;
    border: none;
    font-family: inherit;
}

.selected-part-quantity-input:focus{
    outline: none;
    color: var(--color-google-blue);
}

.pf-selected-container{
    height: calc(100% - 91.5px);
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 10px 0;
    margin-top: 10px;
}

.pf-selected-footer{
    height: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: var(--color-font-black);
    border-top: 1px solid var(--color-border-gray);
}

.pf-footer-info{
    color: var(--color-light-black);
    font-weight: 500;
}

.pf-footer-total{
    font-size: 18px;
    font-weight: 600;
}

.rental-grid-container{
    display: grid;
    height: 100%;
    grid-template-columns: 220px 1fr 220px;
}

.unit-filter-add{
    background: var(--color-light-gray);
    color: var(--color-light-black);
    width: 90px;
    padding: 6px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 13px;
}

.unit-filter-add:hover{
    background: var(--color-border-gray);
    color: var(--color-font-black);
}

.unit-filter-added{
    background: var(--color-google-green);
    color: #fff;
}

.unit-filter-added:hover{
    background: var(--color-google-green-dark);
    color: #fff;
}


td.filter-add-td{
    width: 90px;
}

.rental-filter-section .button-secondary, .diary-filter-container .button-secondary{
    width: 100%;
    justify-content: center;
    height: 40px;
}

.rental-selected-container .button-primary{
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.rental-selected-item{
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-gray);
}

.rental-selected-item:first-child{
    margin-top: 10px;
}

.rental-selected-item:last-of-type{
    margin-bottom: 25px;
    border-bottom: none;
}

.rental-stock-type{
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-light-black);
}

.remove-rental-selected{
    color: var(--color-light-black);
    font-size: 13px;
    cursor: pointer;
}

.remove-rental-selected:hover{
    color: #f44336;
}

.selected-model-name{
    margin-top: 8px;
    color: var(--color-font-black);
    margin-bottom: 8px;
}

.counter-container{
    display: flex;
}

.counter-button{
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-light-black);
    background: var(--color-light-gray);
}

.counter-button:hover{
    background: var(--color-light-gray);
    color: var(--color-font-black);
}

.counter-button-disabled, .counter-button-disabled:hover{
    color: #aaa;
    cursor: default;
}

.counter-value{
    width: 40px;
    line-height: 22px;
    text-align: center;
    color: var(--color-font-black);
}

.rental-filter-error{
    display: none;
    margin-top: 15px;
    font-size: 12px;
}

.unit-rental-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 150px 150px 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.rental-detail-table-container .unit-rental-table-row{
    grid-template-columns: 40px 1fr 120px 120px;
}

.unit-rental-table-item:last-child .unit-rental-table-row{
    border-bottom: none;
}

.unit-rental-table-item:last-child .unit-rental-option-title{
    border-top: 1px solid var(--color-border-gray);
}

.unit-rental-table-item:last-child .unit-table-option-row:last-child{
    border-bottom: none;
}

.rental-assign-table-container{
    background: #fff;
}

.rental-assign-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 1fr;
    border-bottom: 1px solid var(--color-border-gray);
}

.rental-assign-table-row:last-child{
    border-bottom: none;
}

.ot-value-wrap{
    line-height: 39px;
    color: var(--color-input-font);
    box-sizing: border-box;
    padding: 0 10px;
    min-width: 0;
}

.ot-input.form-price-input{
    padding-left: 16px;
}

.ot-rental-stocktype{
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.ot-avatar-wrap{
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ot-avatar{
    width: 24px;
    height: 24px;
    background: var(--color-light-black);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
}

.text-with-input{
    color: var(--color-input-font);
}

.inline-text-input{
    border: none;
    font-family: inherit;
    width: auto;
    color: var(--color-google-blue);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
}

.inline-text-input:focus{
    outline: none;
}

.unit-rental-option-container{
    position: relative;
}

.unit-rental-option-title{
    background: var(--color-light-gray);
    color: var(--color-light-black);
    line-height: 28px;
    padding-left: 50px;
    font-size: 13px;
    display: grid;
    grid-template-columns: 1fr max-content;
}

.add-new-unit-option{
    padding: 0 10px;
    color: var(--color-google-blue);
    cursor: pointer;
}

.add-new-unit-option i{
    margin-right: 3px;
    font-size: 12px;
}

.unit-table-option-row{
    display: grid;
    grid-template-columns: 40px 1fr 150px 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.rental-detail-table-container .unit-table-option-row{
    grid-template-columns: 40px 1fr 120px;
}

.remove-option-item-button:hover{
    color: #f44336;
}

.unit-option-vertical-line{
    width: 1px;
    height: calc(100% - 11px);
    top: -9px;
    left: 20px;
    position: absolute;
    border-left: 1px dashed var(--color-light-black);
}

.unit-table-option-line{
    width: 50%;
    border-top: 1px dashed var(--color-light-black);
    margin-left: 50%;
    box-sizing: border-box;
    margin-top: 20px;
}

.unit-option-search-option, .assign-unit-search-option, .assign-source-search-option{
    grid-template-columns: 1fr;
}

.rental-link-company, .rental-link-opportunity{
    margin-top: 15px;
}

.rental-link-opportunity{
    display: none;
}

.rental-oppo-company-container, .work-order-company-container, .rental-oppo-location-container, .work-order-location-container{
    display: none;
}

.detail-timeline-item{
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-gray);
}

.detail-timeline-item:first-of-type{
    margin-top: 10px;
}

.detail-timeline-item:last-child{
    border-bottom: none;
}

.timeline-user-name, .timeline-time{
    font-size: 13px;
    color: var(--color-light-black);
}

.timeline-message{
    margin-top: 8px;
}

.detail-view-table td{
    height: 30px;
    padding: 5px;
}

.detail-view-table td .table-avatar{
    width: 24px;
    height: 24px;
    font-weight: 500;
}

.table-item-with-icon i{
    color: var(--color-google-blue);
    margin-right: 7px;
    font-size: 15px;
}

.doc-popup-fluid{
    position: fixed;
    z-index: 105;
    width: 100%;
    height: 100%;
    background: var(--color-light-gray);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    display: none;
}

.doc-popup-container{
    background: #fff;
    width: 100%;
    max-width: 800px;
    margin: auto;
    min-height: 100%;
}

.close-doc-popup{
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: fixed;
    top: 10px;
    right: 15px;
    background: #fff;
    border-radius: 4px;
    color: var(--color-light-black);
    cursor: pointer;
}

.close-doc-popup:hover{
    color: var(--color-font-black);
}

.print-popup-doc{
    position: fixed;
    right: 64px;
    top: 10px;
    background: var(--color-google-blue);
    color: #fff;
    padding: 0 20px;
    height: 34px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.print-popup-doc:hover{
    background: var(--color-google-blue-dark);
}

.print-popup-doc i{
    margin-right: 6px;
}

.doc-detail-item{
    font-size: 15px;
    margin-bottom: 5px;
    display: flex;
}

.doc-large-detail{
    font-size: 18px;
    margin-bottom: 8px;
}

.doc-detail-title{
    font-weight: 500;
    margin-right: 5px;
}

.rental-estimate-table-container .unit-rental-table-row{
    grid-template-columns: 40px 200px 1fr 150px
}

.rental-estimate-table-container .unit-rental-option-title{
    padding-left: 250px;
}

.rental-estimate-table-container .unit-table-option-row{
    grid-template-columns: 240px 1fr 150px;
}

.estimate-detail-holder .company-over-title, .estimate-detail-holder .company-over-value{
    font-size: 15px;
}

.doc-tnc-ol{
    padding-inline-start: 16px;
    font-family: inherit;
}

.doc-tnc-ol li{
    line-height: 24px;
    color: var(--color-light-black);
}

.doc-tnc-ol li.tnc-imp{
    font-weight: 500;
    color: var(--color-font-black);
}

.doc-p{
    font-size: 15px;
}

.doc-sign-wrap{
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
}

.doc-sign-line{
    border-bottom: 1px solid var(--color-font-black);
    flex: 1;
    height: 20px;
    margin-left: 5px;
}

.oppo-status-change-label{
    font-size: 14px;
    gap: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--color-light-black);
}

#detail-map-container{
    height: 300px;
    background: var(--color-light-gray);
    border-radius: 6px;
    overflow: hidden;
}

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

.form-photo-label{
    border: 1px solid var(--color-border-gray);
    width: 80px;
    display: flex;
    height: 80px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-input-placeholder);
    cursor: pointer;
    transition: all 0.15s ease;
}

.form-photo-label:hover{
    border: 1px solid var(--color-font-black);
}

.single-photo-label{
    width: 200px;
    height: 200px;
    font-size: 46px;
}

.current-status-sold, .current-status-rented{
    display: none;
    margin-top: 20px;
}

.table-td-status{
    text-transform: capitalize;
}

.table-td-priority{
    text-transform: uppercase;
    font-size: 13px;
}

.replenishment-order-table-row{
    display: grid;
    grid-template-columns: 1fr 100px 100px 100px 100px 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.unit-purchase-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 150px 150px 150px 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.unit-tradein-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 150px 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.popup-picker-header{
    display: flex;
    height: 60px;
    border-bottom: 1px solid var(--color-border-gray);
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.popup-picker-title{
    font-size: 20px;
}

.close-picker-fluid{
    width: 34px;
    height: 34px;
    background: var(--color-light-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-light-black);
}

.close-picker-fluid:hover{
    background: var(--color-border-gray);
    color: var(--color-font-black);
}

.popup-picker-body{
    height: calc(100% - 60px);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 10px;
}

.picker-select-item{
    font-size: 15px;
    display: flex;
    align-items: center;
    color: var(--color-light-black);
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px solid var(--color-border-gray);
    padding-right: 22px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.picker-select-item:hover{
    color: var(--color-font-black);
    padding-right: 10px;
    background: var(--color-border-gray);
}

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

th.table-check-wrap, td.table-check-wrap{
    width: 30px;
}

.table-check-item, .table-tick-item{
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--color-light-black);
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.table-tick-item{
    border: 1px solid transparent;
    font-size: 16px;
}

.tr-check-selected .table-check-item{
    background: var(--color-google-blue);
    border: 1px solid var(--color-google-blue);
}

.tr-tick-selected .table-tick-item{
    color: var(--color-google-green);
}

.assign-source-table-row{
    display: grid;
    grid-template-columns: 40px 250px 100px 240px 1fr;
    border-bottom: 1px solid var(--color-border-gray);
}

.assign-source-table-row:last-child{
    border-bottom: none;
}

.assign-source-table-row .ot-value-wrap{
    line-height: 49px;
}

.assign-source-table-row .ot-input{
    height: 40px;
}

.ot-tab-wrap{
    padding: 5px 10px;
}

.assign-supplier-dropdown, .assign-warehouse-dropdown{
    display: none;
}

.popup-scanner-fluid{
    position: fixed;
    z-index: 200;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    display: none;
}

.popup-scanner-container{
    width: 450px;
    background: #fff;
    margin: 50px auto;
    border-radius: 6px;
    height: calc(100% - 100px);
    overflow: hidden;
    display: none;
}

.popup-scanner-header{
    height: 50px;
    border-bottom: 1px solid var(--color-border-gray);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.popup-scanner-title{
    font-size: 20px;
}

.close-scanner-fluid{
    background: var(--color-light-gray);
    padding: 0 12px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

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

.scanner-type-title{
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.scanner-camera-container{
    background: #000;
    height: 200px;
    color: #f44336;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.camera-simulator{
    position: relative;
    background: #000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-edge{
    position: absolute;
    background: #00FF00;
    width: 24px;
    height: 24px;
    z-index: 0;
}

.camera-edge:nth-child(1){
    left: 19px;
    top: 19px;
}

.camera-edge:nth-child(2){
    right: 19px;
    top: 19px;
}

.camera-edge:nth-child(3){
    left: 19px;
    bottom: 19px;
}

.camera-edge:nth-child(4){
    right: 19px;
    bottom: 19px;
}

.putaway-scanner-item-container, .picking-scanner-item-container{
    display: none;
}

.table-check-disabled td{
    color: var(--color-input-placeholder);
}

.table-check-disabled .table-check-item{
    border: 1px solid var(--color-input-placeholder);
    cursor: default;
}

.shipping-label-empty{
    border: 5px solid var(--color-border-gray);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-input-placeholder);
    font-size: 24px;
}

.shipping-label-empty i{
    font-size: 36px;
    margin-bottom: 20px;
}

.shipping-label{
    display: none;
}

.shipping-label-image{
    width: 100%;
}

.shipping-label-image img{
    width: 100%;
}

.label-error{
    padding: 10px;
    box-sizing: border-box;
}

.shipping-label-header{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.shipping-label .label-p{
    font-size: 16px;
    color: var(--color-font-black);
    margin: 0;
    line-height: 22px;
}

.shipping-label-separator{
    border-top: 1px dashed var(--color-font-black);
    margin: 20px 0;
}

.shipping-barcode-container{
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shipping-label-footer{
    border-top: 1px solid var(--color-font-black);
    padding: 15px;
}

.open-manual-assign{
    color: var(--color-google-blue);
    cursor: pointer;
}

.open-manual-assign:hover{
    text-decoration: underline;
}

.header-status-span{
    margin-left: 10px;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.header-status-span.wo-status-unassigned{
    background: #d40004;
    color: #fff;
}

.header-status-span.wo-status-pending{
    color: #d40004;
    border: 1px solid #d40004;
}

.header-status-span.wo-status-scheduled{
    color: #fff;
    background: #feb50d;
}

.header-status-span.wo-status-in-progress{
    color: #fff;
    background: #3c95c3;
}

.header-status-span.wo-status-completed{
    color: #fff;
    background: #77c126;
}

.wo-st-container{
    margin-top: 20px;
    display: none;
}

.wo-st-row{
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 150px 40px;
    height: 40px;
    box-sizing: border-box;
    line-height: 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.st-primary-wrap{
    display: flex;
    align-items: center;
    color: var(--color-input-placeholder);
    cursor: pointer;
    transition: all 0.15s ease;
}

.st-primary-check{
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-input-placeholder);
    color: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 7px;
    transition: all 0.15s ease;
}

.st-primary-wrap:hover{
    color: var(--color-light-black);
}

.st-primary-wrap:hover .st-primary-check{
    border: 1px solid var(--color-light-black);
}

.wo-st-primary .st-primary-wrap, .wo-st-primary .st-primary-wrap:hover{
    color: var(--color-google-blue);
}

.wo-st-primary .st-primary-check, .wo-st-primary .st-primary-wrap:hover .st-primary-check{
    color: var(--color-google-blue);
    border: 1px solid var(--color-google-blue);
}

.remove-st-btn{
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 5px;
    color: var(--color-light-black);
    background: var(--color-light-gray);
}

.remove-st-btn:hover{
    color: #f44336;
}

.wo-st-item{
    display: flex;
    position: relative;
    height: 44px;
    border-bottom: 1px solid var(--color-border-gray);
    align-items: center;
}

.wo-st-item:last-child{
    border-bottom: none;
}

.wo-st-avatar{
    width: 30px;
    height: 30px;
    background: var(--color-light-black);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.wo-st-name{
    flex: 1;
    margin: 0 10px;
}

.st-item-primary{
    font-size: 11px;
    font-weight: 500;
    color: var(--color-google-blue-dark);
    text-transform: uppercase;
}

.accounting-total-item{
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

.inspection-report-row{
    display: grid;
    grid-template-columns: 1fr 100px 100px 100px;
    gap: 5px;
    border-bottom: 1px solid var(--color-border-gray);
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-top: 2px;
    padding-bottom: 2px;
}

.inspection-report-row div:first-child{
    text-align: left;
}

.inspection-report-header{
    border-bottom: 1px solid var(--color-light-black);
    margin-top: 0;
    padding-bottom: 0;
}

.inspection-report-header div{
    text-transform: uppercase;
}

.report-item-name{
    font-size: 15px;
    font-weight: 500;
}

.report-key-item{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-key-pass{
    background: var(--color-google-green);
    color: #fff;
}

.report-key-fail{
    background: #f44336;
    color: #fff;
}

.report-key-na{
    background: var(--color-border-gray);
    color: var(--color-light-black);
}

.main-map-container{
    background: var(--color-light-gray);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.custom-report-container{
    height: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(300px, 25%) 1fr;
}

.report-builder-sidebar{
    border-right: 1px solid var(--color-border-gray);
    height: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.report-builder-main{
    height: 100%;
    overflow-x: hidden;
}

.report-grid-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.report-grid-item{
    border: 1px solid var(--color-border-gray);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 20px;
}

.record-item-row{
    display: flex;
    height: 44px;
    border-bottom: 1px solid var(--color-border-gray);
    line-height: 44px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    color: var(--color-light-black);
}

.record-total-row{
    font-size: 15px;
    font-weight: 500;
    color: var(--color-font-black);
    border-bottom: none;
}

.report-check-container, .report-radio-container{
    margin-top: 20px;
}

.report-check-item, .report-radio-item{
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-gray);
    cursor: pointer;
    color: var(--color-light-black);
}

.report-check-item:last-child, .report-radio-item:last-child{
    border-bottom: none;
}

.check-item-check{
    border: 1px solid var(--color-input-placeholder);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin-right: 12px;
    color: #fff;
}

.report-check-item:hover, .report-radio-item:hover{
    color: var(--color-font-black);
}

.report-check-item:hover .check-item-check, .report-radio-item:hover .check-item-check{
    border: 1px solid var(--color-font-black);
}

.report-check-selected, .report-check-selected:hover, .report-radio-selected, .report-radio-selected:hover{
    color: var(--color-font-black);
}

.report-check-selected .check-item-check, .report-check-selected:hover .check-item-check, .report-radio-selected .check-item-check, .report-radio-selected:hover .check-item-check{
    border: 1px solid var(--color-google-blue);
    background: var(--color-google-blue);
}

.report-builder-body{
    overflow: scroll;
}

.report-builder-body .main-table{
    width: max-content;
    min-width: 100%;
}

.report-check-item .sort-icon{
    justify-content: start;
    padding-left: 5px;
    box-sizing: border-box;
}

.report-check-item.dragging{
    background: var(--color-border-gray);
}

.report-time-header{
    height: 34px;
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border-gray);
    box-sizing: border-box;
    padding: 0 10px;
    gap: 15px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-light-black);
}

.report-time-icon{
    font-size: 15px;
}

.report-time-header:hover{
    border: 1px solid var(--color-light-black);
    color: var(--color-font-black);
}

.wo-search-unit, .wo-search-company{
    margin-top: 15px;
}

.wo-search-company{
    display: none;
}

.unit-serial-search-option{
    grid-template-columns: 1fr;
}

.input-info-icon{
    position: absolute;
    height: 26px;
    right: 5px;
    top: 50%;
    transform: translateY(-13px);
    width: 26px;
    text-align: center;
    font-size: 13px;
    color: var(--color-font-black);
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-info-icon:hover{
    color: var(--color-google-blue);
}

.non-offday-items .form-input-holder:first-child, .st-location-container .form-input-holder:first-child, .sa-location-container .form-input-holder:first-child{
    margin-top: 20px;
}

.external-unit-item{
    display: grid;
    grid-template-columns: 1fr 150px 150px 150px;
    height: 40px;
    border-bottom: 1px solid var(--color-border-gray);
    line-height: 40px;
    color: var(--color-light-black);
    padding: 0 5px;
}

.company-onhold-wrap{
    margin-left: 15px;
    background: #f44336;
    height: 22px;
    color: #fff;
    border-radius: 3px;
    padding: 0 10px;
    line-height: 22px;
    font-size: 13px;
    font-weight: 500;
}

#unit-prod-dep-method{
    display: none;
}

.form-result-holder{
    background: var(--color-light-gray);
    padding: 15px;
    margin-top: 20px;
    display: none;
}

.site-dropdown-holder{
    position: relative;
    margin-top: 10px;
}

.site-dropdown-header{
    border: 1px solid var(--color-border-gray);
    border-radius: 4px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.site-dropdown-chevron{
    transition: all 0.15s ease;
}

.site-dropdown-open .site-dropdown-header{
    border: 1px solid var(--color-light-black);
}

.site-dropdown-open .site-dropdown-chevron{
    transform: rotate(180deg);
}

.site-header-info{
    flex: 1;
    min-width: 0;
}

.site-dropdown-name span{
    color: var(--color-input-placeholder);
}

.site-dropdown-address{
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    color: var(--color-light-black);
    margin-top: 2px;
}

.form-site-dropdown{
    position: absolute;
    top: calc(100% + 5px);
    border: 1px solid var(--color-light-black);
    padding: 5px;
    display: none;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    max-height: 200px;
    overflow-x: hidden;
    z-index: 2;
}

.site-dropdown-option{
    margin: 2px 0;
    padding: 10px;
    color: var(--color-light-black);
    border-radius: 4px;
    cursor: pointer;
}

.site-dropdown-option:hover{
    color: var(--color-font-black);
}

.site-dropdown-selected{
    background: #d2e3ff94;
    color: var(--color-font-black);
}

.dropdown-input-container{
    padding: 10px 8px;
    background: var(--color-border-gray);
}

.dropdown-input{
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border-radius: 4px;
    border: none;
    padding: 0 5px;
    font-family: inherit;
    font-size: 14px;
    color: var(--color-input-font);
}

.dropdown-input::placeholder{
    color: var(--color-input-placeholder);
}

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

.ot-search-part-header, .ot-search-unit-header{
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 5px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 4px;
}

.ot-search-part-header div, .ot-search-unit-header div{
    width: 100%;
}

.ot-part-desc{
    display: flex;
    gap: 4px;
    align-items: center;
}

.desc-separator{
    background: var(--color-font-black);
    width: 1px;
    height: 12px;
}

.search-dropdown-header{
    padding: 10px;
    background: var(--color-light-gray);
    font-weight: 500;
}

.part-order-search-option, .part-order-search-header{
    display: grid;
    grid-template-columns: 100px 150px 1fr 150px;
    font-size: 13px;
}

.search-dropdown-body{
    padding: 10px;
    box-sizing: border-box;
    max-height: 200px;
    overflow-x: hidden;
}

.ot-stock-wrap{
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.ot-stock-pill{
    font-size: 12px;
    background: var(--color-google-green);
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
}

.stock-empty{
    background: var(--color-orange);
}

.non-stock{
    background: var(--color-light-black);
}

.ot-part-info{
    line-height: 1;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ot-part-name{
    font-weight: 500;
    display: flex;
    gap: 8px;
    align-items: center;
}

.ot-part-info .part-item-num{
    font-size: 13px;
    font-weight: 400;
    color: var(--color-google-blue);
}

.ot-part-name span{
    color: var(--color-input-placeholder);
    font-weight: 400;
}

.ot-part-name .open-part-detail{
    font-weight: 400;
    font-size: 13px;
    color: var(--color-google-blue);
    margin-left: 4px;
}

.ot-part-name .open-part-detail:hover{
    color: var(--color-google-blue-dark);
    text-decoration: underline;
}

.ot-part-desc{
    font-size: 13px;
    color: var(--color-light-black);
    margin-top: 3px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ot-part-info .ot-part-desc{
    margin-top: 5px;
}

.order-stage-td{
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-stage-circle{
    width: 10px;
    height: 10px;
    background: var(--color-input-placeholder);
    border-radius: 10px;
    display: block;
}

.stage-half-done{
    background: linear-gradient(to right, var(--color-google-blue) 50%, var(--color-input-placeholder) 50%);
}

.stage-done{
    background: var(--color-google-blue);
}

.invoice-stage-done{
    background: var(--color-google-green);
}

.order-detail-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 200px 1fr 50px 70px 100px 80px 80px 80px;
    border-bottom: 1px solid var(--color-border-gray);
}

.order-detail-table-row .ot-value-wrap{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-detail-table-row:last-child{
    border-bottom: none;
}

.ot-stage-item{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-black);
    gap: 10px;
}

.order-detail-table-row .ot-value-wrap{
    line-height: 49px;
}

.supplier-order-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 100px 100px 100px;
    border-bottom: 1px solid var(--color-border-gray);
}

.supplier-order-table-row:last-child{
    border-bottom: none;
}

.supplier-order-table-row .ot-value-wrap{
    line-height: 49px;
}

.order-invoice-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 100px 100px 150px 150px 100px;
    border-bottom: 1px solid var(--color-border-gray);
}

.order-invoice-table-row:last-child{
    border-bottom: none;
}

.order-invoice-table-row .ot-value-wrap{
    line-height: 49px;
}

.invoice-row-selected .ot-input-wrap{
    background: var(--color-border-gray);
}

.invoice-row-selected .ot-input-error{
    background: #f44336;
}

.part-manual-item{
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--color-border-gray);
    cursor: pointer;
}

.part-manual-item:last-child{
    border-bottom: none;
}

.part-manual-item i{
    font-size: 15px;
    color: var(--color-google-blue);
}

.part-manual-item:hover{
    background: var(--color-light-gray);
}

.order-invoice-item{
    padding: 10px 5px;
    border-bottom: 1px solid var(--color-border-gray);
    cursor: pointer;
}

.order-invoice-item:hover{
    background: #fff;
}

.invoice-detail-container{
    display: grid;
    grid-template-columns: 1fr 200px;
}

.doc-oi-table-container{
    margin-top: 30px;
    border: 1px solid var(--color-border-gray);
}

.doc-oi-table-row{
    display: grid;
    grid-template-columns: 40px 150px 1fr 50px 110px 110px;
    border-bottom: 1px solid var(--color-border-gray);
}

.doc-oi-table-row:last-child{
    border-bottom: none;
}

.doc-oi-table-container .order-table-header{
    background: rgb(52 168 83 / 20%);
    color: var(--color-google-green-dark);
    font-weight: 500;
}

.doc-oi-total-container{
    display: flex;
    justify-content: flex-end;
}

.doc-oi-total-wrap{
    border: 2px solid var(--color-font-black);
    border-top: 0;
    width: 220px;
    box-sizing: border-box;
}

.doc-oi-total-item{
    display: grid;
    padding: 10px;
    grid-template-columns: 1fr 90px;
    font-size: 15px;
}

.doc-oi-footer{
    text-align: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 600;
    border-top: 2px solid var(--color-font-black);
}

.doc-oi-table-row .ot-value-wrap{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.part-manual-expandable{
    border-bottom: 1px solid var(--color-border-gray);
}

.part-manual-expandable:last-child{
    border-bottom: none;
}

.manual-part-table{
    border: 1px solid var(--color-border-gray);
    margin-bottom: 10px;
    display: none;
}

.manual-table-row{
    display: grid;
    grid-template-columns: 50px 150px 1fr 50px 1fr;
    border-bottom: 1px solid var(--color-border-gray);
}

.manual-table-row:last-child{
    border-bottom: none;
}

.mt-header-item{
    min-width: 0;
    line-height: 39px;
    font-weight: 500;
    padding: 0 8px;
    box-sizing: border-box;
    border-right: 1px solid var(--color-border-gray);
}

.mt-header-item:last-child{
    border-right: none;
}

.manual-table-item{
    line-height: 39px;
    min-width: 0;
    padding: 0 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--color-font-black);
    font-size: 13px;
    border-right: 1px solid var(--color-border-gray);
}

.manual-table-item:last-child{
    border-right: none;
}

.mt-section-name{
    grid-template-columns: 1fr;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    background: var(--color-light-gray);
}

.manual-expandable-header{
    display: flex;
    gap: 10px;
    height: 40px;
    align-items: center;
    color: var(--color-light-black);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.manual-expandable-header:hover, .manual-expanded-container .manual-expandable-header{
    color: var(--color-font-black);
}

.manual-expandable-chevron{
    font-size: 18px;
    transition: all 0.15s ease;
}

.manual-expanded-container .manual-expandable-chevron{
    transform: rotate(90deg);
}

.manual-expandable-body{
    display: none;
    margin-bottom: 10px;
}

.manual-name{
    align-items: center;
    display: flex;
    height: 40px;
    gap: 10px;
    color: var(--color-light-black);
    padding: 0 10px;
    background: var(--color-light-gray);
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.manual-name:hover{
    color: var(--color-font-black);
}

.manual-name:last-of-type{
    border-bottom: none;
}

.manual-name-chevron{
    transition: all 0.15s ease;
}

.manual-table-open .manual-name{
    color: var(--color-font-black);
}

.manual-table-open .manual-name-chevron{
    transform: rotate(90deg);
}

.pd-grid-container{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
    padding-bottom: 10px;
}

.pd-specs-container{
    border: 1px solid var(--color-border-gray);
}

.pd-specs-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 13px;
}

.pd-specs-header{
    font-weight: 500;
    background: var(--color-light-gray);
    border-bottom: 1px solid var(--color-border-gray);
}

.pd-specs-item{
    height: 40px;
    line-height: 40px;
    padding: 0 8px;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.part-photo-wrap{
    background: var(--color-light-gray);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    color: var(--color-input-placeholder);
    border-radius: 6px;
    border: 1px solid var(--color-border-gray);
}

.part-header-title{
    height: 40px;
    overflow: hidden;
    transition: margin 0.2s ease;
}

.part-normal-title{
    height: 40px;
    margin-top: 0;
    transition: margin 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.normal-title-hidden{
    margin-top: -40px;
}

.part-number-title{
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    transition: margin 0.2s ease;
}

.part-number-title .header-id-span{
    margin-left: 0;
}

.part-body-section{
    height: auto;
    align-items: flex-start;
}

.part-media-section{
    position: sticky;
    top: 0;
}

.part-name-separator{
    height: 20px;
    background: var(--color-input-placeholder);
    width: 2px;
}

.location-items-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 100px 100px 120px 120px 150px;
    border-bottom: 1px solid var(--color-border-gray);
}

.location-items-table-row .ot-value-wrap{
    line-height: 49px;
}

.location-items-table-row:last-child{
    border-bottom: none;
}

.location-items-table-row .ot-part-name, .packing-slip-col .ot-part-name, .relation-table-row .ot-part-name, .bundle-table-row .ot-part-name{
    font-weight: 500;
    display: flex;
    gap: 8px;
}

.ot-part-name-separator{
    width: 1px;
    height: 14px;
    background: var(--color-input-placeholder);
}

.total-tr{
    background: var(--color-light-gray);
    font-weight: 500;
}

.total-tr td{
    color: var(--color-font-black);
}

.package-input-wrap{
    background: var(--color-border-gray);
    padding: 1px;
}

.package-input-header{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border-bottom: 1px solid var(--color-border-gray);
}

.pi-header-item{
    background: var(--color-light-gray);
    text-align: center;
    line-height: 40px;
    color: var(--color-font-black);
    font-weight: 500;
}

.package-input-body{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.pi-input-item{
    background: #fff;
    box-sizing: border-box;
    transition: all 0.15s ease;
    padding: 5px;
}

.pi-input-focus{
    background: var(--color-light-gray);
}

.package-input{
    color: var(--color-input-font);
    text-align: center;
    width: 100%;
    border-radius: 6px;
    box-sizing: border-box;
    border: none;
    font-family: inherit;
    height: 30px;
    
}

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

.package-input::placeholder{
    color: var(--color-input-placeholder);
}

.picking-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 100px 100px 100px 150px 1fr;
    border-bottom: 1px solid var(--color-border-gray);
}

.packing-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 150px 100px 100px 150px 150px;
    border-bottom: 1px solid var(--color-border-gray);
}

.picking-table-row:last-child, .packing-table-row:last-child{
    border-bottom: none;
}

.picking-table-row .ot-value-wrap, .packing-table-row .ot-value-wrap, .receiving-table-row .ot-value-wrap, .bundle-table-row .ot-value-wrap{
    line-height: 49px;
}

.picking-row-selected .ot-input-wrap, .packing-row-selected .ot-input-wrap, .receiving-row-selected .ot-input-wrap{
    background: var(--color-border-gray);
}

.picking-row-selected .ot-input-error, .packing-row-selected .ot-input-error, .receiving-row-selected .ot-input-error{
    background: #f44336;
}

.packing-row-disabled .ot-value-wrap, .packing-row-disabled .part-item-num, .packing-row-disabled .ot-part-desc, .packing-row-disabled .ot-input{
    color: var(--color-input-placeholder);
}

.packing-row-disabled .ot-check-item{
    border: 1px solid var(--color-input-placeholder);
    cursor: default;
}

.packing-slip-header, .packing-slip-row{
    display: grid;
    grid-template-columns: 1fr 200px;
    box-sizing: border-box;
}

.packing-slip-container{
    border: 1px dashed var(--color-font-black);
    padding: 15px;
}

.packing-slip-header{
    border-top: 1px dashed var(--color-font-black);
    border-bottom: 1px dashed var(--color-font-black);
}

.packing-slip-col{
    padding: 0 10px;
    box-sizing: border-box;
}

.packing-slip-header .packing-slip-col{
    font-weight: 500;
    line-height: 40px;
}

.packing-slip-row{
    border-bottom: 1px dashed var(--color-font-black);
}

.packing-slip-row:last-child{
    border-bottom: none;
}

.packing-slip-row .packing-slip-col{
    line-height: 58px;
}

.packing-slip-col .ot-part-info{
    height: 58px;
}

.shipment-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 70px 150px;
    border-bottom: 1px solid var(--color-border-gray);
}

.shipment-table-row:last-child{
    border-bottom: none;
}

.shipment-table-row .ot-value-wrap{
    line-height: 49px;
}

.change-indicator-dot{
    background: var(--color-light-red);
    font-size: 9px;
    font-weight: 400;
    padding: 2px 5px;
    border-radius: 20px;
    text-transform: uppercase;
}

.super-popup-fluid{
    position: fixed;
    z-index: 999;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
    display: none;
}

.super-popup-container{
    background: var(--color-light-gray);
    height: calc(100% - 100px);
    width: calc(100% - 100px);
    margin: 50px auto;
    max-width: 500px;
    border-radius: 12px;
    border: 1px solid var(--color-border-gray);
}

.super-popup-header{
    height: 60px;
    border-bottom: 1px solid var(--color-border-gray);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 20px;
}

.close-super-popup{
    cursor: pointer;
}

.super-popup-body{
    box-sizing: border-box;
    height: calc(100% - 60px);
    overflow-x: hidden;
    padding: 20px;
}

.price-history-item{
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-gray);
}

.price-history-time{
    font-size: 12px;
}

.price-history-listname{
    color: var(--color-light-black);
    display: flex;
    gap: 5px;
    font-size: 13px;
}

.price-history-listname i{
    font-size: 14px;
    color: var(--color-google-blue);
}

.bundle-item-table-container{
    margin-top: 0;
    border: 1px solid var(--color-border-gray);
}

.bundle-table-row{
    display: grid;
    grid-template-columns: 1fr 100px 80px 100px 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.bundle-table-row:last-child{
    border-bottom: none;
}

.part-activity-item{
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-gray);
    font-size: 13px;
}

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

.part-activity-type{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.part-activity-message{
    margin-top: 5px;
    margin-bottom: 5px;
    color: var(--color-light-black);
    font-size: 14px;
}

.invoice-logo{
    height: 70px;
}

.invoice-logo img{
    height: 100%;
}

.doc-detail-grid{
    display: grid;
    grid-template-columns: 100px max-content;
}

.doc-detail-grid .doc-detail-title{
    text-align: right;
    font-weight: 600;
}

.invoice-total-item{
    display: grid;
    grid-template-columns: 1fr 100px;
    margin-bottom: 10px;
    text-align: right;
    font-size: 15px;
}

.receiving-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 100px 100px 150px;
    border-bottom: 1px solid var(--color-border-gray);
}

.receiving-table-row:last-child{
    border-bottom: none;
}

.additional-package-container{
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-gray);
}

.shipping-label-item{
    border: 2px solid var(--color-font-black);
    margin-top: 10px;
}

.shipping-label-item .label-meta{
    text-align: center;
    padding: 10px 5px;
}

.stock-count-location-container{
    margin-top: 20px;
    display: none;
}

.stock-count-location-table{
    border: 1px solid var(--color-border-gray);
}

.stock-count-table-row{
    display: grid;
    grid-template-columns: 40px 1fr;
    border-bottom: 1px solid var(--color-border-gray);
}

.stock-count-table-row:last-child{
    border-bottom: none;
}

.packing-operation-container{
    position: relative;
}

.sec-hidden-body{
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-x: hidden;
    display: none;
}

.packages-info-container{
    background: var(--color-light-gray);
    border: 1px solid var(--color-border-gray);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.packages-info-container i{
    font-size: 18px;
}

.counting-table-container{
    margin-top: 20px;
    border: 1px solid var(--color-border-gray);
}

.counting-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 150px 150px;
    border-bottom: 1px solid var(--color-border-gray);
}

.counting-table-row:last-child{
    border-bottom: none;
}

.counting-table-row .ot-value-wrap{
    line-height: 49px;
}

.counting-location-row{
    background: var(--color-light-gray);
    font-weight: 500;
    grid-template-columns: 40px 1fr;
    color: var(--color-font-black);
    line-height: 39px;
}

.blind-counting-row{
    grid-template-columns: 40px 1fr 150px;
}

.count-error-row{
    background: var(--color-light-red);
}

.count-error-row .ot-value-wrap{
    color: var(--color-font-black);
}

.count-error-row .count-error-value{
    font-weight: 500;
}

.shipment-package-container{
    display: grid;
    grid-template-columns: 1fr 300px;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border-gray);
}

.shipment-package-container:last-child{
    border-bottom: none;
}

.package-title{
    font-size: 24px;
    font-weight: 700;
}

.package-subtitle{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 5px;
}

.package-label-container{
    border: 1px solid;
}

.invoice-paid-status{
    text-align: center;
    font-size: 24px;
    color: #4CAF50;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 10px;
    margin-top: 15px;
}

.quote-table-row{
    display: grid;
    grid-template-columns: 40px 1fr 150px 200px;
    border-bottom: 1px solid var(--color-border-gray);
}

.quote-table-row:last-child{
    border-bottom: none;
}

.quote-table-row .ot-value-wrap{
    line-height: 49px;
}

#shipment-quotes{
    gap: 10px;
}

.shipping-quote-item{
    gap: 10px;
    background: var(--color-light-gray);
    border-radius: 4px;
    padding: 10px;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

.shipping-quote-item:hover{
    background: var(--color-border-gray);
}

.shipping-quote-item.form-radio-selected, .shipping-quote-item.form-radio-selected:hover{
    background: #fff;
    border: 1px solid var(--color-google-blue);
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.shipping-quote-item .form-radio-circle{
    width: 22px;
    height: 22px;
}

.shipping-quote-item.form-radio-selected .form-radio-circle{
    background: var(--color-google-blue);
    border: 1px solid var(--color-google-blue);
}

.sq-provider-icon{
    width: 50px;
    height: 50px;
}

.sq-provider-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shipping-quote-item .form-radio-label{
    margin-left: 0;
}

.sq-radio-label{
    flex: 1;
}

.sq-label-name{
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sq-label-name span{
    font-size: 13px;
    color: var(--color-light-black);
}

.sq-label-cost{
    font-size: 15px;
    font-weight: 500;
    margin-top: 4px;
    color: var(--color-secondary-blue);
}

.relation-table-row{
    display: grid;
    grid-template-columns: 1fr 40px;
    border-bottom: 1px solid var(--color-border-gray);
}

.relation-table-row:last-child{
    border-bottom: none;
}

.order-related-part-item{
    display: grid;
    grid-template-columns: 1fr 116px;
    margin-bottom: 10px;
}

.order-related-part-item .ot-stock-wrap{
    justify-content: flex-end;
}

.related-part-item, .order-related-part-item{
    padding: 5px 0;
    border-bottom: 1px solid var(--color-border-gray);
}

.order-related-part-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

.related-part-item .ot-part-name, .order-related-part-item .ot-part-name{
    display: flex;
    gap: 8px;
    color: var(--color-light-black);
}

.select-related-item{
    height: 30px;
    padding: 0 20px;
    background: var(--color-google-blue);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select-related-item:hover{
    background: var(--color-google-blue-dark);
}

.select-main-item{
    height: 30px;
    padding: 0 20px;
    background: var(--color-google-green);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select-main-item:hover{
    background: var(--color-google-green-dark);
}

.select-bundle-button{
    background: var(--color-google-blue);
}

.select-bundle-button:hover{
    background: var(--color-google-blue-dark);
}











/** Rental Diary **/

.rental-diary-container{
    width: 100%;
    height: 100%;
    overflow: scroll;
    scrollbar-width: none;
    -webkit-scrollbar-width: none;
}

.diary-dates-container, .diary-machines-container{
    display: flex;
    gap: 1px;
    position: relative;
    width: max-content;
}

.diary-dates-container{
    background: #fff;
    z-index: 2;
}

.diary-machines-container{
    background: #f1f5f8;
    z-index: 1;
}

.diary-date-item, .diary-machine-item{
    height: 60px;
    width: 120px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--color-light-gray);
    border-bottom: 1px solid var(--color-input-placeholder);
    box-sizing: border-box;
}

.diary-date-item{
    height: 80px;
    text-align: center;
}

.diary-day-name{
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--color-light-black);
}

.diary-machine-item{
    background: #fff;
}

.diary-dates-header, .diary-machines-header{
    border-right: 1px solid var(--color-border-gray);
    position: sticky;
    left: 0;
    width: 180px;
    min-width: 180px;
}

.diary-dates-header{
    z-index: 2;
}

.diary-machines-header{
    cursor: pointer;
    transition: all 0.15s ease;
}

.diary-machines-header:hover{
    background: var(--color-light-gray);
}

.diary-dates-container{
    position: sticky;
    top: 0;
}

.machine-catname-container{
    background: var(--color-border-gray);
    font-weight: 500;
    position: sticky;
    top: 80px;
    z-index: 3;
}

.machine-catname-container .diary-machine-item{
    height: 40px;
    background: var(--color-border-gray);
}

.machine-available{
    background: #cae3e2;
    font-weight: 500;
}

.rental-diary-goback{
    height: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-light-gray);
    padding: 0 20px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid var(--color-border-gray);
    box-sizing: border-box;
    cursor: pointer;
}

.rental-diary-goback i{
    color: var(--color-google-blue);
}

.rental-legend-container{
    display: flex;
    align-items: center;
    gap: 15px;
}

.rental-legend-item{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
}

.rental-legend-box{
    width: 14px;
    height: 14px;
    background: var(--color-light-gray);
    border-radius: 3px;
}

.legend-box-available{
    background: #6adfd4;
}

.legend-box-rented{
    background: #fc9891;
}

.legend-box-service{
    background: #9eabb0;
}

.legend-box-transit{
    background: #ffc790;
}

.diary-unit-loader .list-loader-item{
    padding: 15px;
    box-sizing: border-box;
}

.diary-unit-container{
    display: flex;
    width: max-content;
    border-bottom: 1px solid var(--color-border-gray);
}

.diary-unit-header{
    height: 50px;
    width: 180px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: sticky;
    left: 0;
    background: #fff;
    border-right: 1px solid var(--color-border-gray);
    box-sizing: border-box;
}

.diary-unit-body{
    display: flex;
    align-items: center;
}

.diary-unit-marker{
    height: 30px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.diary-filter-button{
    display: flex;
    align-items: center;
    padding: 0 25px 0 20px;
    height: 34px;
    background: var(--color-light-gray);
    border-radius: 34px;
    border: 1px solid var(--color-border-gray);
    color: var(--color-light-black);
    gap: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.15s ease;
}

.diary-filter-button:hover{
    border: 1px solid var(--color-light-black);
}

.filter-button-separator{
    width: 1px;
    height: 20px;
    background: var(--color-input-placeholder);
}

.filter-button-text{
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.diary-filter-noti{
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--color-google-blue);
    border-radius: 10px;
    right: -10px;
    top: -2px;
    box-sizing: border-box;
    border: 1px solid #fff;
}

.diary-filter-holder{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    z-index: 9;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}

.diary-filter-container{
    width: 300px;
    height: calc(100% - 30px);
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.diary-filter-header{
    height: 50px;
    display: flex;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    border-bottom: 1px solid var(--color-border-gray);
    box-sizing: border-box;
}

.close-diary-filter{
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-alt);
}

.diary-filter-body{
    height: calc(100% - 50px);
    overflow-x: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.ot-bundle-row{
    border-left: 1px solid var(--color-input-placeholder);
    border-right: 1px solid var(--color-input-placeholder);
}

.bundle-row-first{
    border-top: 1px solid var(--color-input-placeholder);
}

.bundle-row-bottom{
    height: 1px;
    background: var(--color-input-placeholder);
    width: 100%;
}

.ot-bundle-row:last-of-type{
    border-bottom: 1px solid var(--color-input-placeholder);
}

.ot-item-note{
    font-size: 12px;
    padding: 5px 10px;
    background: var(--color-border-gray);
}

.ot-bundle-note{
    background: var(--color-input-placeholder);
}

.alert-popup-fluid{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

.alert-popup-container{
    background: #fff;
    width: 100%;
    max-width: 500px;
    margin: 100px auto;
    border-radius: 8px;
    display: none;
}

.alert-popup-header{
    padding: 15px 20px;
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-gray);
}

.alert-popup-body{
    padding: 20px;
}

.popup-alert-msg{
    font-size: 15px;
    line-height: 24px;
}

.popup-alert-msg span{
    font-weight: 500;
}

.alert-action-container{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-cancel-btn{
    background: var(--color-light-gray);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 40px;
    cursor: pointer;
}

.alert-ok-btn{
    background: var(--color-google-blue-dark);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 40px;
    cursor: pointer;
    color: #fff;
}

.close-alert-popup{
    cursor: pointer;
}

.relation-form-container{
    margin-top: 20px;
    display: none;
}

#alternate-part-container{
    display: block;
}

.




.unit-marker-available{
    background: #6adfd4;
}

.unit-marker-available:hover{
    background: #4fbeb5;
}

.unit-marker-rented{
    background: #fc9891;
}

.unit-marker-rented:hover{
    background: #f4867f;
}

.unit-marker-service{
    background: #ffc790;
}

.unit-marker-service:hover{
    background: #f0b172;
}

.unit-marker-transit{
    background: #b9c7cd;
}

.unit-marker-transit:hover{
    background: #9eabb0;
}

/** New Pills **/

.status-pill{
    font-size: 13px;
    width: 100px;
    border: 1px solid transparent;
    height: 26px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.status-pill-green{
    color: #075a39;
    background: #ddf9e4;
    border: 1px solid #c7f4d3;
}

.status-pill-orange{
    color: #753501;
    background: #ffe3cd;
    border: 1px solid #FEE0C8;
}

.status-pill-yellow{
    color: #705500;
    background: #FFF3CC;
    border: 1px solid #FFEBAD;
}

.status-pill-purple{
    color: #3e0fa4;
    background: #F5EEFF;
    border: 1px solid #E8DDFE;
}

.status-pill-dark-blue{
    color: #1E3E84;
    background: #E5EEFF;
    border: 1px solid #D6E5FF;
}

.status-pill-blue{
    color: #0A5A70;
    background: #DAF4FC;
    border: 1px solid #C3EDF9;
}

.status-pill-red{
    color: #ffffff;
    background: #c11c06;
    border: 1px solid #9f1705;
}

.status-pill-red-routine{
    color: #750E00;
    background: #FFD2CC;
    border: 1px solid #FFC5BD;
}

.status-pill-red-outline{
    color: #A81400;
    background: #FFFFFF;
    border: 1px solid #7A0F00;
}

.status-pill-grey{
    color: #3A3A3B;
    background: #F0F0F0;
    border: 1px solid #C2C2C2;
}

.status-pill-grey-outline{
    color: #3A3A3B;
    background: #fff;
    border: 1px solid #C2C2C2;
}

/** Helper Rules ==> Should be added in a separate file in Production **/

.link-text{
    color: var(--color-google-blue);
    cursor: pointer;
    width: max-content;
}

.link-text:hover{
    color: var(--color-google-blue-dark);
    text-decoration: underline;
}

.form-input-holder{
    margin-top: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.form-info-item{
    font-size: 12px;
    color: var(--color-font-black);
    margin-top: 5px;
}

.form-info-item span{
    font-weight: 500;
}

.form-input-holder:first-of-type{
    margin-top: 0;
}

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

.input-container-half{
    grid-column: span 1;
    width: calc(50% - 10px);
    justify-self: start; 
}

.form-label{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-input-wrap{
    position: relative;
}

.form-input{
    height: 40px;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid var(--color-border-gray);
    color: var(--color-input-font);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.15s ease;
}

.form-input:focus{
    outline: none;
    border: 1px solid var(--color-font-black);
}

.form-input::placeholder{
    color: var(--color-input-placeholder);
}

textarea.form-input{
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 80px;
}

.form-input.with-right-icon{
    padding-right: 50px;
}

.form-input.with-left-icon{
    padding-left: 50px;
}

.input-icon{
    position: absolute;
    height: 40px;
    width: 40px;
    display: flex;
    top: 0;
    align-items: center;
    justify-content: center;
    color: var(--color-input-font);
}

.input-icon-left{
    left: 0;
}

.input-icon-right{
    right: 0;
}

.rental-filter-section .form-input{
    height: 36px;
}

.rental-filter-section .with-right-icon{
    padding-right: 40px;
}

.rental-filter-section .input-icon{
    width: 36px;
    height: 36px;
    font-size: 13px;
}

.form-inline-input{
    line-height: 24px;
    border: none;
    padding: 0;
    font-family: inherit;
    color: var(--color-input-font);
    font-size: inherit;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid transparent;
}

.inline-input-border{
    position: absolute;
    height: 1px;
    background: var(--color-font-black);
    transition: all 0.15s ease;
    width: 0;
    left: 0;
    bottom: 0;
}

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

.form-inline-input::placeholder{
    color: var(--color-input-placeholder);
}

.form-inline-input.with-right-icon{
    padding-right: 30px;
}

.form-price-input{
    padding-left: 25px;
}

.form-price-symbol{
    position: absolute;
    top: 0;
    left: 10px;
    line-height: 40px;
    font-size: inherit;
    color: var(--color-input-font);
}

.form-inline-input.form-price-input{
    padding-left: 12px;
}

.inline-price-symbol{
    position: absolute;
    top: 0;
    left: 0;
    line-height: 24px;
    font-size: inherit;
}

.inline-input-icon{
    position: absolute;
    height: 24px;
    width: 24px;
    font-size: 13px;
    display: flex;
    top: 0;
    align-items: center;
    justify-content: center;
    color: var(--color-input-placeholder);
    transition: all 0.15s ease;
}

.inline-input-focus .inline-input-border{
    width: 100%;
}

.inline-input-focus .inline-input-icon{
    color: var(--color-input-font);
}

.form-tab-holder{
    background: var(--color-light-gray);
    height: 40px;
    border-radius: 40px;
    display: flex;
    gap: 5px;
    padding: 5px;
    box-sizing: border-box;
    width: max-content;
}

.form-tab-item{
    height: 30px;
    padding: 0 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-black);
    cursor: pointer;
    transition: all 0.15s ease;
}

.form-tab-item:hover{
    background: var(--color-border-gray);
    color: var(--color-font-black);
}

.form-tab-mini{
    height: 30px;
    gap: 3px;
    padding: 3px;
}

.form-tab-mini .form-tab-item{
    height: 24px;
    padding: 0 15px;
}

.form-tab-selected, .form-tab-selected:hover{
    background: #fff;
    color: var(--color-font-black);
}

.form-tab-disabled, .form-tab-disabled:hover{
    cursor: default;
    color: #aaa;
    background: none;
}

.form-submit-holder{
    margin-top: 30px;
}

.form-submit-button{
    background: var(--color-primary-alt);
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    color: #fff;
    font-family: inherit;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.step-form-button-wrap .form-submit-button{
    padding: 10px 30px;
    font-size: 14px;
}

.form-submit-button:hover{
    background: var(--color-primary-blue);
}

.form-error-wrap{
    margin-bottom: 15px;
}

.form-error-title{
    font-weight: 500;
    margin-bottom: 5px;
}

.form-error-item{
    font-size: 13px;
    line-height: 24px;
    color: var(--color-light-black);
}

.form-error-item i{
    font-size: 12px;
    margin-right: 4px;
    color: #f44336;
}

.form-select-input{
    position: relative;
}

.form-select-header{
    height: 40px;
    border: 1px solid var(--color-border-gray);
    border-radius: 4px;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 40px;
    transition: all 0.15s ease;
    position: relative;
    cursor: pointer;
}

.form-select-focus .form-select-header{
    border: 1px solid var(--color-font-black);
}

.form-select-title span{
    color: var(--color-input-placeholder);
}

.form-select-focus .input-icon{
    transform: rotate(180deg);
}

.form-select-dropdown, .form-search-dropdown{
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: calc(100% + 5px);
    border: 1px solid var(--color-font-black);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    padding: 5px 10px;
    z-index: 2;
    max-height: 300px;
    overflow-x: hidden;
}

.part-search-dropdown, .unit-search-dropdown{
    width: max-content;
    min-width: 100%;
    overflow: hidden;
    padding: 0;
    max-height: 260px;
}

.part-search-dropdown{
    overflow: hidden;
    padding: 0;
    max-height: 260px;
}

.inventory-location-search-dropdown{
    width: max-content;
    min-width: 100%;
}

.search-dropdown-empty{
    line-height: 30px;
}

.form-select-option, .form-search-option{
    color: var(--color-light-black);
    white-space: nowrap;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 1px solid var(--color-border-gray);
}

.form-search-option{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-select-option:hover, .form-search-option:hover{
    color: var(--color-font-black);
}

.form-select-option:last-child, .form-search-option:last-child{
    border-bottom: none;
}

.form-file-label{
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    width: max-content;
    max-width: 100%;
    padding: 0 50px 0 10px;
    border: 1px solid var(--color-border-gray);
    cursor: pointer;
    transition: all 0.15s ease;
    box-sizing: border-box;
    border-radius: 4px;
    gap: 10px;
}

.form-file-label i{
    font-size: 15px;
    color: var(--color-goolge-blue);
}

.form-file-label .form-file-name{
    color: var(--color-input-font);
    line-height: 38px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-file-label .form-file-name span{
    color: var(--color-input-placeholder);
}

.form-file-label:hover{
    border: 1px solid var(--color-font-black);
}

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

.form-vc-label{
    padding: 5px;
    border: 1px solid var(--color-border-gray);
    display: block;
    border-radius: 4px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.form-vc-label:hover{
    border: 1px solid var(--color-font-black);
}

.form-vc-empty{
    background: var(--color-light-gray);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-input-placeholder);
    height: 170px;
}

.form-vc-empty i{
    font-size: 32px;
    color: var(--color-light-black);
    margin-bottom: 15px;
}

#contact-vc-input{
    display: none;
}

.form-input-wrap .iti{
    width: 100%;
}

.form-input-wrap .iti__search-input{
    height: 30px;
    padding: 0 8px;
}

.form-input-wrap .iti__search-input:focus{
    outline: none;
    border: 1px solid var(--color-google-blue);
}

.form-switch-input{
    height: 34px;
    background: var(--color-light-gray);
    border-radius: 40px;
    width: 80px;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.form-switch-value{
    position: absolute;
    width: calc(100% - 29px);
    left: 29px;
    text-align: center;
}

.form-switch-circle{
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 30px;
    left: 5px;
    transition: all 0.15s ease;
}

.form-switch-active{
    background: var(--color-input-font);
}

.form-switch-active .form-switch-value{
    left: 0;
    color: #fff;
}

.form-switch-active .form-switch-circle{
    left: 51px;
}

.form-input-disabled .form-label, .form-input-disabled .input-icon{
    color: #ccc;
}

.form-radio-container{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 12px;
}

.inline-radio-container{
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.form-radio-item{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-radio-circle{
    width: 18px;
    height: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--color-input-font);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.radio-circle-dot{
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #fff;
}

.form-radio-label{
    color: var(--color-light-black);
    margin-left: 10px;
    transition: all 0.15s ease;
}

.form-radio-selected .form-radio-circle{
    background: var(--color-input-font);
}

.form-radio-item:hover .form-radio-label, .form-radio-selected .form-radio-label{
    color: var(--color-font-black);
}

.form-section-title{
    font-size: 18px;
}

.form-section-title i{
    margin-right: 8px;
    color: var(--color-google-blue);
}

.form-warning-wrap{
    display: flex;
    background: rgb(255 173 167 / 30%);
    border: 1px solid var(--color-light-red);
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    gap: 15px;
    color: var(--color-light-black);
}

.ot-part-price.form-price-input{
    padding-left: 16px;
}

.ot-price-symbol{
    position: absolute;
    left: 10px;
    font-size: 14px;
    color: var(--color-input-font);
    display: flex;
    height: calc(100% - 10px);
    align-items: center;
    top: 5px;
}

.ot-check-wrap{
    display: flex;
    align-items: center;
    padding-left: 10px;
    box-sizing: border-box;
}

.ot-check-item{
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-light-black);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    color: #fff;
    transition: all 0.15s ease;
    cursor: pointer;
}

.ot-check-selected{
    background: var(--color-google-blue);
    border: 1px solid var(--color-google-blue);
}

/** Datepicker **/

.flatpickr-calendar *{
    box-sizing: border-box;
}

.flatpickr-rContainer{
    width: 100%;
}

.flatpickr-monthSelect-months{
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
}

.flatpickr-monthSelect-month{
    padding: 10px;
    background: var(--color-light-gray);
    color: var(--color-light-black);
    cursor: pointer;
}

.flatpickr-monthSelect-month:hover{
    color: var(--color-font-black);
}

.flatpickr-disabled, .flatpickr-disabled:hover{
    cursor: default;
    color: var(--color-input-placeholder);
}

/** Duration Picker **/

.form-duration-wrap{
    height: 40px;
    border: 1px solid var(--color-border-gray);
    border-radius: 4px;
    display: flex;
    box-sizing: border-box;
    padding-right: 1px;
    transition: all 0.15s ease;
}

.duration-hour-wrap, .duration-minute-wrap{
    display: flex;
    height: 38px;
    flex: 1;
}

.duration-value{
    flex: 1;
    line-height: 38px;
    padding-left: 10px;
    box-sizing: border-box;
}

.duration-btn-wrap{
    display: flex;
    flex-direction: column;
    height: 38px;
    justify-content: space-around;
}

.duration-btn{
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-black);
    font-size: 12px;
    background: var(--color-light-gray);
    opacity: 0;
    transition: all 0.15s ease;
}

.duration-btn:hover{
    color: var(--color-font-black);
    background: var(--color-border-gray);
}

.form-duration-wrap:hover{
    border: 1px solid var(--color-font-black);
}

.duration-hour-wrap:hover .duration-btn, .duration-minute-wrap:hover .duration-btn{
    opacity: 1;
}

.duration-btn-disabled, .duration-btn-disabled:hover{
    color: var(--color-input-placeholder);
}

.form-site-radio, .form-site-option{
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-gray);
    cursor: pointer;
}

.form-site-radio:last-child{
    border-bottom: none;
}

.site-radio-circle{
    border: 1px solid var(--color-input-placeholder);
    width: 20px;
    height: 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.site-radio-dot{
    width: 14px;
    height: 14px;
    background: var(--color-input-placeholder);
    border-radius: 16px;
}

.site-radio-detail{
    margin-left: 10px;
    color: var(--color-light-black);
    flex: 1;
    min-width: 0;
}

.site-radio-name{
    margin-bottom: 5px;
}

.site-radio-address{
    font-size: 13px;
}

.form-site-radio:hover .site-radio-circle{
    border: 1px solid var(--color-font-black);
}

.form-site-radio:hover .site-radio-name{
    color: var(--color-font-black);
}

.form-site-selected .site-radio-circle{
    border: 1px solid var(--color-font-black);
}

.form-site-selected .site-radio-dot{
    background: var(--color-font-black);
}

.form-site-selected .site-radio-detail{
    color: var(--color-font-black);
}

/** Warehouse Configuration **/

.wa-create-wrap{
    margin-top: 20px;
    border: 1px solid var(--color-border-gray);
}

.wa-define-item{
    border-bottom: 1px solid var(--color-border-gray);
}

.wa-define-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

.wa-define-header{
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.wa-add-define{
    font-size: 12px;
    text-align: right;
    padding: 3px 10px;
    font-weight: 500;
    cursor: pointer;
    color: var(--color-light-black);
    transition: all 0.15s ease;
}

.wa-add-define:hover{
    color: var(--color-google-blue);
}

.wa-define-row{
    display: grid;
    grid-template-columns: 30px 1fr 100px 1fr 100px 40px;
    border-top: 1px solid var(--color-border-gray);
    background: #fff;
}

.wa-input-wrap{
    padding: 5px;
    transition: all 0.15s ease;
}

.wa-input-focus{
    background: var(--color-border-gray);
}

.wa-input-error{
    background: #f44336;
}

.wa-config-input{
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0 5px;
    font-family: inherit;
    color: var(--color-input-font);
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 14px;
}

.wa-config-input:focus{
    outline: none;
}

.wa-config-input::placeholder, .wa-config-input:disabled{
    color: var(--color-input-placeholder);
}

.wa-btn-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-row-btn{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    color: var(--color-light-black);
    transition: all 0.15s ease;
    cursor: pointer;
}

.wa-row-btn:hover{
    color: #f44336;
    background: var(--color-light-gray);
}

.define-header-row{
    border-top: none;
    border-bottom: 1px solid var(--color-border-gray);
}

.define-header-item{
    padding: 0 10px;
    line-height: 40px;
    text-transform: uppercase;
}

.sort-icon{
    height: 100%;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-input-placeholder);
    transition: all 0.15s ease;
    cursor: move;
}

.sortable-item.dragging{
    background: var(--color-border-gray);
}

.sortable-item.dragging .sort-icon, .sort-icon:hover{
    color: var(--color-font-black);
}

.wa-naming-wrap{
    display: flex;
    align-items: center;
    padding: 10px;
    font-weight: 500;
    cursor: pointer;
}

.wa-naming-wrap i{
    margin-left: 7px;
    font-size: 13px;
    transition: all 0.15s ease;
}

.wa-naming-wrap:hover i{
    color: var(--color-google-blue-dark);
}

.wa-add-row{
    text-align: center;
    padding: 10px;
    border-top: 1px solid var(--color-border-gray);
    cursor: pointer;
    color: var(--color-google-blue);
    transition: all 0.15s ease;
}

.wa-add-row:hover{
    background: var(--color-light-gray);
    color: var(--color-google-blue-dark);
}

.wa-config-summary{
    margin-top: 20px;
}

.wa-summary-title{
    font-size: 16px;
}

.wa-summary-item{
    margin-top: 12px;
}

.summary-item-title{
    font-size: 13px;
    font-weight: 500;
}

.wa-summary-id{
    margin: 8px 0;
}

.wa-summary-info{
    display: flex;
    align-items: center;
    color: var(--color-light-black);
}

.summary-info-circle{
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: var(--color-font-black);
    margin: 0 5px;
}

.wa-summary-info i{
    font-size: 12px;
    margin: 0 8px;
    color: var(--color-secondary-blue);
}

.wa-summary-error{
    font-size: 13px;
    line-height: 24px;
    color: var(--color-light-black);
    margin-top: 5px;
}

.wa-summary-error i{
    font-size: 12px;
    margin-right: 4px;
    color: #f44336;
}

.open-warehouse-location td{
    color: #8a8a8a;
}

.wa-location-active td{
    color: var(--color-font-black);
}

.wa-location-active .is-loc-active{
    font-weight: 500;
}

/** Google Autocomplete **/

.pac-container{
    border: 1px solid var(--color-font-black);
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.pac-item{
    line-height: 40px;
    font-family: inherit;
}

.pac-icon{
    margin-top: 10px;
}

/** Snack **/

.snack-container{
    position: fixed;
    z-index: 99999;
    background: var(--color-font-black);
    color: var(--color-border-gray);
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    height: 50px;
    align-items: center;
    padding: 0 20px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.snack-title{
    font-size: 16px;
    border-right: 1px solid #606771;
    padding: 4px 15px;
    padding-left: 0;
}

.snack-success .snack-title{
    color: var(--color-success-green);
}

.snack-error .snack-title{
    color: var(--color-warning-yellow);
}

.snack-line{
    height: 3px;
    background: var(--color-secondary-blue);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
}

.snack-message{
    padding-left: 15px;
}

.barcode-container{
    border: 1px solid var(--color-border-gray);
    margin-top: 15px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 10px;
}

.pagination-btn{
    background: var(--color-light-black);
    color: #fff;
    cursor: pointer;
    margin-left: 15px;
    height: 34px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 40px;
}

.pagination-left-icon, .btn-left-icon{
    margin-right: 10px;
}

.pagination-right-icon, .btn-right-icon{
    margin-left: 10px;
}

.pagination-btn:hover{
    background: var(--color-font-black);
}

.pagination-btn-disabled, .pagination-btn-disabled:hover{
    background: var(--color-border-gray);
    color: #fff;
    cursor: default;
}

.pagination-page-info{
    font-weight: 500;
    margin: 0 10px 0 25px;
}

.company-name-loader{
    height: 15px;
    width: 200px;
    background: var(--color-light-gray);
    border-radius: 3px;
}

.company-address-loader{
    height: 15px;
    width: 300px;
    background: var(--color-light-gray);
    border-radius: 3px;
}

.table-avatar-loader{
    width: 34px;
    height: 34px;
    background: var(--color-light-gray);
    border-radius: 34px;
}

.text-line-loader{
    height: 15px;
    background: var(--color-light-gray);
    border-radius: 3px;
}

.text-loader-medium{
    width: 200px;
}

.header-count-wrap{
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

.table-row-clickable{
    cursor: pointer;
    transition: all 0.15s ease;
}

.table-row-clickable:hover{
    background: var(--color-border-gray);
}

.table-row-clickable:hover td{
    color: var(--color-font-black);
}

.table-row-clickable:hover .table-avatar{
    background: var(--color-font-black);
}

.text-block{
    padding: 15px;
}

.text-center{
    text-align: center;
}

.icon-medium{
    font-size: 24px;
}

.regular-button{
    background: var(--color-input-font);
    color: #fff;
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 4px;
    display: inline-block;
}

.regular-button:hover{
    background: var(--color-font-black);
}

.section-70{
    width: 70%;
    max-width: 70%;
    min-width: 70%;
}

.section-60{
    width: 60%;
    max-width: 60%;
    min-width: 60%;
}

.section-50{
    width: 50%;
    max-width: 50%;
    min-width: 50%;
}

.section-40{
    width: 40%;
    max-width: 40%;
    min-width: 40%;
}

.section-30{
    width: 30%;
    max-width: 30%;
    min-width: 30%;
}

.section-full{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.with-left-border{
    border-left: 1px solid var(--color-border-gray);
}

.with-right-border{
    border-right: 1px solid var(--color-border-gray);
}

.with-bottom-border{
    border-bottom: 1px solid var(--color-border-gray);
}

.flex-container{
    display: flex;
}

.flex-label-container{
    margin-bottom: 5px;
    display: flex;
}

.flex-label-container .form-label{
    margin-bottom: 0;
}

.align-items-center{
    align-items: center;
}

.justify-space-between{
    justify-content: space-between;
}

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

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

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

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

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

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

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

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

.semi-bold{
    font-weight: 500;
}

.bold{
    font-weight: 600;
}

.underline{
    text-decoration: underline;
}

.height-auto{
    height: auto;
}

.company-site-container, .company-unit-container{
    display: none;
}

.list-loader-item{
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border-gray);
}

.list-loader-line{
    height: 14px;
    width: 100%;
    background: var(--color-light-gray);
    border-radius: 3px;
    margin-bottom: 10px;
}

.loader-line-small{
    width: 50%;
}

.list-loader-line:last-child{
    margin-bottom: 0;
}

.list-loader-item:first-child{
    padding-top: 10px;
}

.list-loader-item:last-child{
    border-bottom: none;
}

.form-input-error{
    border: 1px solid #f44336;
}

.font-weight-medium{
    font-weight: 500;
}

.font-weight-bold{
    font-weight: 600;
}

.text-transform-uppercase{
    text-transform: uppercase;
}

.text-transform-capitalize{
    text-transform: capitalize;
}

.bg-light-gray{
    background: var(--color-light-gray);
}

.status-open{
    color: var(--color-secondary-blue);
}

.status-assigned{
    color: var(--color-google-blue);
}

.status-available, .status-complete, .status-completed{
    color: var(--color-google-green);
}

.status-sold, .status-cancelled{
    color: #f44336;
}

.status-rented, .status-scheduled, .status-rescheduled, .status-arrived, .status-awaiting-parts{
    color: var(--color-orange);
}

.fc-orange{
    color: var(--color-orange);
}

.fc-google-green{
    color: var(--color-google-green);
}

.fc-google-green-dark{
    color: var(--color-google-green-dark);
}

.fc-google-blue{
    color: var(--color-google-blue);
}

.fc-google-blue-dark{
    color: var(--color-google-blue-dark);
}

.fc-light-blue{
    color: var(--color-secondary-blue);
}

.print-button{
    background: var(--color-google-blue);
    color: #fff;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.print-button:hover{
    background: var(--color-google-blue-dark);
}

.pt-25{
    padding-top: 25px;
}

.pt-15{
    padding-top: 15px;
}

.pt-20{
    padding-top: 20px;
}

.pt-0{
    padding-top: 0;
}

.pb-15{
    padding-bottom: 15px;
}

.pb-20{
    padding-bottom: 20px;
}

.pb-0{
    padding-bottom: 0;
}

.pall-0{
    padding: 0;
}

.ml-20{
    margin-left: 20px;
}

.mt-25{
    margin-top: 25px;
}

.mt-20{
    margin-top: 20px;
}

.mt-15{
    margin-top: 15px;
}

.mt-0{
    margin-top: 0;   
}

.mb-25{
    margin-bottom: 25px;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-15{
    margin-bottom: 15px;
}

.mb-10{
    margin-bottom: 10px;
}

.mb-0{
    margin-bottom: 0;
}

.height-100{
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.gap-20{
    gap: 20px;
}

.gap-15{
    gap: 15px;
}

.button-disabled, .button-disabled:hover{
    background: var(--color-input-placeholder);
    cursor: default;
}

.button-loading, .button-loading:hover{
    background: #aaa;
    cursor: default;
}

@media only screen and (max-width: 764px){
    
    .login-fluid{
        height: 100%;
        background: #fff;
        overflow-x: hidden;
    }
    
    .login-logo-container{
        margin: auto;
    }
    
    .login-container{
        padding: 20px;
        box-sizing: border-box;
        padding-top: 0;
    }
    
    .login-box{
        flex-direction: column;
    }
    
    .login-box-l{
        text-align: center;
        padding: 20px;
        
    }
    
    .lb-title{
        margin-top: 30px;
        font-size: 32px;
    }
    
    .lb-photo{
        margin: auto;
    }
    
    .login-form-container{
        padding: 30px 20px;
        box-sizing: border-box;
    }
    
    .login-copyright{
        flex-direction: column;
    }
} 