.my-vote{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    max-width: 250px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0,0,0,0.5);
    margin: 0 auto;
    padding: 10px;
}
.my-vote #title{
    font-size: 1.1em;
    font-weight: bold;
}
.my-vote #subtitle{
    font-size: 0.8em;
    font-weight: bold;
    color: #444;
}
.my-vote .chart{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.my-vote .chart .item{
    position: relative;
    width: 100%;
    height: 25px;
    border: solid 1px #bbb;
    cursor: pointer;
    transition: 0.3s ease-out;
}
.my-vote .chart .item:hover{
    background-color: rgba(237, 20, 91,0.1);
}
.my-vote #level, .my-vote #label{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
}
.my-vote #percent{
    position: absolute;
    top: 0px;
    right: 0px;
}

.my-vote #level{
    background-color: rgba(237, 20, 91,0.4);
    display: block;
    width: 0%;
    transition: 1s ease-out;
}
.my-vote #label{
    font-size: 0.8em;
    color: #333;
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 3px;
}
.my-vote #votes{
    font-size: 0.6em;
    color: #333;
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 3px;
    text-align: end;
}
.my-vote #alt{
    font-size: 0.8em;
    color: #333;

}