body {
  background-color: #ccc;
}

/*total score text*/
#totalScore {
  color: black;
}


.score-wrap {
  position: absolute;
  top: 150px;
  right: 150px;
  width: auto;
  z-index: 110;
}

.score-label {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 20;
  text-align: center;
  margin-bottom: 0px;
  line-height: 1;
}

.score-text {
  font-size: 16px;
}

.pos-icon {
  font-size: 24px;
}

.neg-icon {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 20;
  text-align: center;
  margin-top: -5px;
}

.score-markers {
  flex: 1;
  border-bottom: 1px dotted rgb(255, 255, 255, 0.5);
  z-index: 10;
}

.score-markers:nth-child(15) {
  border-top: solid 0px #fff !important;
  background-color: #fff;
  max-height: 5px !important;
  position: relative;
}


/*progress bar component*/
.score-progress-bar {
  background-color: rgb(0, 0, 0, 0.3);
  width: 40px;
  height: 230px;
  border: 2px solid #fff;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 0;
  box-shadow: 0px 0px 100px 30px rgb(0, 0, 0, 0.5);
}

.positive-bar,
.negative-bar {
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  transform-origin: bottom;
}

.positive-bar {
  background-color: #0018FF;
}

.negative-bar {
  background-color: #770020;
  transform: scaleY(-1);
}


@media screen and (min-width: 1025px) and (max-width: 1280px) {

   /* Styles for macbook */
   .score-wrap {
    top: 50px;
    right: 80px;
   }

  .score-progress-bar {
    width: 30px;
    height: 180px;
    border: 1px solid #fff;
  }

 }



/*iPad*/
@media screen and (max-width: 1024px) {
   
  .score-wrap {
    top: 40px;
    right: 40px;
   }

   .score-progress-bar {
    width: 30px;
    height: 200px;
    border: 1px solid #fff;
  }

  .score-text {
    font-size: 14px;
  }

}


/*Mobile Landscape*/
@media screen and (max-width: 767px) {

  .score-wrap {
    top: 20px;
    right: 10px;
  }

  .score-progress-bar {
    width: 18px;
    height: 120px;
    border: 1px solid #fff;
  }

  .score-text {
    font-size: 12px;
  }

}


/*Mobile Portrait*/
@media screen and (max-width: 479px) {



}