:root {
    --textColor: black;
    --darkAccent: #2B3048;
    --midAccent: #C3C8E3;
    --lightAccent: #f1f2f8;

    --navBarHeight: 35pt;
}



body {
    margin: 0;
    padding: 0;
    font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
}

.logoImage {
    height: 100%;
    margin-left: 10pt;
    margin-top: -2pt;
}

.logo {
    width: 100%;
}

.row {
    display: block;
    width: 100%;
}


#errorBox {
    color: red !important;
    font-size: 12pt;
}

.pageContainer {
    display: flex;
    height: calc(100% - var(--navBarHeight));
    overflow: scroll;
}

.tableAddressCell {
    max-width: 100pt;
    text-overflow: ellipsis;
}

.tableButtonCell {
    text-align: right;
}

.navBar {
    background-color: var(--darkAccent);
    width: 100%;
    padding-top: 5px;
    /* padding-bottom: 15px; */

    display: flex;
    color: white;
    height: var(--navBarHeight);
}

.logoContainer {
    display: inline-block;
}

.pageTitleContainer {
    display: inline-block;
    margin: 0 auto;
    font-size: 1.5em;
    margin-top: 5pt;
    font-weight: bold;
}

.navButtonContainer {
    display: inline-block;
    /* float: right; */
}

.menuContainerContainer {
    display: inline-block;
    background-color: var(--midAccent);
    padding: 10pt 10pt 10pt 5pt;
    height: 100%;
    vertical-align: top;
    border-right: 2pt solid black;
}

.actionsMenuContainerContainer {
    background-color: var(--lightAccent);
}

.menuContainer {
    width: 100pt;
    margin-left: 10pt;
}

.menuContainer .bigButton {
    display: block;
    /* background-color: var(--darkAccent) !important; */
    /* color: white !important; */
    text-align: left;
}

.menuTitle {
    width: 100%;
    text-align: center;
    font-size: 1.1em;
    text-decoration: underline;
    margin: 10pt auto 25pt auto;
}

.underlinedHeading {
    font-size: 1.1em;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 25pt;
}

/* the container that all non-menu content goes into */
.contentContainerContainer {
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: top;
    overflow-y: scroll;
}

.contentContainer {
    display: inline-block;
    width: 100%;
    /* height: 100%; */
    padding: 20pt;
    vertical-align: top;
    flex-grow: 1;
}

.headedFigure {
    margin-bottom: 12pt;
}

.headedFigure .title {
    font-weight: bold;
    font-size: 1.1em;
}


.customerInfoSection {
    /* width: 45%; */
    width: 300pt;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30pt;
}

.fullWidth {
    width: 100%;
}

table {
    width: 100%;
}

.titledInput {
    margin-bottom: 15pt;
}

h3 {
    margin: 0;
    margin-bottom: 5pt;
}

.customerEditorSection {
    margin-bottom: 40pt;
}

.addressInput .input {
    margin-bottom: 5pt;
}

.note {
    margin: 0 0 3pt 0;
    color: #753f00;
}

.hSpacer {
    display: inline-block;
    width: 10pt;
}


.loginContainer {
    width: 300pt;
    margin: 100pt auto auto auto;
    background-color: var(--darkAccent);
    color: white;
    padding: 20pt;
    border-radius: 20pt;;
}

.loginContainer input {
    background-color: #ffffffc0;
    border-collapse: collapse;
    border: none;
    border-radius: 4pt;
    font-size: 1.5em;
    padding: 5pt 2pt 5pt 2pt;
    padding-left: 6pt;
    width: 99%;
    font-family: inherit;
}

.loginLabel {
    font-weight: bold;
    font-size: 1.5em;
    margin-top: 20pt;
}

.actionMenuButton {
    margin-bottom: 10pt !important;
}

.syncStatus {
    font-weight: bold;
}

.synced {
    color: green;
}

.pending {
    color: orange;
}

.failed {
    color: red;
}

.phonePlus {
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 6pt;
    margin-right: 5pt;
}

.messageContainer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background-color: #18181873;
    opacity: 0;
    width: 100vw;
    height: 100vh;
}

.cardContainer .card {
    margin: 100pt auto !important;
}