:root {
    --bg-urobilin: #E0A82E;
    --c-anti-flash-white: #F3F3F4;
    --c-charcoal: #2F4050;
    --c-dim-gray: #676A6C;
    --c-harlequin: #37E900;
    --c-harlequin-o: #36e90050;
}
/* flex */
.d-block {
    display: block !important;
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.d-none {
    display: none !important;
}
.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}
.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
} 
.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
} 
.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
} 
.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}
.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    
}
.flex-1{
    flex: 1;
}
.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}
.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}
.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}
.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}
.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}
.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}
.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}
.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}
.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}
.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}
.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.align-self-stretch {
    align-self: stretch !important;
}
/* allow flex child to shrink so ellipsis works */
.flex-truncate {
    min-width: 0;   /* <-- important for flex layouts */
}

/* end flex */
.text-center{
    text-align: center !important;
}

/* put this in your app CSS (e.g. app.css) */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block; /* or block */
    vertical-align: middle; /* optional */
}
.nowrap {
    white-space: nowrap;
}
/* width */
.width-auto{
    width: auto !important;
}
.w-33{
    width: 33% !important;
}
.w-50{
    width: 50% !important;
}
.w-66{
    width: 66% !important;
}
.w-70{
    width: 70% !important;
}
.w-80{
    width: 80% !important;
}
.w-85{
    width: 85% !important;
}
.w-90{
    width: 90% !important;
}
.width-90p{
    width: 90% !important;
}
.full-width{
    width: 100%;
}
.vw-10{
    width: 10vw;
}
.vw-20{
    width: 20vw;
}
.vw-50{
    width: 50vw;
}
.vw-70{
    width: 70vw;
}
.vw-80{
    width: 80vw;
}
.vw-90{
    width: 90vw;
}
.vw-100{
    width: 100vw;
}
/* end width */
/* height */
.full-height{
    height: 100%;
}
.vh-70{
    height: 70vh;
}
.vh-80{
    height: 80vh;
}
.vh-90{
    height: 90vh;
}
.vh-100{
    height: 100vh;
}
/* end height */
.gap-2{
    gap: 2px;
}
.gap-3{
    gap: 3px;
}
.gap-5{
    gap: 5px;
}
.gap-8{
    gap: 8px;
}
.gap-10{
    gap: 10px;
}
.gap-15{
    gap: 15px;
}
.gap-20{
    gap: 20px;
}
.gap-30{
    gap: 30px;
}
/* margin and padding */
.no-margin { margin: unset !important}
.no-padding { padding: unset !important}
.m-0 { margin: 0 !important; }
.m-2 { margin: 2px !important; }
.m-3 { margin: 3px !important; }
.m-4 { margin: 4px !important; }
.m-5 { margin: 5px !important; }
.m-8 { margin: 8px !important; }
.m-10 { margin: 10px !important; }
.m-12 { margin: 12px !important; }
.m-15 { margin: 15px !important; }
.m-16 { margin: 16px !important; }
.m-18 { margin: 18px !important; }
.m-20 { margin: 20px !important; }
.m-30 { margin: 30px !important; }
.m-40 { margin: 40px !important; }
.mt-0, .my-0 { margin-top: 0px !important; }
.mt-2, .my-2 { margin-top: 2px !important; }
.mt-3, .my-3 { margin-top: 3px !important; }
.mt-4, .my-4 { margin-top: 4px !important; }
.mt-5, .my-5 { margin-top: 5px !important; }
.mt-8, .my-8 { margin-top: 8px !important; }
.mt-10, .my-10 { margin-top: 10px !important; }
.mt-12, .my-12 { margin-top: 12px !important; }
.mt-15, .my-15 { margin-top: 15px !important; }
.mt-16, .my-16 { margin-top: 16px !important; }
.mt-18, .my-18 { margin-top: 18px !important; }
.mt-20, .my-20 { margin-top: 20px !important; }
.mt-30, .my-20 { margin-top: 20px !important; }
.mt-40, .my-40 { margin-top: 40px !important; }
.mb-0, .my-0 { margin-bottom: 0px !important; }
.mb-2, .my-2 { margin-bottom: 2px !important; }
.mb-3, .my-3 { margin-bottom: 3px !important; }
.mb-4, .my-4 { margin-bottom: 4px !important; }
.mb-5, .my-5 { margin-bottom: 5px !important; }
.mb-8, .my-8 { margin-bottom: 8px !important; }
.mb-10, .my-10 { margin-bottom: 10px !important; }
.mb-12, .my-12 { margin-bottom: 12px !important; }
.mb-15, .my-15 { margin-bottom: 15px !important; }
.mb-16, .my-16 { margin-bottom: 16px !important; }
.mb-18, .my-18 { margin-bottom: 18px !important; }
.mb-20, .my-20 { margin-bottom: 20px !important; }
.mb-30, .my-30 { margin-bottom: 30px !important; }
.mb-40, .my-40 { margin-bottom: 40px !important; }
.mr-0, .mx-0 { margin-right: 0px !important; }
.mr-2, .mx-2 { margin-right: 2px !important; }
.mr-3, .mx-3 { margin-right: 3px !important; }
.mr-4, .mx-4 { margin-right: 4px !important; }
.mr-5, .mx-5 { margin-right: 5px !important; }
.mr-8, .mx-8 { margin-right: 8px !important; }
.mr-10, .mx-10 { margin-right: 10px !important; }
.mr-12, .mx-12 { margin-right: 12px !important; }
.mr-15, .mx-15 { margin-right: 15px !important; }
.mr-16, .mx-16 { margin-right: 16px !important; }
.mr-18, .mx-18 { margin-right: 18px !important; }
.mr-20, .mx-20 { margin-right: 20px !important; }
.mr-30, .mx-30 { margin-right: 30px !important; }
.mr-40, .mx-40 { margin-right: 40px !important; }
.ml-0, .mx-0 { margin-left: 0px !important; }
.ml-2, .mx-2 { margin-left: 2px !important; }
.ml-3, .mx-3 { margin-left: 3px !important; }
.ml-4, .mx-4 { margin-left: 4px !important; }
.ml-5, .mx-5 { margin-left: 5px !important; }
.ml-8, .mx-8 { margin-left: 8px !important; }
.ml-10, .mx-10 { margin-left: 10px !important; }
.ml-12, .mx-12 { margin-left: 12px !important; }
.ml-15, .mx-15 { margin-left: 15px !important; }
.ml-16, .mx-16 { margin-left: 16px !important; }
.ml-18, .mx-18 { margin-left: 18px !important; }
.ml-20, .mx-20 { margin-left: 20px !important; }
.ml-30, .mx-30 { margin-left: 30px !important; }
.ml-40, .mx-40 { margin-left: 40px !important; }
.p-0 { padding: 0 !important; }
.p-2 { padding: 2px !important; }
.p-3 { padding: 3px !important; }
.p-4 { padding: 4px !important; }
.p-5 { padding: 5px !important; }
.p-8 { padding: 8px !important; }
.p-10 { padding: 10px !important; }
.p-12 { padding: 12px !important; }
.p-15 { padding: 15px !important; }
.p-16 { padding: 16px !important; }
.p-18 { padding: 18px !important; }
.p-20 { padding: 20px !important; }
.p-30 { padding: 30px !important; }
.p-40 { padding: 40px !important; }
.pt-0, .py-0 { padding-top: 0px !important; }
.pt-2, .py-2 { padding-top: 2px !important; }
.pt-3, .py-3 { padding-top: 3px !important; }
.pt-4, .py-4 { padding-top: 4px !important; }
.pt-5, .py-5 { padding-top: 5px !important; }
.pt-6, .py-6 { padding-top: 6px !important; }
.pt-8, .py-8 { padding-top: 8px !important; }
.pt-10, .py-10 { padding-top: 10px !important; }
.pt-12, .py-12 { padding-top: 12px !important; }
.pt-15, .py-15 { padding-top: 15px !important; }
.pt-16, .py-16 { padding-top: 16px !important; }
.pt-18, .py-18 { padding-top: 16px !important; }
.pt-20, .py-20 { padding-top: 20px !important; }
.pt-30, .py-30 { padding-top: 30px !important; }
.pt-40, .py-40 { padding-top: 40px !important; }
.pb-0, .py-0 { padding-bottom: 0px !important; }
.pb-2, .py-2 { padding-bottom: 2px !important; }
.pb-3, .py-3 { padding-bottom: 3px !important; }
.pb-4, .py-4 { padding-bottom: 4px !important; }
.pb-5, .py-5 { padding-bottom: 5px !important; }
.pb-6, .py-6 { padding-bottom: 6px !important; }
.pb-8, .py-8 { padding-bottom: 8px !important; }
.pb-10, .py-10 { padding-bottom: 10px !important; }
.pb-12, .py-12 { padding-bottom: 12px !important; }
.pb-15, .py-15 { padding-bottom: 15px !important; }
.pb-16, .py-16 { padding-bottom: 16px !important; }
.pb-18, .py-18 { padding-bottom: 18px !important; }
.pb-20, .py-20 { padding-bottom: 20px !important; }
.pb-30, .py-30 { padding-bottom: 30px !important; }
.pb-40, .py-40 { padding-bottom: 40px !important; }
.pr-0, .px-0 { padding-right: 0px !important; }
.pr-2, .px-2 { padding-right: 2px !important; }
.pr-3, .px-3 { padding-right: 3px !important; }
.pr-4, .px-4 { padding-right: 4px !important; }
.pr-5, .px-5 { padding-right: 5px !important; }
.pr-8, .px-8 { padding-right: 8px !important; }
.pr-10, .px-10 { padding-right: 10px !important; }
.pr-12, .px-12 { padding-right: 12px !important; }
.pr-15, .px-15 { padding-right: 15px !important; }
.pr-16, .px-16 { padding-right: 16px !important; }
.pr-18, .px-18 { padding-right: 18px !important; }
.pr-20, .px-20 { padding-right: 20px !important; }
.pr-30, .px-30 { padding-right: 30px !important; }
.pr-40, .px-40 { padding-right: 40px !important; }
.pl-0, .px-0 { padding-left: 0px !important; }
.pl-2, .px-2 { padding-left: 2px !important; }
.pl-3, .px-3 { padding-left: 3px !important; }
.pl-4, .px-4 { padding-left: 4px !important; }
.pl-5, .px-5 { padding-left: 5px !important; }
.pl-8, .px-8 { padding-left: 8px !important; }
.pl-10, .px-10 { padding-left: 10px !important; }
.pl-12, .px-12 { padding-left: 12px !important; }
.pl-15, .px-15 { padding-left: 15px !important; }
.pl-16, .px-16 { padding-left: 16px !important; }
.pl-18, .px-18 { padding-left: 18px !important; }
.pl-20, .px-20 { padding-left: 20px !important; }
.pl-30, .px-30 { padding-left: 30px !important; }
.pl-40, .px-40 { padding-left: 40px !important; }
/* end margin and padding */

/* start background color */
.bg-white {
    background-color: #ffffff;
}
.bg-anti-flash-white {
    background-color: var(--c-anti-flash-white);
}
.bg-charcoal {
    background-color: var(--c-charcoal);
}
.bg-dim-gray {
    background-color: var(--c-dim-gray);
}
.bg-jungle-green{
    background: #1AB394;
}
.bg-rajah{
    background: #F8AC59;
}
.bg-light-pink{
    background: #FFA3A3;
}
.bg-urobilin{
    background: #E0A82E;
}
.bg-bright-gray {
    background: #EEEEEE;
}
.bg-harlequin {
    background: #37E900;
}
/* end background color */

.btn.bg-urobilin{
    color: white;
}
.btn.bg-urobilin:hover{
    color: white;
}
.btn.bg-urobilin:focus{
    color: white;
}
/* start border color */
.border-bright-gray {
    border: 1px solid #EEEEEE;
}
/* end border color */
/* start text color */
.text-black{
    color: #111111;
}
.text-silver-foil{
    color: #AFAFAF;
}
.text-anti-flash-white{
    color: var(--c-anti-flash-white);
}
.text-charcoal{
    color: var(--c-charcoal);
}
.text-dim-gray{
    color: var(--c-dim-gray);
}
.text-bright-gray{
    color: #EEEEEE;
}
.text-harlequin{
    color: #37E900 ;
}
.text-old-silver{
    color: #858585;
}
.text-field-drab{
    color: #785916;
}
.text-steel-blue{
    color: #337AB7;
}
.text-violets{
    color: #8B5CF6;
}
.text-may-green{
    color: #449d44;
}
.text-dark-liver{
    color: #4E4E4E;
}
.text-dim-gray{
    color: #676A6C;
}
.text-platinum {
    color: #E2E2E2;
}
.text-urobilin{
    color: #E0A82E;
}
.text-firebrick{
    color: #B02020;
}
.text-red{
    color: #ff0000;
}
.text-japanese-indigo{
    color: #293846;
}
.text-black{
    color: #000000;
}
.text-spanish-gray{
    color: #999C9E;
}
.icon-modal-color {
    color: #CFCFCF;
}
/* end text color */
.line-horizontal{
    display: flex;
    align-self: stretch;
    height: 1px;
    background: #E5E6E7;
}
.line-horizontal-golden{
    display: flex;
    align-self: stretch;
    height: 1px;
    background: #E0A82E;
}
.line-vertical{
    display: flex;
    align-self: stretch;
    width: 1px;
    background: #E5E6E7;
}
.project-progress-line-wrapper{
    display: flex;
    justify-content: center;
    position: relative;
    width: 15px;
}
.project-progress-line{
    display: flex;
    align-self: stretch;
    width: 1px;
    background-color: #E5E6E7;
}
.project-progress-line.validated{
    background-color: var(--c-harlequin);
}
.project-progress-circle{
    border: 1px solid #EBECED;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    background-color: white;
    top: 20px;
}
.project-progress-circle.validated{
    background-color: var(--c-harlequin);
    border-color: var(--c-harlequin);
}
.font-weight-300{ font-weight: 300 !important; }
.font-weight-400{ font-weight: 400 !important; }
.font-weight-500{ font-weight: 500 !important; }
.font-weight-600{ font-weight: 600 !important; }
.font-weight-700{ font-weight: 700 !important; }
.font-size-8-p {
    font-size: 8px !important;
}
.font-size-9-p {
    font-size: 9px !important;
}
.font-size-10-p {
    font-size: 10px !important;
}
.font-size-11-p {
    font-size: 11px !important;
}
.font-size-12-p {
    font-size: 12px !important;
}
.font-size-13-p {
    font-size: 13px !important;
}
.font-size-14-p {
    font-size: 14px !important;
}
.font-size-15-p {
    font-size: 15px !important;
}
.font-size-16-p {
    font-size: 16px !important;
}
.font-size-18-p {
    font-size: 18px !important;
}
.font-size-20-p {
    font-size: 20px !important;
}
.font-size-24-p {
    font-size: 24px !important;
}
.font-size-25-p {
    font-size: 25px !important;
}
.font-size-30-p {
    font-size: 30px !important;
}
.font-size-26-p {
    font-size: 26px !important;
}
.font-size-80-p {
    font-size: 80px !important;
}
.profile-image-add{
    width: 150px;
    height: 150px;
    border-radius: 150px;
    border: 5px solid #DEE2E6;
    overflow: hidden;
    background-repeat: no-repeat;
}
.resize-show-image{
    width: 100px;
    height: 100px;
}
.profile-image-add img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-image-add{
    max-width: 150px;
    max-height: 150px;
    overflow: hidden;
    background-repeat: no-repeat;
}
.product-image-add img{
    width: 100%;
    max-height: 150px;
    object-fit: cover;
}

.homeMat-modal{
    width: 410px;
}

/* costum panels */
.panel-cc{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
}
.panel-header-cc{
    display: flex;
    padding: 12px 15px 10px 15px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background: #FFF;
    /* Border/Top/2px */
    box-shadow: 0px 2px 0px 0px #E7EAEC inset;
}
.panel-title-cc{
    display: flex;
    height: 28px;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 0;
    color: #707070;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}
.panel-body-cc{
    display: flex;
    padding: 20px 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #FFF;

    /* Border/Top/1px */
    box-shadow: 0px 1px 0px 0px #E7EAEC inset;
}

.field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
}
.settings-title{
    color: #676A6C;
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
}
.settings-data{
    display: flex;
    height: 35px;
    padding: 8px 8px 8px 12px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.panel-logo-upload{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.panel-logo{
    display: flex;
    padding: 6px;
    align-items: flex-start;
    gap: 10px;
}
.logo-image{
    display: flex;
    width: 180px;
    justify-content: center;
    align-items: center;
}
.btn-upload {
    color: #707070;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.search-btn-addon{
    display: flex;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.search-btn-addon input {
    border-right: unset;
}
.search-btn-addon button {
    border-radius: 0 3px 3px 0;
}
/* Hide arrows for number inputs */
input[type="number"].no-arrows {
    -moz-appearance: textfield;
    -webkit-appearance: none;   /* Chrome, Safari, Edge */
    appearance: none;           /* Standard */
}

input[type="number"].no-arrows::-webkit-outer-spin-button,
input[type="number"].no-arrows::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.radio {
    margin-left: 0; /* Default margin left */
}

.radio:not(:first-child) {
    margin-left: 10px; /* Apply left margin only to items not on a new line */
}
.cursor-pointer{
    cursor: pointer;
}
.cursor-auto{
    cursor: auto !important;
}
.icon-align {
    line-height: inherit;
}

.hm-row{
    display: flex;
    align-items: center;
    width: 100%;
}
.hm-col{
    width: 70%;
}
.hm-col-auto{
    width: auto;
}

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

.table_top_filters_left,
.table_top_filters_right {
    display: flex;
    align-items: center;
}

.table_top_filters_right .dataTables_filter label {
    margin: 0 5px;
}

.filter-applied{
    background-color: var(--bg-urobilin) !important;
    color: white !important;
}
.filter-applied:hover{
    background-color: var(--bg-urobilin) !important;
}
.attached-files{
    max-height: 300px;
    overflow-y: auto;
}
.mail-body-textarea{
    max-width: 100%;
    min-width: 150px;
    min-height: 90px;
    max-height: 300px;
}
.navbar-header-hm{
    color: #676A6C;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    height: 62px;
    margin-left: 20px;
}
.ln-height-1{
    line-height: 1;
}
.progress-hmt{
    height: 10px;
    background: #EBECED;
    border-radius: 5px;
}
.message-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: black;
    background-color: #F3F3F4;
    padding: 10px;
    border-radius: 5px;
}
.estimation-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--c-anti-flash-white);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.estimation-wrapper.selected{
    background-color: var(--c-harlequin-o);

}
.estm-btn{
    border-radius: 5px;
    padding: 3px 6px;
}
.estm-btn-default{
    border: unset;
    color: #999999;
}
.estm-btn-default:hover{
    color: #999999;
}
.estm-btn-gray{
    border: 1px solid #999999;
    color: #999999;
    background-color: var(--c-anti-flash-white);
}
.estm-btn-gray:hover{
    color: #999999;
}
.plan-status{
    display: flex;
    align-items: center;
    padding: 3px 5px;
    gap: 10px;
    width: 50%;
    border: 1px solid #E9E9E9;
    border-radius: 5px;
    cursor: pointer;
}
.delivery-tracker {
    position: relative;
}

/* grey baseline line */
.delivery-tracker::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #95a5a6;
    z-index: 0;
}

/* green progress line */
.delivery-tracker::after {
    content: '';
    position: absolute;
    bottom: 15px; 
    left: 0;
    height: 2px;
    background-color: #27ae60;
    z-index: 1;
    width: calc((var(--progress, 0) / 100) * 100%);
}

/* step container */
.tracker-step {
    position: relative;
    z-index: 2; /* circles above the line */
    flex: 1;
    text-align: center;
    max-width: 120px;
}
.no-select {
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard */
}