.navBar{
    display: flex;
    align-items: center;
	width: calc(100% - 20px);
    max-width: 500px;
    margin: 0 auto;
    justify-content: flex-start;
}


.navBar__homeContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    width: auto;
}
.navBar__homeContainer__image{
    max-height: 100%; /* Max height of the superior container */
    width: auto; /* Maintains the aspect ratio */
    display: block;
}   


.navBar__xpLevelContainer{
    /* Dimensions */
    width: 100%;
    max-width: 60px;
    height: 100%;
    max-height: 70px;
    box-sizing: border-box;
    padding: 5px 0px 0px 0px;
    /* Border */
    border-radius: 10px;
    border: 2px solid var(--lightGrey);
    /* Positioning */
    position: absolute;
    top: -10px;
    left: calc(50% - 20px);
    /* Display */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Text */
    color: white;
    font-size: 10px;
}
.navBar__xpLevelContainer__image{
    max-height: 100%;
    width: auto;
    display: block;
    padding: 5px;
    box-sizing: border-box;
}


.navBar__progressContainer{
    /* Dimensions */
    width: 100%;
    max-width: 60px;
    height: 100%;
    max-height: 70px;
    box-sizing: border-box;
    padding: 5px 0px 0px 0px;
    /* Border */
    border-radius: 10px;
    border: 2px solid var(--lightGrey);
    /* Positioning */
    position: absolute;
    top: -10px;
    left: calc(50% + 45px);
    /* Display */
    display: flex;
    justify-content: center;
    align-items: center;
}
.navBar__progressContainer__image{
    max-height: 100%;
    width: auto;
    display: block;
    padding: 5px;
    box-sizing: border-box;
}

.navBar__notificationOK {
    /* Size and positioning */
    width: 120px;
    height: 80px;
    position: fixed;
    top: -90px; /* Hidden above the viewport */
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    
    /* Appearance */
    border-radius: 10px;
    background-color: var(--veryLightGreen);
    transition: top 0.25s ease;
    box-shadow: var(--grey-boxShadow);
    
    /* Text alignment */
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Aligns text to the bottom */
    padding-bottom: 10px;   /* Adds some spacing from the bottom edge */
    text-align: center;
    font-size: 14px;
    color: white;
}
