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