:root {
    background: #fff;
}

#canvas-wrap {
    margin : 90px 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex : 2;

}

.xpbar{
    margin : 20px 20px;
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    position: relative;
    transition: opacity 0.3s ease-in-out;
}

#title_xp{
    color:white;
    text-align: center;
    font-size: 30px;
    font-family: 'K2D', sans-serif;
    margin: 20px 0 50px 0;
}

.xpbardiv{
    position: relative;
}

.xpbardiv > p {
    position: absolute;
    bottom: 33%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'K2D', sans-serif;
    font-size: 20px;
    transition: opacity 0.3s ease-in-out;
}

.choice_btn_foot{
    margin: 25px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
}

.choice_btn_foot > a > button > p {
    margin : 0;
    padding: 0;
    font-family: 'K2D', sans-serif;
}

.choice_btn_foot > a >button {
    margin: 15px 50px 25px 0;
    width: 250px;
    height: 55px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    background-color: #de1b00;
    border: none;
    z-index: 1;
}

.choice_btn_foot > a > button:last-child{
    margin-right: 0;
}

.choice_btn_foot > a > button:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    background-color: #ff561b;
    transition: all 0.3s ease;
}

.choice_btn_foot button:hover {
    color: #fff;
}

.choice_btn_foot button:hover:after {
    top: 0;
    height: 100%;
}
.choice_btn_foot button:active {
    top: 2px;
}

@media (max-width: 600px) {
    #canvas-wrap{
        margin-top: 20px;
    }
}

.xpbartext{
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #fff;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    z-index: 100;
    border-radius: 5px;
    padding: 17px;
    border-color: #f6f6f6;
    border-style: solid;
    font-family: 'K2D', sans-serif;
}

.xpbardiv:hover .xpbartext{
    opacity: 1;
}

.xpbardiv:hover .xpbar{
    opacity: 0;
}

.xpbardiv:hover p {
    opacity: 0;
}