@import url('https://fonts.googleapis.com/css?family=Nunito');
:root {
    --background-color: #323232;
    --acid-height: 0;
    --display-charging: "none";
}

html,
body {
    margin: 0;
    width: 100%;
    /* height: 100%; */
    display: flex;
    font-family: 'Nunito', sans-serif;
    background-color: var(--background-color);
    transition: background-color 0.5s ease-out;
}

.cell {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
}

.percentage {
    font-size: 100%;
    font-weight: bold;
    color: #000;
    margin-top: 15px;
}

.percentage i {
    margin-right: 6px;
    display: var(--display-charging);
}

.info {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    margin: 5px;
    font-size: 80%;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.2s ease-in-out;
}

.info:hover {
    color: white;
}

.info i {
    margin-right: 5px;
}

.info a {
    color: inherit;
}

.battery {
    position: relative;
    width: 130px;
    height: 200px;
    border: 4px solid #000;
    border-radius: 25px;
}

.battery:after {
    position: absolute;
    top: -18px;
    left: 40px;
    width: 40px;
    height: 10px;
    background-color: #000;
    border-radius: 5px 5px 0px 0px;
    content: '';
}

.acid-container {
    overflow: hidden;
    height: calc(100% - 8px);
    border-radius: 18px;
    margin: 4px;
}

.acid-container .acid {
    height: 200px;
    display: flex;
    flex-direction: column;
    flex-flow: column-reverse;
}

.acid-container .acid .fill {
    background: #f57e56;
    height: 50%;
    width: 100%;
    flex-shrink: 0;
    transition: height 2s ease-in-out;
}

.acid-container .acid .waves {
    display: block;
    width: 100%;
    height: 10px;
    margin-bottom: -1px;
}

.acid-container .acid .waves .parallax>use {
    animation: move-forever 12s linear infinite;
}

.acid-container .acid .waves .parallax>use:nth-child(1) {
    animation-delay: -2s;
    fill: rgba(255, 255, 255, 0.6);
}

.acid-container .acid .waves .parallax>use:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 5s;
    fill: rgba(255, 255, 255, 0.8);
}

.acid-container .acid .waves .parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
    fill: white;
}

.my_battery .dxg-line path:first-child,
path:last-child {
    display: block !important;
}

.acid-container .acid .waves .parallax>use:nth-child(1) {
    animation-delay: -2s;
    fill: (#f57e56, 0.6);
}

.acid-container .acid .waves .parallax>use:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 5s;
    fill: (#f57e56, 0.8);
}

.acid-container .acid .waves .parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
    fill: #f57e56;
}

@keyframes move-forever {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}