/*NC Live Center Extension CSS*/
/*Begin extension CSS 752, Scoreboard Renderer*/
.scorecard-container {
  background-color: transparent;
  padding: 10px;
  margin-top: 15px;
}

.scoreboard-container-style {
  display: flex;
  justify-content: space-between;
}

.nc-team-image {
  max-width: 100px;
  max-height: 100px;
}

.score-list {
  display: flex;
  justify-content: center;
}

.score-icon {
  background: #333;
  font-size: 34px;
  color: white;
  width: 80px;
  height: 80px;
  margin: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.description {
  text-align: center;
  font-weight: 700;
  text-align: center;
  color: #de4a14;
  margin: 0 0 12px 0;
}

.team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-mobile-list {
  display: none;
}

.team-mobile {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .score-icon {
    height: 50px;
  }

  .scorer-name,
  .score-point,
  .scorer-time {
    font-size: 11px;
  }

  .scoreboard-container-style {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .team {
    display: none;
  }

  .team-mobile-list {
    display: flex;
    justify-content: space-between;
  }
}

.scorecard-container .scorer-name {
  font-style: italic;
}

.scorecard-container .score-point {
  font-weight: 500;
  padding-right: 5px;
}

.scorecard-container .scorer-time {
  padding-left: 5px;
  font-style: italic;
}

.scorers {
  margin: 10px 0;
}

.flash-now {
  animation-name: flash;
  animation-timing-function: ease-out;
  animation-duration: 2s;
  -webkit-animation-name: flash;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-duration: 2s;
}
@-webkit-keyframes flash {
  from {
    background: #43ac6a;
  }
  to {
    background: #333;
  }
}
@keyframes flash {
  0% {
    background: #43ac6a;
  }
  100% {
    background: #333;
  }
}
/*End extension CSS 752, Scoreboard Renderer*/

/*Begin extension CSS 754, Scorecard Renderer*/
.ncpost-container.score-board{
    min-height: 100px;
    position: relative;
}

.ncpost-comments.score-board{
    margin-top: 30px;
}

.score-board-time{    
    position: absolute;
    left: 15px;
    top: 35px;
    text-align: center;
}
.score-board-current-time{
    font-weight: 100;
    color: #2d2d2d;
    font-size: 16px;
    font-family: "Guardian Sans","Helvetica Neue","FontAwesome",Helvetica,Arial,sans-serif; 
}


.ncpost-container.score-board  .ncpost-title{
    margin-left:50px; 
}

.ncpost-container.score-board  .ncpost-content{
    margin-left:50px; 
}
/* 
.ncpost-container.score-board  .ncpost-comments-ui{
    margin-top: 30px;
}
.ncpost-container.score-board   .ncpost-comments:first-child{
    margin-top: 25px;
} */

.ncpost-container.score-board .ncpost-comments-container{
    margin-top: 35px;
}

.ncpost-container.score-board .ncpost-content + .score-board-time + .ncpost-comments-container{
    margin-top: 50px;
}

.ncpost-container.score-board .ncpost-title ~ .ncpost-content ~ .score-board-time ~ .ncpost-comments-container{
    margin-top: 30px;
}

.yellow-svg{
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
}

.red-svg{
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
}

.yellow-svg-div{    
    margin-bottom:5px; 
}

.red-svg-div{
    margin-bottom:5px;
}


.score-board-yellow-path{
    fill:#ffd800;    
}

.score-board-red-path{
    fill:#de4a14;    
}
/*End extension CSS 754, Scorecard Renderer*/


.nc-lc-extensions-css{ display: block }