/* 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-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;
}
.flex-1{
    flex: 1;
}
/*** flex */
.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;
}

/* widths */
.full-width{
    width: 100%;
}
.w-25{
    width: 25% !important;
}
.w-30{
    width: 30% !important;
}
.w-40{
    width: 40% !important;
}
.w-50{
    width: 50% !important;
}
.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;
}
/*** widths */
/* heights */
.full-height{
    height: 100%;
}
.vh-70{
    height: 70vh;
}
.vh-80{
    height: 80vh;
}
.vh-90{
    height: 90vh;
}
.vh-100{
    height: 100vh;
}
.max-vh-80{
    max-height: 80vh;
}
.max-vh-90{
    max-height: 90vh;
}
.max-vh-95{
    max-height: 95vh;
}
/*** heights */
/* gaps */
.gap-1{
    gap: 1px;
}
.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;
}
/*** gaps */
/* margin and padding */
.m-0 { margin: 0 !important; }
.m-1 { margin: 1px !important; }
.m-3 { margin: 3px !important; }
.m-4 { margin: 4px !important; }
.m-5 { margin: 5px !important; }
.m-6 { margin: 6px !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-3, .my-3 { margin-top: 3px !important; }
.mt-4, .my-4 { margin-top: 4px !important; }
.mt-5, .my-5 { margin-top: 5px !important; }
.mt-6, .my-6 { margin-top: 6px !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-3, .my-3 { margin-bottom: 3px !important; }
.mb-4, .my-4 { margin-bottom: 4px !important; }
.mb-5, .my-5 { margin-bottom: 5px !important; }
.mb-6, .my-6 { margin-bottom: 6px !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-3, .mx-3 { margin-right: 3px !important; }
.mr-4, .mx-4 { margin-right: 4px !important; }
.mr-5, .mx-5 { margin-right: 5px !important; }
.mr-6, .mx-6 { margin-right: 6px !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-3, .mx-3 { margin-left: 3px !important; }
.ml-4, .mx-4 { margin-left: 4px !important; }
.ml-5, .mx-5 { margin-left: 5px !important; }
.ml-6, .mx-6 { margin-left: 6px !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-1 { padding: 1px !important; }
.p-3 { padding: 3px !important; }
.p-4 { padding: 4px !important; }
.p-5 { padding: 5px !important; }
.p-6 { padding: 6px !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-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-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-3, .px-3 { padding-right: 3px !important; }
.pr-4, .px-4 { padding-right: 4px !important; }
.pr-5, .px-5 { padding-right: 5px !important; }
.pr-6, .px-6 { padding-right: 6px !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-3, .px-3 { padding-left: 3px !important; }
.pl-4, .px-4 { padding-left: 4px !important; }
.pl-5, .px-5 { padding-left: 5px !important; }
.pl-6, .px-6 { 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; }
/*** margin and padding */

/* background color */
.bg-white {
    background-color: #ffffff;
}
.bg-may-green{
    background-color: #449d44;
}
.bg-success-teal{
    background: #1AB394;
}
.bg-rajah{
    background: #F8AC59;
}
.bg-light-pink{
    background: #FFA3A3;
}
.bg-urobilin{
    background: #E0A82E;
}
.bg-bright-gray {
    background: #eeeeee;
}
/*** background color */
/* text color */
.text-success-teal{
    color: #1ab394;
}
.text-black{
    color: black;
}
.text-silver-foil{
    color: #AFAFAF;
}
.text-old-silver{
    color: #858585;
}
.text-field-drab{
    color: #785916;
}
.text-argent{
    color: #C0C0C0;
}
.text-dark-liver{
    color: #4E4E4E;
}
.text-platinum {
    color: #E2E2E2;
}
.text-urobilin{
    color: #E0A82E;
}
.text-firebrick{
    color: #B02020;
}
.icon-modal-color {
    color: #CFCFCF;
}
.text-may-green{
    color: #449d44;
}
.stars-secondary{
    color: #CFCFCF;
}
/*** text color */
.text-center{
    text-align: center;
}
.text-start{
    text-align: start;
}

.line-horizontal{
    display: flex;
    align-self: stretch;
    height: 1px;
    background: #E5E6E7;
}
.line-vertical{
    display: flex;
    align-self: stretch;
    width: 1px;
    background: #E5E6E7;
}
.op-30{
    opacity: 30%;
}

/* line-decoration */
.line-h-1 {
    line-height: 1;
}
/*** line-decoration */

/* fonts */
.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-30-p {
    font-size: 30px !important;
}
.font-size-26-p {
    font-size: 26px !important;
}
.font-size-80-p {
    font-size: 80px !important;
}
/*** fonts */

/* border */
.border-radius-default{
    border: 1px solid #e5e6e7;
    border-radius: 4px;
}
/*** border */
/* 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;
}
/*** costum panels */
.password-errors-list {
    list-style-type: disc; /* shows dots */
    margin-left: 20px;     /* indent list */
    padding-left: 15px;    /* spacing */
}
.cursor-pointer {
    cursor: pointer;
}
.shippings-container{
    max-height: 400px;
    overflow-y: auto;
}
.shipping-box {
    border: 1px solid #E2E2E2;
    border-radius: 4px;
    /* box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15); */
    cursor: pointer;
}

.shipping-box.selected-shipping {
    border-color: #E0A82E;
}
.border-shadow-box{
    border-radius: 4px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}
.note-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
}

.note-content {
    flex: 1;
    text-align: justify;
    margin: 0;
}
.btn-delete-abslt{
    position: absolute;
    bottom: 0;
    right: 20px;
}
.truncate-link{
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-delete-abslt{
    position: absolute;
    bottom: 0;
    right: 20px;
}
.truncate-link{
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dt-pre-line {
    white-space: pre-line;
}
.prod-grid{
    display:grid;
    grid-template-columns:repeat(3, 200px);
    gap:14px;
}

/*  --------------
 *  Datatable
 */

.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;
}

/*  
 *  Datatable
 * --------------
 */
