/* --- Colors ------------------*/

.col-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}


/* ----- */
.col-secondary-blue {
    color: var(--secondary-blue) !important;
}

/* ----- */
.col-generic-orange {
    color: var(--generic-orange) !important;
}

.col-generic-orange-disabled {
    color: var(--generic-orange-disabled) !important;
}

.bg-generic-orange {
    background-color: var(--generic-orange) !important;
}

/* ----- */
.col-white {
    color: white !important;
}

.bg-white {
    background-color: #fff !important;
}

/* ----- */
.col-grey {
    color: var(--grey)
}

.bg-grey {
    background-color: #D0D0D0;
}

/* ----- */

.col-grey-dark {
    color: var(--grey-dark);
}

.bg-grey-dark {
    background-color: var(--grey-dark) !important;
}

.col-red {
    color: red !important;
}


.bg-col-red {
    background-color: var(--red) !important;
}

.col-orangered {
    color: var(--orangered) !important;
}

.bg-col-orangered {
    background-color: var(--orangered) !important;
}

.bg-light-grey {
    background-color: #F4F6FC;
}





/* Main components --------------------------------------------------------*/

.min-h-310 {
    min-height: 310px;
}

.min-h-360 {
    min-height: 360px;
}

.min-h-350 {
    min-height: 350px;
}

.min-h-370 {
    min-height: 370px;
}

.min-h-380 {
    min-height: 380px;
}

.min-h-396 {
    min-height: 396px;
}

.min-h-496 {
    min-height: 496px;
}

.min-h-596 {
    min-height: 596px;
}

.h-10-vh {
    height: 10vh;
}

.min-h-10-vh {
    min-height: 10vh;
}

.h-15-vh {
    height: 15vh;
}

.min-h-15-vh {
    min-height: 15vh;
}

.h-20-vh {
    height: 20vh;
}

.min-h-20-vh {
    min-height: 20vh;
}

.h-25-vh {
    height: 25vh;
}

.min-h-25-vh {
    min-height: 25vh;
}

.h-26-vh {
    height: 26vh;
}

.min-h-26-vh {
    min-height: 26vh;
}



/* Containers --------------------------------------------------------*/


.screen-container-1 {
    background-color: #F4F6FC;
    margin: -30px -30px 0px -30px;
    /*min-height: 100vh;*/
}

.screen-container-2 {
    margin: 0px 3% 0 3%;
    padding-top: 2%;
    background-color: #F4F6FC;
}

.signin-container {
    background-color: var(--light-grey-background);
}

/* --- Buttons ------------------*/
.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 0.30rem;
}

.btn-primary:hover {
    text-decoration: underline;
}

.btn-generic-orange {
    color: #fff;
    background-color: var(--generic-orange);
    border-color: var(--generic-orange);
    border-radius: 0.30rem;
}

.btn-generic-orange:hover {
    color: #fff !important;
    text-decoration: underline;
}

.btn-orange {
    color: #fff;
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    border-radius: 0.30rem;
}

.btn-orange:hover {
    color: #fff;
    font-weight: bold;
}

/* --- */
.btn-orangered {
    color: #fff;
    background-color: var(--orangered);
    border-color: var(--orangered);
    border-radius: 0.30rem;
}

.btn-orangered:hover {
    text-decoration: underline;
}

/* --- */
.btn-secondary-blue {
    color: #fff;
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    border-radius: 0.30rem;
}

.btn-secondary-blue:hover {
    text-decoration: underline;
}

/* --- */
.btn-grey-dark {
    color: #fff;
    background-color: var(--grey-dark);
    border-color: var(--grey-dark);
    border-radius: 0.30rem;
}

.btn-grey-dark:hover {
    text-decoration: underline;
}

/* --- */
.clickable:hover {
    cursor: pointer;
}

.clickable-underline {
    cursor: pointer;
    text-decoration: underline;
}

.clickable-title:hover {
    cursor: pointer;
    text-decoration: underline;
    color: var(--primary) !important;
}

.clickable-generic-orange-title:hover {
    cursor: pointer;
    text-decoration: underline;
    color: var(--generic-orange) !important;
    opacity: 1 !important;
}

.btn-login {
    font-size: 1rem;
    width: inherit;
    height: 36px;
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    border-radius: 0.30rem !important;
    color: white !important;
    text-align: center !important;
}

.btn-login:hover {
    text-decoration: underline;
    cursor: pointer !important;
}


.btn-primary-inverse {
    color: var(--primary);
    border-color: var(--primary);
    background-color: white;
    font-size: 12px;
    padding-top: 3px;
    height: 27px;
    float: right;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 0.30rem;
}

.btn-primary-inverse:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-phoenixtable {
    height: 2rem;
    margin: 0px !important;
    border-radius: 0.2em;
    border-width: 1px;
}


.btn-phoenix-inverse {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-size: 12px;
    padding-top: 3px;
    border-radius: 0.4em;
}

.btn-phoenix-inverse:hover {
    color: white !important;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}

.btn-phoenix-inverse:focus,
.btn-phoenix-inverse.focus {
    box-shadow: 0 0 0 0.1rem var(--primary) !important;
}

.toggle-container {
    display: flex;
    gap: 15px;
}

.toggle-btn {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn img {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
}

.toggle-btn .img-square {
    padding-top: 0px;
    padding-bottom: 0px;
}

.toggle-btn .img-rectangle {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* OFF */
.toggle-btn.off img {
    filter: grayscale(100%) brightness(70%) opacity(0.6);
    background: rgb(228, 231, 234);
}

/* ON */
.toggle-btn.on img {
    filter: none;
    /*border: 1px solid rgb(228, 231, 234);*/
    border: 1px solid var(--primary);
}

.btn-small {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.775rem !important;
    line-height: 1.1 !important;
    border-radius: 0.2rem !important;
}

/* --- Breadcrumbs ------------------*/

.phoenix-breadcrumb {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary) !important;
    margin-right: 12px;
}


.breadcrumb-clickable:hover {
    cursor: pointer;
    text-decoration: underline;
}

.breadcrumb-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.25rem;
    margin-top: 0.25rem;
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.screen-breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.screen-breadcrumb-first-item {
    margin-bottom: 0px;
}

.screen-breadcrumb-item {
    cursor: pointer;
    margin-bottom: 0px;
}

.screen-breadcrumb-item:hover {
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 0px;
    color: var(--primary) !important;
}

.screen-breadcrumb-separator {
    margin: 0px 10px;
}

.screen-breadcrumb-last-item {
    margin-bottom: 0px;
    font-weight: bold;
    text-decoration: underline;
}

.phoenix-end-breadcrumb {
    font-size: 16px;
    margin-right: 12px;
    font-weight: bold;
}

.phoenix-breadcrumb:hover {
    font-weight: bolder;
    text-decoration: underline;
}


.screen-breadcrumb-new-item {
    margin-bottom: 0px;
    font-weight: bold;
    text-decoration: underline;
}

.screen-breadcrumb-new-item:hover {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}


.pdr-40 {
    padding-right: 40px !important;
}

.mrt-12 {
    margin-top: 12px !important;
}

.cell-bordered {
    border: 1px solid black !important;
}

.bg-phoenix-white {
    background-color: white !important;
}

.h-60-scrollable {
    height: 60px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.h-310-scrollable {
    height: 310px;
    overflow-y: scroll;
    overflow-x: hidden;
}


.h-340-scrollable {
    height: 340px;
    overflow-y: scroll;
    overflow-x: hidden;
}


.h-360-scrollable {
    height: 360px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.h-380-scrollable {
    height: 380px;
    overflow-y: scroll;
    overflow-x: hidden;
}


.h-460-scrollable {
    height: 460px;
    overflow-y: scroll;
    overflow-x: hidden;
}


/* Search ------------------------------------------------------*/

.custom-select {
    position: relative;
    /* width: 300px; */
    font-family: Arial, sans-serif;
    padding: 0 5px 0 5px;
}

.search-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 0.875rem;
}

.no-border {
    border: none !important;
}

.search-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    color: #5c6873;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #e4e7ea;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    padding: 0 5px 0 5px;
}

.clear-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 2px 4px;
    color: #888;
    display: flex;
}

.clear-button:hover {
    color: #333;
}

.clear-button:hover {
    color: #333;
}

.clear-button:focus {
    background: none;
    border: none;
    outline: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-height: 200px;
    margin-top: 1px;
    overflow-y: auto;
    border: 1px solid #e4e7ea;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99;
    margin-left: -5px;
}

.dropdown-content div {
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #333;
}

.dropdown-content div:hover {
    background-color: var(--primary);
    color: white !important;
}


.data-bloc-sm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.data-bloc-sm h6 {
    margin-bottom: 0px;
}




/* Search old ------------------------------------------------------*/

.search-container-old {
    display: flex;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    height: 0px;
}

.search-container {
    display: flex;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    height: 33px;
}


.search-results-old {
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    z-index: 1000;
    background-color: var(--light-grey-background);
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    z-index: 1000;
    background-color: var(--light-grey-background);
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
}

.search-result-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
    border-bottom: none;
    margin-bottom: 15px;
}

.search-result-item:hover {
    background-color: #f5f5f5;
    color: var(--primary)
}


/* Search old ------------------------------------------------------*/
.h140-scrollable {
    max-height: 140px;
    overflow-y: scroll;
    overflow-x: hidden;
}

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

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

.horizontal-display {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-item-align: center;
    align-items: center;
    justify-content: space-evenly;
}

.horizontal-display-left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-item-align: center;
    align-items: center;
    justify-content: flex-start;
}

/* Font size ------------------------------------------------------*/

.fs-9 {
    font-size: 9px;
    line-height: 1.1;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

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

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

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

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

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

.fs-24 {
    font-size: 24px;
}

.fs-32 {
    font-size: 32px;
}

.fs-36 {
    font-size: 36px;
}

.fs-48 {
    font-size: 48px;
}


.modal-header-phoenix {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding : 1.5rem 1.5rem 0rem 1.5rem;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  background-color: #F4F6FC;
}

.modal-body-phoenix {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding : 0rem 1.5rem 0rem 1.5rem;
  background-color: #F4F6FC;
}

.modal-footer-phoenix {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: space-between;
  padding : 0rem 1.5rem 1.5rem 1.5rem;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  background-color: #F4F6FC;
}

/* Cards ------------------------------------------------------*/

.card-title {
    margin-left: 10px;
    margin-top: -20px;
    padding: 12px 16px 12px 12px;
    color: white;
    font-weight: inherit;
    border-radius: 0.40em;
    width: fit-content;
    margin-bottom: 0.75rem;
}

.card-dashboard {
    margin: 0px 10px 10px 10px;
    text-align: center;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.card-stock {
    border-left-color: var(--primary) !important;
    border-left-width: 25px !important;
    border-left-style: solid !important;
}

.card-no-stock {
    padding-left: 35px !important;
}

.card-archived {
    border-left-color: var(--grey) !important;
    border-bottom-style: solid !important;
    border-bottom-color: var(--grey-dark) !important;
    border-bottom-width: 1px !important;
    border-top-style: solid !important;
    border-top-color: var(--grey-dark) !important;
    border-top-width: 1px !important;

    border-right-style: solid !important;
    border-right-color: var(--grey-dark) !important;
    border-right-width: 1px !important;

    border-left-width: 25px !important;
    border-left-style: solid !important;
    color: var(--grey) !important;
    background-color: var(--light-grey-background) !important;
}

.card-generic {
    border-left-color: var(--generic-orange) !important;
    border-left-width: 25px !important;
    border-left-style: solid !important;
}

.card-vertical-border {
    border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.standard-blue-card {
    background-color: var(--primary) !important;
}

.radius-25 {
    border-radius: 0.25rem !important;
}

.widget-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    margin-right: auto;
    color: var(--primary);
}


.dashboardTitle {
    display: flex;
    align-items: flex-start;
    height: 10vh;
    flex-direction: column;
    justify-content: center;
}

.dashboardLogoContainer {
    display: flex;
    align-items: flex-end;
    height: 10vh;
    flex-direction: column;
    justify-content: center;
}


.dashboardLogo {
    height: 5vh;
    margin-bottom: 0px;
}

@media (min-width: 1024px) {

    .dashboardLogo {
        height: 10vh;
    }

    .dashboardTitle {
        height: 15vh;
    }

    .dashboardLogoContainer {
        height: 15vh;
    }
}

.standard-secondary-blue-card {
    padding: 4px 4px 4px 4px;
    padding-top: 4px;
    padding-right: 4px;
    padding-left: 4px;
    border-width: 1px;
    border-color: white;
    background-color: var(--secondary-blue) !important;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.20);
    border-radius: 0.7em;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
}


.standard-secondary-blue-card-transparent {
    padding: 4px 4px 4px 4px;
    padding-top: 4px;
    padding-right: 4px;
    padding-left: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--secondary-blue) !important;
    background-color: white !important;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.20);
    border-radius: 0.7em;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Other objects ------------------------------------------------------*/

.clickable-widget {
    cursor: pointer;
    color: var(--primary);
    font-size: 16px;
    margin-right: 10px;
    margin-left: auto;
    float: right;
}

.setting-list {
    overflow-x: hidden;
    overflow-y: auto;
    height: 16.5vh;
}

select {
    margin: 0;
    font-family: inherit;
    font-size: 0.750rem;
    line-height: inherit;
    word-wrap: normal;
}

.phoenix-select-new {
    display: inline-block;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.375rem 0.375rem 0.375rem;
    font-size: 0.875rem !important;
    font-weight: 550;
    line-height: 1.5;
    color: #fff;
    vertical-align: middle;
    text-align: right !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
}

.phoenix-select-new:hover {
    cursor: pointer;
}

.phoenix-select-transparent {
    display: inline-block;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.375rem 0.375rem 0.375rem;
    font-size: 0.875rem;
    font-weight: 550;
    line-height: 1.5;
    color: var(--primary);
    vertical-align: middle;
    text-align: right !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
}

.phoenix-select-transparent:hover {
    cursor: pointer;
}

.link-hover {
    color: var(--primary);
    text-decoration: underline;
}

.link-hover:hover {
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
}

.disabled-link {
    color: var(--grey) !important;
}

.disabled-link:hover {
    cursor: not-allowed !important;
    font-weight: normal !important;
}

.card-with-tabs {
    border-left-style: solid !important;
    border-left-color: var(--mid-grey-line) !important;
    border-left-width: 1px !important;
    border-right-style: solid !important;
    border-right-color: var(--mid-grey-line) !important;
    border-right-width: 1px !important;
    border-bottom-style: solid !important;
    border-bottom-color: var(--mid-grey-line) !important;
    border-bottom-width: 1px !important;
    border-radius: 0.5rem !important;
}

.col-with-tabs {
    border-bottom-style: solid !important;
    border-bottom-color: var(--mid-grey-line) !important;
    border-bottom-width: 1px !important;
}

.title-tab {
    background-color: white;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0px !important;
    border-top-style: solid;
    border-top-color: white;
    border-top-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: white;
    border-bottom-width: 1px;
}

.title-empty-tab {
    width: 100%;
    margin: 0px !important;
    border-bottom-style: solid;
    border-bottom-color: var(--mid-grey-line);
    border-bottom-width: 1px;
    padding-top: 10px;
    padding-bottom: 11px;
    color: var(--light-grey-line) !important;
}

.title-tab-not-selected {
    border-bottom-style: solid !important;
    border-bottom-color: var(--mid-grey-line) !important;
    border-bottom-width: 1px !important;
}

.title-tab-selected {
    border-left-style: solid !important;
    border-left-color: var(--mid-grey-line) !important;
    border-left-width: 1px !important;
    border-right-style: solid !important;
    border-right-color: var(--mid-grey-line) !important;
    border-right-width: 1px !important;
    border-top-style: solid !important;
    border-top-color: var(--mid-grey-line) !important;
    border-top-width: 1px !important;
}

.title-tab-left {
    border-right-style: solid;
    border-right-color: var(--light-grey-line);
    border-right-width: 1px;
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0rem;
}


.title-tab-center {
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
    border-right-style: solid;
    border-right-color: var(--light-grey-line);
    border-right-width: 1px;
}


.title-tab-right {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0rem;
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
}


.tab-link-phoenix {
    display: block;
    padding: 0.5rem 0rem;
    margin-right: 20px;
    margin-left: 20px;
    cursor: pointer;
    font-size: 0.950rem !important;
}

.tab-link-phoenix:hover,
.tab-link-phoenix:focus {
    color: var(--primary);
}

.tab-link-phoenix-selected {
    color: var(--primary);
    border-width: 2px;
    border-color: var(--primary);
    border-bottom: 0.2em solid;
}

.progress-bar {
    width: 0%;
    height: 32px;
    border-radius: 0.30rem;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.custom-file-upload {
    border: 0px;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    margin-bottom: 0px;
}

/* Animations ------------------------------------------------------*/

.sk-wandering-cubes {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-wandering-cubes .sk-cube {
    background-color: var(--secondary-blue);
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
    animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}

.sk-wandering-cubes .sk-cube2 {
    background-color: var(--generic-orange);
    border-radius: 1rem;
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-wandering-cubes .sk-cube3 {
    background-color: var(--primary);
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}


@-webkit-keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -webkit-transform: translateX(20px) rotate(-90deg) scale(0.5);
        transform: translateX(20px) rotate(-90deg) scale(0.5);
    }

    50% {
        /* Hack to make FF rotate in the right direction */
        -webkit-transform: translateX(20px) translateY(20px) rotate(-179deg);
        transform: translateX(20px) translateY(20px) rotate(-179deg);
    }

    50.1% {
        -webkit-transform: translateX(20px) translateY(20px) rotate(-180deg);
        transform: translateX(20px) translateY(20px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translateX(0) translateY(20px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(20px) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -webkit-transform: translateX(20px) rotate(-90deg) scale(0.5);
        transform: translateX(20px) rotate(-90deg) scale(0.5);
    }

    50% {
        /* Hack to make FF rotate in the right direction */
        -webkit-transform: translateX(20px) translateY(20px) rotate(-179deg);
        transform: translateX(20px) translateY(20px) rotate(-179deg);
    }

    50.1% {
        -webkit-transform: translateX(20px) translateY(20px) rotate(-180deg);
        transform: translateX(20px) translateY(20px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translateX(0) translateY(20px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(20px) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/* Badges  ------------------------------------------------------*/


.badge-phoenix {
    display: inline-block;
    padding: 0.8em .8em;
    font-size: 80%;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.6rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge-primary {
    border: 1px solid var(--primary) !important;
    background-color: var(--primary) !important;
    color: white;
}


.badge-primary-inverse {
    border: 1px solid var(--primary) !important;
    background-color: transparent !important;
    color: var(--primary) !important;
}

.badge-generic {
    border: 1px solid var(--generic-orange) !important;
    background-color: var(--generic-orange) !important;
    color: white;
}

.badge-generic-inverse {
    background-color: transparent !important;
    border: 1px solid var(--generic-orange) !important;
    color: var(--generic-orange) !important;
}

.badge-notification {
    background-color: #D0D0D0;
    color: #fff;
}

.badge-unread-notification {
    background-color: red !important;
    color: #fff;
}

.badge-running {
    color: #fff;
    background-color: #1B7FBA;
}

.badge-success {
    color: #fff;
    background-color: #1B7B45;
}

.badge-info {
    color: #23282c;
    background-color: #63c2de;
}

.badge-warning {
    color: #23282c;
    background-color: #ffc002;
}

.badge-orangered {
    color: #fff;
    background-color: var(--orangered);
}

.badge-secondary-blue {
    color: #fff;
    background-color: var(--secondary-blue);
}

/* Columns  ------------------------------------------------------*/

.col-dash-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}


.col-dash-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.col-dash-2-5 {
    -ms-flex: 0 0 20.8333333%;
    flex: 0 0 20.8333333%;
    max-width: 20.8333333%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.col-dash-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}


.col-dash-3-5 {
    -ms-flex: 0 0 29.16662%;
    flex: 0 0 29.16662%;
    max-width: 29.16662%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}


.col-dash-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.col-dash-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.col-dash-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.col-dash-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

/* Mobile ------------------------------------------------------*/
.row-mobile .label-mobile {
    margin-right: 0.50rem !important;
    margin-bottom: 1rem !important;
    width: 30%;
}

.row-mobile .col-sm-2,
.row-mobile .col-sm-2-5,
.row-mobile .col-sm-4 {
    display: -ms-flexbox !important;
    display: flex !important;
}

/* Mobile columns -----------------------------------------------*/


.row-mobile h6 {
    font-size: 0.875rem !important;
}


@media (min-width: 1024px) {

    .row-mobile h6 {
        font-size: 0.750rem !important;
    }

    .row-mobile .label-mobile {
        margin-bottom: 0.25rem !important;
        width: 100% !important;
    }

    .row-mobile .col-sm-2,
    .row-mobile .col-sm-2-5 {
        display: block !important;
    }



    .col-sm-0-5 {
        -ms-flex: 0 0 4.16666%;
        flex: 0 0 4.16666%;
        max-width: 4.16666%;
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-1-5 {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-2-5 {
        -ms-flex: 0 0 20.8333333%;
        flex: 0 0 20.8333333%;
        max-width: 20.8333333%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-3-5 {
        -ms-flex: 0 0 29.16662%;
        flex: 0 0 29.16662%;
        max-width: 29.16662%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}



@media (max-width: 480px) {

    .row-mobile {
        padding-left: 0.50rem !important;
        padding-right: 0.50rem !important;
    }

}

/* Charts  ------------------------------------------------------*/