html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background: #fff;
    font-size: 10px;
}

body {
    font-family: 'Helvetica';
    font-size: 14px;
}

.bpb-button-submit {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 160px;
    height: 40px;

    font-family: Helvetica;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    font-weight: 700;

    border-radius: 8px;
    box-shadow: 0  5px 3px 0 rgba(0,0,0,0.1);
    cursor: pointer;
}

.bpb-button-submit-inline {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;

    font-family: Helvetica;
    font-size: 14px;
    text-align: center;
    font-weight: 700;

    cursor: pointer;
}

.bpb-button-submit-inline-cancel {
    color: #C3423F;
}

.bpb-button-submit-inline-primary {
    color: #2A93B9;
}

.bpb-button-submit-inline-secondary {
    color: #3C474B;
}


.bpb-button-submit-cancel {
    background: #C3423F;
}

.bpb-button-submit-primary {
    background: #2A93B9;
}

.bpb-button-submit-secondary {
    background: #3C474B;
}

.bpb-button-submit-primary[disabled] {
    background: #C0E0DE;
    pointer-events: none;
    cursor: not-allowed;
}

.bpb-button-submit-secondary[disabled] {
    background: #C0E0DE;
    pointer-events: none;
    cursor: not-allowed;
}


#app-modals  > *{
    display: none;
}

#app-modals[open] > #app-modal-container {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: rgba(60,71,75,0.70);
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#app-modal-container[nolayer] {
    background: transparent !important;
}

.bpb-modal {
    background: #FFFFFF;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.20);
    border-radius: 18px;
    max-width: 500px;
    overflow: auto;
    box-sizing: border-box;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 57px;
    padding-left: 57px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bpb-modal.bpb-confirm-modal {
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.20);
    border-radius: 12px;
}

.bpb-modal-footer, .bpb-modal-footer > button {
    width: 200px;
}

.bpb-modal.bpb-confirm-modal > .bpb-modal-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-direction: row;
    border-top: 1px solid #E5E5E5;
    margin: 0;
}

.bpb-modal.bpb-confirm-modal > .bpb-modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: Helvetica;
    font-size: 16px;
    color: #3C474B;
    letter-spacing: -0.2px;
    text-align: center;
    font-weight: bold;
    height: auto;
    min-height: fit-content;
    margin: 0;
}

.bpb-modal-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bpb-modal-footer > button {
    margin-top: 9px;
}

.bpb-modal > *:not(:first-child) {
    margin-top: 10px;
}

.bpb-modal > *:not(:last-child) {
    margin-bottom: 10px;
}

.bpb-modal .bpb-modal-title {
    font-family: Helvetica;
    font-size: 14px;
    color: #24272B;
    letter-spacing: 0;
    text-align: center;
    font-weight: 700;
}

.bpb-modal .bpb-modal-body {
    width: 100%;
}

#forgot-password-submit {
    border-radius: 8px;
}

.mfa-field-input {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #DFE2E6;
    margin-left: 2px;
    margin-right: 2px;
    text-align: center;
    font-size: 20px;
    font-family: Helvetica;
}

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

.bpb-search-field {
    max-width: 480px;
    width: calc(50% - 80px);
    min-width: 250px;
    position: relative;
}

.bpb-search-field-input::placeholder {
    font-family: Helvetica;
    font-size: 10px;
    font-style: oblique;
    color: rgba(75,84,97,0.45);
    letter-spacing: 0;
    font-weight: 200;
}

.bpb-search-field-input {
    background: #FFFFFF;
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.20);
    border-radius: 18px;

    height: 37px;

    padding-left: 50px;
    padding-right: 10px;

    width: 100%;

    font-family: Helvetica;
    font-size: 14px;
    color: #4B5461;
    letter-spacing: 0;
    font-weight: 400;

    border: none;
    box-sizing: border-box;
}

.bpb-search-field-button {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    left: 15px;
    top: 10px;

    cursor: pointer;
}

.bpb-table {
    box-shadow: 0 11px 20px -7px rgba(0,0,0,0.20);
    border-collapse: collapse;
    border-radius: 18px;
    width: 100%;
    overflow: hidden;
}

.bpb-table tbody {
    background: #FFFFFF;
}

.bpb-table thead {
    background: #D8D8D8;
}

#company-edit-modal {
    width: 500px;
}

.company-action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bpb-dropdown-menu {
    position: absolute;
    display: none;
}

.bpb-dropdown-menu[open] {
    padding: 5px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.20);
    border-radius: 5px;
    box-sizing: border-box;
}

.bpb-dropdown-menu > div {
    text-align: center;
    padding: 5px;
    box-sizing: border-box;
}

.bpb-dropdown-menu > [selected] {
    text-decoration: underline;
}

.bpb-company-status-active {
    font-family: Helvetica;
    font-size: 12px;
    color: #86A873;
    letter-spacing: 0;
    text-align: center;
    font-weight: 700;
}

.bpb-company-status-potential {
    font-family: Helvetica;
    font-size: 12px;
    color: #E08300;
    letter-spacing: 0;
    text-align: center;
    font-weight: 700;
}

.bpb-company-status-closed {
    font-family: Helvetica;
    font-size: 12px;
    color: #C3423F;
    letter-spacing: 0;
    text-align: center;
    font-weight: 700;
}

.bpb-title-blue {
    font-family: Helvetica;
    font-size: 25px;
    color: #2A93B9;
    letter-spacing: 0;
    font-weight: bold;
}

.bpb-modal-title.bpb-title-blue {
    font-family: Helvetica;
    font-size: 25px;
    color: #2A93B9;
    letter-spacing: 0;
    text-align: center;
    font-weight: bold;
}

.bpb-text-error {
    height: 15px;
    font-family: Helvetica;
    font-style: oblique;
    font-size: 10px;
    color: #C3423F;
    font-weight: 200;
}

#add-company-button > img, #add-account-button > img {
    width: 52px;
    height: 52px;
    cursor: pointer;
}

.company-action-buttons > div:nth-child(2) {
    margin-left: 5px;
    margin-right: 5px;
}

#account-list-screen[mode="web"] .account-app {
    display: none;
}

#account-list-screen {
    margin-top: 20px;
}

#account-list-screen .account-list-header {
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#account-list-screen[mode="app"] #add-account-button {
    display: none;
}

#account-list-screen[mode="web"] #total-account {
    display: none;
}


#account-list-screen[mode="app"]  .account-web {
    display: none;
}

#total-account {
    height: 30px;
    min-width: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: Helvetica;
    font-size: 14px;
    color: #A9A7A7;

    letter-spacing: 0;
    text-align: right;

    background: #fff;
    border-radius: 30px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;

    box-shadow: 0px 2px 2px 2px #aaaaaa6b;
}

#back-company {
    font-family: Helvetica;
    font-size: 16px;
    color: #2A93B9;
    letter-spacing: 0;
    text-align: right;
    font-weight: bold;
    cursor: pointer;
    margin-right: 20px;
}

.account-list-header > div {
    display: flex;
    align-items: center;
}

#total-account-counter {
    color: #3C474B;
}

#total-account-status {
    height: 10px;
    width: 10px;
    border-radius: 100%;
}

#total-account-status[status="active"] {
    background: #86A873;
}

#total-account-status[status="potential"] {
    background: #E08300;
}

#total-account-status[status="closed"] {
    background: #C3423F;
}

#total-account-separator {
    height: 100%;
    border: 1px solid;
}

#bpb-mycompany {
    display: flex;
    justify-content: space-between;
}

.bpb-frame {
    background: #FFFFFF;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.20);
    border-radius: 14px;
    padding: 20px;
    box-sizing: border-box;
}

.bpb-button-submit.bpb-frame-button {
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.20);
    border-radius: 14px;
    font-family: Helvetica;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    font-weight: bold;

    height: 30px;
    min-width: 100px;
}

.bpb-form-field {
    max-width: 345px;
}


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

.bpb-flex-s-c {
    display: flex;
    justify-content: start;
    align-items: center;
}

#category-list {
    position: absolute;
    top: 30px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    background: #FFF;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.06);
    border-radius: 0 0 8px 8px;
    max-height: 100px;
    overflow: auto;
}

#category-list > * {
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: center;

    cursor: pointer;

    font-family: Helvetica;
    font-size: 12px;
    color: #3E4A59;
    letter-spacing: 0;
    font-weight: 400;
}

#category-list > * > .bpb-list-checkbox {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-right: 10px;
    height: 10px;
    width: 10px;
    border: 1px solid #2A93B9;
    border-radius: 2px;
}

#category-list > *:hover {
    background: #D3DFEF;
}

.bpb-button-enabling[disabled] [data-enabled="enabled"],
.bpb-button-enabling:not([disabled]) [data-enabled="disabled"],
.bpb-collaspe:not([collasped]) [data-collasped="enabled"],
.bpb-collaspe[collasped] [data-collasped="disabled"]
{
    display: none;
}

.bpb-button-enabling [data-enabled="enabled"] {
    cursor: pointer;
}

#account-add {
    cursor: pointer;
    height: 30px;
}

img {
    max-height: 100%;
}