body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  button {
    touch-action: manipulation;
  }

  .container {
    flex: 1;
    margin-top: 0 !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .container-full-width {
    width: 100%;
    flex: 1;
    margin-top: 0 !important;
    padding: 10px;
    overflow-x: hidden;
  }

td, th {
    white-space: nowrap;
}

th {
    text-transform: capitalize;
}

.content {
    width: 1000px;
    margin: auto;
    min-height: 100vh - 100;
}

.navbar {
    background-color: #003160;
    text-transform: uppercase;
    color: white;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: white !important;
    padding: 10px;
    font-weight: bold;
}

.navbar-nav {
    padding:20px !important;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
}

.ml-auto {
    color: white;
    font-weight: bold;
}

i { margin: 0px 3px}

.header img {
    height: 50px;
}

address {
    font-size: 0.8em;
}

.error-message {
    color: red;
}

.fright {
    float: right;
}

.mitem-selected {
    text-decoration: underline;
}

.display-loading {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: #ffffffb7;
    display: none;
    z-index: 9999999999;
}

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

.display-loading .loading {
    animation: infiniteRotate 1s linear infinite;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>loading</title><path fill="blue" d="M12,4V2A10,10 0 0,0 2,12H4A8,8 0 0,1 12,4Z" /></svg>');
    height:36px;
}

address a{
    color:#fff;
}

@keyframes infiniteRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}