.frame.general .content .avatar {
  position: absolute;
  top: -207px;
  left: -169px;
  z-index: 1000;
  height: 512px;
  min-height: 512px;
  max-height: 512px;
  width: 512px;
  min-width: 512px;
  max-width: 512px;
  transform: scale(0.55);
}
.frame.general .content .avatar .icon,
.frame.general .content .avatar .division {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.frame.general .content .avatar .division {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  height: 21px;
  min-height: 21px;
  max-height: 21px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  color: var(--white);
  margin-top: -57px;
}
.frame.general .content .avatar .division p {
  margin-right: -1px;
  line-height: 1px;
  font-size: 21px;
}
.frame.general .content .avatar .icon {
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  border-radius: 100%;
}
.frame.general .content .avatar .ranked {
  position: relative;
  z-index: 5;
  width: 100%;
}
.frame.general .content .character {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 98px;
}
.frame.general .content .character p {
  text-align: center;
}
.frame.general .content .character .lp {
  font-size: 14px;
  line-height: 12px;
  color: var(--yellow);
  margin-bottom: 0px;
}
.frame.general .content .character .username {
  position: relative;
  height: 36px;
  min-height: 36px;
  max-height: 36px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.frame.general .content .character .username p {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 16px;
  line-height: 14px;
  color: var(--white);
  transform: translate(-50%, -50%);
  width: 100%;
}
.frame.general .content .win-total-loss-stats {
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: 10;
}

.frame.matches .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.frame.matches .content .matches__no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.frame.matches .content .last-match,
.frame.matches .content .matches {
  width: 100%;
}
.frame.matches .content .last-match {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0 8px;
}
.frame.matches .content .last-match .title {
  font-size: 14px;
  line-height: 14px;
  color: var(--white);
}
.frame.matches .content .last-match .title .last {
  font-size: 23px;
}
.frame.matches .content .last-match .match {
  flex-direction: row;
}
.frame.matches .content .last-match .match__stats .pings {
  justify-content: flex-start;
}
.frame.matches .content .last-match .match__stats .pings .bait {
  margin-left: 0;
}
.frame.matches .content .matches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px 8px;
  height: 100%;
}

.frame.session .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.frame.session .content .session-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}
.frame.session .content .session-title__text, .frame.session .content .session-title__kda {
  color: var(--white);
}
.frame.session .content .session-matches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px 8px;
  height: 100%;
}
.frame.session .content .session-matches__no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  grid-column: 1/-1;
  text-align: center;
  color: var(--white);
  opacity: 0.5;
}

@font-face {
  font-family: BeaufortForLOL;
  src: url("https://raw.communitydragon.org/latest/game/assets/ux/fonts/beaufortforlol-bold.otf");
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root {
  --white: #f0e6d2;
  --yellow: #c89b3c;
  --yellow100: #f7be0b;
  --gold500: #785a28;
  --gold700: #32281e;
  --blue500: #5383e8;
  --red600: #e84057;
  --green: #0ac8b9;
}

body {
  overflow: visible !important;
  margin-top: 100px !important;
}

* {
  box-sizing: border-box;
  font-family: BeaufortForLOL;
}
* * ::after,
* * ::before {
  box-sizing: border-box;
}

p {
  margin: 0;
}

/**
  * Widget
  */
.widget {
  position: relative;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
}
.widget .border {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 900;
}
.widget .border.left-right {
  z-index: 5000;
}
.widget .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.widget .background .banner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.widget .frame {
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  padding: 14px;
}
.widget .content {
  position: relative;
  width: 100%;
  height: 100%;
}

.widget.loading {
  --loading-size: 75px;
  --loading-border: 4px;
  position: relative;
}
.widget.loading::before {
  content: "";
  position: absolute;
  top: calc(50% - var(--loading-size) / 2);
  left: calc(50% - var(--loading-size) / 2);
  display: block;
  height: var(--loading-size);
  min-height: var(--loading-size);
  max-height: var(--loading-size);
  width: var(--loading-size);
  min-width: var(--loading-size);
  max-width: var(--loading-size);
  border: var(--loading-border) solid var(--yellow);
  border-radius: 100%;
  border-right-color: var(--gold500);
  transform-origin: center center;
  animation: loading 1s infinite linear;
}
.widget.loading::after {
  content: "";
  display: block;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  border: var(--loading-border) solid var(--gold700);
  background-color: rgba(220, 182, 102, 0.3);
}

.widget.error {
  --error-border: 4px;
  position: relative;
}
.widget.error::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  border: var(--error-border) solid var(--red600);
  background-color: rgba(227, 128, 141, 0.3);
}

/**
  * Animation
  */
.row {
  position: relative;
  z-index: 1500;
  display: flex;
}

/**
  * Win, loss, total
  */
.win-total-loss-stats {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}
.win-total-loss-stats p {
  font-size: 14px;
}
.win-total-loss-stats .total {
  color: var(--white);
}
.win-total-loss-stats .wins,
.win-total-loss-stats .percent {
  color: var(--green);
}
.win-total-loss-stats .losses {
  color: var(--red600);
}

/**
  * Match
  */
.match {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.match.win .champion::before {
  border-color: var(--blue500);
}
.match.win .stats {
  color: var(--blue500);
}
.match .champion {
  position: relative;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
}
.match .champion img {
  width: 100%;
  height: 100%;
}
.match .champion::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--red600);
}
.match__stats p {
  font-size: 13px;
}
.match__stats .stats {
  text-align: center;
  color: var(--red600);
}
.match__stats .pings {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2px;
}
.match__stats .pings img {
  margin-left: -12px;
  height: 10px;
  min-height: 10px;
  max-height: 10px;
  width: 10px;
  min-width: 10px;
  max-width: 10px;
}
.match__stats .pings p {
  text-align: center;
  color: var(--yellow100);
}

/*# sourceMappingURL=style.css.map */
