﻿@import '../Styles/styles.scss';

ShopItemPanel {
  width: 100%;
  height: 100%;
  font-size: 48px;
  color: white;
  font-family: $font-secondary;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-stroke: 4px black;
  opacity: 1;
  transition: all 0.25s;
  
  .lower {
    gap: 8px;
    font-size: 38px;
  }
  
  &.hide {
    opacity: 0;
  }
  
  &.hovering {
    transform: scale(1.2);
  }
}