.card-balance {
    display: none;
}

.card-balance main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 40vw;
    margin: 0 auto;
    border-radius: 45px;
    background-color: #00000080;
}

.card-balance main .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 5% 0 3% 0;
    color: #fff;
    font-family: "Geologica";

    h2 {
        font-size: 2em;
        margin-bottom: 10%;
        color: #009A62;
    }

    h1 {
        font-size: 3em;
    }
}

.card-balance main .inputs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5%;
    width: 90%;
}

.card-balance main .inputs #balance-input-range {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    width: 100%;
    height: 16px;
    background: #fff;
    border-radius: 16px;
}

.card-balance main .inputs #balance-input-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #00CC82;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0px 10px 10px rgba(0, 0, 0, 0);
}

.card-balance main .inputs #balance-input-range:active::-webkit-slider-thumb {
    transform: scale(1.1);
    background: #00ff73;
    box-shadow: 0 0 15px #00ff7380;
}

.card-balance main .inputs #balance-continue {
    margin-top: 6%;
    padding: 2% 4%;
    outline: none;
    color: #005536a2;
    font-size: 1.5em;
    font-weight: 900;
    font-family: "Geologica";
    border: none;
    border-radius: 15px;
    background: #ffffff90;
    transition: .4s ease-in-out;
}

.card-balance main .inputs #balance-continue:hover {
    border-radius: 10px;
    color: #000;
    background: #ffffffec;
}

@media (max-width: 900px) {
    .card-balance main {
        width: 90%;
        border-radius: 15px;
    }

    .card-balance main .text h1 {
        font-size: 2.5em;
    }
}