/*

    !!! DO NOT CHANGE - USE OVERRIDE RULES TO TWEAK LAYOUT / COLOURS !!!

*/
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.row {
    position: relative;
    box-sizing: border-box;
}

.row.form-fields,
.row.dashboard {
    gap: 36px;
}

.section {
    position: relative;
    box-sizing: border-box;
    margin: 0 0 32px 0;
}

.section > div:not(.group),
.section > div:not(.group),
.section > div.group > div,
.section > div.group > span {
    display: flex;
    width: 100%;
}

.section > h3:not(:first-of-type) {
    margin-top: 1em;
}

.section > div > .efs {
    width: 100%;
}

.checkbox-list li {
    margin-bottom: 16px;
}

.checkbox-list li label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-list li label input {
    position: relative;
    margin: 0;
    bottom: 1px;
}

input[type=checkbox] {
    zoom: 1.75;
}

td.id,
th.id {
    width: 1em;
}

/*
    FORMS SPECIFIC LAYOUT
*/
.form-fields input,
.form-fields select,
.form-fields textarea,
.form-fields .readonly,
.form-fields span.cb {
    border: 1px solid #FFFFFF;
    padding: 8px;
    background: #FFFFFF;
    outline: none;
    transition: 0.5s;
    width: 100%;
    color: #000000;
    min-height: 33px;
    display: inline-flex;
    align-items: center;
}

.form-fields .readonly,
.form-fields input[readonly] {
    border-style: dotted;
    border-radius:5px;
    background:#dddddd;
}

.form-fields input[type=checkbox] {
    width: auto;
    min-height: 15px;
    height: 19px;
}

.form-fields .full textarea {
}

.form-fields input:focus {
    border: 1px solid #3d3283;
}

.form-fields .section > div:first-of-type {
    padding-top: 0;
}

.form-fields .section > div:last-of-type {
    padding-bottom: 0;
}

.form-fields .section > div > label,
.form-fields .section > div.group > div > label {
    flex-grow: 0;
    flex-shrink: 0;
    width: 10em;
}

.form-fields .section label:not(:empty):after,
.form-fields .section > div > label:not(:empty):after {
    content: '';
}

.form-fields .section > div > .choices {
    display: flex;
}

.form-fields .section > div > .choices > *:not(:last-child) {
    margin-right: 5px;
}

.form-fields .section > div > .choices > li > button {
    opacity: 0.75;
}

.form-fields .section > div > .choices > li > button.selected {
    opacity: 1;
    font-weight: bold;
    border: 3px solid #000000;
}
/****/

.attention {
    color: #f63c00;
}

.warning {
    color: #f8a803;
}

.good {
    color: #00c26f;
}

.crlf {
    white-space: pre-line;
}

.atomic {
    white-space: nowrap;
}

.tiles {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.nowrap {
    flex-wrap: nowrap
}

.pwd {
    display: inline-flex;
}

.no-data {
    padding: 1rem;
    background: #EDEDED;
    width: 100%;
    margin-top: 1rem;
}

nav > :not(:last-child) {
    margin-right: 0.5em;
}

nav {
    display: flex;
    align-items: center;
}

@media (max-width: 500px) {
    .row {
        flex-wrap: wrap;
    }

    .section > div:not(.group),
    .section > div.group > div {
        flex-direction: column;
    }

    .section > div:not(.group) label,
    .section > div.group > div label {
        margin-bottom: 0.25em;
    }
}
