/* --------------------------------

Primary style

-------------------------------- */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.info-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 100%;
  margin: 0 auto;
}
.info-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* --------------------------------

Main components

-------------------------------- */
header {
  height: 200px;
  line-height: 200px;
  text-align: center;
  background: #303e49;
}
header h1 {
  color: white;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 1170px) {
  header {
    height: 300px;
    line-height: 300px;
  }
  header h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

#info-timeline {
  position: relative;
  padding: 10px 0;
  margin-bottom: 10px;
}
#info-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #d7e4ed;
}

#info-timeline::before {
  left: 50%;
  margin-left: -2px;
}

.info-timeline-block {
  position: relative;
  margin: 15px 0;
}
.info-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.info-timeline-block:first-child {
  margin-top: 0;
}
.info-timeline-block:last-child {
  margin-bottom: 0;
}

.info-timeline-score {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 4px #e9f0f5, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.info-timeline-score img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}
.info-timeline-score.info-goal {
  background: #75ce66;
  display: table;
}
.info-timeline-score.info-penalty {
  background: #c03b44;
  display: table;
}
.info-timeline-score.info-start {
  background: #f0ca45;
  display: table;
}
.info-timeline-score.info-empty {
  background: #F0F0F0;
  display: table;
}
  .info-timeline-score {
    width: 60px;
    height: 36px;
    left: 50%;
    margin-left: -30px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .info-timeline-score.is-hidden {
    visibility: hidden;
  }
  .cssanimations .info-timeline-score.bounce-in {
    visibility: visible;
    -webkit-animation: info-bounce-1 0.6s;
    -moz-animation: info-bounce-1 0.6s;
    animation: info-bounce-1 0.6s;
  }


.info-timeline-content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 0 #D5D5D5;
}
.info-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.info-timeline-content h2 {
  color: #303e49;
}
.info-timeline-content p, .info-timeline-content .info-read-more, .info-timeline-content .info-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.info-timeline-content .info-read-more, .info-timeline-content .info-date {
  display: inline-block;
}
.info-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.info-timeline-content .info-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  border-radius: 0.25em;
}
.no-touch .info-timeline-content .info-read-more:hover {
  background-color: #bac4cb;
}
.info-timeline-content .info-date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}
.info-timeline-content.home::before {
  content: '';
  position: absolute;
  top: 12px;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-left: 7px solid #e9f0f5;
}
.info-timeline-content.away::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #e9f0f5;
}


  .info-timeline-content {
    margin-left: 0;
    width: 43%;
    background: #e9f0f5;
  }
  .info-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: white;
  }
  .info-timeline-content .info-read-more {
    float: left;
  }
  .info-timeline-content .info-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    font-size: 1rem;
  }
  .info-timeline-block .away {
    float: right;
  }
  .info-timeline-block: .away::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }
  .info-timeline-block: .away .info-read-more {
    float: right;
  }
  .info-timeline-block: .away .info-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cssanimations .info-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .info-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: info-bounce-2 0.6s;
    -moz-animation: info-bounce-2 0.6s;
    animation: info-bounce-2 0.6s;
  }

  /* inverse bounce effect on even content blocks */
  .cssanimations .info-timeline-block:nth-child(even) .info-timeline-content.bounce-in {
    -webkit-animation: info-bounce-2-inverse 0.6s;
    -moz-animation: info-bounce-2-inverse 0.6s;
    animation: info-bounce-2-inverse 0.6s;
  }

.info-timeline-content .playerTagContainer{
	float: left;
}
.info-timeline-content-empty{
    margin-left: 0;
    width: 43%;
	padding: 14px;
}

.info-timeline-score-element{
	text-align: center;
	display: table-cell;
	vertical-align: middle;
}

.resultPageTabElement #actionFilter{
	display: block;
	margin:0 auto;
}