/* new movie app  */


.bg-sepia {
  background-color: white ;
}

.bg-filmrole {
  background-color: #1a1a1a ;
}

.roleholes {
  border-left: dashed 20px #e2e2e2;
  border-right: dashed 20px #e2e2e2;

  display: inline-block;
}

.stars-solid {
  font-size:  20px;
  color: #f00c93;
}

.stars-empty {
  font-size:  20px;
  color: #f00c93;
}

.image_with_badge_container {
  display: inline-block; /* keeps the img with the badge if the img is forced to a new line */
  position: relative;
  margin-bottom: 5px;
}

.badge-on-image {
  position: absolute;
  bottom: 2px; /* position where you want it */
  left: 2px;
  padding: 3px 6px;
}

/* Friends list select container  */
.list-group-item {
  user-select: none;
}

.list-group input[type="checkbox"] {
  display: none;
}

.list-group input[type="checkbox"] + .list-group-item {
  cursor: pointer;
}

.list-group input[type="checkbox"] + .list-group-item:before {
  content: "\2713";
  color: transparent;
  font-weight: bold;
  margin-right: 1em;
}

.list-group input[type="checkbox"]:checked + .list-group-item {
  background-color: #0275D8;
  color: #FFF;
}

.list-group input[type="checkbox"]:checked + .list-group-item:before {
  color: inherit;
}



.image-container {
    position: relative;
  }
  
  
  .centered-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
  }

  /* RADIO BUTTON SPACER */
  .label-spacer{
    margin:5px;
  }
  
  /* HIDE RADIO */
  [type=radio]{ 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* IMAGE STYLES */
  [type=radio] + img {
    opacity: .5;
    margin: 2px;
    padding: 2px;
    cursor: pointer;
    outline: 2px solid #e7e7e7;
    border-radius: 8px;
  }
  
  /* CHECKED STYLES */
  [type=radio]:checked + img {
    opacity: 1;
    outline: 4px solid #6ca10f;

    border-radius: 8px;
  }
  
  .circle_score {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    text-size-adjust: 32px;
    color:white;
    text-align: center;
    background: orange;
  }
  
  .score_100 {
    background: #7fcd31;
  }
  .score_90 {
    background: #9fcd35;
  }
  .score_80 {
    background: #c1cc36;
  }
  .score_70 {
    background: #e1c63b; 
  }
  .score_60 {
    background: #f8c43d;
  }
  .score_50 {
    background: #f3a74c; 
  }
  .score_40 {
    background: #ef874c;
  }
  .score_30 {
    background: #ec654e; 
  }
  .score_20 {
    background: #ea484d;
  }
  .score_10 {
    background: #e43e3d;
  }
  .score_00 {
    background: #d1d1d1;
  }
  
  
  .score_5 {
    background: #7fcd31;
  }
  .score_4 {
    background: #c1cc36;
  }
  .score_3 {
    background: #f8c43d;
  }
  .score_2 {
    background: #ef874c;
  }
  .score_1 {
    background: #ea484d;
  }
  .score_00 {
    background: #d1d1d1;
  }
  