﻿body {
    overflow: hidden;
    /*position: fixed;*/
}

#bodyWrapper {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 500ms;
    position: relative;
    overflow: hidden;
}

#speaker-icon {
    height: 60px;
}

#main-div {
    max-height: 768px;
    max-width: 1024px;
    margin: 0 auto;
}

.menu-description {
    color: rgb(72, 72, 72);
}

#user-image {
    width: 140px;
    height: 140px;
    border-radius: 70px;
    background-image: url(image/no-user.svg);
    margin: 0 auto;
    background-size: cover;
}

@media only screen and (max-width: 700px), screen and (max-height: 700px) {
    #title-bar {
        font-size: 40px;
    }

    #user-image {
        width: 80px;
        height: 80px;
    }

    .menu-icon > img {
        width: 80px;
        height: 80px;
    }

    .menu-text {
        font-size: 14px;
    }

    .menu-description {
        font-size: 10px;
    }
}

#extra-line {
    display: none;
}

@media only screen and (max-width: 500px) {
    #extra-line {
        display: initial;
    }
}

#brand-logo {
    margin: 10px;
    max-height: 40px;
    max-width: 600px;
    display: none;
}


textarea {
    min-height: 46px;
}

#note_dlg textarea {
    min-height: 200px;
}

.nav-wrapper {
    display: none;
}

/* SPLASH SCREEN */

#splash_screen {
    position: absolute;
    /* top: 250px; */
    bottom: 63px;
    width: 100%;
    text-align: center;
    /* display: none; */
}


    #splash_screen #splash_img {
        width: 45%;
        max-width: 256px;
        /* margin: 10px; */
    }

.splash-bar {
    height: 1px;
    width: 100%;
    background: #00000000;
}

.loaded {
    height: 100%;
    width: 100%;
    background: white;
    animation: 2s linear infinite loading;
    /*transform-origin: 0%;*/
}

@keyframes loading {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(100%);
    }
}

/* END: SPLASH SCREEN */

#header-bar {
    /*overflow: hidden;*/
}



#menu-buttons {
    display: none;
    width: 100%;
    /*background-color: #eceff1;*/
    border-bottom: 4px solid #ffffffc2;
    /*display: flex;*/
    justify-content: space-between;
}

#left_buttons {
    display: flex;
    margin-left: 5px;
}

    #left_buttons .menu_item {
        display: inline-block;
        color: white;
        background-color: rgb(0 0 0 / 50%);
        padding: 0 15px 0 10px;
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-right: 5px;
        margin-top: 10px;
        /* -webkit-box-shadow: 8px -1px 8px -5px rgba(0, 0, 0, 0.48); */
        -moz-box-shadow: 8px -1px 8px -5px rgba(0, 0, 0, 0.48);
        /* box-shadow: 8px -1px 8px -5px rgba(0, 0, 0, 0.48); */
        border-radius: 6px 6px 0 0;
    }

.menu_item > a {
    font-size: 20px;
}

.menu_item > .icon {
    padding: 5px;
}

.menu_item > span {
    font-size: 16px;
}

.selected_menu {
    background-color: #ffffffc2 !important;
    color: #202020 !important;
    margin-top: 0 !important;
}

.selected_menu_title {
    width: initial !important;
    opacity: 1 !important;
}


.top-menu-prev {
    display: flex;
    align-items: center;
    margin: 7px;
    height: 50px;
}

.top-menu {
    display: flex;
    align-items: center;
    margin: 0;
    height: 5px;
    opacity: 0;
}

.user_logged_on {
    background-color: #278b2b !important;
}

.user_not_logged_on {
    background-color: #7f7f7f !important;
}

.user_is_guest {
    background-color: #005884 !important;
}

#current-user {
    /*color: white;
            filter: drop-shadow(1px 1px 2px #454545);*/
}

#remaining_time, #test_label {
    background-color: #005884;
    color: white;
    padding: 5px 11px;
    border-radius: 6px;
    display: none;
}

#test_label {
    background-color: red;
}

#closeSidePanelBtn {
    display: none;
}

#debug-info, #configurationName {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    #debug-info > span,
    #configurationName > span {
        font-size: 0.9em;
        margin: 0 20px;
        color: white;
    }

#userInfo {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
    position: relative;
    justify-content: center;
}

#userInfoLabel {
    filter: drop-shadow(2px 2px 3px #000000a1);
    font-size: 0.9em;
    line-height: 1.1em;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background-color 250ms;
    padding: 10px;
    border-radius: 5px;
}

    #userInfoLabel:hover {
        background-color: #ffffff4b;
    }

#userInfoPanel {
    position: absolute;
    display: block;
    visibility: hidden;
    left: 40px;
    top: 40px;
    width: 400px;
    height: 1200px;
    border-radius: 8px;
    filter: drop-shadow(4px 6px 4px #000000a1);
    background-color: #195e81;
    z-index: 12;
}

#chatSummary {
    display: flex;
    align-items: center;
}

#chatSummary > div {
    display: none;
    align-items: center;
    font-size: 0.9em;
    background-color: green;
    color: white;
    padding: 5px 10px;
    border-radius: 2px;
    cursor: pointer;
}



#menu-buttons {
    justify-content: flex-start;
}

#interaction-div {
    background: #ffffff4f;
    /*opacity: 0;*/
    /*transition: 250ms;*/
}

.li-caption {
    color: black;
    margin-right: 10px;
    font-size: 140%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*#speaker_name {
            float: right;
            margin-right: 120px;
        }*/

.fixed-action-btn ul a.btn-floating {
    opacity: 1 !important;
}



#topic_title, #speaker_name {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    line-height: initial;
}

.pointy_button {
    position: relative;
    /*width: 125px;*/
    /*height: 40px;*/
    border-radius: 6px;
}

.drop_shadow {
    filter: drop-shadow(1px 2px 2px #000000c0);
}

.clipboard {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
}

.pointy_button .clipboard {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pointy_right_button {
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.pointy_left_button {
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
}

.clipboard_right {
    padding-right: 10%;
}

.clipboard_left {
    padding-left: 10%;
}

#footer_reveal_current_topic_button {
    display: flex;
    align-items: center;
    padding: 0;
}

    #footer_reveal_current_topic_button .pointy_button {
        width: 142px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

#footer_wrapper {
    position: absolute;
    left: 20px;
    bottom: 20px;
    filter: drop-shadow(4px 6px 4px #000000a1);
    z-index: 2000;
}

#footer {
    position: relative;
    width: 140px;
    color: white;
    background-color: #4a4a4a;
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    transition: width 500ms;
    max-height: 54px;
    height: 54px;
}


.disable_button {
    opacity: 0.5;
    pointer-events: none;
}

.hide_button {
    display: none;
}

#version {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 5px;
    color: rgba(0, 0, 0, 0.25);
    text-align: right;
    font-size: 12px;
}

    #version span {
        padding-left: 10px;
    }

#speech_btns > button {
    font-size: 0.9em;
}

.multi_line_btn {
    /* margin: 5px; */
    height: 100%;
    line-height: initial !important;
    padding: 10px 12px;
    border-radius: 0;
}

#point_of_order_button {
    /* margin-left: 10px; */
    background-color: #757575;
}

#footer-content {
    white-space: nowrap;
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0;
}

#footer-caption {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    color: white;
    justify-content: center;
    margin: 0 12px;
}

#add_btn {
    position: absolute;
    /* top: 100px; */
    /* left: 282px; */
    z-index: 200;
}

.add_btn_pdf {
    display: none;
}

#add_btns {
    display: none;
    background-color: #4a4a4a;
    box-shadow: 5px 5px 15px -2px rgb(0 0 0);
    /* margin-top: -10px; */
    /* margin-left: 25px; */
    border-radius: 8px;
    margin: 0;
}

    #add_btns li {
        display: flex;
        cursor: pointer;
        padding: 10px 10px;
    }

        #add_btns li div {
            color: white;
            font-weight: bold;
            padding: 5px 10px;
            margin-left: 10px;
            border-radius: 10px;
            line-height: 30px;
        }

#menu-title {
    color: white;
    margin-left: 20px;
}

.btn-floating.btn-large {
    min-width: 54px;
    min-height: 54px;
}

#side_panel_div {
    position: absolute;
    display: flex;
    width: 340px;
    bottom: 20px;
    right: 10px;
    border-radius: 8px;
    /* filter: drop-shadow(4px 6px 4px #000000a1); */
    background-color: rgb(0 0 0 / 65%);
    flex-direction: column-reverse;
    justify-content: center;
    /* max-width: 384px; */
    top: 113px;
    z-index: 10;
}

#side_panel_iframe {
    /*height: 75vh;*/
}

#right_buttons .menu_item {
    color: white;
    padding: 0 15px 0 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
    padding: 0 10px;
    -moz-box-shadow: 8px -1px 8px -5px rgba(0, 0, 0, 0.48);
}

#right_buttons {
    display: flex;
    justify-content: space-between;
    min-height: 54px;
}

.selected_menu_right {
    /*background-color: #4a4a4a;*/
    color: white !important;
    margin-top: 0;
    border-radius: 6px 6px 0 0;
}

#right_buttons .menu_title {
    width: 0;
    opacity: 0;
    /*transition: opacity 500ms;*/
    white-space: nowrap;
}

.selected_menu_title_right {
    width: initial !important;
    opacity: 1 !important;
}

.side_panel_closed {
    height: 54px;
    width: auto !important;
    top: initial !important;
}

#side_panel_content {
    height: 100%;
}

.last_menu_right {
    max-width: 140px;
}

    .last_menu_right .menu_title {
        overflow: hidden;
        text-overflow: ellipsis;
    }

#test_panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: yellow;
    align-items: center;
    justify-content: center;
}

    #test_panel > h1 {
        font-weight: bold;
        font-size: 5em;
        text-align: center;
    }

#pdf_panel {
    position: absolute;
    top: 0;
    height: 100%;
    /* right: 91px; */
    /* width: 100%; */
    /* max-width: 945px; */
    /* background-color: #ffffff80; */
    /* display: none; */
    z-index: 2;
    /* display: flex; */
    /* justify-content: center; */
    display: none;
    left: 270px;
    right: 0;
    border-radius: 10px 0 0 0;
    overflow: hidden;
    filter: drop-shadow(-5px 5px 4px #000000a1);
}

.pdf_iframe {
    width: 100%;
    height: 100%;
    /* max-width: 869px; */
    /* -webkit-box-shadow: 10px 10px 20px -1px rgba(0,0,0,0.42); */
    -moz-box-shadow: 10px 10px 20px -1px rgba(0,0,0,0.42);
    /* box-shadow: 10px 10px 20px -1px rgba(0,0,0,0.42); */
}

.close_pdf_btn {
    position: absolute;
    top: 40px;
    left: 30px;
}

@media only screen and (max-width: 800px) {
    #brand-logo {
        display: none;
    }

    #pdf_panel { /* 2018-10-01 */
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .modal {
        width: 100%;
    }

        .modal .modal-content {
            padding: 10px;
        }

    /*#add_btn {
                bottom: 50px;
            }*/
}

.list-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

#close_fullscreen_btn {
    position: fixed;
    top: 40%;
    right: 20px;
    color: white;
    cursor: pointer;
    padding: 10px;
    font-size: 60px;
    background-color: #278b2b;
    border-radius: 50px;
    margin: 15px;
}

[type="checkbox"] + label {
    color: black;
}

.vote-checkbox-label {
    font-size: 1.5em !important;
    color: black !important;
}


.form_iframe_div {
    position: relative;
    /*margin-top: 40px;*/
}

.form_iframe {
    width: 100%;
    height: 100%;
}

.form_full_height {
    max-height: initial;
    height: 100% !important;
    top: 0 !important;
}

.form_small {
    height: 260px !important;
}

.dlg_title {
    font-size: 1.5em;
    text-transform: uppercase;
}

.dlg_text {
    font-size: 1.2em;
}

.button_disabled {
    pointer-events: none;
    opacity: 0.5;
}

.modal-top-panel {
    background-color: #23566f;
    height: 82px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 0 15px;
}



.modal-top-vote-panel {
    background-color: #23566f;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#close-login-btn {
    display: none;
}

/*.modal {
            top: 110px;
        }*/

.vote-row {
    display: flex;
    width: 100%;
    align-items: center;
}

#uiOptions {
    display: table;
}

.options_radio {
    width: 100%;
}

.options_checkbox {
    /*margin-left: 25%;
            text-align: left;*/
}


.vote_form_green {
    border: 12px solid #008c00;
}

.vote_form_red {
    border: 12px solid rgba(255, 0, 0, 0.00);
}

.vote-form-border {
    height: calc(100% - 138px) !important;
}

.vote-row-checkbox {
    height: 40px;
}

.vote-left {
    /*width: 100%;*/
    vertical-align: middle;
    text-align: center;
    position: relative;
}

.vote-right {
    vertical-align: middle;
    font-size: 200%;
    padding: 0 30px 0 20px;
}

.vote_not_checked {
    visibility: hidden;
}

.vote_checked {
    visibility: visible;
}

.vote-btn {
    min-width: 209px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote_checkmark {
    margin-right: 20px;
    font-size: 3rem !important;
}

#verify-action-form {
    width: 40%;
}

#notification_header {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-end;
    align-items: center;
}

    #notification_header > .icon {
        cursor: pointer;
        padding: 4px;
        border-radius: 50%;
        border: 1px solid #e0e0e000;
        transition: border-color 250ms;
        margin: 12px;
        color: white;
    }

        #notification_header > .icon:hover {
            border: 1px solid white;
        }

#notification_dlg {
    display: none;
    min-height: 190px;
    max-width: 500px;
}

#notification_content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

#notification_title {
    font-size: 2em;
    text-align: center;
    width: 100%;
    text-align: center;
    color: white;
}

#notification_description {
    font-size: 1.2em;
    text-align: center;
    margin: 20px 20px 40px 20px;
}

#cover_panel {
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 125%;
    opacity: 0.5;
    z-index: 100;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}
