.flag-box > * {
    display: block;
}
.flag-box img {
    width: 75px;
    height: 50px;
    object-fit: cover;
    margin-bottom: 12px;
}
.flag-box .flag-box-title {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0em;
    color: #192F61;
    margin-bottom: 8px;
}
.flag-box .label {
    font-family: var(--filson-pro);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    color: #6F6F6F;
    margin-bottom: 7px;
}
.flag-box .value,
.flag-box .tooltip-value,
.flag-box .mark-tooltip {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin-bottom: 7px;
}
.flag-box .mark {
    background: rgba(0, 85, 184, .3);
    padding: 3px 7px;
    border-radius: 50%;
    color: rgba(0, 85, 184, 1);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 0em;
}
.flag-box .tooltip-wrapper {
    position: relative;
}
.flag-box .mark-tooltip {
    display: none;
    position: absolute;
}
.flag-box .mark:hover + .mark-tooltip {
    display: block;
    left: 0;
    font-size: 12px;
    width: 200px;
    padding: 5px;
    background: #fff;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
}
.flag-box .tooltip-outer.hidden,
.flag-box .label.hidden,
.flag-box .value.hidden {
    display: none;
}
.flag-box.a-c .flag-box-title {
    text-align: center;
    font-size: 15px;
}
.flag-box.a-c img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.flag-box.a-c .flag-box-title {
    text-align: center;
    padding-top: 60px;
}
.flag-box.a-c {
    position: relative;
}