/* ==================================
  BASICS
================================== */

:root {
    /* Brand colors */
    --color-blue-dark: #33485F;
    --color-gray-medium: #AEB8C1;
    --color-gray-light: #C1C8CF;
    --color-gray-pale: #E9EFF7;

    /* Other colors */
    --color-orange: #FFB300;
    --color-orange-pale: #FFEBD5;
    --color-focus: #042A2B;
    --color-errors: #FF0800;
    --color-errors-ele: #FFF3F3;

    /* Fonts */
    --font-family: 'Barlow','Helvetica Neue',Helvetica,Arial,sans-serif;
    --font-default: normal 400 1rem/1.2 var(--font-family);

    /* Page configuration */
    --width-page-max: 1200px;
    --spacing-page-padding: 1.5rem;
    --margin: 1.8rem;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    list-style: none;
    outline: 0;
}

html {
    background-color: var(--color-gray-pale);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font: normal 400 100%/1.2 var(--font-family);
    color: black;
}
html, body {
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

h1 { font-size: 2rem }
h2 { font-size: 1.8rem }
h3 { font-size: 1.6rem }
h4 { font-size: 1.3rem }
h1, h2, h3, h4 {
    line-height: 1.4;
    font-weight: 600;
}

ul, ol {
    list-style: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font: var(--font-default);
    color: inherit;
}

form {
    width: 100%;
}

p {
    font-size: 1.2rem;
    line-height: 1.4;
}

a:link {
    color: #000;
    text-decoration: underline;
}
a:visited {
    color: #999;
    text-decoration: underline;
}
a:hover {
    color: #CC0000;
    text-decoration: none;
}
a:active {
    color: #569EF9;
    text-decoration: none;
}

a, button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}

.transitions, .centering,
a, button, svg, svg path, img,
input, select, textarea, tbody tr,
.content_center {
    transition: all 0.3s ease-out;
}

.content_center {
    margin: 0 auto;
    max-width: var(--width-page-max);
}
@media (max-width: 1200px) {
    .content_center {
        padding: 0 var(--spacing-page-padding);
    }
}

.focus:focus {
    outline: dashed 2px var(--color-focus);
    outline-offset: 2px;
}
.focus-link:focus {
    outline: dashed 2px var(--color-focus);
    outline-offset: 2px;
    border-radius: 0.3rem;
}

.panel_button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    padding: 0.7rem 1.4rem;
    border: solid 3px var(--color-blue-dark);
    background-color: var(--color-blue-dark);
    border-radius: 4rem;
    text-align: center;

    &, span {
        font-size: 1.5rem;
        line-height: 1.1;
        color: white;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none !important;
    }
    span, svg {
        display: block;
        margin: 0;
        padding: 0;
    }
    svg {
        width: 19px;
        height: 19px;
    }
    path {
        fill: white;
    }

    &.medium {
        gap: 0.3rem;
        padding: 0.4rem 1rem;
        &, span {
            font-size: 1.1rem;
        }
        svg {
            width: 15px;
            height: 15px;
        }
    }

    &.small {
        gap: 0.2rem;
        padding: 0.3rem 0.6rem;
        border-width: 2px;
        &, span {
            font-size: 0.9rem;
            color: white;
        }
        svg {
            width: 13px;
            height: 13px;
        }
        path {
            fill: white;
        }
    }

    &.wired {
        background-color: transparent;
        &, span {
            font-size: 0.9rem;
            color: var(--color-blue-dark);
        }
        path {
            fill: var(--color-blue-dark);
        }
    }

    &.delete {
        border-color: var(--color-gray-medium);
        span {
            color: var(--color-gray-medium);
        }
        path {
            fill: var(--color-gray-medium);
        }

        &:hover {
            border-color: var(--color-errors);
            span {
                color: var(--color-errors);
            }
            path {
                fill: var(--color-errors);
            }
        }
        &:active {
            border-color: var(--color-errors);
            background-color: var(--color-errors);
            span {
                color: white;
            }
            path {
                fill: white;
            }
        }
    }

    &.notext {
        span {
            display: none;
        }
    }

    &:hover {
        transform: scale(1.1) rotate(-1deg);
    }
    &:active {
        border-color: var(--color-gray-medium);
        background-color: var(--color-gray-medium);
        &, span {
            color: black;
        }
        path {
            fill: black;
        }
    }
    &:focus {
        outline: dashed 2px var(--color-focus);
        outline-offset: 2px;
    }
    &:disabled {
        border-color: transparent;
        background: transparent url('../images/panel/icon-loading-blue.png') center no-repeat;
        background-size: 50px 50px;
        transform: unset;
        filter: unset;
        transition: unset;
        color: transparent;
        text-align: center;
        text-shadow: unset;

        span, svg {
            opacity: 0;
        }

        &.medium {
            background-size: 35px 35px;
        }
        &.small {
            background-size: 25px 25px;
        }
    }
}

.page_main {
    padding: 3.5rem 0 5rem;
    transition: all 0.8s ease-out;
    opacity: 1;

    &.hidden_content {
        opacity: 0;
    }
}

.page_title {
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--color-blue-dark);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1px;
}

.content_block_list {
    margin-bottom: 3rem;
    &:last-child {
        margin-bottom: 0;
    }

    &, .block-list, .list-row, .block-info {
        display: block;
    }
    &, .block-list, table.block-table,
    .block-header, .block-info, .block-columns {
        width: 100%;
    }

    .block-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.8rem;
    }

    .block-title {
        font-size: 1.8rem;
        line-height: 1.2;
        color: var(--color-blue-dark);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: -1px;
    }
    .list-row {
        margin-bottom: 0.5rem;
        padding: 0.5rem 0.8rem;
        background-color: white;
        border-radius: 0.4rem;

        &:last-child {
            margin-bottom: 0;
        }

        &, p {
            font-size: 1rem;
            line-height: 1.2;
            text-align: left;
        }
    }

    table.block-table {
        border-collapse: collapse;

        thead tr {
            border-top: solid 2px white;
            background-color: white;
        }
        tr {
            border-bottom: solid 2px white;
        }
        th, td {
            width: auto;
            vertical-align: middle;
            font-size: 1rem;
            line-height: 1.2;
            text-align: left;

            &.center {
                text-align: center;

                img, svg {
                    margin: 0 auto;
                }
            }
        }
        th {
            padding: 0.5rem 0.5rem;
            color: var(--color-blue-dark);
            text-transform: uppercase;
            font-weight: 700;
        }
        td {
            padding: 0.8rem 0.5rem;
            font-weight: 400;

            &.buttons {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: flex-end;
                align-items: center;
                gap: 0.4rem;
                padding-left: 0;
                padding-right: 0;
            }
        }
        tbody tr:hover {
            background-color: rgba(255,255,255,0.4);
        }
    }

    .block-info {
        padding: 1.5rem;
        border: solid 2px white;
        background-color: white;
        border-radius: 1rem;
    }

    .block-columns {
        display: flex;
        flex-direction: row;
        gap: 1.5rem 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;

        &:first-child {
            margin-top: 0;
        }
        &:last-child {
            margin-bottom: 0;
        }

        &.center {
            justify-content: center;
        }
        &.space-between {
            justify-content: space-between;
        }
        &.space-around {
            justify-content: space-around;
        }

        &, .column {
            width: 100%;
        }
    }

    hr.block-separator {
        border-bottom: solid 1px var(--color-gray-pale);
    }
}

.valuebox-sidebyside {
    .content, .content-scroll, .icon-arrow {
        transition: all 0.4s ease-out;
    }

    &, .content, .content-scroll,
    li, .switch {
        width: 100%;
    }

    .content {
        padding: 0 0.7rem;
    }
    .content-scroll {
        padding: 0;
        height: 0;
        border: solid 1px transparent;
        border-bottom: 0;
        background-color: white;
        overflow-y: auto;
        opacity: 0;
    }
    li {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.3rem 0.6rem;

        &:hover {
            background-color: var(--color-gray-pale);
        }
    }
    p {
        font-size: 0.8rem;
        line-height: 1.2;

        &:nth-child(1) {
            text-align: left;
        }
        &:nth-child(2) {
            text-align: right;
        }
    }

    .switch {
        width: 100%;
        padding: 0.4rem 0;
        background-color: var(--color-blue-dark);
        border-radius: 2rem;

        &, .icon-arrow {
            display: block;
        }

        &:active {
            background-color: var(--color-gray-medium);
        }
    }
    .icon-arrow {
        width: 12px;
        height: 12px;
        margin: 0 auto;

        path {
            fill: white;
        }
    }

    &.active {
        .content-scroll {
            padding: 0.2rem 0;
            border-color: var(--color-gray-pale);
            height: 200px;
            opacity: 1;
        }
        .icon-arrow {
            transform: rotate(-180deg);
        }
    }
}

/* ==================================
  DIALOG FOR ROTATE GADGET
================================== */

.msg_vertical {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(0.8rem);
    z-index: 140;

    & > div {
        width: fit-content;
        padding: 1.5rem 1.7rem;
        background-color: white;
        filter: drop-shadow(0 4px 5px rgba(0,0,0,0.2));
        border-radius: 1rem;
    }
    p {
        font-family: var(--font-display);
        font-size: 1.2rem;
        line-height: 1.3;
        text-transform: uppercase;
        text-align: center;
        font-weight: 600;
    }
}
@media (max-height: 480px) {
    .msg_vertical {
        display: flex;
    }
}

/* ==================================
  HEADER
================================== */

.page_header {
    background: var(--color-gray-light) url("../images/panel/header-background.webp") bottom center no-repeat;
    background-size: 1400px 198px;
}
.page_header-content {
    .logo-pagtitle {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 0;
    }
    .logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-right: 1rem;
        text-decoration: none;

        img, p {
            display: inline-block;
        }
        img {
            width: 80px;
            height: 80px;
        }
        p {
            font-size: 2.5rem;
            line-height: 1;
            color: var(--color-blue-dark);
            font-weight: 700;
            /*text-transform: uppercase;*/
            letter-spacing: -2px;
        }

        &:focus {
            outline: dashed 2px var(--color-focus);
            outline-offset: 2px;
            border-radius: 4rem;
        }
    }
    .pagtitle {
        display: inline-block;
        padding: 0.5rem 1.3rem;
        height: fit-content;
        background-color: rgba(255,255,255,0.5);
        border-radius: 6rem;
        font-size: 1.5rem;
        line-height: 1;
        color: var(--color-blue-dark);
        font-weight: 700;
        text-transform: uppercase;
    }
    .credits {
        p {
            font-size: 0.8rem;
            line-height: 1.3;
            text-align: right;
            font-weight: 600;

            &, a {
                color: var(--color-blue-dark);
            }
        }
        a {
            text-decoration: none;
            &:hover {
                color: white;
            }
            &:focus {
                color: var(--color-orange-pale);
                text-decoration: underline;
            }
        }
    }
}

.page_header_nav {
    position: sticky;
    top: 0;
    left: 0;
    padding: 0.9rem 0;
    width: 100vw;
    background-color: var(--color-blue-dark);
    z-index: 100;

    .nav-content {
        justify-content: space-between;

        &, & > div, .nav-links {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            gap: 0;
            margin-right: 0.8rem;

            li, li::before, .link {
                display: inline-block;
                font-size: 1rem;
                line-height: 1;
                color: var(--color-gray-medium);
                text-transform: uppercase;
                font-weight: 700;
                text-align: center;
            }
            li {
                &::before {
                    padding: 0 0.4rem;
                    content: '|';
                    font-weight: 400;
                }
                &:first-child::before {
                    padding: 0;
                    content: '';
                }
            }
            .link {
                padding: 0.3rem 0;
                text-decoration: none;

                &:hover, &.active {
                    color: white;
                }
                &:active {
                    color: var(--color-orange-pale);
                }
                &:focus {
                    color: var(--color-orange-pale);
                    text-decoration: underline;
                }
            }
        }

        .panel_button {
            border-color: var(--color-gray-medium);
            border-width: 1px;

            &, span {
                color: var(--color-gray-medium);
            }
            path {
                fill: var(--color-gray-medium);
            }

            &:active {
                border-color: white;
                background-color: white;
                &, span {
                    color: var(--color-blue-dark);
                }
                path {
                    fill: var(--color-blue-dark);
                }
            }
            &:focus {
                outline: dashed 2px var(--color-orange-pale);
                outline-offset: 2px;
            }
        }
    }
}

/* ==================================
  APP FORMS
================================== */

.app_forms {
    &, .fieldset, .row {
        display: block;
        width: 100%;
    }
    .fieldset {
        margin-bottom: 1.5rem;
    }
    .row, .row.columns {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .row.columns .row {
        margin-bottom: 0;
    }
    .row.columns.gap {
        gap: 0.5rem;
    }
    .row {
        position: relative;
        margin-bottom: 0.5rem;
        border: solid 2px var(--color-gray-pale);
        border-radius: 0.5rem;

        &.noborder {
            border: 0;
            border-radius: 0;
        }
    }
    .row.columns {
        border: 0;
    }
    .fieldset, .row {
        &:last-child {
            margin-bottom: 0;
        }
    }
    .label,
    .input,
    .textarea,
    .select {
        width: 100%;
        padding: 1.4rem 0.7rem 0.5rem;
        box-sizing: border-box;
        background-color: white;
        border-radius: 0.5rem;
        font: normal 400 1.2rem/1.2 var(--font-family);
        color: black;
        font-weight: 600;
    }
    .label {
        position: absolute;
        left: 0.6em;
        top: 0.75em;
        display: inline-block;
        width: fit-content;
        padding: 0;
        background-color: transparent;
        pointer-events: none;
        transition: all 0.3s ease;
        color: #888;
        font-weight: 500;
    }
    .input:not(:placeholder-shown) + .label,
    .input:focus + .label {
        left: 0.7em;
        top: 0.3em;
        font-size: 0.85em;
    }
    .textarea:not(:placeholder-shown) + .label,
    .textarea:focus + .label {
        left: 0.7em;
        top: 0.3em;
        font-size: 0.85em;
    }
    .textarea {
        overflow: hidden;
        height: 10rem;
        resize: none;
        box-sizing: border-box;
        line-height: 1.2;
    }
    .textarea.resize {
        height: 56px;
    }
    .select {
        padding: 1rem 0.7rem 1rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: white url('../images/panel/icon-arrow-down-graylight.svg') right 10px center no-repeat;
        background-size: 13px 13px;
        cursor: pointer;
    }
    .switch-onoff {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.6rem;

        &, input[type="checkbox"] {
            cursor: pointer;
        }
        &, input[type="checkbox"],
        input[type="checkbox"]::before,
        span {
            transition: all 0.4s ease-out;
        }

        input[type="checkbox"] {
            position: relative;
            display: block;
            appearance: none;
            flex-shrink: 0;
            width: 2.4rem;
            height: 1.6rem;
            border: solid 2px var(--color-gray-medium);
            border-radius: 0.6em;

            &::before {
                position: absolute;
                top: 0.12rem;
                left: 0.15rem;
                display: block;
                width: 1rem;
                height: 1.1rem;
                background-color: var(--color-gray-medium);
                border-radius: 0.35em;
                content: '';
            }

            &:checked {
                border-color: var(--color-blue-dark);

                &::before {
                    right: 0.15rem;
                    left: unset;
                    background-color: var(--color-blue-dark);
                }

                & ~ span {
                    color: var(--color-blue-dark);
                }
            }
        }
        span {
            display: block;
            width: 100%;
            padding-top: 0.1rem;
            font: var(--font-default);
            color: black;
            font-weight: 400;
        }

        &:focus, &:hover {
            span {
                text-decoration: underline;
                color: var(--color-gray-medium);
            }
        }
    }
    .input:focus,
    .textarea:focus,
    .select:focus {
        outline: dashed 2px var(--color-focus);
        outline-offset: -4px;
        border-radius: 0.4rem;
    }
    .row:has(> .input[required])::after,
    .row:has(> .textarea[required])::after,
    .row:has(> .select[required])::after {
        position: absolute;
        right: 0.13em;
        top: 0.05em;
        color: var(--color-errors);
        font-size: 1.3em;
        font-weight: bold;
        content: "*";
    }
    .input::-webkit-input-placeholder,
    .textarea::-webkit-input-placeholder {
        color: transparent;
    }
    .input::-moz-placeholder,
    .textarea::-moz-placeholder {
        color: transparent;
    }
    .input:-ms-input-placeholder,
    .textarea:-ms-input-placeholder {
        color: transparent;
    }
    .input[type="number"]::-webkit-inner-spin-button,
    .input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        appearance: none;
        display: none;
        margin: 0;
    }
    .input[type="number"] {
        -moz-appearance: textfield;
        appearance: textfield;
    }
    .input:disabled,
    .textarea:disabled,
    .select:disabled {
        cursor: not-allowed;
        color: #888;
        font-weight: 400;
    }
    .input.missed,
    .textarea.missed,
    .select.missed {
        background-color: var(--color-errors-ele);
    }
}

.modal_createuser, .modal_updateuser,
.modal_createsurvey, .modal_updatesurvey,
.modal_dataselector {
    padding-top: 0.5rem;
    width: 100%;
    /*min-width: 340px;*/

    .buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 2rem 0.3rem 1.5rem;
    }
    .cmodal_button:disabled {
        border-color: transparent;
        background: transparent url('../images/panel/icon-loading-blue.png') center no-repeat;
        background-size: 40px 40px;
        transform: unset;
        filter: unset;
        transition: unset;
        color: transparent;
        text-align: center;
        text-shadow: unset;
    }
    .app_forms {
        .fieldset {
            margin-bottom: 0;
        }
        .switch-onoff {
            &, span {
                text-align: left;
            }
        }
    }
    .app_forms-errors {
        padding: 0;
        border: 0;
        background-color: transparent;
        border-radius: 0;

        &:not(:empty) {
            margin-top: 2rem;
            padding: 0.6rem 0.7rem;
            border: solid 2px var(--color-errors);
            background-color: var(--color-errors-ele);
            border-radius: 0.5rem;
            font-size: 0.8rem;
            line-height: 1.2;
            text-align: left;

            &::before {
                content: 'ERROR: ';
                color: var(--color-errors);
                font-weight: 700;
            }
        }
    }
    @media (max-width: 540px) {
        .app_forms {
            .row,
            .row.columns,
            .row.columns .row {
                display: block;
                margin-bottom: 0.5rem;
            }
        }
        .buttons {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
    }
}

/* ==================================
  CUSTOM MODAL
================================== */

.cmodal, .cmodal_overlay, .cmodal_main {
    top: 0;
    left: 0;
}
.cmodal, .cmodal_overlay {
    width: 100vw;
    height: 100vh;
}
.cmodal {
    position: fixed;
    display: none;
    overflow: hidden;
    z-index: 130;
    transition: all 0.3s ease-out;
}
.cmodal_overlay {
    position: absolute;
    display: flex;
    background-color: rgba(0,0,0,0.6);
    cursor: pointer;
}
.cmodal_main {
    position: relative;
    width: 460px;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.4s ease-out;
}
.cmodal_scroll {
    display: block;
    height: fit-content;
    max-height: calc(100vh - 1rem);
    overflow-y: auto;
    filter: drop-shadow(0 4px 5px rgba(0,0,0,0.3));
}
.cmodal_content {
    position: relative;
    width: 100%;
    height: fit-content;
    background-color: white;

    &, .cm_footer {
        border-bottom-left-radius: 1.4rem;
        border-bottom-right-radius: 1.4rem;
    }

    .cm_header {
        padding: 1.5rem 0 1rem;

        h4 {
            display: block;
            font-family: var(--font-display);
            font-size: 1.6rem;
            line-height: 1.2;
            color: var(--color-blue-dark);
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
        }
    }
    .cm_content {
        position: relative;
        display: block;
        height: fit-content;
        max-height: 555px;
        overflow-y: auto;
        padding: 0 2rem;
        text-align: center;
    }
    .cm_footer {
        position: sticky;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem 0 1.5rem;
        height: fit-content;
        background-color: white;
    }
}
.cmodal_button {
    display: block;
    width: fit-content;
    padding: 0.5rem 1.1rem;
    border: solid 2px var(--color-blue-dark);
    background-color: var(--color-blue-dark);
    border-radius: 4rem;
    font-size: 1.2rem;
    line-height: 1.1;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    text-align: center;

    &.cmbtn_primary {
        border-color: var(--color-blue-dark);
        background-color: var(--color-blue-dark);
        color: white;
    }
    &.cmbtn_secondary {
        border-color: var(--color-gray-light);
        background-color: white;
        color: var(--color-gray-medium);
    }

    &:active {
        border-color: var(--color-gray-light);
        background-color: var(--color-gray-light);
        color: black;
    }
    &:focus {
        outline: dashed 2px var(--color-focus);
        outline-offset: 2px;
    }
}
@media (max-height: 680px) {
    .cmodal_main {
        width: 100vw !important;
        max-width: 560px !important;
        margin: 0 auto;
        transition: all 0.5s ease-out;
    }
    .cmodal_scroll {
        height: 100vh !important;
        max-height: 100vh !important;
        overflow-y: inherit;
    }
    .cmodal_content {
        &, .cm_footer {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }
        .cm_content {
            max-height: calc(100vh - 200px) !important;
        }
    }
}
@media (max-width: 460px) {
    .cmodal_content {
        .cm_footer {
            flex-direction: column;
            align-items: center;
        }
    }
    .cmodal_button {
        width: 100%;
        max-width: 180px;
    }
}

body.cmodal_isopen {
    overflow: hidden;
}

.modal_custom_message, .modal_info_person {
    margin-bottom: 0;

    p {
        margin-bottom: 0.6rem;
        padding: 0 3%;
        font-family: var(--font-sans);
        font-size: 1.1rem;
        line-height: 1.4;

        &:last-child {
            margin-bottom: 0;
        }
    }
}
.modal_info_person {
    p {
        margin-bottom: 0;
        strong {
            font-weight: 500;
        }
    }
}

/* ==================================
  LOGIN
================================== */

.page_login-content {
    display: flex;
    justify-content: center;

    .login_box {
        width: 300px;
    }
    .panel_button {
        margin: 0 auto;
    }
}

/* ==================================
  HOME
================================== */

.page_home-content {
    .summary-msg-registers {
        .column {
            max-width: 30%;
        }
        .description {
            text-align: center;
        }
        .valuebox-sidebyside {
            margin-top: 0.5rem;
        }
    }

    .list_registers,
    .list_registers-table,
    .list_registers-nav {
        width: 100%;
    }
    .list_registers,
    .list_registers-table {
        display: block;
    }
    .list_registers-table {
        transition: all 0.3s ease-out;
        opacity: 1;
    }
    .list_registers-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;

        .page-total {
            padding: 0 1rem;
            font-size: 1rem;
            line-height: 1;
            text-align: center;
            font-weight: 700;
        }
    }
}

/* ==================================
  CONFIG
================================== */

.form_settings {
    .row:has(> input.savedok)::before {
        position: absolute;
        right: 1rem;
        top: 0.3rem;
        width: 12px;
        height: 12px;
        background: transparent url('../images/panel/icon-check-saveok.png') center no-repeat;
        background-size: 100% 100%;
        content: '';
    }
}






