/* --------------------------------------------------------------- */
/*General style for user and admin:*/

.palette {
    color: #FDA932;
    color: #ff8400;
    color: rgb(255 117 36 / 48%);
    color: #f53f3f7d; /* Input background error */
    color: #68b768;
    color: black;
    color: #00000096; /* Table text */
    color: #00000015; /* Table tr border bottom */
    color: black;
    color: black;
}

.flex-start {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
}

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

.flex-end {
    display: flex;
    justify-content: end;
    align-items: end;
    flex-wrap: wrap;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

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

.flex-space-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex-space-between-end {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
}

.flex-space-between-stretch {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.flex-space-between-vertical {
    display: flex;
    justify-content: start;
    align-content: space-between;
    flex-wrap: wrap;
}

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

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

.transition-250 {
    -webkit-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
    -moz-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
    transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
}

.transition-350 {
    -webkit-transition: all 350ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
    -moz-transition: all 350ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
    transition: all 350ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
}

.transition-500 {
    -webkit-transition: all 500ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
    -moz-transition: all 500ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
    transition: all 500ms cubic-bezier(0.02, 0.01, 0.47, 1) !important;
}

.hover-translateY-5:hover {
    transform: translateY(-5px);
}

.hover-translateY-12:hover {
    transform: translateY(-12px);
}

.hover-box-shadow:hover {
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}

.hover-color-white:hover {
    color: white !important;
}

.hover-color-black:hover {
    color: black !important;
}

.overlay-screen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #9b959582;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.overlay-screen .spinner-border {
    width: 6rem;
    height: 6rem;
}

.hide {
    display: none;
}

.shadow-none {
    box-shadow: none;
}

.input-border {
    border: 1px solid #aaa !important;
}

.with-100 {
    width: 100%;
}

.center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.text-wrap {
    text-wrap: wrap;
}

.f-color-white {
    color: white;
}

.f-color-black {
    color: black;
}

.f-color-black-2 {
    color: #00000096;
}

.f-color-grey {
    color: #a6a5a5;
}

.f-color-black-grey {
    color: #686868;
}

.f-color-green {
    color: #68b768;
}

.f-color-orange {
    color: #ff8400;
}

.f-weight-100 {
    font-weight: 100;
}

.f-weight-300 {
    font-weight: 300;
}

.f-weight-400 {
    font-weight: 400;
}

.f-weight-500 {
    font-weight: 500;
}

.f-weight-600 {
    font-weight: 600;
}

.f-weight-bold {
    font-weight: bold !important;
}

.f-size-12 {
    font-size: 12px;
}

.f-size-14 {
    font-size: 14px;
}

.f-size-16 {
    font-size: 16px;
}

.f-size-18 {
    font-size: 18px;
}

.f-size-20 {
    font-size: 20px;
}

.f-size-22 {
    font-size: 22px;
}

.f-transf-upcs {
    text-transform: uppercase;
}

.head-label, .head-label-14 {
    font-weight: bold;
    font-size: 12px !important;
    text-transform: uppercase;
    color: #686868;
    margin-bottom: 0 !important;
}

.black-grey {
    color: #686868;
}

.red {
    color: red;
}

.green {
    color: green;
}

.blue {
    color: #007bff;
}

.black {
    color: rgba(0, 0, 0, 0.8);
}

.badge-active {
    color: #212529;
    background-color: #8ad166;
}

.badge-disable {
    color: #212529;
    background-color: #b7b7b7;
}

.badge-error {
    /*color: whitesmoke;*/
    color: #212529;
    background-color: #ff0000a8;
}

.m-top-5 {
    margin-top: 5px !important;
}

.m-top-10 {
    margin-top: 10px !important;
}

.m-top-20 {
    margin-top: 20px !important;
}

.m-bottom-0 {
    margin-bottom: 0 !important;
}

.m-bottom-2 {
    margin-bottom: 2px !important;
}

.m-bottom-5 {
    margin-bottom: 5px !important;
}

.m-bottom-12 {
    margin-bottom: 12px !important;
}

.m-bottom-14 {
    margin-bottom: 14px !important;
}

.m-bottom-20 {
    margin-bottom: 20px !important;
}

.m-bottom-30 {
    margin-bottom: 30px !important;
}

.m-bottom-50 {
    margin-bottom: 50px !important;
}

.m-right-10 {
    margin-right: 10px !important;
}

.p-right-0 {
    padding-right: 0 !important;
}

.content-bg {
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #f2f4f9;
    border-radius: 0.25rem;
    box-shadow: 0 0 10px 0 rgba(185, 195, 205, 0.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(185, 195, 205, 0.2);
    -moz-box-shadow: 0 0 10px 0 rgba(185, 195, 205, 0.2);
    -ms-box-shadow: 0 0 10px 0 rgba(185, 195, 205, 0.2);
}

.form-content-padding {
    padding: 20px 25px 30px !important;
}

.page-content-padding {
    padding: 0 0.75rem;
}

.customized-table a[target="_blank"] {
    background-color: inherit !important;
}

.alert-wrapper .alert {
    margin: 10px;
    font-size: 1rem;
}

.alert-wrapper .alert:first-child {
    margin-left: 0;
}

.alert-wrapper .alert:last-child {
    margin-right: 0;
}

.alert-wrapper .alert .close {
    margin-left: 5px;
}

/* --------------------------------------------------------------- */
.product-list-wrapper {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: start;*/
    /*flex-wrap: wrap;*/
}

.product-list-wrapper .product-filters-container {
    padding: 20px 15px;
    width: 270px;
}

.product-filters-container .select2-container {
    width: 100% !important;
}

.product-list-wrapper .product-list-container {
    width: calc(100% - 300px);
}


/* --------------------------------------------------------------- */
/*Calendar input style:*/

.fa-calendar-customization {
    position: absolute;
    left: 10px;
    top: 9px;
    z-index: 1;
    font-size: 14px;
}

.calendar-input {
    padding-left: 30px !important;
}


/* --------------------------------------------------------------- */
/*Fix datepicker design*/

.datepicker.datepicker-dropdown {
    width: 35% !important;
    max-width: 380px !important;
}

.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day {
    cursor: pointer !important;
}

.datepicker.datepicker-dropdown .datepicker-months table.table-condensed {
    width: 100% !important;
}

.datepicker.datepicker-dropdown .datepicker-months table.table-condensed tr th {
    cursor: pointer;
}

.datepicker.datepicker-dropdown .datepicker-months table.table-condensed tr td span.month {
    font-size: 14px;
    padding: 0 2px;
    cursor: pointer;
}

.datepicker.datepicker-dropdown .datepicker-months table.table-condensed tr td span:first-child {
    padding-left: 0;
}

.datepicker.datepicker-dropdown .datepicker-months table.table-condensed tr td span:last-child {
    padding-right: 0;
}

/* --------------------------------------------------------------- */
/*Table styles: */
table a[target="_blank"] {
    background-color: yellow;
}

tr[aria-expanded="true"], tr[aria-expanded="true"] + tr {
    color: #212529 !important;
    background-color: #f9fafb !important;
}

.hidden-row-wrapper {
    padding: 0 0 20px 30px;
}

.hidden-row-wrapper p {
    font-size: 1rem;
    margin-bottom: 5px;
    margin-top: 15px;
}

.action-column {
    width: 90px;
}

.customized-table div.dropdown-menu.show {
    right: -50px;
    left: auto !important;
}

.classic-table th, .classic-table td {
    white-space: normal !important;
    line-height: 1.4 !important;
}

.hiddenRow {
    padding: 0 !important;
}
