* {
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Helvetica', 'Verdana', sans-serif;
  font-weight: 400;
  font-display: optional;
  color: #444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html {
  overflow: hidden; 
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  background: #ececec; 
}

.header {
  width: 100%;
  height: 56px;
  color: #FFF;
  background: #3F51B5;
  position: fixed;
  font-size: 20px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 9px 1px rgba(0, 0, 0, 0.12), 0 4px 2px -2px rgba(0, 0, 0, 0.2);
  padding: 16px 16px 0 16px;
  will-change: transform;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s, -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  z-index: 1000; 
  }
  .header .headerButton {
   width: 24px;
   height: 24px;
   margin-right: 16px;
   text-indent: -30000px;
   overflow: hidden;
   opacity: 0.54;
   -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
   transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
   border: none;
   outline: none;
   cursor: pointer; 
   }
  .header #butRefresh {
   background: url(../images/ic_refresh_white_24px.svg) center center no-repeat; 
   }
  .header #butAdd {
   background: url(../images/ic_add_white_24px.svg) center center no-repeat; 
   }

.header__title {
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; 
  }

.loader {
  left: 50%;
  top: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
.loader #ud811Spinner {
  box-sizing: border-box;
  stroke: #673AB7;
  stroke-width: 3px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
  animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite; 
  }

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  to {
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); } }

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  to {
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); } }

@-webkit-keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0; }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0; }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

.main {
  padding-top: 60px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; 
  }

.dialog-container {
  background: rgba(0, 0, 0, 0.57);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1); 
  }

.dialog-container--visible {
  opacity: 1;
  pointer-events: auto; 
  }



.send-container {
  background: rgba(0, 0, 0, 0.57);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1); 
  }

.send-container--visible {
  opacity: 1;
  pointer-events: auto; 
  }

.alert-container {
  background: rgba(0, 0, 0, 0.57);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1); 
  }

.alert-container--visible {
  opacity: 1;
  pointer-events: auto; 
  }  
  
.dialog {
  background: #FFF;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px rgba(0, 0, 0, 0.48);
  min-width: 280px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) translateY(30px);
  transform: translate(-50%, -50%) translateY(30px);
  -webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s, -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  padding: 24px; 
  }

.card {
  padding: 16px;
  position: relative;
  box-sizing: border-box;
  background: #fff;
  border-radius: 2px;
  margin: 16px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); 
  }

.Shipment-Tracking .TrackingCode 
	{
  font-size: 1.75em; 
  }

.Shipment-Tracking .date, .Shipment-Tracking .description {
  font-size: 1.25em; 
 }

.Shipment-Tracking .current {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; 
  }
  .Shipment-Tracking .current .icon 
  {
    width: 128px;
    height: 128px; 
  }
  .Shipment-Tracking .current .visual 
  {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 4em; 
   }
    .Shipment-Tracking .size .scale 
    {
      font-size: 1em;
      vertical-align: super; 
     }
    .Shipment-Tracking .size .value
    {
      font-size: 1.75em;
      padding-left:30px;
     }
  .Shipment-Tracking .current .visual, .Shipment-Tracking .current .description 
  {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }
  .Shipment-Tracking .current .finalPOD:before 
  {
  	content: "Final POD: ";
  	color: #888; }
  	.Shipment-Tracking .current .CurState:before {
    content: "Last State: ";
    color: #888; }
  	.Shipment-Tracking .current .Actions:before {
    content: "Actions: ";
    color: #888; }
  	.Shipment-Tracking .current .shippedTo:before {
    content: "Shipped To: ";
    color: #888; }
    .Shipment-Tracking .current .TrackingNumber:before {
    content: "Tracking Number: ";
    color: #888; }
    .Shipment-Tracking .current .pollen:before {
    content: "Pollen Count: ";
    color: #888; }
    .Shipment-Tracking .current .pcount:before {
    content: "Pollen ";
    color: #888; }
  .Shipment-Tracking .current .departureDate:before 
  {
  	content: "Departure Date: ";
  	color: #888; }
  .Shipment-Tracking .current .vessel:before 
  {
  	content: "Vessel: ";
  	color: #888; }  	
  .Shipment-Tracking .current .portOfLoad:before 
  {
  	content: "Port Of Load: ";
  	color: #888; }  	
  .Shipment-Tracking .current .portOfDischarge:before 
  {
  	content: "Port Of Discharge: ";
  	color: #888; }  	
  .Shipment-Tracking .current .transhipment:before 
  {
  	content: "Transhipment: ";
  	color: #888; }  	
.Shipment-Tracking .icon 
{
  background-repeat: no-repeat;
  background-size: contain; 
}
  .Shipment-Tracking .icon.state-1 {
    background-image: url("../images/state1.png"); }

.Shipment-Tracking .icon.state-2 {
    background-image: url("../images/state2.png"); }



.Shipment-Tracking .log
{

}

.Shipment-Tracking .log .loghead_date
{
background-image:url(../images/col_head_normal.jpg);
text-align:center; 
width:15%;
height:41px;
color:#FFFFFF;
font-weight:bold;
}

.Shipment-Tracking .log .loghead_location
{
background-image:url(../images/col_head_normal.jpg);
text-align:center; 
width:20%;
height:41px;
color:#FFFFFF;
font-weight:bold;
}


.Shipment-Tracking .log .loghead_state
{
background-image:url(../images/col_head_normal.jpg);
text-align:center; 
width:25%;
height:41px;
color:#FFFFFF;
font-weight:bold;
}

.Shipment-Tracking .log .loghead_vessel
{
background-image:url(../images/col_head_normal.jpg);
text-align:center; 
width:20%;
height:41px;
color:#FFFFFF;
font-weight:bold;
}

.Shipment-Tracking .log .loghead_voyage
{
background-image:url(../images/col_head_normal.jpg);
text-align:center; 
width:20%;
height:41px;
color:#FFFFFF;
font-weight:bold;
}



.Shipment-Tracking .log .log_date
{
text-align:center; 
width:15%;
}

.Shipment-Tracking .log .log_location
{
text-align:left; 
width:20%;
}
/*
.Shipment-Tracking .log .log_state_lable
{
text-align:center; 
width:20%;
}
*/
.Shipment-Tracking .log .log_state
{
width:25%;
}

.Shipment-Tracking .log .log_vessel
{
width:20%;
}
.Shipment-Tracking .log .log_voyage
{
width:20%;
}


.mainlog_table tbody:nth-child(odd) td{
background-color:#EAEAEA;
}
.mainlog_table tbody:nth-child(even) td{
background-color:#C0C0C0;
}
@media (max-width: 450px) {
  .Shipment-Tracking .date, .Shipment-Tracking .description {
    font-size: 0.9em; }
  .Shipment-Tracking .current .icon {
    width: 96px;
    height: 96px; }
  .Shipment-Tracking .current .visual {
    font-size: 3em; }
  .Shipment-Tracking .future .oneday .icon {
    width: 32px;
    height: 32px; } }
