
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "museo-sans-300";
    src: url("/static/MuseoSans-300.otf");
}

@font-face {
    font-family: "museo-sans-500";
    src: url("/static/MuseoSans_500.otf");
}

@font-face {
    font-family: "museo-sans-700";
    src: url("/static/MuseoSans_700.otf");
}

body {
    display: flex;
    justify-content: center;
    background-color: #f3f3f3;
}

.hide {
    display: none !important;
}

.on_time, .green {
    color: #58a618 !important;
    font-family: "museo-sans-700", sans-serif;
}

.behind_time, .canceled, .red {
    color: #e5344f !important;
    font-family: "museo-sans-700", sans-serif;
}

.pending, .orange {
    color: #eda113;
    font-family: "museo-sans-700", sans-serif;
}

.behind_time:before {
    content: "⯅";
    margin-left: -12px;
}

.on_time:before {
    content: "⯆";
    margin-left: -12px;
}

#app_body, #app_html {
    position: fixed;
    width: 100%;
}

.app_error {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    color: #e5344f;
}

.app_input_error {
    border: solid 2px #e5344f !important;
}

/* App */
.current {
    background-color: #58a618;
    color: white !important;
}

.executed {
    color: #dedede !important;
}

#app_body {
    align-items: center;
    height: 100vh;
    background-color: white;
}

#app_main_wrapper {
    font-family: "museo-sans-500", sans-serif;
    color: #5b5b5b;
    font-size: 18px;
}

#app_current_driver_wrap {
    width: 100%;
    color: #58a618;
    margin-bottom: 10px;
    text-align: center;
}

#app_current_driver_wrap > div:first-child {
    font-family: "museo-sans-700", sans-serif;
}

#app_menu_buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}

#app_logout_button {
    margin-right: 20px;
}

#app_shuttleagreements_button, #app_current_button {
    margin-left: 20px;
}

#app_menu_buttons > div, #app_menu_buttons > a {
    padding: 10px 35px;
    background-color: #58a618;
    color: white;
    display: block;
    text-decoration: none;
}

#app_assignment_header {
    text-align: center;
    font-size: 33px;
    font-family: "museo-sans-700", sans-serif;
    margin-top: 20px;
    color: #58a618;
}

#app_assignment_body {
    text-align: center;
    padding: 25px 80px;
    font-size: 33px;
    font-family: "museo-sans-700", sans-serif;
    color: #58a618;
    margin-top: 20px;
    border: solid 4px #58a618;
}

#app_navigate_buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

#app_confirm_assignment_wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

#app_confirm_assignment, #app_cancel_assignment, #app_confirm_yet_executed {
    padding: 10px 70px;
    background-color: #58a618;
    color: white;
    font-size: 33px;
    font-family: "museo-sans-500", sans-serif;
    cursor: pointer;
}

#app_cancel_assignment, #app_confirm_yet_executed {
    text-align: center;
    font-size: 14px;
    padding: 7px 0;
    margin-top: 80px;
    width: 60%;
    margin-left: 20%;
}

#app_confirm_yet_executed {
    width: 35%;
    margin-left: 32.5%;
}

#app_navigate_buttons {
    margin-top: -60px;
}

#app_navigate_buttons > div:last-child {
    margin-left: 350px;
}

#app_navigate_buttons > div {
    width: 240px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #58a618;
    color: white;
    text-align: center;
    cursor: pointer;
}

#app_assignment_lading_title {
    margin-top: 20px;
}

#app_assignment_lading {
    font-family: "museo-sans-500", sans-serif;
}

#app_next_title, #app_previous_title {
    font-family: "museo-sans-700", sans-serif;
}

.app_inactive > * {
    color: #a7c88d !important;
}

.app_inactiveborder {
    border: solid 4px #A7C88D !important;
}

#app_confirm_assignment_time, #app_confirm_assignment_remark {
    color: #a7c88d;
    font-size: 23px;
}

#app_assignment_reload, #app_badge_submit, #app_remark_submit, #app_remark_go_back {
    color: white;
    background-color: #58a618;
    text-align: center;
    padding: 12px;
    margin-top: 20px;
    cursor: pointer;
}

#app_remark_go_back {
    width: 210px;
    margin: auto;
    margin-top: 100px;
}

#app_badge_title, #app_remark_title {
    color: #58a618;
    font-size: 33px;
    font-family: "museo-sans-700", sans-serif;
}

#app_badge_container, #app_remark_container {
    text-align: center;
}

#app_badge_container input, #app_remark_container select {
    width: 100%;
    border: none;
    background-color: #eeeeee;
    padding: 8px;
    font-size: 23px;
    font-family: "museo-sans-500", sans-serif;
    outline: none;
    color: #666666;
    border-radius: 0;
}

#app_schema {
    display: none;
    width: 40%;
    height: 100%;
    background-color: white;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.04);
}

#app_schema ul li, #app_schema_header {
    display: flex;
    padding: 10px 15px;
    font-size: 16px;
    font-family: "museo-sans-500", sans-serif;
    color: #5a5a5a;
}

#app_schema ul li {
    border-bottom: solid 2px #eaeaea;
    cursor: pointer;
}

#app_schema_header {
    font-family: "museo-sans-700", sans-serif;
    border-bottom: solid 3px #eaeaea;
    position: sticky;
    top: 0;
    background-color: white;
}

#app_schema ul li > div:first-child, #app_schema_header > div:first-child {
    width: 45px;
}

#app_schema ul li > div:nth-child(2), #app_schema_header > div:nth-child(2) {
    width: 360px;
}

#app_assignment_ritid {
    font-size: 23px;
    margin-bottom: 15px;
}

#app_schema_option_container {
    display: flex;
    justify-content: center;
    width: 900px;
    flex-wrap: wrap;
}

#app_schema_option_container > div {
    padding-top: 25px;
    padding-bottom: 25px;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: middle;
    background-color: #58a618;
    color: white;
    cursor: pointer;
    margin: 10px 2%;
}

/* Login */
#login_body {
    background-color: white;
    align-items: center;
    height: 100vh;
}

#login_main_wrapper {
    font-family: "museo-sans-300", sans-serif;
    color: #5b5b5b;
    font-size: 13px;
}

#login_form input {
    display: block;
    padding: 9px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 8px;
    border: solid 1px #dbdbdb;
    border-radius: 6px;
    outline: none;
}

#login_form {
    text-align: left;
}

#login_logo {
    width: 299px;
    margin-bottom: 40px;
}

#login_input_container {
    text-align: center;
}

#login_input_sub {
    text-align: left;
    width: 100%;
}

#login_title {
    margin-bottom: 50px;
}

#login_submit {
    background-color: #58a618;
    color: white;
    margin-top: 30px;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}
