:root {
    --font_black: #333333;
    --font_white: #ffffff;
    --font_grey: #808080;
    --font_blue: #0489AD;
    --font_blue_dark: #004B96;
    --font_red: #C40000;
    --RS_blue_dark: #004B96;
    --RS_blue_light: #0489AD;
    --RS_link: #004B96;
    --RS_grey: #B3B3B3;
    --RS_blue_dark_disabled: #00345E;
    --RS_background: #F4F4F4;
    --RS_BG_white: #FFFFFF;
    --RS_BG_grey: #CCCCCC;
    --RS_red: #C40000;
    --RS_orange: #F99106;
    --RS_green: #028474;
    --state_upcoming: #0489AD;
    --state_pending: #B3B3B3;
    --state_sent: #F99106;
    --state_approved: #028474;
    --state_rejected: #C40000;
    --state_signed: #e5e600;
    --day_BG: #D6ECF2;
    --evening_BG: #CEE0EF;
    --night_BG: #CCCCCC;
    --day_color: #0489AD;
    --evening_color: #3D6698;
    --night_color: #1A1A1A;
    --default-corners: 0.3215rem;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    color-scheme: only light;
    --filter-grey: brightness(0) saturate(100%) invert(52%) sepia(0%) saturate(1%) hue-rotate(88deg) brightness(96%) contrast(84%);
    --filter-green:brightness(0) saturate(100%)invert(33%) sepia(65%) saturate(1107%) hue-rotate(136deg) brightness(95%) contrast(98%);
    --filter-red: brightness(0) saturate(100%) invert(11%) sepia(56%) saturate(7029%) hue-rotate(357deg) brightness(98%) contrast(117%);
}

::-webkit-scrollbar {
    display: none;
}

html {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    background: var(--RS_background);
    color: var(--font_black);
    line-height: 1.1rem;
    font-size: 1rem;
    scroll-behavior: smooth;
    height: 100%;
    position: relative;
}

select,
textarea,
input {
    font-family: 'Roboto', sans-serif;
    border: 2px solid white;
    width: calc(100% - 2rem);
    box-sizing: border-box;
    font-size: 1.2rem;
    margin: 1rem;
    padding: .75rem 1.2rem .75rem 1.2rem;
    background: white;
    border-radius: 4rem;
    font-weight: 300;
}

textarea {
    height: 7.5rem;
    line-height: 1rem;
    border-radius: var(--default-corners);
}

::selection {
    color: var(--font_white);
    background: var(--RS_blue_dark);
}

input:focus-visible,
input:focus {
    border: 2px solid var(--RS_blue_dark);
    outline: 0;
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

aside,
section,
div {
    box-sizing: border-box;
}

button {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    box-sizing: border-box;
    padding: .75rem 1rem .75rem 1rem;
    border: none;
    margin: 0;
    width: auto;
    overflow: visible;
    font-size: 1rem;
    background: transparent;
    line-height: 1.1rem;

    /* inherit font & color from ancestor */
    color: inherit;


    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;

    /* Corrects inability to style clickable `input` types in iOS */
    -webkit-appearance: none;
}


button.icon {
    padding: 0.375rem 0 0 0;
}


#loader {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 850;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#loader h1 {
    color: var(--RS_BG_grey);
    font-size: 2.5rem;
}

.loader_progress {
    width: 250px;
    height: 26.4px;
    -webkit-mask: radial-gradient(circle closest-side, #0489ad 100%, #0000 0) left/20% 100%;
    background: linear-gradient(#0489ad 0 0) top/0% 100% no-repeat #f4f4f4;
    animation: progress-422c3u 1.6s infinite steps(160);
}

@keyframes progress-422c3u {
    100% {
        background-size: 120% 100%;
    }
}

form {
    padding: 0;
    margin: 0;
    display: block;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
    position: relative;
}

a {
    color: var(--RS_link);
    text-decoration: none;
}

#login {
    background-image: url("../img/login_background.png");
    background-position: top;
    background-size: cover;
    position: relative;
    height: 100%;
    width: 100vw;
    z-index: 99;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.RSF-feather {
    font-size: 9rem;
    color: white;
    padding: 3rem 0 3rem 0;
}

#login_form {
    width: 80%;
}

.login_inputWrap {
    position: relative;
    margin: .94rem 0;
}

#login_form select,
#login_form input {
    padding: .75rem 1rem .75rem 3.8rem;
    margin: 0;
    width: 100%;
}

.login_inputWrap i {
    position: absolute;
    left: 1.4rem;
    color: var(--RS_grey);
    font-size: 1.4rem;
    top: calc(50% - .7rem);
}

#btn_login {
    font-size: 1.2rem;
    background: var(--RS_blue_dark);
    border-radius: 4rem;
    border: 0;
    font-weight: 500;
    color: white;
    text-align: center;
    margin-top: 1rem;
    width: 100%;
}

#btn_login:active,
#btn_login:disabled {
    background: var(--RS_blue_dark_disabled);
}

#login_back,
#register_account,
#forgot_pass {
    font-weight: 500;
    text-align: center;
    display: block;
    margin-top: 2rem;
}

.t-white {
    color: var(--font_white);
}

.textShadow {
    text-shadow: 1px 1px 1px black;
}

#infoMessage {
    text-align: center;
}

#login_password_r.match {
    border-color: red;
}

.headerBar {
    background: var(--RS_blue_dark);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    height: 3.125rem;
    width: 100%;
}

main {
    height: calc(100% - 6.250rem);
    position: relative;
    z-index: 5;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

.showActivity main {
    height: calc(100% - 9.375rem);
}

footer {
    height: 3.125rem;
    background: var(--RS_blue_dark);
}

#activeForm,
#activePage {
    position: relative;
    height: 100%;
}

.pickerInput {

}

#login_form .languageSelector {
    display: flex;
}

#login_form #login_language {
    border-radius: 0 4rem 4rem 0;
    width: 75%;
}

.login_flag {
    width: 25%;
    background: white;
    border-radius: 4rem 0 0 4rem;
    border-right: 1px solid var(--RS_grey);
    box-sizing: border-box;
    position: relative;
}

.login_flag > span {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 10%;
    width: auto;
    border-radius: 4rem 0 0 4rem;
}

#activityBar {
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    overflow: auto;
    display: none;
    height: 3.125rem;
    width: 100%;
    background: var(--RS_BG_white);
    padding: 0.325rem 1rem;
    border-top: 0.25rem solid var(--RS_blue_light);
}

.showActivity #activityBar {
    display: flex;
}

.AB_proj {
    color: var(--font_blue_dark);
    font-weight: 500;
}

.AB_subProj {
    color: var(--font_blue);
}

.AB_timerStop {
    text-align: center;
    cursor: pointer;
}

#activityBar .RSF-stop {
    color: var(--font_red);
}

table.simple {
    text-align: left;
    position: relative;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    overflow: auto;
    min-width: 100%;
    vertical-align: top;
    table-layout: fixed;
}

table.simple th {
    background: white;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    border: 1px solid var(--RS_grey);
}

table.simple td {
    border-bottom: 1rem solid white;
    padding: 0.25rem;
    vertical-align: top;
}

table.simple tr.h_hasComment td {
    border-bottom: 0;
}

.clear {
    clear: both;
}