﻿@import "../Styles/styles.scss";

LevelBadge {
  position: absolute;
  bottom: 64px;
  padding-right: 64px;
  height: 100px;
  
  background-color: rgba(0, 0, 0, 0.67);
  
  border-left: 6px;

  &.border-color-common    { border-color: #c9c9c9; }
  &.border-color-uncommon  { border-color: #a5ce47; }
  &.border-color-rare      { border-color: #6176ff; }
  &.border-color-epic      { border-color: #9d80ff; }
  &.border-color-legendary { border-color: #ffbf11; }
  
  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    margin-left: 64px;
    gap: 4px;
  }
  
  .level-badge {
    
    color: $text-primary-color;
    font-family: $font-secondary;
    font-size: 32px;
    
    .level-label {
      margin-right: 8px;
    }
  }

  .xp-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 6px;

    .xp-fill {
      height: 100%;
      transition: width 0.3s ease;
    }
  }
}