.xlview,
html,
body {
    height: 100%;
    margin: 0;
    background: #000;
    overflow: hidden;
}

.main-layout_left {
    height: 100vh;
    overflow: hidden;
}

.main-content_left {
    height: 100vh;
    padding: 0;
    overflow: hidden;
    margin-left: 0;
    display: flex;
    flex-direction: column;
}

.nti_header {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}
.nti_header_left {
    width: 210px;
    padding: 36px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tiles-area {
    color: white;
	background: linear-gradient(
	126deg, rgba(0,0,0,1) 0%, rgba(10,10,10,1) 100%);
    flex-direction: column;
    display: flex;
    align-items: stretch;
	margin-left: 0;
    padding: 20px;
    flex: 1;
    overflow: hidden;
    box-sizing: border-box;
    gap: 30px;
}
.tile-big, .tile-small {
    text-align: center;
    margin: 0;
    padding: 0 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.tile-big {
  	height: calc((100vh - 12px - 81px)/2);
    min-height: 200px;
}

.tile-small {
    height: calc((100vh - 12px - 81px)/4);
    min-height: 100px;
}

.level-name {
    text-align: left;
    font-size: min(max(7vh, 30px), 3vw);
}

.level-limit {
    text-align: left;
    font-size: min(max(4vh, 16px), 1.5vw);
}

.level-value {
    text-align: right;
    font-size: min(max(37vh, 180px), 19vw);
}

.level-value2 {
    text-align: right;
    font-size: min(max(19vh, 80px), 10vw);
}

@media only screen and (max-width: 1020px) {
    .nti_header_left {
        width: 100%;
        margin: 6px auto;
        height: 100px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0 0 0 20px;
    }
    .nti_menu_hamburger_xlview {
        position: absolute;
        right: 20px;
        top: 35px;
        margin-top: 0;
    }
    .main-content_left {
        margin-left: 0;
        height: calc(100vh - 112px);
        overflow: hidden;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    .main-layout_left {
        height: 100vh;
        overflow: hidden;
    }
    .tiles-area {
        flex: 1;
    }
    .tile-big {
        height: calc((100vh - 124px - 81px)/2);
    }
    .tile-small {
        height: calc((100vh - 124px - 81px)/4);
    }
    .level-name {
        font-size: 22px;
    }

    .level-limit {
        font-size: 15px;
    }
}
