.rckms-nav {
    width: 100%;
    padding: 0 5px;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: solid #337ab7 2px;
}

.rckms-nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
}

.nav-item {
    font-size: 18px;
    font-weight: 500;
    padding: 0 5px;
    margin-right: 15px;
    position: relative;
}

.nav-item.list:after {
    content: '\25BC';
    /*position: absolute;*/
    font-size: 13px;
    /*right: -8px;*/
    /*top: 14px;*/
}

body * {
    box-sizing: border-box;
}

.page {
    min-height: 600px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container > div {
    margin-right: 13px;
}

.button-container > div:last-child {
    margin-right: 0;
}

.button-container.left-aligned {
    justify-content: flex-start;
}

.capitalize {
    text-transform: capitalize;
}

.flex {
    display: flex;
}

.bold {
    font-weight: 600;
}

.layout-container {
    margin: 2rem 5%;
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    color: #337ab7;
}

.layout-container--legacy {
    margin: 5%;
}

.loading-admin-report {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    padding: 13px 21px;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    border-top-right-radius: 8px;
    box-shadow: 2px -2px 0 rgba(67, 90, 111, 0.04), 1px -1px 5px rgba(67, 90, 111, 0.03);
}

.loading-admin-report .h3 {
    margin: 12px 0 12px 8px;
}

.authoring-status-container {
    width: 100%;
    position: relative;
}

.authoring-status-container > .one-third {
    float: left;
    width: 33%;
    margin-right: 1%;
    height: 600px;
    position: sticky;
    top: 70px;
}

.authoring-status-container > .two-thirds {
    width: 66%;
    float: right;
    min-height: 600px;
}

@media (max-width: 768px) {
    .authoring-status-container {
        width: 100%;
    }

    .authoring-status-container > .one-third {
        width: 100%;
        margin-right: 0;
        float: none;
        height: auto;
        margin-bottom: 1rem;
        position: relative;
        top: 0;
    }

    .authoring-status-container > .two-thirds {
        width: 100%;
        float: none;
    }
}

.condition-details-container {
    display: flex;
    align-self: stretch;
    align-items: stretch;
    width: 100%;
}

.condition-details-container > .one-third {
    float: left;
    width: 33%;
    margin-right: 1%;
    height: 600px;
    position: sticky;
    top: 70px;
}

.condition-details-container > .two-thirds {
    width: 66%;
}

@media (max-width: 768px) {
    .condition-details-container {
        width: 100%;
    }

    .condition-details-container > .one-third {
        width: 100%;
        margin-right: 0;
        float: none;
        height: auto;
        margin-bottom: 1rem;
        position: relative;
    }

    .condition-details-container > .two-thirds {
        width: 100%;
        float: none;
    }
}

.landing-container {
    width: 100%;
    justify-content: flex-start;
    align-self: flex-start;
}

.landing-container .header {
    margin-top: 34px;
    font-size: 34px;
    margin-bottom: 34px;
}

.landing-container .report-controls {
    display: flex;
    flew-wrap: wrap;
}

.landing-container .report-controls .buttons {
    width: 25%;
    min-width: 200px;
}

.landing-container .report-description {
    width: 50%;
    min-width: 300px;
    font-size: 21px;
    padding: 16px;
}

.landing-container .report-description > div {
    display: none;
}

.landing-container .report-description > div.visible {
    display: block;
    user-select: none;
}

.landing-container .report-description > div .headline {
    font-size: 1.2em;
}

.landing-container .report-description > div .includes {
    margin: 8px 0;
    font-size: 0.9em;
}

.landing-container .report-description > div .includes > div {
    margin-left: 13px;
    padding-left: 13px;
}

.landing-container .report-description > div .includes > div:before {
    font-size: 21px;
    content: '\2023';
    left: -3px;
}

.landing-container .report-description > div .includes + div {
    font-style: italic;
}

@media (max-width: 768px) {
    .landing-container .report-controls {
        display: block;
    }

    .landing-container .report-controls .buttons {
        width: 100%;
    }

    .landing-container .report-description {
        width: 100%;
    }
}
