@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900');


.main-container {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #e9d3b3;
  z-index: 1000;
 
}

.main-container .row {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0px;
  background-color: #e6d1b1;
  margin-top: 0;
    margin-bottom: 0;
}

.row-item {
  padding: 10px;
  box-sizing: border-box;
}

.time {
  background: #e9d3b3;
  color: #302e25;

  text-align: center;
  font-weight: 600;
}

.logo-container {
  display: flex;
  align-items: center;
  
  position: relative;
  background-color: #a02221;
}

.logo {
  background: #a02221;
  color: #e9d3b3;
  padding-right: 10px;
  font-weight: 700;
}

.separator {
  width: 1px;
  height: 100%;
  background: #e9d3b3;
  margin: 0 5px;
}

.title {
  color: #ffffff;
  font-weight: 700;
}

.summary-container {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.summary {
  background: #e9d3b3;
  color: #302e25;
  font-weight: 400;
  display: inline-block;
  white-space: nowrap;
}

.time-indicator {
  width: 0;
  height: 2px;
  background: #a02221;
  position: absolute;
  bottom: 0;
  left: 0;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

@keyframes timeIndicator {
  from { width: 0; }
  to { width: 100%; }
}
