:root {
    --invoice-white: #FFFFFF;
    --invoice-black: #040404;
    --invoice-green: #69BB55;
    --invoice-red: #DC3545;
    --invoice-blue: #001C27;
    --invoice-grey: #565666;
    --invoice-grey-40: #565666;
    --invoice-grey-70: #A6A6B3;
    --invoice-gray-300: #D0D5DD;
    --invoice-border-light-gray: #EAF0F7;
    --invoice-border-gray: #C4C4C4;
    --invoice-button-shadow-color: #1018280D;
    --invoice-draft-bg: #DAE9F5;
    --invoice-awaiting-bg: #FFF6DB;
    --invoice-overdue-bg: #FFE7E9;
    --invoice-paid-bg: #DAFFE2;
}

@font-face {
    font-family: 'Figtree-Semi-Bold', sans-serif;
    src: url('../../fonts/Figtree/Figtree-SemiBold.ttf');
}

@font-face {
    font-family: 'Satoshi-Medium', sans-serif;
    src: url('../../fonts/satoshi/Satoshi-Medium.otf');
}

@font-face {
    font-family: 'Satoshi-Bold', sans-serif;
    src: url('../../fonts/satoshi/Satoshi-Bold.otf');
}

@font-face {
    font-family: 'Satoshi-Regular', sans-serif;
    src: url('../../fonts/satoshi/Satoshi-Regular.otf');
}

.welcome-message {
  height: calc(100vh - 250px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cursor-pointer { cursor: pointer !important; }

.invoice__loader--wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

select {
    appearance: none;
}

.invoice-wrapper {
    padding-top: 28px;
}

.invoice-table td {
    white-space: unset !important;
}

.invoice-wrapper [class*=col-] {
    padding: 0 8px !important;
}

.invoice__wrapper-layout {
    background: var(--invoice-white);
    padding: 16px 24px;
    border: 1px solid var(--invoice-border-light-gray);
    border-radius: 16px;
    margin-bottom: 16px;
}

.invoice__wrapper-layout:last-child {
    margin-bottom: 54px;
}

.invoice__header-info {
    font-family: 'Satoshi-Regular', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--invoice-black);
}

.invoice__header-details .invoice__header-title {
    font-family: 'Satoshi-Bold', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: var(--invoice-black);
    text-align: right;
}

.invoice__header-details .invoice__header-invoice_no {
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--invoice-black);
    text-align: right;
}

.invoice__section--title {
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--invoice-black);
    margin-bottom: 16px;
}

.invoice__section--button {
    font-family: 'Figtree-Semi-Bold', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color);
    --webkit-box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color);
    --moz-box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color);
}

.invoice__button--green {
    color: var(--invoice-white) !important;
    background-color: var(--invoice-green);
}

.invoice__button--white {
    color: var(--invoice-blue);
    background-color: var(--invoice-white);
    border: 1px solid var(--invoice-border-gray);
}

.invoice__section--label {
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--invoice-grey);
    margin-bottom: 6px;
    display: block;
}

.invoice__payment-list {}

.invoice__payment-list li {
    max-width: 477px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 6px;
}

.invoice__payment-list li span {
    font-family: "Satoshi-Medium", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--invoice-black);
}

.invoice__payment-list li:last-child {
    max-width: 100%;
    margin-bottom: 0;
}

.invoice__payment-list li:last-child span:last-child {
    font-family: "Satoshi-Regular", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--invoice-black);
}

.invoice__amount-detail {
    max-width: 477px;
    margin-left: auto;
}

.invoice__amount-detail li {
    max-width: 477px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 6px;
}

.invoice__amount-detail li:last-child {
    margin-bottom: 0;
}

.invoice__amount-detail li span {
    font-family: "Satoshi-Medium", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--invoice-black);
}

.invoice__input {
    font-family: "Satoshi-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 20px !important;
    color: var(--invoice-black);
    background-color: #FFFFFF;
    border-radius: 14px;
    border: 1px solid var(--invoice-gray-300);
    min-height: 60px;
    padding: 10px 14px;
    width: 100%;
}

.invoice__input:focus-visible {
    outline: none;
}

.invoice__input-amount-wrapper {
    position: relative;
}

.invoice__input-amount-wrapper input {
    padding-left: 32px;
}

.invoice__input-amount-wrapper::before {
    content: "$";
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(0, -50%);
    font-family: "Satoshi-Medium", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    z-index: 1;
}

.invoice__input-quantity {
    max-width: 64px;
    width: 100%;
}

.invoice__input-quantity input {
    padding: 17px 14px;
}

.invoice_input-unit-price {
    width: 155px;
}

.invoice_input-tax-amount {
    width: 108px;
    font-family: "Satoshi-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 20px !important;
    color: var(--invoice-black);
    min-height: 60px;
    padding: 10px 14px;
    width: 100%;
}

.invoice_input-total-amount {
    width: 132px;
      font-family: "Satoshi-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 20px !important;
    color: var(--invoice-black);
    min-height: 60px;
    padding: 10px 14px;
    width: 100%;
}

.invoice__item-wrapper {
    width: 313px;
}

.invoice__docket-wrapper {
    /* width: 104px; */
}

.invoice__description-wrapper {
    /* width: 221px; */
}

.invoice__form-row .v-select .vs__dropdown-toggle {
    padding: 10px 14px;
    border-radius: 14px;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid var(--invoice-gray-300);
}

input[type="date"] {
    /* min-height: 44px; */
    min-height: 55px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--invoice-gray-300);
}

.invoice__item-remove {}


.mws__form--label {
    font-family: "Satoshi-Medium", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--invoice-grey-40);
    margin-bottom: 6px;
    display: block;
}

.mws__form--field {
    border-radius: 14px !important;
    border: 1px solid var(--invoice-gray-300) !important;
    font-family: "Satoshi-Medium", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 26px !important;
    color: var(--invoice-black) !important;
    background-color: var(--invoice-white) !important;
    padding: 10px 14px !important;
    width: 100% !important;
    /* min-height: 44px !important; */
    min-height: 55px !important;
    box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color) !important;
    -webkit-box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color) !important;
    -moz-box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color) !important;
}

.mws__form--label-required {
    color: var(--invoice-red);
}

.mws__form--field:disabled {
    background-color: var(--invoice-border-light-gray) !important;
    color: var(--invoice-grey-40) !important;
}

.mws__form--field:focus-visible {
    outline: none;
    border: 1px solid var(--invoice-blue);
    box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color);
    -webkit-box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color);
    -moz-box-shadow: 0px 1px 2px 0px var(--invoice-button-shadow-color);
}

select.mws__form--field {
    appearance: none !important;
    background-image: url('../../images/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
    padding-right: 40px !important;
    min-height: 55px !important;
}

textarea.mws__form--field {
    min-height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    resize: none;
}

.mws__form--field--with-icon {
    position: relative;
}

.mws__form--field--with-icon input {
    padding-right: 70px !important;
}

.mws__form--field-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translate(0, -50%);
    cursor: pointer;
    color: var(--invoice-grey-70);
}

.mws__form--field-error {
    color: var(--invoice-red);
    margin-top: 6px;
    display: block;
}

.mws__form--field-not-valid {
    border: 1px solid var(--invoice-red);
}

.mws__input--currency {
    position: relative;
}

.mws__input--currency input {
    padding-left: 32px !important;
}

.mws__input--currency::before {
    content: "$";
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(0, -50%);
    font-family: "Satoshi-Medium", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    z-index: 1;
}

.sales-overview {
    margin: 28px 0;
}

.invoice__page--title {
    font-family: 'Satoshi-Bold', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--invoice-black);
}

.invoice__statuses--wrapper {
    margin: 24px 0;
}

.invoice__status--wrapper {
    /* max-width: 336px; */
    border-radius: 16px;
    padding: 16px 24px;
    margin: 0 12px;
}

.invoice__status--draft {
    background-color: var(--invoice-draft-bg);
}

.invoice__status--awaiting {
    background-color: var(--invoice-awaiting-bg);
}

.invoice__status--overdue {
    background-color: var(--invoice-overdue-bg);
}

.invoice__status--paid {
    background-color: var(--invoice-paid-bg);
}

.invoice__status--icon {
    width: 24px;
    height: 24px;
}

.invoice__status--title {
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    letter-spacing: -2%;
    margin: 12px 0;
}

.invoice__status--count {
    font-family: 'Satoshi-Bold', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    color: #000000;
}

.invoice__graph--wrapper {
    background-color: var(--invoice-white);
    border: 1px solid var(--invoice-border-light-gray);
    border-radius: 16px;
    padding: 24px;
    margin: 0 12px;
}

.invoice__graph--title {
    font-family: 'Satoshi-Bold', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--invoice-black);
}

.invoice__graph--legends {
    /* max-width: 310px; */
    width: 100%;
}

.invoice__graph--legends li {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.invoice__graph--legends li:last-child {
    margin-bottom: 0;
}

.invoice__graph--legends li .graph__legend--title {
    max-width: 186px;
    width: 100%;
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    letter-spacing: -2%;
    position: relative;
}

.invoice__graph--legends li .graph__legend--amount {
    max-width: 186px;
    width: 100%;
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    letter-spacing: -2%;
}

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

.items__column--docker-search {
    position: relative;
}

.items__column--docker-search input {
    width: 100%;
    border: 1px solid var(--invoice-border-light-gray);
    background: var(--invoice-white);
    border-radius: 8px;
    padding: 3px 25px 3px 5px;
}

.column__docker--close {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.invoice__form-row .v-select{
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .invoice__graph--title {
        margin-bottom: 20px;
    }
}
