@font-face {
    font-family: "TTLakes";
    src: url("../fonts/TTLakes-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

/* @font-face {
    font-family: "TTLakes";
    src: url("https://localhost:9000/TTLakes-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
} */

html {
    height: 100%;
}

body {
    min-height: 100%;
}

.page {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.header {
    flex: 0 0 auto;

    padding: 0 22px;
    background:
        url('../img/bgr.png') no-repeat right -67px,
        linear-gradient(93.97deg, #2C2C2C 0.75%, #474A4D 97.82%),
        linear-gradient(0deg, #D9D9D9, #D9D9D9);
    height: 60px;
    color: #fff;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.content {
    flex: 1 1 auto;

    overflow-y: auto;
}

.footer {
    flex: 0 0 auto;

    padding: 0 30px;
    background:
        url('../img/bgr.png') no-repeat right -67px,
        linear-gradient(93.97deg, #2C2C2C 0.75%, #474A4D 97.82%),
        linear-gradient(0deg, #D9D9D9, #D9D9D9);
    height: 56px;
    color: #fff;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

h1 {
    font-family: 'TTLakes', Times, serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}

.info-icon {
    margin-right: 9px;
}

.property-list {
    font-family: 'TTLakes', Times, serif;
    font-style: normal;
}

.property {
    padding: 0 20px 9px 20px;
}
.property-ok {
    background-color: #d9f2e4;
}
.property-warning {
    background-color: #ffdedb;
}

.property-key {
    padding-top: 9px;
    padding-bottom: 4px;
    border-top: 1px solid #ebf5f8;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #788b9c !important;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.property-ok .property-key {
    border-top: 1px solid #d9f2e4;
}
.property-warning .property-key {
    border-top: 1px solid #ffdedb;
}
.property:first-child .property-key,
.property.property-version+.property .property-key {
    border-top-color: transparent;
}

.property-key a:link,
.property-key a:visited,
.property-key a:hover,
.property-key a:active {
    color: #f0a601;
}

.property-key-link {
    margin-right: 10px;
}

.property-value {
    /* height: 18px; */
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #3c4051;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.property-ok .property-value {
    color: #43c079;
}
.property-warning .property-value {
    color: #ff5c4a;
}

.property-value-icon {
    margin-right: 5px;
}

.hidden {
    display: none;
}
