$small-size: rem(32px);
$medium-size: rem(40px);
$large-size: rem(60px);

.p_ug {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: $small-size;
  max-width: 100%;
  background: color('teal');
  border-radius: $large-size / 2;
  user-select: none;

  &::after {
    content: '';
    display: block;
    padding-bottom: 100%;
  }
}

.p_dm {
  width: $small-size;
}

.p_xo {
  width: $medium-size;
}

.p_rx {
  width: $large-size;
}

.p_fm {
  background: color('teal');
}

.p_x8 {
  background: color('red');
}

.p_uk {
  background: color('orange');
}

.p_ig {
  background: color('green');
}

.p_ws {
  background: color('blue');
}

.p_q4 {
  background: color('purple');
}

.p_fo {
  background: transparent;
}

.p_il {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  border-radius: $large-size / 2;
  transform: translate(-50%, -50%);
}

.p_zu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: rem(2px);
}

.p_ly {
  width: rem(48px);
  height: auto;
  color: color('white');
}
