
:root {
    --background_color: #f4f5f7;
    --border_radius: 6px;
    --border: 1px solid #ccc;

}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

input[type=text],input[type=tel],input[type=phone]{
    height:36px;width:100%;
    border-radius: var(--border_radius);
    border: var(--border);
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

body {
    padding: 16px;
    margin: 0;
    font-family: ui-rounded, -apple-system, Helvetica, Arial, sans-serif;
    background: #FFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: env(safe-area-inset-bottom);
    background: #FFF;
}

h3 {
    text-align: left;
    font-size: 17px;
    font-weight: bold;
    color: #000;
    margin-top: 16px;
    margin-bottom: 16px;
}

h4 {
    text-transform: uppercase;
    color: #999;
    display: block;
    font-size: 15px;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0;
}

p {
    font-size: 15px;
    line-height: 21px;
    margin-top: 5px;
    margin-bottom: 5px;
}

a {
    color: #429bdf;
    text-decoration: none;
    cursor: pointer;
}

.title{
    text-align:center;
}

.container {
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.with-shadow {
    box-shadow: 0px 0px 5px #ddd;
}

.standard-button {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    background: #F58021;
    font-size: 17px;
    line-height: 17px;
    color: #FFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    display: block;
    margin-bottom: 5px;
    margin-top: 10px
}

#ClearButton{
    display:flex;
    justify-content:center;
}

.standard-button.standard-button-pending {
    color: #999;
    background: #ddd;
}

.mode-selector {
    margin-bottom: 10px;
}

.form {
    line-height: 2em;
    margin: 0 auto;
    width: 100%;
    padding: 1.5rem;
    background-color: var(--background_color);
    border-radius: var(--border_radius);
    border: var(--border);
    flex:2;
}

label {
    display:inline-block;
    margin-top: 5px;
    line-height: 1;
}

.addressbox {
    margin: 15px 0 15px 0;
    padding: 2px;
}

.error {
    color: red;
}

.label {
    font-weight: bolder;
}

.order {
    margin-top: 15px;
    border: var(--border);
    border-radius: var(--border_radius);
}

.order>div {
    padding: 1rem;
}

.msgbox {
    min-height: 31px;
}

.datarow {}

.databox {
    display: inline-block;
    margin: 5px 15px;
}

.label {
    font-size: 0.75em;
}

.content {
    font-weight: 100;
    padding-left: 10px;
}

.holdforreview {
    border: 1px solid black;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
  }
  
  th, td {
    text-align: left;
    padding: 16px;
    white-space: nowrap;
  }

tr:nth-child(even) {
    background-color: #f2f2f2;
  }

.shipments {
    background-color: var(--background_color);
}

.loading-indicator {
    padding: 16px;
    color: #777;
    text-align: center;
}

.footer {
    text-align: center;
    max-width: 800px;
    box-sizing: border-box;
    margin: 0px auto;
    padding: 16px;
    padding-top: 0;
}

.footer a {
    color: #555;
}

.footer a:hover {
    color: #429bdf;
}

.footer .powered-by {
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    color: #555;
    font-weight: bold;
}

.footer .powered-by img {
    height: 20px;
    margin-left: 4px;
    margin-right: 4px;
    margin-top: 4px;
}

.footer .app-name {
    text-align: center;
    display: block;
    line-height: 21px;
    font-size: 17px;
    font-weight: bold;
    color: #555;
}

.footer .app-name img {
    height: 19px;
    vertical-align: top;
}

.footer .company {
    font-size: 15px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.footer .privacy-policy {
    font-size: 15px;
    padding-top: 15px;
}



@media screen and (min-width: 800px){
    .form{ 
        margin: 0;
        max-width: 50%;
    }
    .container{
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        max-width: 1200px;
        margin: 0 auto;
    }
    .msgbox, .results {
        margin: 0 1rem;
        max-width: 800px;
        overflow: auto;
    }
}

.standard-button:disabled
{
    cursor: default;
    background: gray;
}

.orderid{
    font-weight: bold;
    font-size: 18px;
}
#OrderIdContainer {
    margin-top: 10px;
}

#OrderIdContainer i {
    cursor: pointer;
}

#TrackingUrl {
    margin-top: 10px;
}