.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 400px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 10px 10px 40px rgba(50, 50, 50, 0.8);
}

.devmode-banner {
    position: fixed;
    width: 250px;
    top: 0;
    left: calc(50vw - 125px);
    font-size: 11px;
    line-height: 11px;
    text-align: center;
    background-color: rgb(156, 3, 3);
    border-radius: 6px;
    z-index: 42000;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    opacity: 0.9;
    color: white;
}

.user-menu {
    display: flex;
    height: 60px;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    padding-right: 15px;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    transition: 0.15s all ease-in-out;
}

.user-menu * {
    transition: 0.15s all ease-in-out;
}

.user-menu:hover,
.nav.navbar-nav.navbar-right.open .user-menu {
    background: rgba(255, 255, 255, 0.02);
}

.user-menu:hover *,
.nav.navbar-nav.navbar-right.open .user-menu * {
    color: #ccc !important;
    border-color: #ccc !important;
}

.user-menu .user-profile-picture {
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 42px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    overflow: hidden;
}

.user-menu .user-profile-picture .fa {
    font-size: 22px;
    margin: 0;
}

.user-menu .user-profile-picture img {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
}

.user-menu .user-names span:last-child:not(:first-child) {
    opacity: 0.6;
}

.user-menu:hover img,
.nav.navbar-nav.navbar-right.open .user-menu img {
    filter: saturate(50%);
}

.user-menu .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 575px) {
    .navbar .horizontal-logo .logo-image {
        width: 30px;
        background-image: url("../img/logo/logo-ntt-white.svg");
    }

    .user-menu {
        max-width: 180px;
    }
}

.page-wrapper ol.breadcrumb {
    margin: 5px 0 0 12px;
}

.gap-20 {
    width: 100%;
    height: 20px;
}

.gap-40 {
    width: 100%;
    height: 40px;
}

.btn-action {
    padding: 0 6px;
    margin: 1px;
    height: unset;
    line-height: unset;
    font-size: 12px;
}


.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    display: inline-block;
    width: fit-content;
}

.dataTables_wrapper .dataTables_filter {
    float: right
}

.data-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
}

.data-flex .data-cell {
    text-align: center;
    width: 100%;
}

.data-flex .data-heading {
    font-size: 18px;
    font-weight: 600;
}

.data-flex .data-text {
    position: relative;
    font-size: 20px;
    width: fit-content;
    margin: 0 auto;
}

.data-flex .data-text[data-after]::after {
    position: absolute;
    content: 'ms';
    font-size: 13px;
    right: 0;
    margin: 7px -21px 0 0;
}

@media (max-width: 768px) {
    .data-flex {
        flex-direction: column;
        gap: 10px;
    }
}

.meter {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}