.trade-map-container{
    position: absolute;
    right:0;
    top: 0;

    width: 50%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
    overflow-y:auto;
    border-radius: 0% 5% 5% 0%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgb(133, 213, 250);
    border-radius: 10px;
    
}

.trade-row{
    display: flex;
    width: 100%;
    font-size: 2vh; 
    margin-top: 5%; 
    font-family: 'Art Nouveau', cursive;
    padding-left: 5px;
}
.trade-map-label-container{
    position: absolute;
    z-index: 500;
    right: 0;
    top: 100%;
    font-size: 2.2vh;
    font-family: 'Passero One', cursive;
    width: 40%;
    min-height: 8%;
    color: white;
}
.label-trace{
    position: absolute;
    top: 0;
    left: 0;

    width: 50%;
    height: 100%;
    border-radius: 10px;
    border-left: solid 2px rgb(255, 116, 116);
    border-right: solid 2px rgb(255, 116, 116);

    pointer-events: none;
}
.trade-map-label{
    position: absolute; 
    top: 0;

    width: 50%;
    height: 100%;

    padding-bottom: 5px;

    color: rgb(162, 236, 255);
    text-align: center;
    cursor: url(imgs/cursorButton.png) 20 20, auto;
}
.trade-map-label:hover{
    animation: buttonPop 0.1s linear forwards;
}
.trade-map-position{
    left: 0;
}
.trade-map-history{
    right: 0;
    opacity: 0.5;
}
.trade-map-container::-webkit-scrollbar{
    height: 1px;
    background: transparent;
}
.trade-map-container::-webkit-scrollbar-track{
    background: transparent;
}
.trade-map-container::-webkit-scrollbar-thumb{
    background: white;
}


.buying-power-container{
    position: absolute;
    right: 1.5%;
    bottom:100%;
    z-index: 1000;
    padding-bottom: 5px;
    width: 15%;
    color: rgb(165, 255, 112);
    transform-origin: top right;
    border-bottom: solid 1px rgb(112, 255, 29);
}
.buying-power-container:hover{
    animation: uiPop 0.1s linear forwards;
    background-color: white;
    color: black;
    padding: 10px;
}
.buying-power{
    font-family: 'Saira Stencil One', cursive;
    font-size: 2.3vh;
    width:100%;
}
