/* variables */
:root {
  --maincolor: #006FA0;
  --shipmentcolor: #6fb2d0;
  --accentcolor: #6fb2d0;
  --searchcolor: #006FA0;
  --searchbordercolor: #6fb2d0;
}

body{
    font-family: Arial, Roboto-Regular;
    font-size: 12px;
    color: #323C46;
    margin: 0px;
    padding: 0px;
    height: 100%;
    /* Background image - anchored left and scaled */
    /* 
    background: url(../images/value-banner-scaled.jpg);
    background-position: left; 
    */
    /* background: url(../images/bglue-bg.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
    background-color: var(--maincolor);
}


#header {
    position: absolute;
    display: table;
    width: 100%;
    height: 140px !important;
}
#header_inner {
    text-align: center;
    vertical-align: middle;
    border-radius: 0px 0px 30% 30%;
    box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.2) 0px 8px 16px -8px;
    background-color: #f9f9f9;
    padding: 5px;
    font-family: Arial, Roboto-Medium;
}
#header_icons {
    position: absolute;
    right: 26px;
    top: 20px;
}
.logo-image {
    padding: 4px;
    height: 80px;
}
.header-icon {
    margin-left: 6px;
}
.content-top {
    position: relative;
    top: 120px;
}

td {
    font-weight: normal;
    font-size: 14px;
}

h3 {
    font-weight: 900;
}
/* RESPONSIVE: larger screens */
@media only screen and (min-width: 685px) {
    .header-icon {
        height: 22px;
        width: 22px;
    }
    .modal {
        max-width: 590px;
    }
    .searchinput {
      float: left;
      text-align: left;
    }
    #searchinput_or {
        font-size: 30px;
        color: silver;
        float: left;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 34px;
    }
    .striped-bg {
        background-image: url('../images/bg_striped_hor.png');
        background-repeat: repeat-x;
        background-position: top;
    }
    .detail-title {
        font-size: 11px;
        color: silver;
        text-transform: uppercase;
    }
    .detail-text {
        position: relative;
        top: -16px;
        padding-left: 2px;
        font-size: 14px;
        font-weight: bold;
    }
}

/* RESPONSIVE: smaller screens */
@media only screen and (max-width: 684px) {
    .header-icon {
        height: 28px;
        width: 28px;
    }
    .searchinput {
      text-align: center;
      clear: both;
    }
    #searchinput_or {
        display: block;
        font-size: 30px;
        color: silver;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        text-align: center;
    }
    .striped-bg {
        background-image: url('../images/bg_striped_ver.png');
        background-repeat: repeat-y;
        background-position: top;
    }
    .detail-title {
        font-size: 12px;
        color: silver;
        text-transform: uppercase;
    }
    .detail-text {
        position: relative;
        top: -16px;
        padding-left: 2px;
        font-size: 15px;
        font-weight: bold;
    }
}

/* search inputs */
#search_container {
    display: block;
    width: 100%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.searchinput-container {
  margin-top: -10px;
}

.searchinput-text {
  background-color: #F9F9F9;
  border: 1px solid var(--maincolor);
  color: #828282;
  padding: 1em 3em;
  border-radius: 0.5em;
  outline:none;
  transition: all 0.2s ease-out;
  position: relative;
}
.search-error {
    display:none;
    font-size: 12px;
    color: var(--searchcolor);
    margin: 10px;
    text-transform: uppercase;
}
.searchinput-text:focus {
  background-color: white;
  box-shadow: 0 2px 3px #ccc;
  border-bottom: 0.25em solid var(--accentcolor);
  top:0px;
}

.button-search {
  position: relative;
  margin-top: 30px;
  background-color: var(--searchcolor);
  border: 1px solid var(--searchbordercolor);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: Arial, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  outline: 0;
  padding: 10px 25px;
  text-align: center;
  transform: translateY(0);
  transition: transform 150ms, box-shadow 150ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button-search:hover {
  box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
  transform: translateY(-1px);
}
.button-search:active {
  box-shadow: rgba(0, 0, 0, .05) 0 3px 9px 0;
  transform: translateY(+1px);
}

/* Waybill contents */
.card {
    display: none;
    margin: 5px;
    padding: 20px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
}
.card-wide {
    display: none;
    margin: 12px;
    padding: 20px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
}
.shipment-no {
    color: var(--shipmentcolor);
}
.status-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    margin: 0px;
}
.status-date {
    position: relative;
    top: -16px;
    color: silver;
}
.status-incomplete {
  /* display: none; */
  opacity: 0.1;
}

.status-tick {
    /* display: none; */
    position: relative;
    top: -10px;
    height: 14px;
    width: 14px;
}
.status-notick {
    display: none;
}


/* Footer */
.footer {
   color: silver;
   text-align: center;
   padding: 4px;
   font-size: 11px;
}