

.container-ws {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100vh;
}

.content-ws {
    flex: calc(80% - 40px);
    background: #fff;
    min-height: 100vh;
}

.content-title {
    text-align: right;
    margin: 10px 25px;
    font-weight: 100;
    text-transform: uppercase;
}

.content-description {
    margin: 10px 25px;
    text-align: right;
}

.content-description a {
    display: inline-block;
    padding: 5px;
    background: #5e5e5e;
    color: #fff;
    text-decoration: none;
    border-radius: .25rem;
}

.sidebar {
    flex: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-lt-button {
    margin: 20px 0;
    text-decoration: none;
    width: 100%;
}

.sidebar-lt-button:hover,
.sidebar-lt-button:active,
.sidebar-lt-button:visited {
    text-decoration: none;
}

.sidebar-menu {
    width: 80%;
    margin-top: 50px;
    color: #fff;
}

.sidebar-menu ul {
    margin-top: 20px;
}

.sidebar-menu ul li:first-child {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sidebar-menu ul li a,
.sidebar-menu ul li a:hover,
.sidebar-menu ul li a:focus,
.sidebar-menu ul li a:visited {
    color: #fff;
    text-decoration: none;
    margin: 2px 0;
    display: inline-block;
}

.sidebar-menu ul li a:hover {
    border-bottom: solid 1px;
}

.view-health {
    background: #fff;
    overflow: hidden;
    padding-bottom: 150px;
    height: 100%;
}

.view-health-dark {
    background: #5e5e5e;
}

.view-data-wrapper {
    display: flex;
    flex-direction: column;
}

.health-data {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.health-status {
    font-size: 7rem;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
}

.version {
    margin: 0px 25px;
    color: #fff;
    background: #383428;
    border-radius: .3rem;
    padding: 5px;
    align-self: flex-end;
}

.dependencies,
.services {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    padding-top: 25px;
    width: 80%;
    align-items: flex-start;
}

.refresh {
    display: flex;
    margin-top: 25px;
    padding-top: 25px;
    width: 80%;
    align-items: flex-start;
}

.refresh button {
    background: #68a691;
    border: 0;
    border-radius: .3rem;
    padding: 5px 10px;
    outline: 0;
    text-shadow: 1px 1px 1px #808080;
    color: #fff;
}

.dependencies h2,
.services h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.deps-wrapper,
.servs-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.deps-wrapper div,
.servs-wrapper div {
    text-align: center;
    font-size: .9rem;
    margin: 5px 5px 0 0;
    text-shadow: 1px 1px 1px #808080;
    display: inline-flex;
}

.deps-wrapper div .dep-label,
.servs-wrapper div .serv-label {
    background: #383428;
    color: #fff;
    padding: 5px 10px;
    border-radius: .3rem 0 0 .3rem;
}

.deps-wrapper div .dep-status,
.servs-wrapper div .serv-status {
    border: 0 !important;
    padding: 5px 10px;
    border-radius: 0 .3rem .3rem 0;
}

.status-ok {
    background: #68a691;
    color: #f5f5f5;
    border: solid 5px #B3D2C8;
}

.status-bad {
    background: #ffbf00;
    color: #000;
    border: solid 5px #ffd24d;
}

.view-documentation {
    background: #fff;
    overflow: hidden;
    height: 100%;
}

.view-data-wrapper {
    height: 100%;
}

.view-documentation {
    background: #f0f0f0;
}

.view-documentation iframe {
    height: 100%;
    width: 100%;
    border: 0;
    opacity: 0;
}

.view-documentation table {
    border-collapse: collapse;
    margin: 25px;
    font-size: 1rem;
    font-family: sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.view-documentation table thead tr {
    background: #27848E;
    color: #fff;
    text-align: left;
}

.view-documentation table tbody tr {
    background: #fff;
    text-align: left;
}

.view-documentation table th,
.view-documentation table td {
    padding: 12px 15px;
    font-weight: 600;
}

.view-documentation table td.parent {
    background: #78BC61;
    color: #fff;
}

.view-documentation table td span.description {
    font-size: .8rem;
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    width: 100%;
    color: #41424C;
    font-weight: 300;
    margin-top: 10px;
}

.view-documentation table td span.deprecated {
    margin-top: 10px;
    padding: 10px 0;
    border-top: solid 1px #e3e3e3;
    font-size: .8rem;
    display: flex;
    font-weight: 300;
}

.view-documentation table td span.deprecated span {
    font-size: .8rem;
    padding: 3px 6px;
    border-radius: 3px;
    background: #f0932b;
    font-weight: 300;
    color: #41424C;
    margin-right: 10px;
}

.view-documentation table td span.module {
    font-size: .8rem;
    padding: 3px 6px;
    border-radius: 3px;
    background: #ff7979;
    font-weight: 300;
    color: #41424C;
    margin-right: 10px;
}

.view-documentation table td span.tag {
    font-size: .8rem;
    padding: 3px 6px;
    border-radius: 3px;
    color: #fff;
    background: #60a3bc;
    margin-bottom: 5px;
    display: inline-block;
}

.view-documentation tbody tr {
    border-bottom: 1px solid #dddddd;
}

.view-documentation tbody tr:nth-of-type(even) {
    background: #f0f0f0;
}

.view-documentation tbody tr:last-of-type {
    border-bottom: 2px solid #27848E;
}

.title-wrapper {
    width: 20%;
}

.title-wrapper-sidebar {
    width: 60%;
    margin: 0 20%;
}

.title-logo {
    width: 100%;
    border-bottom: dotted 1px #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.title-logo img {
    width: 100%;
    height: auto;
}

.title-text {
    width: 100%;
}

.title-text div {
    display: flex;
    flex-wrap: wrap;
    text-transform: uppercase;
    color: #fff;
}

.title-text div span {
    display: inline-block;
}

.title-text div:nth-of-type(1) {
    justify-content: space-between;
}

.title-text div:nth-of-type(1) span {
    font-size: .8rem;
    font-weight: 100;
}

.title-text div:nth-of-type(2) {
    width: auto;
    justify-content: flex-end;
}

.title-text div:nth-of-type(2) span {
    font-size: 4rem;
    font-weight: 900;
}

.title-text-sidebar div:nth-of-type(2) span {
    font-size: 2.4rem;
    font-weight: 900;
}

@media screen and (max-width: 1024px) {
    .sidebar {
        height: auto;
        flex: 100%;
        padding: 10px;
    }

    .sidebar-lt-button {
        margin: 10px 0;
    }

    .sidebar-menu {
        width: 100%;
        color: #fff;
        margin-top: 0;
    }

    .sidebar-menu ul {
        display: flex;
        justify-content: flex-end;
    }

    .sidebar-menu ul li {
        margin-left: 10px;
    }

    .sidebar-menu ul li:first-child {
        font-size: .8rem;
        margin-bottom: 0;
    }

    .sidebar-menu ul li {
        font-size: .8rem;
    }

    .sidebar-menu ul li a {
        margin: 0;
    }

    .content-ws {
        width: 100vw;
    }

    .content-title {
        margin: 10px 5%;
    }

    .content-description {
        margin: 10px 5%;
    }

    .view-main-menu {
        flex-direction: column;
        justify-content: flex-start;
    }

    .view-main-menu ul:nth-child(2) {
        margin-top: 15px;
        border-top: dotted 1px;
        padding-top: 15px;
    }

    .health-status {
        font-size: 4rem;
        width: 150px;
        height: 150px;
    }

    .dependencies,
    .services,
    .refresh {
        width: 90%;
    }

    .version {
        margin: 0px 5%;
    }

    .title-wrapper {
        width: 60%;
        margin: 25px 20%;
    }

    .title-wrapper-sidebar {
        display: flex;
        width: 100%;
        margin: 0;
    }

    .title-wrapper-sidebar .title-logo {
        border-bottom: 0;
        width: 15%;
        margin: 0;
        padding: 0;
    }

    .title-wrapper-sidebar .title-text {
        width: 50%;
        margin-left: auto;
    }

    .title-text div:nth-of-type(1) span {}

    .title-text div:nth-of-type(2) span {
        font-size: 2rem;
    }
}
