﻿@import "/UI/Styles/styles.scss";

StickerMenu {
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: all;
  z-index: 0;
  
  .StickerMenu{
    position: absolute;
    left: 15%;
    top: 40%;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;

    .container {

      width: 350px;
      height: 350px;
      background-color: rgba(248, 246, 240, 0.22);
      border-radius: 50px;
      color: black;
      padding: 1px;
      margin: 1px;
      gap: 4px;
      flex-direction: column;
      flex-wrap: wrap;
      flex: 0 0 auto;
    }
  }



  &.show {
    opacity: 1;
  }
}

inputglyph {
  margin-top: 2px;
  background-size: contain;
  width: 60px;
  height: 60px;

  &.pressed {
    transform: scale(0.85);
    opacity: 0.8;
  }
  
  &.hidden{
    opacity: 0;
  }

  &:hover {
    transform: scale(1.05);
  }
}
