.chart-shell{
    position: absolute;
    height: 45%;
    width: 35%;
    left: 32.5%;
    bottom: 100%;
    overflow: visible;
    z-index: 15000;
    transform-style: preserve-3d;
    border-radius: 5px;
    outline: none;
    transform-origin: top left;
    border: none;
    filter: saturate(3);
    opacity: 0.9;
    contain: layout;
    background-color: black;
    border-radius: 10px;
}
.chart-shell::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1000;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: var(--box-shadow, none);
    border: var(--border, none);
    border-top: none;
    border-bottom: none;
}
.holo-chart{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    filter: saturate(2);
    transform-origin: center;
    border-radius: 5px;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    z-index: 100;
    flex-shrink: 0;
}
.gleam-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 999; /* on top */
  border-radius: inherit;
  background: none;
  mix-blend-mode: screen;
  opacity: 0.4;
  transition: background-position 0.1s ease, opacity 0.2s ease;
}
.share-value{
    position: absolute;
    height: 13%;
    width: 20%;
    top: 101%;
    left: 4%;
    font-family: 'Passero One', cursive;
    font-size: 3vh;
    z-index: 2000;
    color: white;
}
.animate_pL{
    position: absolute;
    top: 101%;
    left: 4%;

    user-select: none;
    pointer-events: none;
    font-size: 3vh;
    font-family: 'Passero One', cursive;
    text-align: right;
    opacity: 1;
    transform: none;
    will-change:transform;
    transition: transform 2.5s ease-out;
}
.shares-label{
    position: absolute;
    height: 10%;
    bottom: 100%;
    right: 40%;
    font-family: 'Art Nouveau', cursive;
    color: lightskyblue;
    font-size: 2.5vh;
    z-index: 200;
}
.ticker-label{
    position: absolute;
    height: 15%;
    min-width: 50%;
    bottom: 100%;
    left: 0%;
    z-index: 10000;
    color: rgb(255, 255, 255);
    border-radius: 1000px;
    padding-left: 5px;
    background-size: contain;
    background-repeat: no-repeat;
}
.pL-label{
    position: absolute;
    height: 13%;
    width: 20%;
    top: 101%;
    right: -10%;
    font-family: 'Orbitron', cursive;
    font-size: 2vh;
    z-index: 200;
    color: lightskyblue;
}
.position-label{
    position: absolute;
    left: 25%;
    z-index: 200;
    font-size: 3vh;
    top: 102%;
    z-index: 5000;
    font-family: 'Passero One', cursive;
}
.time-label{
    position: absolute;
    right: 2%;
    top: 102%;
    z-index: 5000;
    font-size: 3vh;
    font-family: 'Orbitron', cursive;
}
.feed-label-container{
    position: absolute;
    left: 100%;
    width: 50%;
    color: rgb(87, 255, 87);
    font-size: 1.8vh;
    font-family: 'Roboto', cursive;
    display: none;
}
.feed-label{
    
    width: 25%;
}










.trade-option{
    position: absolute;
    font-family: 'Saira Stencil One', cursive;
    font-size: 3vh;
    color: white;   
    cursor: url('../imgs/cursorButton.png') 20 20, auto;
    border-radius: 20%;
    height: 50%;
}

@keyframes purchase-transform{
    100%{transform: translateX(-20%)}
}
@keyframes sell-max-transform{
    100%{transform: translateX(20%)}
}
@keyframes position-transform{
    100%{transform: translateX(20%)}
}           

.loading-container{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2000;
}
.loading-lottie{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.loading-lottie-underlay{
    transform: scale(2);
    transform-origin: center;
    animation: hueRotate 10s ease-in forwards;
    filter: saturate(0);
}
.loading-lottie-overlay{
    filter: grayscale(100%) brightness(0);
    z-index: 100;
}
@keyframes hueRotate {
  50%{
    filter: saturate(0) brightness(10);
  }
  100%{
    filter: saturate(3) brightness(10);
  }
}