.badge-container{
    position: absolute;
    left: 5%;
    bottom: 0;
    height: 50%;
    width: 90%;

    border-radius: 20px;
    overflow: hidden;
    overflow-y: auto;
    background-color: rgba(0, 229, 255, 0.104);
}
.badge-container::-webkit-scrollbar-thumb{
    background-color: white;
}
.badge-container-title{
    position: absolute;
    width: 95%;
    text-align: center;
    bottom: 50%;
    font-size: 4vh;
    color: aqua;
    font-family: 'Passero One', cursive;
}
.badge{
    position: absolute;
    width: 80%;
    height: 25%;
    top: 5%;
    left: 15%;
    border-radius: 20%;
    background-color: black;
    transform: scale(0.85);
    transform-origin: center;
    border: solid 1px aqua;
}
.badge::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: solid 1px;
    border-color: aqua;
    z-index: -1;
    border-radius: 20%;
    animation: var(--anim, none);
    transform-origin: center;
}
.badge:hover{
    animation: badgePop 0.1s linear forwards;
    cursor: url(imgs/cursorButton.png) 20 20, auto;
}


.badge-symbol{
    height: 100%;
    width: 30%;
    margin-left: -15%;
    border-radius: 1000px;
    background-color: black;
    font-size: 6vh;
    border-left: solid 2px white;
    box-shadow: inset 0px 0px 10px aqua;
}
.badge-title{
    position: relative;

    top: -95%;
    left: 5%;
    font-size: 2.4vh;
    font-family: 'Passero One', cursive;
    text-align: center;
}
.badge-descrip{
    position: relative;

    top: -70%;
    left: 25%;
    width: 50%;
    font-size: 1.7vh;
    font-family: 'Roboto', cursive;
    text-align: center;
}
.badge-reward{
    position: relative;
    left: 80%;
    top: -110%;
    text-shadow: 0px 0px 20px white;

    font-size: 3vh;
    font-family: 'Passero One', cursive;
}




.popup-badge-container{
    position: absolute;
    top: -15%;
    left: 40%;

    width: 25%;
    height: 15%;
    box-shadow: 0px 0px 10px rgb(0, 238, 255);
    background-color: black;
    z-index: 150000;
    border-radius: 20%;
    transform-origin: center top;
    opacity: 0;
}
.popup-badge-container:hover{
    animation: uiPop 0.1s linear forwards;
}
.popup-badge-symbol{
    position: absolute;

    right: 85%;
    top: 0;

    width: 30%;
    height: 100%;

    border: solid 2px rgb(0, 238, 255);
    box-sizing: border-box;
    border-radius: 1000px;
    background-color: black;
    box-shadow: inset 0px 0px 20px rgb(0, 238, 255);
    font-size: 10vh;
    color: aqua;
    animation: float-symbol 5s ease-in-out infinite;
}
.popup-badge-title{
    position: absolute;
    width: 75%;
    height: 40%;
    left: 15%;
    top: 5%;

    color: lightskyblue;
    font-size: 3vh;
    font-family: 'Passero One', cursive;
    text-align: center;
}
.popup-badge-descrip{
    position: absolute;
    width: 60%;
    height: 45%;
    left: 20%;
    bottom: 5%;

    color: lightskyblue;
    font-size: 2vh;
    font-family: 'Roboto', cursive;
    text-align: center;
}
.popup-badge-reward{
    position: absolute;
    right: 5%;
    bottom: 25%;
    text-shadow: 0px 0px 20px white;

    color: aqua;
    font-size: 3vh;
    font-family: 'Passero One', cursive;
}
.popup-badge-lottie-container{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.popup-badge-lottie{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(2);
    filter: grayscale(100%) brightness(3) drop-shadow(0px 0px 20px white)
}


@keyframes float-symbol{
    0%{transform: translateY(-3%);}
    50%{transform: translateY(3%);}
    100%{transform: translateY(-3%);}
}

@keyframes badgeOutline{
    100%{transform: scale(1.4); opacity: 0;}
}
@keyframes badgePop{
    100%{transform: scale(1.05)}
}

@keyframes cashBadge{
    0%{transform: scale(1);}
    50%{transform: scale(1.05);}
    100%{transform: scale(1)}
}