.profile-fusion-rank-img img {
    max-width: 90%;
    margin-bottom: 10px;
}
.postbody-signature-achievement{
    margin-top: 1em;
}
.postbody-signature-achievement img {
    max-width: 100%;
    filter: drop-shadow(1px 1px 2px #222);
    margin: auto;
    display: block;
}

@media (max-width: 700px) {
    dd.profile-custom-field.profile-fusion-rank-img {
        display: block;
        margin-bottom: 0;
        max-width: 200px;
    }
}



/* progress bar */

:root {
    --body-bg: #e9e9e9;
    --color1: #004b6b;
    --color2: #ffffff;
    --bg-color1: #004b6b;
    --bg-color2: #ffffff;
    --font-color: white;
    --progress-color: #36B09A;
    --current-xp: 0;
    font-size: 10px;
}
.xp-bar {
    display: grid;
    grid-template-columns: 30px 1fr;
    width: 180px;
    max-width: 90%;
    /*height: 33px;*/
    max-height: 33px;
    padding: 2px;
    margin-bottom: 10px;
    white-space: nowrap;
    transform: skewX(345deg);
    background-color: var(--bg-color1);
    clip-path: polygon(10px 100%, 100% 100%, 100% 10px, calc(100% - 10px) 0%, 0% 0%, 0% calc(100% - 10px));
    color: var(--font-color);
}
.xp-bar .label {
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    margin: 2px;
    font-size: 0.8rem;
    font-weight: 900;
    text-align: center;
}
.xp-bar .label span {
    display: block;
    white-space: nowrap;
}
.xp-bar .label .level {
    font-size: 1.5rem;
}
.xp-bar .container {
    display: flex;
    flex-direction: column;
    margin: 2px 20px 2px 2px;
    clip-path: polygon(5px 100%, 100% 100%, 100% 5px, calc(100% - 5px) 0%, 0% 0%, 0% calc(100% - 5px));
}
.xp-bar .container .numbers {
    font-family: sans-serif;
    font-size: 8px;
    line-height: 12px;
    text-align: center;
    height: 10px;
    width: 100%;
    background-color: var(--bg-color2);
    color: var(--color1);
    margin-bottom: 1px;
}
.xp-bar .container .progress-bar {
    height: 100%;
    position: relative;
    background: white;
    padding: 3px;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}
.xp-bar .container .progress-bar .progress {
    display: block;
    height: 100%;
    font-size: 1rem;
    text-align: right;
    vertical-align: center;
    background-color: var(--progress-color);
    background-image: linear-gradient(center bottom, #2bc253 37%, #54f054 69%);
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    clip-path: polygon(3px 100%, 100% 100%, 100% 0%, 0% 0%, 0% calc(100% - 3px));
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
