#panel_navigation .topNavigation,
#panel_navigation a.social{
    display: none;
}

#panel_login {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    background-color: #5d4182;
}

/* TODO IMPORTANT: do not show google login button if going to log out first */

.button_google-login {
    display: inline-block;
    background-image: url('/_images/_structure/button_google-sign-in.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 45px;
    cursor: pointer;
}


#panel_login .section_shared-buttons {
    margin-bottom: 100px;
    display: none;
}

#panel_login.logged-in .section_shared-buttons {
    display: block;
}

/* TODO: just make CTA buttons */
#panel_login .section_shared-buttons button {
    width: 200px;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}

#panel_login.logged-in .section_google-login,
#panel_login.logged-in .section_clever-login,
#panel_login.logged-in .section_standard-login
{
    display: none;
}


#panel_login.logged-in-with-google #button_google-login {
    display: none;
}

#panel_login #button_logout {
    display: none;
    width: 200px;
    height: 45px;
}

#panel_login.logged-in-with-google #button_logout {
    display: inline-block;
}


#panel_login .section_clever-login {
    margin-top: 20px;
}

#panel_login .section_clever-login #button_clever-login {
    display: inline-block;
}

#panel_login .section_standard-login {
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#panel_login .section_standard-login .panel_standard-login {
    max-height: 0;
    transition: max-height 1.5s;
    overflow: hidden;
}

#panel_login .section_standard-login.show-login-form .panel_standard-login {
    max-height: 999px;
}

#panel_login .section_standard-login #button_show-standard-login {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    cursor: pointer;
}

#panel_login .section_standard-login #button_show-standard-login span {
    font-size: 13px;
}

#panel_login .section_standard-login.show-login-form #button_show-standard-login {
    display: none;
}

#panel_login .section_standard-login .panel_standard-login #button_standard-login {
    width: 200px;
    height: 45px;
    margin-top: 20px;
    transition: background-color 0.5s;
}

#panel_login .section_standard-login .panel_standard-login-help {
    margin-top: 20px;
}

#panel_login .section_standard-login .panel_standard-login-help .button_standard-login-help {
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    font-weight: normal;
    cursor: pointer;
}

.tour-tip .button_show-school-search,
.panel_username-search .button_show-school-search {
    text-decoration: underline;
    cursor: pointer;
}

.panel_username-search .button_show-school-search {
    margin-top: 4px;
    margin-bottom: 4px;
}

.panel_login-error-message,
.message_no-school-results,
.message_no-username-results,
.message_sent-password-reset,
.message_password-reset-error {
    color: #fff;
    padding: 0 0 0 30px;
    overflow: hidden;
    font-size: 18px;
    text-align: left;
    position: relative;
    margin-left: 10px;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s, opacity 0.5s, padding 0.5s;
}

.panel_login-error-message::before,
.message_no-school-results::before,
.message_no-username-results::before,
.message_sent-password-reset::before,
.message_password-reset-error::before {
    content: "\01F622"; /* crying emoji */
    font-size: 24px;
    line-height: 24px;
    position: absolute;
    display: flex;
    vertical-align: middle;
    left: 0;
}

.panel_login-error-message.show,
.message_no-school-results.show,
.message_no-username-results.show,
.message_sent-password-reset.show,
.message_password-reset-error.show {
    max-height: 150px;
    opacity: 1;
    padding: 20px 0 20px 30px;
}

.message_sent-password-reset {
    font-size: 14px;
}

.message_sent-password-reset strong {
    color: #c4ecf3;
}

.message_sent-password-reset::before {
    content: "\01F48C";
}

.message_password-reset-error.use-google-button::before {
    content: "\01F62C";
}

.tour-tip {
    padding: 15px 10px 5px 10px;
}


.section_addcode {
    color: #fff;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    background-image: url('/_images/_structure/icons/icon_school-house.png');
    background-repeat: no-repeat;
    background-size: 65px 65px;
    background-position: left center;
    text-align: left;
    padding-top: 10px;
    padding-left: 90px;
}

.section_addcode p,
.section_addcode h3 {
    color: #fff;
}

.section_addcode p {
    font-size: 12px;
}

.section_addcode a {
    color: #f80;
}


/* LOGIN HELP & RETREIVE */

#panel_retrieve {
    color: #fff;
    position: fixed;
    top: 0;
    right: -35%;
    width: 30%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: scroll;
    background-color: #4f2f79;
    /* box-shadow: -2px 2px 2px #222; */
    transition: right 0.5s ease-in;
    z-index: 10000; /* above navigation */
}

@media only screen and (max-width: 984px) {
    #panel_retrieve {
        width: 50%;
        right: -55%;
    }
}

@media only screen and (max-width: 500px) {
    #panel_retrieve {
        width: 100%;
        right: -105%;
    }
}

#panel_retrieve.open {
    right: 0;
}

#panel_retrieve h1,
#panel_retrieve h2,
#panel_retrieve h3,
#panel_retrieve p {
    color: #fff;
}

#panel_retrieve > .superInnerContent {
    position: relative;
}

#panel_retrieve > .superInnerContent > .button_close-standard-login-help {
    position: absolute;
    top: 10px;
    right: 24px;
    cursor: pointer;
    font-size: 32px;
    font-weight: normal;
    font-family: 'Asap', arial, sans-serif;
    color: #fff;
}

#panel_retrieve .section_retrieve-navigation button,
#panel_retrieve .button_reset-password,
#panel_retrieve .button_verify-google-login-attempt {
    width: 200px;
    height: 45px;
    margin-top: 15px;
    display: block;
}

#panel_retrieve .section_retrieve-navigation button {
    margin-left: auto;
    margin-right: auto;
}

#panel_retrieve .button_verify-google-login-attempt {
    display: none;
    margin-top: 0;
    margin-left: 40px;
    margin-bottom: 20px;
}

#panel_retrieve .section_school-search {
    margin-top: 5px;
}

#panel_retrieve .section_school-search #button_school-search,
#panel_retrieve .section_username-search #button_username-search {
    width: 200px;
    height: 45px;
    margin-top: 5px;
    transition: background-color 0.5s;
}

.section_school-search .list_school-results,
.section_username-search .list_username-results {
    margin-top: 20px;
}

.section_school-search .list_school-results .school,
.section_username-search .list_username-results .username {
    margin-bottom: 10px;
    text-align: left;
}

.section_username-search .list_username-results .username {
    margin-top: 24px;
}

.section_school-search .list_school-results .school h3,
.section_username-search .list_username-results .username h3 {
    line-height: 22px;
}

.section_school-search .list_school-results .school .location {
    margin-bottom: 4px;
    display: inline-block;
}

.section_school-search .list_school-results .school .school-id {
    margin-bottom: 4px;
    margin-right: 10px;
    display: inline-block;
}

.section_school-search .list_school-results .school .button_select-school-id,
.section_username-search .list_username-results .username .button_select-username {
    display: block;
}

.section_username-search .list_username-results .username .button_select-username {
    margin-top: 4px;
}

.section_school-search .panel_school-results,
.section_username-search .panel_username-results {
    text-align: center;
}

.section_school-search .panel_school-results .button_load-more-schools,
.section_username-search .panel_username-results .button_load-more-usernames {
    margin-top: 15px;
    display: none;
}

.section_username-search .panel_username-results .username .button_google-login {
    width: 160px;
    margin-right: 10px;
}

.section_username-search .panel_username-results .username .button_select-username {
    display: inline-block;
    width: 160px;
}