<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

html, body {
    width: 100%;
    height: 100%;

    background-color: #d8d8d8;

    color: #404040;
    font-family: "Roboto";
}

input {
    font-family: "Roboto";
}


#page {
    width: 100%;
    min-height: 100%;

    display: flex;
    flex-direction: column;
}

.spacer_3  { height: 3px;  flex-shrink: 0; }
.spacer_6  { height: 6px;  flex-shrink: 0; }
.spacer_9  { height: 9px;  flex-shrink: 0; }
.spacer_12 { height: 12px; flex-shrink: 0; }
.spacer_18 { height: 18px; flex-shrink: 0; }
.spacer_24 { height: 24px; flex-shrink: 0; }
.spacer_36 { height: 36px; flex-shrink: 0; }
.spacer_48 { height: 48px; flex-shrink: 0; }
.spacer_60 { height: 60px; flex-shrink: 0; }


/* header. */

#header_wrapper {
    width: 100%;
    flex-shrink: 0;

    background-color: #ffffff;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
}

#header {
    position: relative;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    position: absolute;

    content: url(cf.php?f=logo.svg);
}


/* body. */

#body_wrapper {
    width: 100%;
    margin-top: 6px;
}


/* mobile */
@media only screen and (max-width: 1200px) {
    .desktop {
        display: none;
    }

    h1 {
        font-size: 24px;
    }


    /* header */

    #header {
        width: 100%;
        height: 75px;
    }

    .logo {
        position: absolute;
        left: 15px;
        top: 15px;
        width: 45px;
        height: 45px;
    }

    #header div {
        font-size: 30px;
    }


    /* body */

    #body_wrapper {
        padding: 0px 6px;
        margin-bottom: 6px;
    }

    #body {
        padding: 18px;

        background-color: #F9F9F9;
        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
    }
}


/* desktop */
@media only screen and (min-width: 1200px) {
    .mobile {
        display: none;
    }


    /* header */

    #header {
        width: 1200px;
        height: 100px;
    }

    .logo {
        position: absolute;
        left: 24px;
        top: 12px;
        width: 75px;
        height: 75px;
    }

    #header div {
        font-size: 36px;
    }


    /* body */

    #body_wrapper {
        flex-grow: 1;

        background-color: #ffffff;
    }

    #body {
        width: 1200px;
        margin: 0 auto;
        padding: 24px;

        background-color: transparent;
        box-shadow: none;
    }
}



/* forms */

.form_field {
    display: flex;
    flex-direction: column;
    padding: 9px 0px;
}

.form_field input,
.form_field select
{
    background-color: transparent;
    border: 1px solid #404040;
    border-radius: 3px;
}

.form_field select { padding-left: 2px; }
.form_field input { padding-left: 6px; }


.small_list {
    padding: 9px 0;
}
.small_list .save_list_wrapper {
    padding-left: 12px;
}

.small_list .form_field input,
.small_list .form_field select {
    margin-left: 9px;
    margin-right: 36px;
}

.small_list .list_remove_button,
.course_select .list_remove_button
{
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

@media only screen and (min-width: 1200px) {
    .small_list .list_remove_button,
    .course_select .list_remove_button
    {
        right: 12px;
    }
}


/* mobile */
@media only screen and (max-width: 1200px) {


    .form_row {
        display: flex;
        flex-direction: column;
    }

    .form_field {
        width: 100%;
    }

    .form_field label,
    .small_list label,
    .form_label {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .form_field input,
    .form_field select
    {
        margin-left: 12px;
        height: 30px;
        font-size: 16px;
    }


}

/* desktop */
@media only screen and (min-width: 1200px) {


    .form_row {
        display: flex;
        flex-direction: row;
    }

    .form_field {
        width: 350px;
        margin-right: 18px;
    }

    .form_field label,
    .small_list label,
    .form_label {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .small_list .save_list_wrapper {
        width: 385px;
    }

    .form_field input,
    .form_field select
    {
        margin-left: 12px;
        height: 36px;
        font-size: 20px;
    }


}


.popup_wrapper {
    position: fixed;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-around;

    background: rgba(0, 0, 0, 0.4);
}

.popup_window {
    position: relative;
    padding: 36px;

    background: #FFFFFF;
    border-radius: 25px;
}

.popup_close {
    position: absolute;
    top: 12px;
    right: 12px;
}

/* CLEANUP(llw): Copy paste from list remove. */
.popup_close {
    width: 24px;
    height: 24px;
    position: absolute;

    background-color: transparent;
    border-radius: 12px;
    border: 2px solid #F17D70;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}
.popup_close:before, .popup_close:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 12px;

    background-color: #F17D70;
}
.popup_close:before {
    transform: translate(-1px, -6px) rotate(45deg);
}
.popup_close:after {
    transform: translate(-1px, -6px) rotate(-45deg);
}

@media only screen and (max-width: 1200px) {
    .popup_window {
        width: calc(100% - 80px);
    }
}


</pre></body></html>