:root {
    /** --- color ---- **/
    /*
    --md-sys-color-primary: #757575;
    --md-sys-color-secondary: blue;
    /**/
    --mdc-theme-primary: #000;
    --mdc-protected-button-container-color: #000;
    --mdc-theme-on-primary: #fff;
    --mdc-theme-secondary: #444;

    --mdc-theme-error: #b00020;

    /*
    --md-filled-text-field-caret-color: var(--md-sys-color-primary);
    --_caret-color: var(--md-sys-color-primary);
    caret-color: var(--_caret-color);
    // */
    /** --- font ---- **/
    --md-sys-typescale-body-medium-size: 1rem;
    --md-sys-typescale-body-medium-line-height: 1.5rem;

    --rs-font-main: Roboto, sans-serif;
    --rs-font-2: 'Work Sans', sans-serif;

    --rs-font-weight-normal: 300;
    --rs-font-weight-medium: 400;
    --rs-font-weight-bold: 500;
    --rs-font-weight-bolder: 600;
    --rs-font-weight-boldest: 700;



    --rs-header-font-weight: var(--rs-font-weight-normal);
    --rs-mobile-sidebar-width: 61px;



    --background: #303030;
    --foreground: #424242;
    --text-color: #ffffff;
    --text-color-2: rgba(255, 255, 255, 0.6);
    --primary-color: #e51c60;

    --elevation-z1: 0 2px 1px -1px rgba(0, 0, 0, 0.2),
    0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
    --elevation-z2: 0 2px 4px -1px rgba(0, 0, 0, 0.2),
    0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
    --hover: rgba(255, 255, 255, 0.04);
    --thumb: rgba(0, 0, 0, 0.25);
    --min-width: 400px;
    --max-width: 900px;

}


* {
    box-sizing: border-box;
}

html,
body {
    margin:0;
    height:100%;
    min-height:100%;
}

body {
    font-family: var(--rs-font-main);
    display: flex;
    flex-direction: column;
}


header {
    flex: 1 0 10%;
}

main.pm-app-main {
    flex: 1;
    display: flex;
    flex-direction: row;
    min-height: 100%;
    align-items: stretch;
}

.pm-sidenav-drawer {
    width: 280px;
    display: flex;
    flex: 0 0 280px;
}

.pm-sidenav-drawer-content {
    background: #212121;
    position: fixed;
    width: 280px;
    display: flex;
    flex-direction: column;
}

button:active:focus,
button:focus:not(:focus-visible) {
    outline: none;
}

a[role="button"] {
    text-decoration: none;
}

.pm-container {
    height: 100vh;
    min-height: 100vh;
}

.pm-page-dashboard .pm-container {
    position: relative;
    flex: 1;
}

.pm-app-container {
    height: 100vh;
    min-height: 100vh;
}

.pm-form-content {
    overflow: visible;
}

.pm-application .mdc-top-app-bar.mdc-top-app-bar--fixed {
    z-index: 7;
}

.pm-application .mdc-top-app-bar .mdc-top-app-bar__row {
}

.pm-application .mdc-top-app-bar__title {
    margin-left: 140px;
}

.pm-app-main.mdc-top-app-bar--fixed-adjust {
}

h1, h2, h3, h4, h5
{
    font-family: var(--rs-font-main);
    font-weight: var(--rs-header-font-weight);
}

h1
{
    font-size: 32px;
}


.material-icons.pm-upload-icon {
    font-size: 50px;
}

/* --------------------------------------------- */
/* ------------------ flexbox ------------------ */
/* --------------------------------------------- */

.rs-flex {
    display: flex;
}

.rs-flex.\--flex-children > *:not(.\--no-flex) {
    flex: 1;
}

.\--flex-end {
    align-self: end;
}

.\--column {
    flex-direction: column;
    gap: 16px;
}

.\--row {
    flex-direction: row;
}

.\--column.\--no-gap {
    gap: 0;
}

.\--column.\--gap-medium {
    gap: 24px;
}

.\--column.\--gap-large {
    gap: 32px;
}

/* --------------------------------------------- */
/* ---------------- text styles ---------------- */
/* --------------------------------------------- */

.rs-text-line-shorten {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rs-font.\--capitalize {
    text-transform: capitalize;
}

.rs-font.\--uppercase {
    text-transform: uppercase;
}

.rs-font.\--transform-none {
    text-transform: none;
}

.rs-font.\--white {
    color: #fff;
}

.rs-font.\--align-center {
    text-align: center;
}

.rs-valign-bottom {
    vertical-align: bottom;
}

.rs-valign-top {
    vertical-align: top;
}

.rs-valign-middle {
    vertical-align: middle;
}

.rs-margin-center {
    margin-right: auto;
    margin-left: auto;
}

/* --------------------------------------------- */
/* ------------------ font style ------------------ */
/* --------------------------------------------- */


.rs-font.\--weight-normal {
    font-weight:var(--rs-font-weight-normal);
}

.rs-font.\--weight-medium {
    font-weight: var(--rs-font-weight-medium);
}

.rs-font.\--bold {
    font-weight: var(--rs-font-weight-bold);
}

.rs-font.\--bolder {
    font-weight: var(--rs-font-weight-bolder);
}

.rs-font.\--boldest {
    font-weight: var(--rs-font-weight-boldest);
}

.rs-font.\--weight-100 {
    font-weight: 100;
}

.rs-font.\--weight-300 {
    font-weight: 300;
}

.rs-font.\--weight-400 {
    font-weight: 400;
}

.rs-font.\--weight-500 {
    font-weight: 500;
}

.rs-font.\--weight-600 {
    font-weight: 600;
}

.rs-font.\--weight-700 {
    font-weight: 700;
}

.rs-font.\--weight-900 {
    font-weight: 900;
}

.rs-font.\--italic {
    font-style: italic;
}

.rs-font.\--underline {
    text-decoration: underline;
}

.rs-font.\--weight-normal {
    font-weight:var(--rs-font-weight-normal);
}

.rs-font.\--style-error {
    color: var(--mdc-theme-error, #b00020);
}

/* --------------------------------------------- */
/* ------------------ display ------------------ */
/* --------------------------------------------- */

.rs-hover-default:hover {
    cursor: default;
}

.rs-hover-pointer:hover {
    cursor: pointer;
}

.rs-hover-pointer.\--opacity-60:hover {
    opacity: 0.6;
}

.rs-mouse-event-none {
    pointer-events: none;
}

.rs-hide,
.rs-display.\--none {
    display: none !important;
}

.rs-show,
.rs-display.\--block {
    display: block;
}

.rs-display.\--inline-block {
    display: inline-block;
}

.rs-display.\--inline {
    display: inline;
}

.rs-display-table,
.rs-table {
    display: table;
}

.rs-display-table-row,
.rs-table-row {
    display: table-row;
}

.rs-display-table-cell,
.rs-table-cell {
    display: table-cell;
}


/* --------------------------------------------- */
/* ------------ margins and padding ------------ */
/* --------------------------------------------- */

.rs-m-b-0 {
    margin-bottom: 0;
}

.rs-m-0 {
    margin: 0;
}

.rs-m-5 {
    margin: 5px;
}

.rs-m-10 {
    margin: 10px;
}

.rs-m-15 {
    margin: 15px;
}

.rs-m-20 {
    margin: 20px;
}

.rs-m-25 {
    margin: 25px;
}

.rs-m-30 {
    padding: 30px;
}

.rs-m-rl-0 {
    margin-right: 0;
    margin-left: 0;
}

.rs-m-rl-5 {
    margin-right: 5px;
    margin-left: 5px;
}

.rs-m-rl-10 {
    margin-right: 10px;
    margin-left: 10px;
}

.rs-m-rl-15 {
    margin-right: 15px;
    margin-left: 15px;
}

.rs-m-rl-20 {
    margin-right: 20px;
    margin-left: 20px;
}

.rs-m-rl-25 {
    margin-right: 25px;
    margin-left: 25px;
}

.rs-m-rl-30 {
    margin-right: 30px;
    margin-left: 30px;
}

.rs-m-tb-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.rs-m-tb-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.rs-m-tb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.rs-m-tb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.rs-m-tb-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.rs-m-tb-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.rs-m-tb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.rs-m-t-0 {
    margin-top: 0;
}

.rs-m-t-5 {
    margin-top: 5px;
}

.rs-m-t-10 {
    margin-top: 10px;
}

.rs-m-t-15 {
    margin-top: 15px;
}

.rs-m-t-20 {
    margin-top: 20px;
}

.rs-m-t-25 {
    margin-top: 25px;
}

.rs-m-t-30 {
    margin-top: 30px;
}

.rs-m-b-0 {
    margin-bottom: 0;
}

.rs-m-b-5 {
    margin-bottom: 5px;
}

.rs-m-b-10 {
    margin-bottom: 10px;
}

.rs-m-b-15 {
    margin-bottom: 15px;
}

.rs-m-b-20 {
    margin-bottom: 20px;
}

.rs-m-b-24 {
    margin-bottom: 24px;
}

.rs-m-b-25 {
    margin-bottom: 25px;
}

.rs-m-b-30 {
    margin-bottom: 30px;
}

.rs-m-r-0 {
    margin-right: 0;
}

.rs-m-r-5 {
    margin-right: 5px;
}

.rs-m-r-10 {
    margin-right: 10px;
}

.rs-m-r-15 {
    margin-right: 15px;
}

.rs-m-r-20 {
    margin-right: 20px;
}

.rs-m-r-25 {
    margin-right: 25px;
}

.rs-m-r-30 {
    margin-right: 30px;
}

.rs-m-l-0 {
    margin-left: 0;
}

.rs-m-l-5 {
    margin-left: 5px;
}

.rs-m-l-10 {
    margin-left: 10px;
}

.rs-m-l-15 {
    margin-left: 15px;
}

.rs-m-l-20 {
    margin-left: 20px;
}

.rs-m-l-25 {
    margin-left: 25px;
}

.rs-m-l-30 {
    margin-left: 30px;
}

.rs-p-0 {
    padding: 0;
}

.rs-p-5 {
    padding: 5px;
}

.rs-p-10 {
    padding: 10px;
}

.rs-p-15 {
    padding: 15px;
}

.rs-p-20 {
    padding: 20px;
}

.rs-p-25 {
    padding: 25px;
}

.rs-p-30 {
    padding: 30px;
}

.rs-p-rl-0 {
    padding-right: 0;
    padding-left: 0;
}

.rs-p-rl-5 {
    padding-right: 5px;
    padding-left: 5px;
}

.rs-p-rl-10 {
    padding-right: 10px;
    padding-left: 10px;
}

.rs-p-rl-15 {
    padding-right: 15px;
    padding-left: 15px;
}

.rs-p-rl-20 {
    padding-right: 20px;
    padding-left: 20px;
}

.rs-p-rl-25 {
    padding-right: 25px;
    padding-left: 25px;
}

.rs-p-rl-30 {
    padding-right: 30px;
    padding-left: 30px;
}

.rs-p-tb-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.rs-p-tb-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.rs-p-tb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.rs-p-tb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.rs-p-tb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.rs-p-tb-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.rs-p-tb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.rs-p-t-0 {
    padding-top: 0;
}

.rs-p-t-5 {
    padding-top: 5px;
}

.rs-p-t-10 {
    padding-top: 10px;
}

.rs-p-t-15 {
    padding-top: 15px;
}

.rs-p-t-20 {
    padding-top: 20px;
}

.rs-p-t-25 {
    padding-top: 25px;
}

.rs-p-t-30 {
    padding-top: 30px;
}

.rs-p-b-0 {
    padding-bottom: 0;
}

.rs-p-b-5 {
    padding-bottom: 5px;
}

.rs-p-b-10 {
    padding-bottom: 10px;
}

.rs-p-b-15 {
    padding-bottom: 15px;
}

.rs-p-b-20 {
    padding-bottom: 20px;
}

.rs-p-b-24 {
    padding-bottom: 24px;
}

.rs-p-b-25 {
    padding-bottom: 25px;
}

.rs-p-b-30 {
    padding-bottom: 30px;
}

.rs-p-r-0 {
    padding-right: 0;
}

.rs-p-r-5 {
    padding-right: 5px;
}

.rs-p-r-10 {
    padding-right: 10px;
}

.rs-p-r-15 {
    padding-right: 15px;
}

.rs-p-r-20 {
    padding-right: 20px;
}

.rs-p-r-25 {
    padding-right: 25px;
}

.rs-p-r-30 {
    padding-right: 30px;
}

.rs-p-l-0 {
    padding-left: 0;
}

.rs-p-l-5 {
    padding-left: 5px;
}

.rs-p-l-10 {
    padding-left: 10px;
}

.rs-p-l-15 {
    padding-left: 15px;
}

.rs-p-l-20 {
    padding-left: 20px;
}

.rs-p-l-25 {
    padding-left: 25px;
}

.rs-p-l-30 {
    padding-left: 30px;
}

/* ----------- width ----------- */
.rs-w-100 {
    width: 100%;
}

/* ----------- positions ----------- */
.rs-position-relative {
    position: relative;
}

.rs-position-fixed {
    position: fixed;
}

.rs-position-absolute {
    position: absolute;
}

.rs-position-static {
    position: static;
}

[class*='position-'].\--top {
    top: 0;
}

[class*='position-'].\--bottom {
    bottom: 0;
}

[class*='position-'].\--right {
    right: 0;
}

[class*='position-'].\--left {
    left: 0;
}

.vertical-align-top {
    vertical-align: top;
}

.vertical-align-middle {
    vertical-align: middle;
}

.rs-position-absolute.\--vertical-align-middle,
.rs-position-absolute.vertical-align-middle {
    top: 50%;
    transform: translateY(-50%);
}

.vertical-align-bottom {
    vertical-align: bottom;
}

.rs-position-initial {
    position: initial;
}



/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */

.pm-app-top-nav-logo {
    max-height: 40px;
    width: auto;
    margin-left: 24px;
    filter: invert(1);
}

.pm-school-nav-contact-holder {
    color: #bbb;
    flex: 1;
    font-weight: 300;
    font-size: 12px;
    justify-content: end;
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 20px;
    flex-direction: column;
    gap: 7px;
}

.pm-field-helper-sub-text {
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: #666;
    padding-left: 15px;
    margin-bottom: 4px;
    margin-top: -2px;
}

.pm-school-nav-contact-holder a {
    color: #bbb;
    text-decoration: none;
    font-weight: 300;
    font-size: 12px;
}

.pm-school-nav-contact-holder a:hover {
    text-decoration: underline;
}

.pm-text-notices {
    font-weight: 300;
    font-size: 14px;
    color: #444;
}

.pm-text-notices a {
    color: #000;
    font-weight: 400;
}

.pm-text-notices a:hover {
    cursor: pointer;
    text-decoration: none;
    color: #444;
}

.pm-document-uploads-section {
    max-width: 1000px;
}

.pm-document-uploads-section .docs-info-help {
    width: 20px;
    height: 20px;
    position: relative;
    text-decoration: underline;

}

.pm-document-uploads-section .docs-info-help:hover {
    cursor: pointer;
    text-decoration: none;
}

.pm-document-uploads-section .docs-info-help .pm-upload-help-icon{
    color: var(--primary-color);
    position: absolute;
    left: -29px;
    top: -2px;
}

.pm-document-uploads-section .docs-info-help:hover .pm-upload-help-icon{
    cursor: pointer;
    color: #AD184BFF;
}

.dialog-upload-info ul {
    font-size: 14px;
    margin-top: 20px;
}

.dialog-upload-info ul ul {
    margin-top: 4px;
}

.pm-btn {

}

.pm-send-btn > * {
    pointer-events: none;
}

.mdc-text-field--invalid + .mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
    opacity: 1;
}

.mdc-text-field--invalid:not(.mdc-text-field--focused) + .mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
    color: var(--mdc-theme-error);
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label,
.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label,
.mdc-floating-label {
    color: var(--mdc-theme-secondary);
}

.pm-state-select-main .mdc-menu-surface {
    height: 160px;
}

.pm-content {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.pm-content-info {
    display: block;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.46);
}

.pm-header {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.pm-main {
    position: relative;
    z-index: 4;
}

.pm-app-form {
    margin-bottom:70px;
}

.pm-content-img-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    vertical-align: middle;
    border-style: none;
}

.pm--main-content {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

img.pm-header-logo {
    max-height: 60px;
    max-width: 100%;
    filter: invert(1);
}

.pm-h1-intro {
    font-family: Montserrat, sans-serif;
    font-size: 48px;
}

.pm-h2-intro {
    margin-top: 32px;
    margin-bottom: 32px;
}

.rs-btn:hover {
    cursor: pointer;
}

.rs-btn.pm-start-new-app {
    padding: 24px 40px;
    font-size: 16px;
}

.rs-btn.pm-sign-in {
    flex: 0 0 auto;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid #fff;
    padding: 12px 24px;
}

.pm-footer {
    background-color: #212121;
    color: #fff;
    padding-top: 48px;
    padding-bottom: 48px;
    flex: 1;
}

h4.contact-questions {
    color: #ddd;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 10px;
}
/* --------------------------------------------- */
/* ------------------- Modal ------------------- */
/* --------------------------------------------- */
.blur {
    filter: blur(2px);
}

.pm-modal-login,
.pm-modal {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5% 10%;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.pm-modal-login h3,
.pm-modal h3 {
    line-height: 70px;
    color: #666666;
}

.pm-modal-container {
    max-height: 95%;
    background: white;
    border-radius: 4px;
    position: relative;
    width: 90%;
    max-width: 1080px;
    overflow: hidden;
}

.pm-modal-login .pm-modal-container {
    max-width: 400px;
}

.pm-modal-header {
    border-bottom: #dfdfdf 1px solid;
}

.pm-modal-content {
    padding: 30px 30px 0 30px;
    overflow: scroll;
}

.pm-modal-footer {
    margin-top: 15px;
    padding: 30px;
    border-top: #dfdfdf 1px solid;
}

.modal-show .pm-modal {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-show-login .pm-modal-login {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.pm-modal-close {
    color: #666;
    line-height: 50px;
    font-size: 14px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
}

.pm-modal-close:hover {
    color: #000;
    cursor: pointer;
}

.pm-show-pass-login-toggle:hover,
.pm-show-pass-toggle:hover {
    cursor: pointer;
    color: #999;
}

.pm-modal-content .pm-mdc-menu-surface.mdc-menu {
    top: calc(-100% - 37px) !important;
    border-radius: 4px 4px 0 0;
}

.pm-payment-modal .pm-dialog-content,
.pm-payment-modal .pm-modal-okay-btn {
    display: none;
}

.pm-dialog-content h3 {
    border-bottom: solid 1px #eee;
    padding-bottom: 10px;
}

.pm-profile-menu.mdc-menu-surface--open.mdc-menu {
    transform-origin: right calc(100% - 7px) !important;
    transform-origin: initial !important;
    transform-origin: unset !important;

    transform-origin: 0 0  !important;

    top: calc(100% - 7px) !important;
    left: initial !important;
    right: 0;
}

.pm-profile-menu ul.mdc-list {
}

.pm-profile-menu li {
    font-size: 15px;
    min-width: 132px;
    display: flex;
    flex-direction: row;
}

.pm-profile-menu li .mdc-list-item__text {
    flex: 1;
}

.pm-profile-menu li .mdc-menu__selection-group-icon i  {
    font-size: 18px;
    vertical-align: text-bottom;
}

.pm-error-msg-container {
    font-size: 12px;
    height: 20px;
    margin-top: 15px;
    padding-left: 10px;
}

.pm-password-reset-success-msg {
    font-weight: 300;
    margin-bottom: 10px;
}

.pm-modal-content:not(.pm-pass-reset) .pm-password-reset-success-msg {
    display: none;
}


.pm-modal-content.pm-pass-reset {
    padding-bottom: 30px;
}

.pm-modal-content.pm-pass-reset .pm-login-email-field-holder {
    display: none;
}

.pm-create-error-msg-container {
    font-size: 12px;
    height: 20px;
    margin-bottom: 0;
    padding-left: 8px;
}

.pm-error-forgot-password-container {
    text-decoration: none;
    color: #111;
}

.pm-snackbar .mdc-snackbar__surface {
    min-width: 270px;
    opacity: 0.92;
}


/* ------------------------------------------------------------------- */
/* ----------------------------- Spinner ----------------------------- */
/* ------------------------------------------------------------------- */

.pm-loader {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: hotpink;
    animation: spin 0.5s ease-in-out infinite;
    -webkit-animation: spin 0.5s ease-in-out infinite;
}

.drag-file-area.pm-file-in-progress::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: hotpink;
    animation: spin 0.5s ease-in-out infinite;
    -webkit-animation: spin 0.5s ease-in-out infinite;
    position: absolute;
    margin-left: -5px;
}

.drag-file-area.pm-file-in-progress::after {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.drag-file-area.pm-file-in-progress .pm-upload-icon {
    opacity: 0;
}

.pm-create-app-btn-is-sending .pm-loader.pm-create {
    width: 20px;
    height: 20px;
    border-width: 3px;
    border-color: #000;
    border-top-color: #e4e4e4;
    animation: spin 0.7s ease-in-out infinite;
    -webkit-animation: spin 0.7s ease-in-out infinite;
}

.pm-create-app-btn-is-sending .pm-create-acct-btn-text {
    color: #000;
}

.pm-create-app-btn-is-sending .material-icons {
    display: none;
}

.pm-loader-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.2s;
}

.pm-loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pm-loading .pm-app-main {
    filter: blur(2px);
}

.pm-loading .pm-loader-bg {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* -------------------------------------------------------------------------------- */
/* -----------------------------------  SideNav  ----------------------------------- */
/* -------------------------------------------------------------------------------- */


.pm-sidenav-drawer nav.mdc-list {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pm-page-dashboard {
    font-family: 'Work Sans', sans-serif;
}

.pm-page-dashboard .pm-sidenav-drawer nav.mdc-list {
    padding-top: 35px;
}

.pm-page-dashboard .pm-welcome-school-logo {
    padding: 10px 32px;
    background: #000;
}

.pm-page-dashboard .pm-welcome-school-logo a {
    display: inline-block;
}

.pm-page-dashboard .pm-welcome-school-logo img {
    margin-left: 0;
}

.pm-page-dashboard a.mdc-list-item.mdc-list-item-dashboard {
    color: #fff;
    font-weight: 500;
}

.pm-page-dashboard a.mdc-list-item.mdc-list-item-dashboard .material-icons.pm-step-icon {
    color: #fff;
    border-color: #666;
    line-height: 29px;
    background: #767676;
}

.pm-page-dashboard .pm-dashboard-welcome {
    position: relative;
    color: #fff;
    background: var(--primary-color);
    padding: 30px;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
}

.pm-page-dashboard .pm-dashboard-welcome h1 {
    font-size: 64px;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Work Sans', sans-serif;
    line-height: initial;
}

.pm-page-dashboard .pm-dashboard-welcome .pm-welcome-message {
    margin-top: 0;
    margin-bottom: 15px;
}

.pm-page-dashboard .pm-dashboard-welcome .pm-welcome-message.pm-app-is-paid {
    margin-bottom: 50px;
}

.pm-dashboard-user-menu-holder {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
}

.pm-profile-btn {
    color: #fff;
}

i.pm-show-pass-icon {
}

.pm-page-dashboard .pm-welcome-btn {
    background-color: #000;
    margin-bottom: 10px;
    border-radius: 4px;
    padding: 18px 40px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    margin-top: 15px;
}

.pm-page-dashboard .pm-welcome-content {
    padding: 30px 30px 30px 30px;
    font-weight: 300;
    font-size: 16px;
    color: #444;
    line-height: 26px;
}

.pm-page-dashboard .pm-welcome-content h3 {
    margin-top: 0;
    color: #444;
    font-size: 20px;
}
.pm-page-dashboard .pm-welcome-content ol,
.pm-page-dashboard .pm-welcome-content li {
    margin-top: 0;
    margin-bottom: 0;
}

.pm-page-dashboard .pm-app-top-nav-logo-desktop {
    max-height: 40px;
    width: auto;
    margin-left: 24px;
    filter: invert(1);
}

.pm-page-dashboard .pm-app-top-nav-logo-mobile {
    max-height: 32px;
    width: auto;
}

.pm-page-dashboard .pm-school-nav-contact-holder {
    padding-bottom: 30px;
}

.pm-sidenav-drawer a.mdc-list-item {
    color: #bbb;
    padding: 6px 15px 6px 32px;
    font-size: 15px;
    font-weight: 300;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.pm-sidenav-drawer a.mdc-list-item.mdc-list-item--activated {
    color: #fff;
    background: #171717;
    font-weight: 400;
}

.pm-sidenav-drawer a.mdc-list-item:not(.mdc-list-item--activated):not(.pm-nav-item-x):focus,
.pm-sidenav-drawer a.mdc-list-item:not(.mdc-list-item--activated):not(.pm-nav-item-x):hover {
    color: #fff;
    background: #1c1c1c;
    font-weight: 400;
}

.pm-sidenav-drawer a.pm-nav-item-x:focus .pm-show-sidebar-icon,
.pm-sidenav-drawer a.pm-nav-item-x:hover .pm-show-sidebar-icon {
    padding-right: 3px;
    background: #191919;
    border-radius: 2px;
    color: #ccc;
}

.pm-step-icon {
    background-color: #212121;
    border: 2px solid #424242;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
    flex: 0 0 32px;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    margin-right: 8px;
    text-align: center;
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.material-icons.pm-step-icon {
    color: #999;
    font-size: 20px;
    line-height: 24px;
}

.pm-sidenav-drawer a.mdc-list-item:not(.mdc-list-item--activated):hover .material-icons.pm-step-icon {
    color: #fff;
}

a.mdc-list-item.mdc-list-item--activated .material-icons.pm-step-icon {
    color: #fff;
}
/* ------------------------------------------------------------------- */
/* ----------------------------- Uploads ----------------------------- */
/* ------------------------------------------------------------------- */

.form-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-files-container {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.drag-file-area {
    border: 1px dashed #333;
    border-radius: 4px;
    margin: 10px 0 15px;
    min-width: 350px;
    width: 100%;
    text-align: center;
    color: #333;
    padding: 30px 50px;
    cursor: pointer;
    position: relative;
}

.drag-file-area *:not(.pm-file-preview) {
    cursor: pointer;
}

.pm-file-preview {
    position: absolute;
    right: 0;
    left: 0;
    top: 10%;
    bottom: 10%;
    background: #fff;
}

.drag-file-area:not(.pm-show-file) .pm-file-preview {
    display: none;
}

.pm-file-preview img {
    max-height: 80%;
    width: auto;
}

.pm-file-edit {
    position: absolute;
    right: 0;
    left: 0;
    top: 10%;
    bottom: 10%;
    background: #fff;
}

.drag-file-area:not(.pm-show-file) .pm-file-edit {
    display: none;
}

.file-edit-toolbar {
    gap: 20px;
}

.pm-file-edit .pm-upload-icon,
.drag-file-area .upload-icon {
    font-size: 50px;
}

.pm-file-edit .pm-upload-icon {
    color: #45a63d;
}

.drag-file-area h3 {
}

.drag-file-area label {
}

.drag-file-area label .pm-browse-files-text {
    font-weight: 200;
    color: #555;
}

.browse-files span {
}

.default-file-input {
    display: none;
}

.cannot-upload-message {
    background-color: #ffc6c4;
    font-size: 17px;
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 5px 10px 5px 30px;
    border-radius: 5px;
    color: #BB0000;
    display: none;
}

.mdc-checkbox input[type="checkbox"]:required + .mdc-checkbox__background:after {
    content: " * ";
    position: absolute;
    left: 20px;
    top: 4px;
}

.upload-files-container.\--style-error > h3,
.mdc-checkbox.\--style-error input[type="checkbox"]:required + .mdc-checkbox__background:after,
.mdc-checkbox.\--style-error + label {
    color: var(--mdc-theme-error, #b00020);
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.cannot-upload-message span, .upload-button-icon {
    padding-right: 10px;
}

.cannot-upload-message span:last-child {
    padding-left: 20px;
}

.file-block {
    color: #f7fff7;
    background-color: #333;
    transition: all 1s;
    width: 390px;
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 15px;
    padding: 10px 20px;
    border-radius: 4px;
}

.file-info {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.file-icon {
    margin-right: 10px;
}

.file-name, .file-size {
    padding: 0 3px;
}

.remove-file-icon {
    cursor: pointer;
}

.progress-bar {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 4.5%;
    width: 0;
    height: 5px;
    border-radius: 25px;
    background-color: #4BB543;
}

.pm-next-steps {
    font-weight: 300;
    font-size: 14px;
}

.expansion-panel-header .expansion-panel-title {
    display: flex;
    flex-direction: row;
}

.pm-app-missing-fields-icon-holder {
    margin-left: 8px;
    line-height: 32px;
    height: 32px;
}

.expansion-panel:not(.active) .pm-app-missing-fields-icon.material-icons {
    line-height: 20px;
    font-size: 24px;
}

.active .pm-app-missing-fields-icon.material-icons {
    line-height: 20px;
    font-size: 24px;
}

/* ------------------------------------------------------------------------------- */
/* ---------------------------------  Accordion  --------------------------------- */
/* ------------------------------------------------------------------------------- */

.accordion {
    width: 100%;
    border-radius: 4px;
}

.expansion-panel {
    width: 100%;
    position: relative;
    transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-bottom: #fff solid 1px;
}

.expansion-panel-header {
    height: 48px;
    cursor: pointer;
    width: 100%;
    background: none;
    border: 0;
    color: inherit;
    padding: 16px 24px;
    text-align: initial;
    background: var(--foreground);
    background: rgb(117, 117, 117);
}

.expansion-panel-header:active:focus,
.expansion-panel-header:focus:not(:focus-visible) {
    outline: none;
}

.rs-profile-btn:focus-visible {
    outline: 1px dotted #212121;
    outline: 5px auto -webkit-focus-ring-color;
}

.expansion-panel-header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.expansion-panel-header .expansion-panel-description {
    color: var(--text-color-2);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 16px;
    font-size: 14px;
}

.expansion-panel-header .expansion-panel-indicator {
    border-style: solid;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    vertical-align: middle;
    width: 8px;
    height: 8px;
    transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1);
}

.expansion-panel-header .expansion-panel-title {
    color: #fff;
    flex: 1;
}

.mdc-text-field--disabled .mdc-floating-label {
    color: rgba(0, 0, 0, 0.6);
}

.expansion-panel-header .pm-panel-fields-cnt-holder {
    color: #fff;
    margin-right: 30px;
    font-weight: 300;
}

.pm-nav-item.pm-missing-fields .mdc-list-item__text {
    color: #ffaab9;
}

.expansion-panel-header:not(.pm-missing-fields) .pm-app-missing-fields-icon-holder {
    display: none;
}

.expansion-panel-body {
    min-height: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.expansion-panel-body-content {
    padding: 24px;
    line-height: 1.5;
}

.expansion-panel-header:hover,
.expansion-panel-header:focus {
    background: var(--foreground);
}

.expansion-panel.active {
}

.expansion-panel.active .expansion-panel-indicator {
    transform: rotate(225deg);
}

.expansion-panel.active .expansion-panel-body {
    height: var(--ht, 220px);
    visibility: visible;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

.expansion-panel.active .expansion-panel-header {
    background: #333;
}

.expansion-panel.active .expansion-panel-header:hover {
    background: var(--foreground);
}

.expansion-panel:not(.active) .expansion-panel-header:hover {
    background: var(--foreground);
}

.pm-page-forgot-password h1 {
    font-size: 24px;
}

.pm-page-forgot-password .pm-modal-container {
    min-height: 50px;
    min-width: 300px;
    width: 100%;;
    padding: 60px 50px 30px 50px;
}

.pm-page-forgot-password .pm-password-label {
    margin-top: 20px;
}

.pm-page-forgot-password .pm-modal-footer {
    padding-bottom: 10px;
}

.pm-page-forgot-password .pm-password-reset-success-msg {
    margin-bottom: 30px;
    font-weight: 300;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}


/* ------------------------------------------------------------------------------- */
/* -----------------------------------  Media  ----------------------------------- */
/* ------------------------------------------------------------------------------- */

@media (max-width: 1080px)
{
    .pm-form-content {
        width: calc(100% - 61px);
    }

    .expansion-panel-header {
        padding-right: 12px;
        padding-left: 12px;
    }

    .pm-account-dialog .mdc-button.mdc-button--leading.rs-w-100 {
        max-width: 300px;
    }

    .expansion-panel-header .pm-panel-fields-cnt-holder {
        margin-right: 12px;
    }

    .expansion-panel-body-content {
        padding-right: 12px;
        padding-left: 12px;
    }

    .pm-modal {
        padding-right: 5%;
        padding-left: 5%;
    }

    h4.contact-questions {
        display: none;
    }

    body:not(.pm-sidebar-show) .pm-sidenav-drawer {
        width: var(--rs-mobile-sidebar-width);
        flex: 0 0 var(--rs-mobile-sidebar-width);
    }

    body:not(.pm-sidebar-show) .pm-sidenav-drawer-content {
        width: var(--rs-mobile-sidebar-width);
    }

    .pm-sidenav-drawer nav.mdc-list {
        padding-top: 8px;
    }

    body:not(.pm-sidebar-show) .pm-sidenav-drawer a.mdc-list-item {
        padding: 6px 15px;
    }

    .pm-show-sidebar-nav {
        margin-bottom: 22px;
    }

    body:not(.pm-sidebar-show) .pm-sidenav-drawer a.mdc-list-item .mdc-list-item__text {
        display: none;
    }

    body.pm-sidebar-show .pm-sidenav-drawer a.mdc-list-item.pm-show-sidebar-nav {
    }

    .pm-show-sidebar-icon {
        padding: 3px;
    }

    .pm-application .mdc-top-app-bar__title {
        margin-left: 0;
        font-size: 18px;
    }

    .pm-app-top-nav-logo {
        margin-left: 0;
    }

    .pm-school-nav-contact-holder .pm-nav-contact-label,
    .pm-school-nav-contact-holder .pm-school-nav-contact-text {
        display: none;
    }

    .pm-school-nav-contact-holder {
        padding-left: 19px;
        padding-right: 15px;
    }

    .pm-page-dashboard.pm-sidebar-show .pm-app-top-nav-logo-mobile {
        display: none;
    }

    .pm-page-dashboard:not(.pm-sidebar-show) .pm-welcome-school-logo {
        width: 60px;
        padding: 15px;
    }

    .pm-page-dashboard .pm-sidenav-drawer nav.mdc-list {
        padding-top: 10px
    }

    .pm-page-dashboard:not(.pm-sidebar-show) .pm-app-top-nav-logo-desktop {
        display: none;
    }
}

@media (min-width: 1081px)
{
    .pm-sidenav-drawer a.mdc-list-item.pm-show-sidebar-nav {
        display: none;
    }

    .pm-school-nav-contact-holder .pm-school-nav-contact-icon.material-icons {
        display: none;
    }

    .pm-page-dashboard .pm-app-top-nav-logo-mobile {
        display: none;
    }
}

@media (max-width: 767px)
{
    .pm-modal {
        padding-right: 3%;
        padding-left: 3%;
    }

    .pm-snackbar .mdc-snackbar__surface {
        min-width: 100%;
    }
}

