﻿@import 'Styles/styles.scss';

ApeCoinBalance {
  position: absolute;
  bottom: 170px;
  right: -350px;
  min-width: 148px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 4px;
  align-items: center;
  gap: 8px;
  transition: all 0.4s;
  
  &.show {
    opacity: 1;
    right: 100px;
  }
  
  > img {
    width: 64px;
    height: 64px;
    margin-left: 16px;
    flex-shrink: 0;
    filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.8));
  }
  
  .balance {
    font-family: $font-secondary;
    color: #e1e1e1;
    font-size: 52px;
    margin-right: 20px;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.8));
  }
}