@import '../Styles/styles.scss';

CategoryTitle {
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 115px;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;

  > img {
    position: absolute;
    bottom: 60px;
    width: 62px;
    height: 62px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  > i {
    position: absolute;
    bottom: 60px;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    color: white;
    text-stroke: 6px black;
  }

  .category-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    bottom: 21px;
  }

  &:hover {
    transform: scale(1.05);
  }

  &.selected {
    height: 119%;
    background-image: $selected-gradient;
    transition: all 0.1s;
  }
}
