body {
    background-color: #fafafa;
    padding: 0px;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 26.4px;
    margin-top: 64px;
    width: 100%;
    margin: 0px;
    text-align: center;
    background-color: rgb(255, 255, 255);
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                 supported by Chrome, Edge, Opera and Firefox */
}

.other_font {
    font-family: Lato, Arial, sans-serif;
}

#vertical_border0 {
    height: 500px;
    width: 2px;
    border-left: 1px solid rgb(200, 200, 200);
}

#title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    line-height: 42px;
}

#title2 {
    font-size: 42px;
    font-weight: 300;
    margin-top: 200px;
    margin-bottom: 60px;
}

.bold_blue {
    color: #4739e7;
    font-weight: 600;
}

.round_button {
    border-radius: 30px;
    display: inline-block;
    width: 86px;
    height: 86px;
    padding: 23px;
    margin-left: 10px;
    margin-right: 10px;
    border: none;
}

.round_button_img {
    display: block;
    width: 40px;
}

.round_button[active='false'] {
    background-color: rgb(220, 220, 220) !important;
}

#content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px 0;
    margin: 0 auto;
    max-width: 900px;
}

#content_left {
    text-align: center;
    max-width: 350px;
}

#create_new_class_button {
    background-color: #4739e7;
}

#join_class_button {
    background-color: #ffba00;
}

#office_hours_button {
    background-color: #4739e7;
}

#class_schedule_button {
    background-color: #4739e7;
}

#launch_zoom_button {
    background-color: #4739e7;
}

#login_button {
    background-color: #4739e7;
}

.round_button_holder {
    display: inline-block;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
}

.round_button_label {
    width: 100px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 13px;
    line-height: 15px;
    position: relative;
}

.round_button[active='true']:hover,
.round_button:focus {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    top: -6px;
}

.round_button:focus {
    outline: 2px solid #ffba00;
    outline-offset: 2px;
}

#content_right {
    width: 350px;
    height: 440px;
    border: 1px solid rgb(200, 200, 200);
    border-radius: 20px;
    max-width: 100%;
}

#content_right_image {
    width: 350px;
    max-width: 100%;
    height: 125px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-image: url(/images/launch-photo-bg.jpg);
    background-size: 350px;
    background-position: center;
}

#clock {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    position: relative;
    top: 40px;
    color: rgb(255, 255, 255);
}

#clock_date {
    font-size: 14px;
    text-align: center;
    position: relative;
    top: 50px;
    color: rgb(255, 255, 255);
}

#todays_classes {
    margin-left: 15px;
    margin-right: 15px;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 18px;
}

#todays_classes_label {
    padding: 20px;
    font-weight: bold;
}

.todays_class {
    border-top: 1px solid rgb(220, 220, 220);
    width: 320px;
    padding: 10px;
    padding-left: 20px;
    text-align: left;
    position: relative;
}

.todays_class_name {
    color: #4739e7;
    font-weight: bold;
    text-decoration: underline;
}

.todays_class_name:hover {
    cursor: pointer;
}

.todays_class_time {
    position: absolute;
    top: 10px;
    right: 20px;
}

#modal_background {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.075);
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 10;
    backdrop-filter: blur(6px);
}

.modal_custom {
    background-color: rgb(255, 255, 255);
    max-height: 100vh;
    overflow: auto;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

#loading_modal {
    background-color: rgb(255, 255, 255);
    position: fixed;
    z-index: 11;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* centering modal without
    parent div to reference */
    height: 130px;
    /* 130px * 1/2 = 65px */
    top: calc(50% - 65px);

    width: 360px;
    /* 360px * 1/2 = 180px */
    left: calc(50% - 180px);
}

.long_text_input {
    border-radius: 10px;
    border: 1px solid #c4c0d5;
    width: 350px;
    height: 44px;
    padding: 10px;
    outline: none;
    color: black;
    font-size: 14px;
    margin-bottom: 16px;
    display: block;
    max-width: 100%;
}

.short_text_input {
    border-radius: 10px;
    border: 1px solid #c4c0d5;
    width: 250px;
    padding: 4px;
    padding-left: 12px;
    outline: none;
    color: black;
    font-size: 14px;
}

.small_button {
    display: inline-block;
    border-radius: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 16px;
    padding-right: 16px;
    border: 1px solid rgb(200, 200, 200);
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    margin-left: 12px;
}

.small_button:hover {
    cursor: pointer;
    background-color: rgb(245, 245, 245);
}

.small_button[active='true'] {
    font-weight: 600;
    background-color: #4739e7;
    color: rgb(255, 255, 255);
    border: 1px solid #4739e7;
}

.small_button:hover[active='true'] {
    background-color: #4739e7;
    color: rgb(255, 255, 255);
    border: 1px solid #4739e7;
}

.small_button[active='false'] {
    font-weight: 600;
    background-color: rgb(230, 230, 230);
    color: rgb(50, 50, 50);
    border: 1px solid rgb(230, 230, 230);
}

.small_button:hover[active='false'] {
    background-color: rgb(245, 245, 245);
}

#header {
    position: relative;
    height: 50px;
    background-color: rgb(245, 245, 245);
    width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220);
    display: flex;
    justify-content: center;
    align-items: center;
}

#header_buttons {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

#header_buttons > button {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    border: none;
    background-color: transparent;
    align-items: center;
}

.mac-spacer {
    height: 15px;
    background-color: rgb(245, 245, 245);
}

.header_button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5px;
    font-size: 11px;
    width: 85px;
}

.header_button > span {
    line-height: 1.1;
    margin-top: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#header_user_button {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 7px;
    padding-top: 2px;
}

#header_user_button:hover {
    cursor: pointer;
}

.header_button:hover {
    cursor: pointer;
}

#header_user_button_status {
    position: absolute;
    z-index: 4;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    border-radius: 4px;
    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(0, 255, 0);
}

#header_user_button_status[status='active'] {
    background-color: rgb(0, 255, 0);
}

#header_user_button_status[status='away'] {
    background-color: rgb(160, 160, 160);
}

#header_user_button_status[status='dnd'] {
    background-color: rgb(255, 0, 0);
}

#user_dropdown {
    display: none;
    position: absolute;
    z-index: 20;
    top: 46px;
    right: 12px;
    width: 250px;
    text-align: left;
    border: 1px solid #eff0f2;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

#user_dropdown > button {
    width: 100%;
    text-align: left;
    padding: 10px;
    border: none;
    background-color: transparent;
}

#user_dropdown > button:hover {
    cursor: pointer;
    background-color: #4739e7;
    color: rgb(255, 255, 255);
}

.user_dropdown_option:hover {
    cursor: pointer;
    background-color: #4739e7;
    color: rgb(255, 255, 255);
}

.user_dropdown_option_inactive {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
    color: rgb(0, 0, 0);
}

.user_dropdown_option {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
    color: rgb(0, 0, 0);
}

.user_dropdown_hr {
    width: 250px;
    border-bottom: 1px solid #eff0f2;
    margin-top: 6px;
    margin-bottom: 6px;
}

#upcoming_classes {
    max-height: 560px;
    overflow-y: auto;
    overflow-x: hidden;
}

#upcoming_classes_label {
    padding: 20px;
    font-weight: bold;
}

.upcoming_class {
    padding: 4px;
    text-align: left;
    position: relative;
    margin-bottom: 3px;
    border: none;
    background: transparent;
    width: 100%;
}

.upcoming_class[active='true'] {
    background-color: #4739e7;
    color: rgb(255, 255, 255);
}

.upcoming_class:hover {
    cursor: pointer;
}

.upcoming_class[active='true']:hover {
    background-color: #4739e7;
    color: rgb(255, 255, 255);
}

.fake_upcoming_class {
    border-radius: 10px;
    width: 320px;
    padding: 10px;
    padding-left: 20px;
    text-align: left;
    position: relative;
}

.fake_upcoming_class[active='true'] {
    background-color: #4739e7;
    color: rgb(255, 255, 255);
}

.fake_upcoming_class:hover {
    background-color: rgb(245, 245, 245);
}

.fake_upcoming_class[active='true']:hover {
    background-color: #4739e7;
    color: rgb(255, 255, 255);
}

.upcoming_class_name {
    max-width: 200px;
    text-overflow: ellipsis;
    overflow-x: hidden;
    font-weight: bold;
    /*font-size:18px;*/
}

.upcoming_class_name:hover {
    cursor: pointer;
}

.upcoming_class_code {
    position: absolute;
    top: 26px;
    right: 0px;
}

#no_user_join_a_meeting_button {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

#wrong_login_link {
    text-decoration: underline;
}

#wrong_login_link:hover {
    cursor: pointer;
}

#unsupported-app-text {
    font-size: 22px;
}

#unsupported-app-text-3 {
    margin-top: 10px;
    font-size: 16px;
}

#unsupported-app-url {
    font-size: 22px;
    text-decoration: underline;
    margin-top: 30px;
}

#no_user_login_button {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

#return_to_app_button {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

#no_user_zoom_login_button {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

#demo_login_button {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.demo_login {
    width: 350px;
    font-weight: 700 !important;
    font-size: 16px !important;
    margin-left: auto;
    margin-right: auto;
}

.blue_button {
    cursor: pointer;
    background-color: #4739e7;
    border: 1px solid #4739e7;
    border-radius: 4px;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    outline: none;
    box-shadow:
        0px 3px 1px -2px rgb(0 0 0 / 20%),
        0px 2px 2px 0px rgb(0 0 0 / 14%),
        0px 1px 5px 0px rgb(0 0 0 / 12%);
    transition:
        background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.blue_button:hover {
    text-decoration: none;
    border: 1px solid #4739e7;
    box-shadow:
        0px 2px 4px -1px rgb(0 0 0 / 20%),
        0px 4px 5px 0px rgb(0 0 0 / 14%),
        0px 1px 10px 0px rgb(0 0 0 / 12%);
}

.blue_button:active {
    outline: none;
    border: 1px solid #4739e7;
    box-shadow:
        0px 5px 5px -3px rgb(0 0 0 / 20%),
        0px 8px 10px 1px rgb(0 0 0 / 14%),
        0px 3px 14px 2px rgb(0 0 0 / 12%);
}

.white_button {
    color: #4739e7;
    font-weight: 500;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #4739e7;
    text-align: center;
    font-size: 16px;
    padding: 8px 12px;
    outline: none;
    transition:
        background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.white_button:hover {
    background-color: rgba(71, 57, 231, 0.04);
    border: 1px solid #4739e7;
}

.white_button:focus {
    color: #4739e7;
    border-color: #4739e7;
}

.white_button:active {
    color: #4739e7;
    outline: none;
}

#login_button {
    width: 350px;
    font-size: 14px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
}

#not_allowed_div {
    width: 350px;
    font-size: 14px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
}

.demo_login {
    padding: 10px;
    margin: 20px;
}

.modal_container {
    display: none;
}

.modal_container.show_modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    z-index: 11;
    overflow: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

.button_dropdown {
    display: none;
    position: absolute;
    padding: 5px 0px;
    border: 1px solid rgb(200, 200, 200);
    border-radius: 5px;
    text-align: left;
}

.button_dropdown .option {
    padding: 5px 10px;
    white-space: nowrap;
    cursor: pointer;
}

.button_dropdown .option:hover {
    background: #0e71eb;
    color: #ffffff;
}

.button_dropdown.show {
    display: block;
}

.modal_title {
    color: #56565e;
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    margin-top: 16px;
    margin-bottom: 32px;
}

.modal_body {
    padding: 0 15px;
}

.input_container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.input_container .long_text_input {
    margin-bottom: 0;
}

.custom_label {
    margin-right: 5px;
    font-size: 14px;
    color: #56565e;
}

.modal_buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.modal_buttons > div {
    margin-right: 10px;
}

::placeholder {
    color: #bbbbbb;
}

.upcoming_class_teacher {
    max-width: 200px;
    text-overflow: ellipsis;
    overflow-x: hidden;
}

.header_home_img {
    height: 14px;
    width: 14px;
    align-self: center;
}

.header_schedule_img {
    height: 14px;
    width: 14px;
    align-self: center;
}

.header_templates_img {
    height: 14px;
}

.header_home_title {
    color: #4739e7;
}

.class_logo_user_is_not_logged {
    width: 90%;
    max-width: 300px;
}

.class_logo_user_is_logged_in {
    width: 35%;
}

@media only screen and (max-width: 320px) {
    #content {
        margin-top: 48px;
    }
    #content_right {
        width: calc(100% - 20px);
    }
    #demo_button {
        position: static !important;
        margin-top: 48px;
    }
    #demo_class_advanced_options_button {
        width: 141px;
        margin-left: 0;
        text-align: center;
        margin-top: 12px;
    }
    #demo_class_cancel_button {
        width: 90px;
        margin-left: calc(100% - 234px);
        text-align: center;
    }
    #demo_class_join_button {
        width: 100%;
        margin-left: 0;
        text-align: center;
        margin-top: 12px;
    }
}

@media only screen and (max-width: 720px) {
    #vertical_border0 {
        display: none;
    }

    .modal_custom {
        min-width: auto !important;
        width: calc(100% - 20px);
    }
}

@media only screen and (min-device-width: 512px) and (max-device-width: 1024px) and (orientation: portrait) {
    /* For portrait layouts only */
    #vertical_border0 {
        display: none;
    }
}

@media (max-width: 512px) and (not (orientation: landscape)) {
    .class_logo_user_is_logged_in,
    #title {
        display: none;
    }
}

@media (min-width: 513px) {
    .class_logo_mobile {
        display: none;
    }
}

@media (max-height: 600px) {
    #content {
        padding-top: 0;
    }
    #title2 {
        margin-top: 90px;
    }
}

@media (max-width: 512px) and (orientation: portrait) {
    #content {
        flex-direction: column;
        flex-flow: column-reverse;
        margin-bottom: 36px;
    }
    .class_logo_mobile {
        width: 128px;
        margin-bottom: 36px;
        margin-top: -20px;
    }
    #content_right {
        height: auto;
        padding-bottom: 24px;
    }
}

#new_modal_background {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 11999;
}

.new_modal_custom {
    background-color: rgb(255, 255, 255);
    max-height: 100vh;
    overflow: auto;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.new_modal_container {
    display: none;
    padding: 0px;
}

.new_modal_body {
    padding: 20px;
    font-size: 18px;
}

.new_modal_title {
    position: relative;
    background-color: rgb(71, 57, 231);
    padding: 20px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 22px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.new_modal_container.new_show_modal {
    border: 1px solid rgb(71, 57, 231);
    border-radius: 6px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    z-index: 12000;
    overflow: auto;
    min-width: 400px;
    max-width: calc(80% - 400px);
    max-height: 60%;
    background-color: rgb(255, 255, 255);
}

.new_modal_buttons {
    text-align: right;
    width: 100%;
    padding: 20px;
}

.new_modal_button {
    background-color: rgb(71, 57, 231);
    padding: 6px 16px;
    color: rgb(255, 255, 255);
    margin-left: 16px;
    font-size: 14px;
    border-radius: 6px;
    display: inline-block;
}

.new_modal_button[color='grey'] {
    background-color: rgb(200, 200, 200);
    padding: 6px 16px;
    color: rgb(0, 0, 0);
    margin-left: 16px;
    font-size: 14px;
    border-radius: 6px;
    display: inline-block;
}

.new_modal_button:hover {
    cursor: pointer;
}

#demo_button {
    border: none;
    background-color: #4739e7;
    padding: 6px;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    position: fixed;
    right: 10px;
    bottom: 10px;
}

#demo_button:focus {
    outline: 2px solid orange;
    outline-offset: 1px;
}

#header_user_button {
    background-color: #4739e7;
}

#demo_button:hover {
    cursor: pointer;
}

.upcoming_class:hover {
    background-color: #4739e714;
}

#advanced_options_features_table tr td {
    padding-right: 16px;
}

#banner_deferred {
    display: flex;
    color: white;
    background-color: #4739e7;
    align-items: center;
    border-radius: 4px;
    width: fit-content;
    justify-content: center;
    margin: auto;
}

#banner_deferred p {
    margin: 0px 0px;
}

.info_icon {
    display: flex;
    align-items: center;
    padding: 0px 10px 0px 15px;
}

#deferred_accept_button {
    text-decoration: none;
    border: 1px solid white;
    border-radius: 4px;
    padding: 6px 16px;
    color: white;
    background-color: transparent;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.4px;
    margin: 5px 30px 5px 20px;
}

#banner_deferred_error {
    display: flex;
    color: white;
    background-color: #4739e7;
    align-items: center;
    border-radius: 4px;
    width: fit-content;
    justify-content: center;
    margin: auto;
}

#banner_deferred_error p {
    margin: 0px 0px;
}

#support_link {
    text-decoration: underline;
    color: white;
}

#deferred_error_dismiss_button {
    text-decoration: none;
    border: 1px solid white;
    border-radius: 4px;
    padding: 6px 16px;
    color: white;
    background-color: transparent;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.4px;
    margin: 5px 30px 5px 20px;
}

.ui-tooltip {
    word-wrap: normal;
    width: 283px;
    line-height: 16px;
    letter-spacing: 0.1px;
    background: rgba(97, 97, 97, 0.9);
    border-radius: 4px;
    margin-top: 9px;
    color: white;
    text-align: left;
}

.ui-tooltip-content {
    position: relative;
    padding: 5px;
}

.ui-tooltip-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    display: block;
    width: 0;
}

.bottom .ui-tooltip-content::after {
    top: -6px;
    left: 152px;
    border-color: #616161 transparent;
    border-width: 0 7px 7px;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

#noop-error-div {
    margin: 50px auto 0px auto;
}
