﻿.mat-container {
    padding: 0 1.5rem 1rem 1.5rem;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    width: 100%;
}

.mat-button, .file-select__button {
    height: 48px;
    width: 140px;
    padding: 9px 18px 9px 18px;
    gap: 10px;
    border-radius: 8px;
    margin-right: 10px;
    cursor: pointer;
}

.mat-button--primary {
    background: var(--mdc-theme-secondary);
    border-color: transparent;
}
    .mat-button--primary:disabled {
        background: #A0A3BD;
        cursor: default;
    }

.mat-button--primary, .mat-button--white-text {
    color: white;
}

.mat-button__icon {
    float: right;
}

.mat-button__icon--primary {
    color: #FFFFFF;
}

.mat-button--secondary {
    background: #FFFFFF;
    border: 2px solid var(--mdc-theme-secondary);
}

    .mat-button--secondary:disabled {
        border-color: #A0A3BD;
        cursor: default;
    }

        .mat-button--secondary:disabled .mat-button__label--secondary {
            color: #A0A3BD;
        }

.mat-button__label {
    height: 22px;
    width: 64px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0em;
}

.mat-button__label--primary {
    color: #FFFFFF;
}

.mat-button__label--secondary {
    color: var(--mdc-theme-secondary);
}

.mat-button__label--small {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: center;
}

.mat-button__label--large {
    font-size: 16px;
    font-weight: 700;
}

.mat-button--medium {
    width: 240px;
}

.mat-button--large {
    width: 312px;
}

.mat-notched-outline-border {
    border-color: #DEE2E6 !important;
    border-top: solid 2px;
    border-bottom: solid 2px;
}

.border-color-primary {
    border-color: var(--mdc-theme-primary) !important;
}

.icon-column-1 {
    width: 1.5rem;
    text-align: center;
    line-height: 1;
}

.icon-column-2 {
    width: 4rem;
    text-align: center;
}

.icon-column-3 {
    display: flex;
    align-items: center;
    text-align: center;
}

.icon-column__icon {
    cursor: pointer;
}

.justify-content-flex-end {
    justify-content: flex-end;
}

.justify-space-between {
    justify-content: space-between;
}

.align-content-center {
    align-content: center;
}

.align-content-flex-start {
    align-content: flex-start;
}

.align-self-center {
    align-self: center;
}

.align-self-end {
    align-self: end;
}

.width-100 {
    width: 100% !important;
}

.width-third {
    width: calc(100% / 3) !important;
}

.width-third--with-half-margin {
    width: calc(100% / 3 - .5rem) !important;
}

.width-third--with-margin {
    width: calc(100% / 3 - 1rem) !important;
}

.width-40 {
    width: 40% !important;
}

.width-two-thirds {
    width: calc(100% * 2/3) !important;
}

.width-two-thirds--with-margin {
    width: calc(100% * 2/3 - 1rem) !important;
}

.width-two-thirds--add-half-margin {
    width: calc(100% * 2/3 + .5rem) !important;
}

.width-60 {
    width: 60% !important
}

.width-half {
    width: 50% !important;
}

.width-half--with-margin {
    width: calc(50% - 0.5rem) !important;
}

.width-25 {
    width: 25% !important;
}

.width-20 {
    width: 20% !important;
}

.width-20--with-half-margin {
    width: calc(20% - 0.5rem) !important;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.display-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mdc-radio:first-child {
    padding-left: 0;
    margin-left: 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-regular {
    font-weight: 400 !important;
}

.text-bold {
    font-weight: 700;
}

.text-black {
    color: #3A3A3A !important;
}

.margin-0 {
    margin: 0 !important;
}

.padding-0 {
    padding: 0 !important;
}

.mat-pagination {
    display: flex;
    list-style: none;
}

.pagination-link {
    border-radius: .5rem;
    background-color: #fff;
    color: #7E868A;
    display: block;
    line-height: 1;
    padding: 0.875rem;
    margin-right: -1px;
    position: relative;
}

    .pagination-link:hover {
        background-color: #e9ecef;
        border-color: #dee2e6;
        text-decoration: none;
        z-index: 2
    }

    .pagination-link:focus {
        /*box-shadow: 0 0 0 .1rem rgba(33,37,41,.5);*/
        outline: 0;
        z-index: 3
    }

.pagination-item:first-child .pagination-link {
    border-bottom-left-radius: .5rem;
    border-top-left-radius: .5rem;
    margin-left: 0
}

.pagination-item:last-child .pagination-link {
    border-bottom-right-radius: .5rem;
    border-top-right-radius: .5rem;
}

.pagination-item.active .pagination-link {
    background-color: var(--mdc-theme-primary);
    color: #fff;
    z-index: 3
}

.pagination-item.disabled .pagination-link {
    background-color: #fff;
    color: #3a3a3a;
    cursor: auto;
    pointer-events: none
}

.pagination-link__number {
    display: block;
    width: 1rem;
    text-align: center;
}

.pagination-link--icon {
    padding: 0.625rem;
}

.text-large {
    font-size: 1.5rem;
}

.text-primary {
    color: var(--mdc-theme-primary);
}

.text-danger {
    color: #990000;
}

.text-warning {
    color: #FFCB05;
}

.round-button {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    text-align: center;
    user-select: none;
    vertical-align: middle;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 25px;
    height: 27px;
    transform: scale(0.5);
    margin: 0;
    background-color: var(--mdc-theme-primary);
}

    .round-button:disabled {
        background-color: #ECECEC;
        border-color: transparent;
    }

        .round-button:disabled * {
            color: #A0A3BD;
        }

.round-button--floating-label {
    position: relative;
    bottom: 1px;
    right: 5px;
}

.round-button--outlined {
    background-color: transparent;
    border-color: var(--mdc-theme-primary);
}

.round-button--tooltip {
    background-color: #FFDD80;
    border-color: #FFDD80;
    cursor: pointer;
}

.round-button--primary {
    background-color: var(--mdc-theme-primary);
}

.round-button--lightgreen {
    background-color: #B4E4B5;
}

.round-button--lightorange {
    background-color: #FDA982;
}

.round-button--yellow {
    background-color: #FFDD80;
}

.round-button--blue {
    background-color: #90BADF;
}

.round-button--success {
    background-color: #369638;
}

.round-button--error {
    background-color: #CF0000;
}

.round-button--large {
    transform: scale(0.7);
}

.round-button--stepper {
    cursor: pointer;
    height: 32px;
    transform: scale(1);
    width: 32px;
}

.round-button--stepper__icon {
    color: var(--mdc-theme-primary);
    position: relative;
    bottom: 4px;
    right: 10px;
    font-weight: 400 !important;
}

.round-button-icon--reload {
    color: #FFF !important;
    transform: scale(0.7);
}

.round-button-icon--outlined {
    transform: scale(0.3);
}

.round-buttons-wrapper {
    display: flex;
    align-items: center;
}

.label-text--small {
    font-size: 0.875rem;
}

.mat-expansion-panel {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0 0 0;
    margin-top: 24px;
    max-height: fit-content;
}

.mat-expansion-panel__label {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #3A3A3A;
    margin-bottom: 0;
    flex: 1 0 calc(100% - 2.5rem);
}

.mat-expansion-panel__label--small {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0em;
    text-decoration: underline;
}

.mat-expansion-panel__help {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    color: #FC874F;
    width: calc(100% - 2rem);
}

.mat-expansion-panel__horizontal-fill {
    display: block;
    position: absolute;
    bottom: 49%;
    left: 3rem;
    min-width: calc(100% - 3rem);
    border-bottom: 1px solid;
}

.mat-expansion-panel__button {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0 0.5rem 0 0;
}

.mat-expansion-panel__button--animation {
    /*rotate: 0 0 1 180deg;
    transition: rotate .5s;*/
    transform: rotate(180deg);
}

.mat-expansion-panel__body {
    display: none;
    padding-left: 2rem;
}

.zebra-table {
    border-collapse: collapse;
}

    .zebra-table tfoot {
        border-top: 1px solid #DEE2E6;
    }

    .zebra-table td {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0em;
    }

    .zebra-table--with-icon td:first-of-type {
        background-color: #FCFCFC;
    }

    .zebra-table tbody tr:nth-of-type(odd) {
        background-color: #ECECEC;
    }

.zebra-table-container {
    width: 100%;
    overflow: auto;
}

.zebra-table-container::-webkit-scrollbar-thumb {
    background: var(--mdc-theme-primary);
}

.zebra-table-container::-webkit-scrollbar {
    width: 5px;
}

.zebra-table-container--left-scrollbar {
    direction: rtl;
}

.zebra-table-container--left-scrollbar .zebra-table{
    direction: ltr;
}

.standard-link {
    color: #347AB7;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 700;
}

.help-link {
    color: var(--mdc-theme-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

    .help-link--large {
        font-size: 20px;
    }

    .help-link--tooltip {
        width: fit-content;
        text-decoration: none;
    }

.file-select {
    align-items: center;
    display: flex;
    position: relative;
}

.file-select__button {
    text-align: center;
    margin: 0 12px 0 0;
}

.file-select__text-field {
    background-color: #D9D9D9;
    padding: 0rem 0.75rem;
    height: 48px;
    border: none;
    border: 2px solid #D9D9D9;
    border-radius: 8px;
}

.large-text-label-container {
    width: 100%;
    display: flex;
    z-index: 0;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.image-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-bottom: 3px;
}

.image-container {
    background-color: #D9D9D9;
    border-radius: 8px;
    height: auto;
}
    .image-container--company-logo {
        align-self: center;
        background-color: transparent;
        border: 2px solid var(--mdc-theme-primary);
        display: flex;
        height: auto;
        justify-content: center;
        max-height: 15vh;
        width: 100%;
    }

    .image-container--sales-item {
        background-color: transparent;
        border: 2px solid var(--mdc-theme-primary);
        padding: 4px;
        display: flex;
        height: auto;
        justify-content: center;
        width: 100%;
    }

    .image-container--sales-item__item-image {
        align-self: center;
        max-height: 113px;
        width: auto;
    }

.card-brand-logo {
    width: 100px;
    height: 50px;
    padding: 0;
    background-color: #A0A3BD;
    color: #fff;
    text-align: center;
}

.card-brand-logo__image {
    border-radius: .5rem;
}

.progress-tracker-bar {
    border: none;
    margin: 0;
    background-color: var(--mdc-theme-primary);
    border-radius: 8px;
}

.progress-tracker-tab {
    height: 38px;
    padding-left: 0;
    padding-right: 0;
    margin: 6px 6px;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    padding: 0 1rem;
}

.progress-tracker-tab--active * {
    color: #3A3A3A !important;
}

.progress-tracker-tab__text-label {
    text-transform: initial;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #FFF;
}

.progress-tracker-tab--active {
    background-color: #FFF;
}

.stepper-container {
    display: flex;
    flex-direction: column;
}

.round-button--stepper--small {
    transform: scale(0.8);
}

.stepper-label {
    display: block;
    margin: 8px 0;
}

.stepper {
    text-align: center;
}

.stepper--small {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stepper--small * {
    transform: scale(0.6);
}

.stepper-amount {
    margin: 0px 14px;
    font-weight: 700;
    transform: unset;
}

.mdc-checkbox-small {
    transform: scale(0.8);
    padding: 10px 8px;
}

.table-solid-border-container {
    border: 3px solid var(--mdc-theme-primary);
    border-radius: 8px;
    padding-right: 1rem;
    overflow: hidden auto;
}

    .table-solid-border-container::-webkit-scrollbar-thumb {
        background: var(--mdc-theme-primary);
    }

    .table-solid-border-container::-webkit-scrollbar {
        width: 5px;
    }

.table-solid-border {
    border-collapse: collapse;
    margin-top: .5rem;
}

    .table-solid-border > tbody > tr > td {
        /*height: 2.25rem;*/
    }

.table-bold-text * {
    font-weight: 700;
}

.scroll-shadows {
    background:
    /* Shadow Cover TOP */
    linear-gradient( white 30%, rgba(255, 255, 255, 0) ) center top,
    /* Shadow Cover BOTTOM */
    linear-gradient( rgba(255, 255, 255, 0), white 70% ) center bottom,
    /* Shadow TOP */
    radial-gradient( farthest-side at 50% 0, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) ) center top,
    /* Shadow BOTTOM */
    radial-gradient( farthest-side at 50% 100%, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) ) center bottom;
    background-repeat: no-repeat;
    background-size: 100% 40px, 100% 40px, 100% 1rem, 100% 1rem;
    background-attachment: local, local, scroll, scroll;
}

.mdc-notched-outline--readonly {
    background: #ECECEC;
    color: #7E868A;
}

.mdc-notched-outline--readonly * {
    border:none;
}

.mdc-text-field__input:read-only {
    color: #7E868A;
}

.tooltip {
    z-index: 3;
}
.tooltip a, .tooltip a:visited {
    color: #ffffff;
}
.tooltip a:hover {
    color: var(--mdc-theme-primary)
}


.bs-tooltip-bottom {
    top: 4px !important;
}
.bs-tooltip-top {
    top: -4px !important;
}

.arrow,
.arrow::before {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3A3A3A;
}

.arrow {
    visibility: hidden;
}

    .arrow::before {
        visibility: visible;
        content: '';
        transform: rotate(45deg);
    }

.bs-tooltip-top > .arrow {
    bottom: -4px;
}

.bs-tooltip-bottom > .arrow {
    top: -4px;
}

.bs-tooltip-left > .arrow {
    right: -4px;
}

.bs-tooltip-right > .arrow {
    left: -4px;
}

.dropdown-menu.show {
    display: unset;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.readonly-text--primary {
    color: var(--mdc-theme-primary) !important;
    font-size: 1.5rem;
    text-align: right;
}

.mdc-text-field--disabled .mdc-floating-label {
    color: #212529;
}
.mdc-text-field__input:read-only {
    color: #212529;
}

.mat-button--reduced-padding {
    padding: 9px;
}

.mdc-tab__content {
    padding: 0px 10px;
}

.pdv-view {
    display: inline-block;
    height: 24px;
    width: 24px;
    margin-left: 4px;
    margin-right: 4px;
    background-repeat: no-repeat;
    cursor: pointer;
    background-image: url(../Assets/ux/View.svg);
}