/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
img {
    position:relative;
    -moz-user-select: none;
    user-select: none;    
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -webkit-touch-callout: none;
  }

img:after{
    display: block;
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    margin-top: -5px;
    content: '!';
    background-color: white;
  }
 

a.silent {
    text-decoration: none;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

*:focus { 
    outline:none 
}

*[onclick] {
    cursor: pointer;
}

.desktop.web div, 
.desktop.web textarea {
    scrollbar-width: thin;
}

.desktop.web div::-webkit-scrollbar, 
.desktop.web textarea::-webkit-scrollbar { 
    height: 6px; 
    width: 6px;
/*    border-radius: 3px; */
    cursor: pointer;
}

.desktop.web div::-webkit-scrollbar-track,
.desktop.web textarea::-webkit-scrollbar-track { 
    background-color: #eee; 
 }

.desktop.web div::-webkit-scrollbar-thumb,
.desktop.web textarea::-webkit-scrollbar-thumb { 
    background-color: #ccc; 
/*    border-radius: 3px;*/
}

@font-face {
    font-family: Icon-Font;
    src: url('../../fonts/icons.ttf');
}

@font-face {
    font-family: Text-Bold;
    src: url('../../fonts/text_bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Text-Semi-Bold;
    src: url('../../fonts/text_bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Text-Regular;
    src: url('../../fonts/text_regular.ttf');
}

@font-face {
    font-family: Text-Regular;
    src: url('../../fonts/text_bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Text-Mono;
    src: url('../../fonts/text_mono.ttf');
}

.icon-font {
    font-family: Icon-Font;
    color: red;
    font-size: 20pt;
}

.font_regular {
    font-family: Text-Regular;
}

.font_bold {
    font-family: Text-Bold;
}

.font_semibold {
    font-family: Text-Semi-Bold;
}

/* CSS Mobile Reset */

html,
body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

body {
    font-family: Text-Semi-Bold;
    font-family: Text-Regular;
    font-size: 16px;
    line-height: 1.3;
    color: #404040;
    word-wrap: break-word;
    background-color: #fff;
    -webkit-touch-callout: none;
    /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;
    /* prevent webkit from resizing text to fit */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../../config/background.jpg');
}

body.desktop {
    max-width: 768px;
    margin: auto;
    background: none;
    background-color: black;
    text-rendering: optimizeLegibility;
}

select {
    font-family: Text-Regular;
    position: relative;
    outline: none;
    background-color: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.select_arrow:before {
    content: '{';
    font-family: Icon-Font;
    position: absolute;
    right: 15px;
    top: calc(50% + 2px);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: silver;
    font-size: 12px;
    z-index: 10;
    pointer-events: none;
}

.select_arrow {
    position: relative;
}

.select_arrow select {
    -webkit-appearance: none;
}

.dashboard_news {
    background-color: white;
    color: #404040;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 5px;
    margin-top: 15px;
    padding: 10px;
    font-size: 12px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
    border-top: 5px solid;
}

#dashboard .dashboard_news {
    border-top: 5px solid grey;
}

.font_size_big {
    font-size: 12pt;
}

.font_size_normal {
    font-size: 10pt;
}

.font_size_small {
    font-size: 8pt;
}

.font_size_tiny {
    font-size: 6pt;
}

.profile_name {
    padding-left: 10px;
}

.profile_subtitle {
    padding-left: 10px;
}

.polling_no_questions {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 20px;
    right: 20px;
    text-align: center;
}

@keyframes fade {
    from {
        opacity: 1.0;
    }

    50% {
        opacity: 0.4;
    }

    to {
        opacity: 1.0;
    }
}

@-webkit-keyframes fade {
    from {
        opacity: 1.0;
    }

    50% {
        opacity: 0.4;
    }

    to {
        opacity: 1.0;
    }
}

.blink {
    animation: fade 3000ms infinite;
    -webkit-animation: fade 3000ms infinite;
}

.mainDiv {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    z-index: 1;
    background-size: cover;
    overflow-x: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.has_tabs #mainDiv {
    bottom: 60px
}

#pageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
}

#pageOverlay.active {
    pointer-events: all;
}

.mother .mainDiv {
    top: 0;
}

#eventDiv {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    z-index: 1;
    overflow: hidden;
    top: constant(safe-area-inset-top);
    /* iOS 11.0 */
    ;
    top: env(safe-area-inset-top);
    /* iOS 11.2 */
    bottom: constant(safe-area-inset-bottom);
    /* iOS 11.0 */
    ;
    bottom: env(safe-area-inset-bottom);
    /* iOS 11.2 */
    ;
}

.homeDiv {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    z-index: 1;
    background-image: url('../../img/fundo_cg.png');
    background-repeat: no-repeat;
    background-position: center center;
}

.eventListDiv {
    position: absolute;
    top: 0;
    top: constant(safe-area-inset-top);
    /* iOS 11.0 */
    ;
    top: env(safe-area-inset-top);
    /* iOS 11.2 */
    left: 0;
    right: 0;
    bottom: 0;
    bottom: constant(safe-area-inset-bottom);
    /* iOS 11.0 */
    ;
    bottom: env(safe-area-inset-bottom);
    /* iOS 11.2 */
    padding: 0;
    margin: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: white;
    padding-bottom: 60px;
}

#client_events_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
    padding: 10px;
    width: auto;
    overflow: auto;
}

.eventListDiv .congress_list_title {
    color: #404040;
    font-size: 22px;
    border-bottom: 1px solid #404040;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.eventListDiv .congress_list_item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    line-height: 16px;
    box-shadow: 1px 1px 3px rgba(0,0,0,.3);
    background-color: #f2f2f2;
    border-radius: 4px;
    padding: 8px;
}

.eventListDiv .congress_list_item .image_container {
    flex: 0 0 100px;
}
.eventListDiv .congress_list_item .image {
    flex: 1;
    padding-bottom: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#client_events_list.cards .congress_list_item {
    flex-direction: column;
}

#client_events_list.cards {
    grid-template-columns: repeat(auto-fit, minmax(140px, auto));
}

#client_events_list.cards .image_container {
    width:100%;
}
.eventListDiv .congress_list_item .text_container {
    margin-left: 5px;
    padding: 5px;
}
.eventListDiv .congress_list_item .event_title {
    font-size: 14px;
}

.eventListDiv .congress_list_item .event_date {
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
}
.eventListDiv .congress_list_item .event_location {
    font-size: 12px;
    line-height: 16px;
    margin-top: 2px;
    opacity: .8;
}
@media screen and (max-width: 350px) {
    .eventListDiv .congress_list_item .image_container {
        flex: 0 0 90px;
    }

    .eventListDiv .congress_list_item .text_container {
        padding: 5px;
    }    
    .eventListDiv .congress_list_item .event_title {
        font-size: 12px;
    }

    .eventListDiv .congress_list_item .event_date,
    .eventListDiv .congress_list_item .event_location {
        font-size: 10px;
    }    
}

/* CHAT */

.chat_message_day_separator {
    margin: 20px auto;
    margin-bottom: 0px;
    font-size: 12px;
    width: min-content;
    white-space: nowrap;
    padding: 5px 8px;
    background-color: silver;
    border-radius: 5px;
    display: none;
}

.chat_message_container.first .chat_message_day_separator {
    display: block;
}

.chat_message {
    font-size: 13px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

.chat_message img {
    max-width: 150px;
    max-height: 150px;
    display: block;
    margin: 3px 0;
    cursor: pointer;
}

.chat_message img.hide {
    display: none;
}

.chat_message .perninha {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 10px auto;
    width: 10px;
    height: 6px;
    position: absolute;
    bottom: 0px;
}

.chat_message.from .perninha {
    background-image: url('../../img/perninha_cinzenta.png');
    right: -5px;
    filter: brightness(0) invert(.8);
}

.chat_message.to .perninha {
    background-image: url('../../img/perninha_cinza.png');
    left: -5px;
    filter: brightness(0) invert(.933);
}

.chat_message.to {
    background-color: #EEE;
    text-align: left;
    width: max-content;
    max-width: 70%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    color: black;
    margin-left: 10px;
    margin-right: auto;
}

.chat_message.from {
    background-color: #CCC;
    text-align: right;
    width: max-content;
    max-width: 70%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    margin-right: 10px;
    margin-left: auto;
    margin-bottom: 8px;
    }

.chat_message_timestamp {
    font-size: 10px;
    padding: 12px;
    padding-bottom: 2px;
    padding-top: 5px;
}

.chat_message_timestamp.from {
    text-align: right;
}

.new_messages {
    position: absolute;
    left: 8px;
    right: 8px;
    top: -20px;
    background-color: #e2e2e2;
    border-radius: 4px;
    font-size: 10px;
    text-align: center;
    padding: 2px 0px;
    cursor: pointer;
}

.bt-qr-code {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    background-size: 50px;
    background-repeat: no-repeat;
    background-image: url('../../img/icon_white_qrcode.png');
    background-position: center;
}

.bt-qr-code:active {
    opacity: 0.7;
}

.bt-qr-code:hover {
    opacity: 0.7;
    cursor: pointer;
}

.loading_spinner {
    border-radius: 50% 20%;
    width: 20%;
    margin: 0px 0px 20px 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.loading_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    opacity: 0;
    animation-name: loading_overlay_delay;
    animation-duration: 100ms;
    animation-delay: 500ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.loading_overlay.hidden {
    opacity: 0;
    animation: none;
}

@keyframes loading_overlay_delay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

.black_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.8;
}

.black_overlay_text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.white_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.white_overlay_text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: black;
    font-size: 18px;
}

.white_overlay_gif {
    border-radius: 50% 20%;
    width: 20%;
    margin: 0px 0px 20px 0px;
}



.panel_container {
    clear: both;
    margin-bottom: 4px;
    position: relative;
}

.panel_container .panel_group_line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
}

.panel_container.open {
    padding-left: 10px;
}

.header_button {
    font-size: 10px;
}

.header_button:active {
    opacity: 0.7;
}

.header_button:hover {
    opacity: 0.7;
    cursor: pointer;
}

.loading_page {
    background-color: white;
    z-index: 1001;
    background-image: url('../../config/loading.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity .1s !important;
}

.loading_page.hide {
    opacity: 0;
}

.filter_type_option.multiple.selected{
    font-weight: bold;
} 
.filter_type_option.multiple .arrow_next span:before {
    content: "6";
}

.filter_type_option.multiple.selected .arrow_next span:before {
    content: "5";
}

#featuredIndexSwipe {
    background-color: white;
    width: 100%;
    z-index: 99;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    -webkit-box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.5);
}

table.just_valign {
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

table.just_valign td {
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

.now_badge {
    padding: 5px;
    border-radius: 10px;
    color: white;
    display: inline-block;
    font-size: 10px;
    margin-bottom: 5px;
}

.edit_button {
    position: absolute;
    right: 0px;
    height: 45px;
    width: 45px;
    z-index: 99;
}

.empty_list_message {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 40px;
    text-align: center;
    color: silver;
    font-size: 16px;
}

.logout_button {
    position: absolute;
    left: 0px;
    height: 45px;
    width: 45px;
    z-index: 99;
}

.search_button {
    position: absolute;
    left: 0px;
    height: 45px;
    width: 45px;
    z-index: 99;
    display: none;
}

.filter_button_my_agenda.selected {
    width: 100% !important;
}

.filter_button_my_agenda {
    height: 100%;
    text-align: center;
    width: 100% !important;
    vertical-align: middle;
    font-size: 10pt;
    padding-left: 5px;
}

.filter_table_my_agenda {
    width: 100%;
    height: 40px;
    border: 0;
    border-collapse: collapse;
    border-bottom: 1px solid #C6C6C6;
    font-size: 14pt;
    vertical-align: middle;
}

.filter_table_my_agenda td {
    height: 100%;
    vertical-align: middle;
    border: 0;
    padding: 0;
}

.side_menu_container {
    z-index: 6;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: transform 0ms 300ms, -webkit-transform 0ms 300ms;
    will-change: transform, -webkit-transform;
}

.side_menu_container .overlay {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0;
    will-change: opacity;
    transition: opacity 200ms;
}

.side_menu_container .menu {
    background-position: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 10%;
    color: gray;
    font-size: 10px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    will-change: transform, -webkit-transform;
}

.side_menu_container.show,
.side_menu_container.swiping {
    transition: none;
    -webkit-transition: none;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.side_menu_container.show .overlay {
    opacity: .4;
}

.side_menu_container .menu {
    transition: transform 0.2s ease-out;
    -webkit-transition: -webkit-transform 0.2s ease-out;
}

.side_menu_container.show .menu {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.side_menu_container.swiping .menu,
.side_menu_container.swiping .overlay {
    transition: none;
    -webkit-transition: none;
}

.show_loading_text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    background-color: white;
    color: #404040;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
    opacity: 0;
    display: none;
}

.retry_button {
    position: absolute;
    text-align: center;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: 75px;
    padding: 10px;
    background-color: white;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
    color: #404040 !important;
    text-transform: uppercase;
    border-radius: 4px;
    display: none;
}

.side_menu_item {
    position: relative;
    display: block;
    overflow: hidden;
    text-transform: uppercase;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 40px;
}

.area_division {
    float: left;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    border-radius: 3px;
    background-color: #f0f0f0;
    width: 2px;
    display: none;
}

.side_menu_division {
    padding: 10px;
    margin-bottom: 8px;
}

.side_menu_item+.side_menu_division {
    margin-top: 8px;
}

.selected .area_division {
    opacity: 0.7;
}

.side_menu_item .area_icon img {
    margin: auto;
}

.side_menu_item .area_icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    width: 40px;
    background-size: auto 30px;
    background-repeat: no-repeat;
    background-position: center center;
}

.side_menu_item .area_icon.cg-icon {
    top: 3px;
}

.shortcuts_table td {
    vertical-align: bottom;
    width: 25%;
}

.shortcut_icon {
    width: 40px;
    height: 40px;
    background-size: auto 30px;
    border-radius: 40px;
    padding: 0px;
    margin-bottom: 5px;
}

.shortcut_icon img {
    width: 50px;
}

.shortcut_icon:active {
    opacity: 0.7;
}

.shortcut_icon:hover {
    opacity: 0.7;
    cursor: pointer;
}

.dashboard_area_shortcut {
    max-width: 100px;
    margin: auto;
    margin-top: 15px;
}

#dashboard .page_content {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

#dashboard .scroll {
    position: relative !important;
    flex: 1;
}

#dashboard #featuredIndexSwipe {
    position: relative !important;
    flex-shrink: 1;
}

.dashboard_area_shortcut .subtitle {
    font-size: 10px;
    margin-top: -5px;
    word-break: break-word;
    height: 30px;
    padding-left: 5px;
    padding-right: 5px;
}

.side_menu_item:active .area_icon {
    opacity: 0.7;
}

.side_menu_item:hover .area_icon {
    opacity: 0.7;
    cursor: pointer;
}

.side_menu_item:active {
    opacity: 0.7;
}

.side_menu_item:hover {
    opacity: 0.7;
    cursor: pointer;
}

.side_menu_item.languages_item:active {
    opacity: 1 !important;
}

.side_menu_item.languages_item:hover {
    opacity: 1 !important;
    cursor: pointer;
}

.side_menu_header_item.languages_item {
    color: black;
}

.side_menu_item .area_title {
    float: left;
    padding: 0px 10px;
    font-size: 14px;
    height: 100%;
}

.side_menu_item .area_title.big_title {
    float: left;
    padding: 5px;
    font-size: 14px;
    max-width: 150px;
    text-overflow: ellipsis;
}

.side_menu_item.selected {
    color: #404040;
    font-family: Text-Bold;
}

.filter_menu_button.with_filters {
    display: block !important;
    text-align: left !important;
}

.filter_menu_button_top {
    font-size: 12px;
}

.filter_menu_button_bottom {
    font-size: 10px;
}

.side_menu_header_item .area_title {
    float: left;
    padding: 4px;
}

.area_icon.speakers {
    background-image: url('../../img/icon_oradores.png');
}

.area_icon.search_guide {
    background-image: url('../../img/Icon_Research.png');
    background-size: 25px auto;
}

.side_menu_divider {
    height: 2px;
    display: block;
    background-image: url('../../img/linhaseparacao.png');
}

.absolute_page {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.full_page {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 25px;
}

.menu_with_slider {
    position: absolute;
    bottom: 10px;
    border: 1px solid black;
    right: 0;
    left: 0;
}

.swipe {
    overflow: hidden;
    visibility: hidden;
    position: relative;
}

.swipe-wrap {
    overflow: hidden;
    position: relative;
}

.swipe-wrap>div {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
}

.swipe-wrap>div img {
    margin: 0;
    padding: 0;
    display: block;
}

.swipe-wrap table.menu_icon_table {
    width: 100%;
    text-align: center;
}


.sponsorship_page {
    z-index: 1000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.list_page {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0px;
    z-index: 2;
}

.has_bottom_buttons {
    padding-bottom: 60px;;
}
.search_header~.list_page {
    padding-top: 58px;
}

.slider_container~.list_page {
    right: 14px;
}

#conversation_messages {
    padding: 5px;
}

.session_question {
    padding-bottom: 50px;
}

.session_question .user_question {
    padding: 10px;
}

.session_question .explanation {
    margin: 10px;
}

.session_question .input_question_container {
    position: relative;
    height: 100px;
    margin: 7px;
    border: 1px solid;
    border-radius: 4px;
    overflow: hidden;
}

.no_questions {
    text-align: center;
    padding: 20px;
}

.session_question .input_question {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100%);
    border: 0;
    font-size: 16px;
    padding: 5px;
}

.session_question .button_send_question {
    margin: 7px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
}

.day_subtitle {
    font-size: 10px;
    text-transform: initial;
}

.session_index_day_header {
    text-transform: uppercase;
    padding: 15px;
    vertical-align: middle;
    font-size: 12px;
    margin: 7px;
    border-radius: 5px;
}


.session_index_group_header {
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
    padding: 15px;
    vertical-align: middle;
    font-size: 12px;
}

.panel_container.closed * {
    display: none;
}

.panel_container.closed .session_index_group_header {
    display: block;
}

.panel_container.open .session_index_group_header {
    padding-left: 5px;
}

.panel_container.closed .session_index_group_header * {
    display: inline;
}

.session_index_group_header {
    padding: 15px;
    vertical-align: middle;
    font-size: 10pt;
}

.table_filter_header {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border: 0;
    font-size: 9pt;
}

.session_list_header_div {
    display: block;
    height: 28px;
    font-size: 10pt;
    background-size: auto 30px;
    border-bottom: 1px solid lightGray;
    border-top: 1px solid lightGray;
    background-position: center;
    background-repeat: repeat-x;
    background-color: black;
    line-height: 30px;
    padding-left: 20px;
    position: relative;
}


.session_list_header_session_time {
    font-size: 10pt;
}

.session_group_time {
    font-size: 10pt;
}

.add_session_to_favourites {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -22px;
    bottom: 0;
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-size: 40px auto;
    background-position: center;
}


.exhibitorInfo {
    padding-left: 10px;
    padding-right: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.feedbackInfo {
    padding-left: 20px;
    padding-right: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sponsorInfo {
    padding-left: 10px;
    padding-right: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sessionInfo {
    display: block;
    padding-left: 20px;
    padding-right: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    margin: 0 auto;
}

#myagenda .sessionInfo,
#session_index .sessionInfo,
#session_index_day_list .sessionInfo {
    display: block;
    padding-left: 20px;
    padding-right: 45px;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
    overflow: hidden;
    margin: 8px;
}


.sessionInfo .session_name {
    font-size: 14px;
}

.sessionInfo .session_time {
    font-size: 12px;
}

.sessionInfo .session_room {
    font-size: 12px;
}

.sessionInfo .session_type {
    font-size: 12px;
}

.sessionInfo .session_speaker_div {
    font-size: 10px;
    margin-top: 2px;
}

.info_div {
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    bottom: 40%;
    padding: 30px;
    text-align: center;
    color: silver;
    font-size: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info_div.hide {
    display: none;
}

.section_title + .info_div {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    transform: unset;
}

.detailDiv .page_title {
    font-size: 12pt;
    padding-bottom: 5px;
}

.question_text {
    padding: 15px 20px;
    position: relative;
}

.feedback_results_question {
    margin-bottom: 30px;
}

.option_element {
    position: relative;
    border: 1px solid lightgray;
    border-radius: 4px;
    margin: 10px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    padding: 10px;
    overflow: hidden;
    cursor: pointer;
}
.option_element.has_result {
    padding-bottom: 30px;
}

.option_element .result {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    background-color: #e2e2e2;
}

.option_element .result .value {
    color: white;
    font-size: 14px;
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.option_element .result .percent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.option_element.wrong,
.option_element.selected_color_bg_division_1.wrong {
    transition: background .3s;
    background-color: #ff6f66 !important;
    color: #fff !important;    
}
.option_element.correct,
.option_element.selected_color_bg_division_1.correct {
    transition: background .3s;
    background-color: #78c781 !important;
    color: #fff !important;
}
.option_element.correct .font_color_dark,
.option_element.wrong .font_color_dark {
    color: #fff !important;
}

.option_element .cg-icon {
    transform: translateX(7px);
    text-align: left;
}

.option_element .option_text {
    flex: 1;
    word-break: break-word;
}

.selected .option_text,
.selected .option_text.font_color_dark {
    color: white !important;
}

.highlight_span {
    background-color: #AAAAAA;
    color: white;
    padding: 1px 3px;
    border-radius: 3px;
}

.action_td {
    padding-bottom: 5px;
    padding-top: 5px;
    margin: 7px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, .3);
    border-radius: 4px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.action_td+.action_td {
    margin-left: 0;
}

.action_td.selected {
    box-shadow: inset 1px 1px 10px black;
}

.action_icon.search {
    background-image: url('../../img/search_icon2.png');
}

.exhibitor_contacts {
    display: block;
    height: 0;
    overflow: hidden;
    transition: height 0.2s linear;
    transform: translate3d(0px, 0px, 0px);
    -webkit-transition: height 0.2s linear;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.exhibitor_contact_detail {
    font-size: 10px;
    padding: 5px;
}

.exhibitor_contacts.visible {
    height: auto;
}

.session_rating {
    display: block;
}


.poi_description {
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.session_detail_header {
    margin: 20px;
}

.session_attributes {
    font-size: 13px;
    line-height: 18px;;
}

.session_detail_header .session_name {
}

.session_detail_header .session_time {
}

.session_detail_header .session_day {
}

.session_detail_header .session_room {
}

.session_detail_header .session_type {
}

.session_detail_header .live {
    color: #8dc48b;
    margin-left: 10px;
    display: none;
    font-weight: bold;
}

.ongoing .session_detail_header  .live {
    display: inline;
}

.speaker_button {
    display: block;
    padding-left: 20px;
    padding-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    clear: both;
}

.linkInfo {
    display: block;
    padding-left: 20px;
    padding-right: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    clear: both;
}

.big_pic,
.small_pic,
.tiny_pic {
    height: 80px;
    width: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.big_pic {
    height: 120px;
    width: 120px;
}

.tiny_pic {
    height: 50px;
    width: 50px;
}

.big_pic.photo,
.small_pic.photo,
.tiny_pic.photo {
    border-radius: 50%;
    background-color: #ddd;
}

.big_pic img,
.small_pic img,
.tiny_pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.big_pic.photo img,
.small_pic.photo img,
.tiny_pic.photo img {
    border-radius: 50%;
}

.sponsor_element {
    position: relative;
}

.speaker_button .speaker_name {
    font-size: 16px;
}

.header_filter_button {
    margin: 0;
    display: block;
    height: 100%;
    padding: 15px;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid lightGray;
    border-left: 1px solid lightGray;
    color: #4D4D4F;
}

.header_filter_button.selected {
    border-bottom: 0;
}

.speakerHeader {
    display: block;
    margin: 20px 20px;
    position: relative;
}

.exhibitorHeader {
    display: block;
    margin: 20px;
    position: relative;
}

.dashboard_block {
    display: block;
}

.speakerHeader .speaker_name {
    font-size: 18px;
}


.exhibitorHeader .exhibitor_name {
    font-size: 18px;
}


.section_title {
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 10px 4px 20px;
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.resource_button {
    padding: 20px;
    padding-left: 20px;
    padding-right: 70px;
    position: relative;
}

.poi_button {
    padding: 10px;
    padding-left: 20px;
    padding-right: 70px;
    position: relative;
    font-size: 12px;
}

.poster_name {
    font-size: 12px;
}

.poster_rating {
    display: block;
    clear: both;
}
.resource_name {
    font-size: 11pt;
}

.resource_format {
    font-size: 9pt;
}

.download_button {
    position: absolute;
    width: 44px;
    height: 44px;
    right: 20px;
    top: 50%;
    margin-top: -22px;
    background-size: 44px auto;
    background-position: center;
    background-repeat: no-repeat;
}

.gotodetail_button {
    height: 44px;
    width: 44px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 13px;
    position: absolute;
    right: 1px;
    top: 50%;
    margin-top: -22px;
    opacity: 0.8;
}

.session_bottom_actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    z-index: 10;
}

.bottom_action_title {
    font-size: 9px;
    display: block;
}



.scroll {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.scroll_x {
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}

.scroll_lock {
    overflow: hidden;
}

.search_box {
    display: block;
    padding: 10px;
    background-color: lightGray;
}

.search_box input {
    border-radius: 10px;
    width: 95%;
    height: 20px;
    font-size: 12px;
}

.gradient_background {
    background: #b3dced;
    /* Old browsers */
    background: -moz-linear-gradient(top, #b3dced 0%, #0b5581 50%, #bce0ee 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b3dced), color-stop(50%, #0b5581), color-stop(100%, #bce0ee));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b3dced 0%, #0b5581 50%, #bce0ee 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b3dced 0%, #0b5581 50%, #bce0ee 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #b3dced 0%, #0b5581 50%, #bce0ee 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #b3dced 0%, #0b5581 50%, #bce0ee 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3dced', endColorstr='#bce0ee', GradientType=0);
    /* IE6-9 */
}

.sponsor_image.full_horizontal {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.sponsor_image.full_horizontal img {
    max-height: 60px;
    max-width: 280px;
}

.sponsor_image.side_by_side img {
    max-height: 60px;
    max-width: 130px;
}

.sponsor_image.side_by_side {
    text-align: center;
    height: 80px;
    vertical-align: middle;
}

.sponsor_table_side_by_side {
    width: 100%;
}

.color_bold {
    color: #7A4417;
}

#mapInfoDiv_content {
    z-index: 1;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}

.rate_session {
    padding: 5px 0px 20px 20px;
    height: 50px;
    clear: both;
    font-size: 12px;
}

.rate_speaker {
    padding: 5px 0px 20px 20px;
    height: 50px;
    clear: both;
    font-size: 12px;
}

.rate_poster {
    padding: 5px 0px 20px 20px;
    height: 50px;
    clear: both;
    font-size: 12px;
}

.session_general_info_div {
    background-size: auto 100px;
    background-position: center bottom;
}

.stars_container {
    margin: auto;
    /*width:250px;*/
    clear: both;
}

.star {
    width: 50px;
    height: 50px;
    background-image: url('../../img/Star_Empty.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    float: left;
}

.star.selected {
    background-image: url('../../img/Star_Full.png');
}


.face1 {
    width: 55px;
    height: 60px;
    background-image: url('../../img/face1empty.png');
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    float: left;
}

.face1.selected {
    background-image: url('../../img/face1full.png');
}

.face2 {
    width: 55px;
    height: 60px;
    background-image: url('../../img/face2empty.png');
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    float: left;
}

.face2.selected {
    background-image: url('../../img/face2full.png');
}

.face3 {
    width: 55px;
    height: 60px;
    background-image: url('../../img/face3empty.png');
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    float: left;
}

.face3.selected {
    background-image: url('../../img/face3full.png');
}

.face4 {
    width: 55px;
    height: 60px;
    background-image: url('../../img/face4empty.png');
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    float: left;
}

.face4.selected {
    background-image: url('../../img/face4full.png');
}

.face5 {
    width: 55px;
    height: 60px;
    background-image: url('../../img/face5empty.png');
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    float: left;
}

.face5.selected {
    background-image: url('../../img/face5full.png');
}

.poster_author_name {
    padding-bottom: 5px;
    padding-left: 20px;
    font-size: 8pt;
}

.posterHeader {
    margin: 20px;
}
.poster_image_div {
    overflow: hidden;
    text-align: center;
    padding: 15px;
}

.poster_image_div img {
    max-height: 200px;
    max-width: 260px;
}

.news_container {
    margin: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .3);
    font-size: 12px;
}

.news_header_div {
    display: block;
    height: 28px;
    font-size: 10pt;
    background-size: auto 30px;
    border-bottom: 1px solid lightGray;
    border-top: 1px solid lightGray;
    background-position: center;
    background-repeat: repeat-x;
    line-height: 30px;
    padding-left: 20px;
    position: relative;
}

.news_element {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.news_read_button {
    position: absolute;
    right: 15px;
    top: 0;
    background-size: 20px;
}

.auth_explain_text {
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.register_user_photo_div {
    height: 100px;
    text-align: center;
}

.session_type_image {
    width: 40px;
    top: 0;
    bottom: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}

.photo_feed_actions {
    margin: 5px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, .3);
    border-radius: 4px;
}

.register_user_photo {
    width: 90px;
    height: 90px;
    background-image: url('../../img/defaults/img_user.png');
    margin: auto;
    margin-top: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 5px;
}

.register_user_explain_div {
    padding: 10px;
}

#zoomableImage {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
}


.no_sessions {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.description p {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.description strong {
    font-weight: Regular;
    font-family: Text-Bold;
}

.description h1 {
    font-size: 12pt;
    margin: 0;
    padding: 0;
}

.description h2 {
    font-size: 10pt;
    margin: 0;
    padding: 0;
}

.description hr {
    display: block;
    height: 1px;
    border: 0;
    margin: 1em 0;
    padding: 0;
}

.description {
    font-size: 10pt;
}

.custom h1 {
    font-size: 10pt;
}

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

.description.custom p {
    padding: 0;
}

.gradient_background_gray {
    background: -moz-linear-gradient(top, rgba(156, 158, 161, 0) 7%, rgba(95, 94, 97, 0.1) 80%, rgba(78, 77, 79, 0.1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(7%, rgba(156, 158, 161, 0)), color-stop(80%, rgba(95, 94, 97, 0.1)), color-stop(100%, rgba(78, 77, 79, 0.1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(156, 158, 161, 0) 7%, rgba(95, 94, 97, 0.1) 80%, rgba(78, 77, 79, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(156, 158, 161, 0) 7%, rgba(95, 94, 97, 0.1) 80%, rgba(78, 77, 79, 0.1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(156, 158, 161, 0) 7%, rgba(95, 94, 97, 0.1) 80%, rgba(78, 77, 79, 0.1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(156, 158, 161, 0) 7%, rgba(95, 94, 97, 0.1) 80%, rgba(78, 77, 79, 0.1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009c9ea1', endColorstr='#1a4e4d4f', GradientType=0);
    /* IE6-9 */
}

.pinpoint {
    display: flex;
    align-items: center;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    font-size: 80px;
    height: 80px;
    width: 60px;
    margin-left: -30px;
    margin-top: -80px;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transition: all .3s ease-out;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    z-index: 98;
}

.pinpoint::before {
    margin: 0 auto;
}

.pinpoint.selected {
    z-index: 99;
}

table {
    padding: 0;
    margin: 0;
    border-collapse: collapse;
    border: 0;
    border-spacing: 0;
}

.page_swipe {
    width: 100%;
    overflow: hidden;
}

.list_element.filter_type_option {
    padding-left: 20px;
    font-size: 12pt;
    border-bottom: 1px solid #F6F6F6;
    padding-right: 60px;
}

.selected_filter_indicator {
    font-size: 12px;
}

.list_element {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    clear: both;
    position: relative;
    text-align: left;
}

.search_list_element {
    padding: 5px;
    display: block;
    clear: both;
    position: relative;
    text-align: left;
}

.bottom_actions {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99;
}

.bottom_actions table {
    width: 100%;
}

.session_sponsorhip_title {
    padding: 10px;
    padding-left: 20px;
    font-size: 10px;
    text-transform: uppercase;
}

.session_sponsorship {
    position: relative;
}

.list_element:active {
    opacity: 0.8;
}

.list_element:hover {
    opacity: 0.8;
    cursor: pointer;
}

.list_element.hide {
    display: none;
}

.section_title.hide {
    display: none;
}

.search_list_element:active {
    opacity: 0.8;
}

.search_list_element:hover {
    opacity: 0.8;
    cursor: pointer;
}

.list_element img {
    max-width: 80px;
    max-height: 80px;
}

.search_list_element img {
    max-width: 45px;
    max-height: 45px;
}

.list_element_image {
    text-align: center;
    vertical-align: middle;
    float: left;
    padding: 10px;
}

.search_list_element_image {
    text-align: center;
    vertical-align: middle;
    float: left;
    padding: 5px;
}

.list_element_content {
    padding: 10px;
    float: left;
}

.list_element_detail_button {
    position: absolute;
    right: 0;
    top: 50%;
    height: 44px;
    width: 44px;
    margin-top: -22px;
    background-size: auto 15px;
    background-repeat: no-repeat;
}

.search_text_div {
    display: block;
    margin: 10px;
    position: relative;
    height: 40px;
}

.search_text_div input {
    display: block;
    border: 1px solid lightGray;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 95%;
    font-size: 12px;
    padding-left: 15px;
}

.result_title {
    font-size: 12px;
}

.result_subtitle {
    font-size: 10px;
}

.search_result_element_div {
    padding: 5px;
    display: block;
}

.search_result_element_div:active {
    background-color: lightGray;
}

.search_result_element_div:hover {
    background-color: lightGray;
    cursor: pointer;
}

.search_result_element_div .icon_result_type {
    float: left;
    width: 44px;
    height: 44px;
    background-position: center center;
    background-size: 25px auto;
    background-repeat: no-repeat;
}

.icon_result_type.speakers {
    background-image: url('../../img/Icon_Speakers.png');
}

.icon_result_type.exhibitors {
    background-image: url('../../img/Icon_Exhibitors.png');
}

.icon_result_type.sessions {
    background-image: url('../../img/Icon_Program_small.png');
}

.icon_result_type.poi {
    background-image: url('../../img/Icon_POI.png');
}

.icon_result_type.posters {
    background-image: url('../../img/Icon_Posters.png');
}

.icon_result_type.sponsors {
    background-image: url('../../img/Icon_Sponsors.png');
}

.search_result_element_div .result_content {
    float: left;
    display: block;
    padding: 5px;
    max-width: 80%;
    position: relative;
}

.search_result_element_div .result_content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background-color: lightgray;
}

.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

.congress_list_element {
    display: block;
    padding: 5px;
    margin: 20px;
    z-index: 99;
}

.congress_list {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.news_list {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.congress_image {
    position: relative;
}

.congress_image img {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.congress_logo_image img {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.index_search_text {
    font-size: 12px;
    display: block;
    border: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
}

.scan_badge_button {
    text-transform: uppercase;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    padding: 15px;
    padding-left: 40px;
    background-repeat: no-repeat;
    background-image: url('../../img/icon_white_qrcode.png');
    background-size: 30px;
    background-position: 15px center;
    max-width: 150px;
}

.news_timestamp {
    font-size: 8pt;
}

#list_exhibitors_container {
    display: block;
}

.progress_indicator {
    text-align: center;
    font-size: 12pt;
}

.speakersIndexHeader {
    position: relative;
    height: 50px;
    display: block;
}

.list_page_header {
    height: 45px;
    text-align: center;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
}

.list_page_header.hide {
    display: none;
}

.list_page_header.report {
    display: block;
}

.list_page_header_content {
    height: 50px;
    line-height: 50px;
    position: relative;
    text-align: center;
    display: inline-block;
    z-index: 99;
}

.list_page_header_icon {
    width: 44px;
    height: 44px;
}

.list_page_header_title {
    background-repeat: no-repeat;
    background-position: 2px center;
    background-size: 20px auto;
    font-size: 12pt;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    display: inline-block;
    margin: -2px;
    text-transform: uppercase;
}



.search_header .search_header_spinner {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background-image: url(../../img/spinner.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%;
    z-index: 10;
}

.search_header .search_header_spinner.show {
    display: block;
}

.user_field_choose_one {
    -webkit-appearance: none;
    background: transparent;
    padding: 15px 20px;
    color: #404040;
    border: 0;
    font-size: 14px;
    width: 100%;
}

.user_field_write {
    background: transparent;
    padding: 15px 20px;
    color: #404040;
    border: 0;
    font-size: 14px;
    display: block;
    width: 100%;
}

input {
    font-family: Text-Regular;
    -webkit-appearance: none !important;
}

textarea {
    font-family: Text-Regular;
    resize: none;
    box-sizing: border-box;
}

textarea:focus,
input:focus {
    outline: 0;
}

.btn-home {
    display: inline-block;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    margin: 5px;
    border: 1px solid white;
}

.btn-home:active {
    opacity: 0.7;
}

.btn-home:hover {
    opacity: 0.7;
    cursor: pointer;
}

.top_side_menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    z-index: 99;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: white;
}

.bottom_side_menu {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid lightGray;
    height: 45px;
    z-index: 99;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.side_menu_elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
    padding-bottom: 60px;
}

.side_menu_elements+.top_side_menu {
    top: 45px;
}

.side_menu_elements:nth-last-child(2) {
    bottom: 45px;
}

.top_side_menu table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    border: 0;
    padding: 0;
    border-spacing: 0;
}

.top_side_menu table td {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 25%;
    vertical-align: middle;
}

.top_side_menu ~ .side_menu_elements {
    padding-top: 45px;
}

.bottom_side_menu ~ .side_menu_elements.scroll {
    padding-bottom: 45px;
}

.search_close {
    position: absolute;
    z-index: 99;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: silver;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    font-size: 14px;
}

.search_close.show {
    opacity: 1;
    pointer-events: all;
}

.arrow_next {
    height: 44px;
    width: 44px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -22px;
}

.cg-icon {
    display: inline-block;
    font-family: Icon-Font;
    /*-webkit-font-smoothing: antialiased;*/
    font-style: normal;
    font-weight: normal;
    font-size: 16pt;
    line-height: 45px;
    width: 45px;
    height: 45px;
    vertical-align: middle;
    text-align: center;
    text-transform: none !important;
}

.cg-icon:before {
    content: ".";
}

.icon-pinpoint:before {
    content: "7";
}

.icon-pinpoint.selected:before {
    content: "7";
}

.cg-icon-font {
    font-family: Icon-Font;
}

.cg-icon-character {
    font-family: Icon-Font;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    vertical-align: middle;
    text-align: center;
    text-transform: none !important;
}

.cg-icon-character2 {
    font-family: Icon-Font;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
}

.session_type_color_indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
}

.session_type_line {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 5px;
}

.search_header {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 100;
    margin: 7px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .6);
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    height: 44px !important;
}

.search_header.show {
    display: block;
    border-bottom: 1px solid lightGray;
}

.search_header input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    box-sizing: border-box;
    z-index: 5;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    background-color: #fff;
    border: none;
}

.search_header .search_close + input {
    padding-right: 50px;
}

.profile_header {
    margin: 20px 20px;
}

.my_profile_contacts {
    font-size: 14px;
}

.profile_attribute {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 12px;
}

.profile_pic {
    margin: 10px;
}

.user_profile_pic_div_request {
    background-image: url('../../img/defaults/img_user.png');
    height: 200px;
    width: 200px;
    border-radius: 200px;
    margin-left: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 5px;
}

#delete_pic_bt {
    display: none;
}

.query_location_item {
    position: relative;
    padding: 10px 20px;
    padding-left: 60px;
}

.query_location_item.selected {
    background-color: rgba(0, 0, 0, .1);
}

.query_location_item::before {
    content: '7';
    font-family: Icon-Font;
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    width: 60px;
    color: silver;
    font-size: 35px;
    text-align: center;
}

.query_location_item .title {
    font-family: Text-Bold;
}

.query_location_item .description {
    font-size: 12px;
}

#user_location_list:not(:empty)+.info_div {
    display: none;
}

.block_button {
    display: block;
    border-radius: 3px;
    padding: 6px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 1px solid grey;
}
.block_button.with_icon {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 30px 1fr;
    grid-gap: 10px;
    padding: 3px 3px 3px 5px;
}
.block_button.with_icon img { width: 100%; }
.block_button.with_icon div { justify-self: left; }

.option_buttons {
    display: grid;
    min-width: 65%;
    margin: 20px 20px;
    margin-top: 0;
    grid-template-columns: minmax(65%, min-content);
    grid-gap: 10px;
}

.option_buttons.full_width {
    grid-template-columns: 1fr;
}

.option_buttons.wrap2 {
    grid-template-columns: 1fr 1fr;
}

.option_buttons:empty {
    display: none;
}

.option_button {
    position: relative;
    padding: 8px;
    padding-left: 27px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    background-size: 15px auto;
    background-repeat: no-repeat;
    background-position: 8px center;
    border-bottom: 1px solid;
    border-color: inherit;
    box-sizing: border-box;
    transform: translateZ(0);
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.option_buttons.clean .option_button {
    border-radius: 0;
    background-image: none;
    padding: 8px;
    border-bottom: none;
    font-size: 12px;
    line-height: 12px;
}

.option_separator {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    background-color: white;
    width: 2px;
}

.option_button i {
    position: absolute;
    font-size: 14px;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
}

.option_button.qrcode {
    background-image: url('../../img/icon_white_qrcode.png');
}

.option_button.add {
    background-image: url('../../img/icon_white_add.png');
}

.option_button.remove {
    background-image: url('../../img/icon_white_remove.png');
}

.option_button.location {
    background-image: url('../../img/icon_white_location.png');
}

.option_button.linkedin {
    background-image: url('../../img/icon_white_linkedin.png');
}

.option_button.editprofile {
    background-image: url('../../img/icon_white_edit.png');
}

.option_button.logout {
    background-image: url('../../img/icon_white_logout.png');
}

.option_button.add_to_meeting_btn {
    background-image: url('../../img/icon_white_meeting.png');
}

.option_button.add_to_fav_btn {
    background-image: url('../../img/icon_white_agenda.png');
}

.option_button.go_to_location_btn {
    background-image: url('../../img/icon_white_location.png');
}

.option_button.open_link_btn {
    background-image: url('../../img/icon_white_link.png');
}

.option_button.take_photo_btn {
    background-image: url('../../img/icon_white_camera.png');
}

.option_button.choose_photo_btn {
    background-image: url('../../img/icon_white_gallery.png');
}

.option_button.polling_btn {
    background-image: url('../../img/icon_white_polling.png');
}

.option_button.moderation_btn {
    background-image: url('../../img/icon_white_question.png');
}

.option_button.speaker_profile_btn {
    background-image: url('../../img/icon_white_speaker.png');
}

.option_button.participant_profile_btn {
    background-image: url('../../img/icon_white_speaker.png');
}

.option_button.notes_btn {
    background-image: url('../../img/icon_white_edit.png');
}

.option_button.group_btn {
    background-image: url('../../img/icon_white_group.png');
}

.option_button.chat_btn {
    background-image: url('../../img/icon_white_chat.png');
}

.option_button.coupon_btn {
    background-image: url('../../img/icon_white_coupon.png');
}

#mapDiv {
    overflow: hidden;
}

.cg_button {
    display: block;
    border: 1px solid white;
    border-radius: 3px;
    color: white;
    padding: 6px;
    width: 90%;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14pt;
}


.bg_color_facebook {
    background-color: #3b5998;
}


.cg-icon.align-left {
    text-align: left;
    padding-left: 5px;
}

.cg-icon-size-6 {
    font-size: 6pt
}

.cg-icon-size-8 {
    font-size: 8pt
}

.cg-icon-size-10 {
    font-size: 10pt !important;
}

.cg-icon-size-12 {
    font-size: 12pt
}

.cg-icon-size-16 {
    font-size: 16pt
}

.cg-icon-size-20 {
    font-size: 20pt
}

.cg-icon-size-18 {
    font-size: 18pt
}

.cg-icon-size-14 {
    font-size: 14pt
}

.cg-icon-circle:before {
    content: ".";
}

.cg-icon-notifications:before {
    content: "!";
}

.cg-icon-menu:before {
    content: "A";
}

.cg-icon-filter:before {
    content: "C";
}

.cg-icon-back:before {
    content: "<";
}

.cg-icon-fwd:before {
    content: ">";
    opacity: 0.5
}

.cg-icon-bt-check-full:before {
    content: "5";
}

.cg-icon-bt-check-empty:before {
    content: "6";
}

.cg-icon-speakers:before {
    content: "W";
}

.cg-icon-sponsors:before {
    content: "S";
}

.cg-icon-program:before {
    content: "V";
}


.cg-icon-spaces:before {
    content: "X";
}

.cg-icon-posters:before {
    content: "U";
}

.cg-icon-resources:before {
    content: "T";
}

.cg-icon-exhibitors:before {
    content: "Y";
}

.cg-icon-points-of-interest:before {
    content: "Q";
}

.cg-icon-other:before {
    content: "a";
}

.cg-icon-dashboard:before {
    content: "F";
}

.cg-icon-myagenda:before {
    position: relative;
    content: "D";
    border-radius: 10px;
    z-index: 2;
}

.cg-icon-myagenda .my-agenda-color {
    position: absolute;
    height: 18px;
    width: 18px;
    background-color: green;
    top: 9px;
    left: 9px;
    z-index: 1;
}

.in_agenda.cg-icon-myagenda .my-agenda-color {
    background-color: red;
}

.cg-icon-user-circle:before {
    content: "t";
}

.cg-icon-user:before {
    content: "u";
}

.cg-icon-messages:before {
    content: "E";
}

.cg-icon-moderation:before {
    content: "#";
}

.cg-icon-polling:before {
    content: "@";
}

.cg-icon-notes:before {
    content: "$";
}

.cg-icon-search:before {
    content: "b";
}

.cg-icon-close:before {
    content: "c";
}

.cg-icon-flag:before {
    content: "s";
}

.cg-icon-bt-fav:before {
    content: "=";
}

.cg-icon-bt-fav:active:before {
    content: ";";
}

.favourite .cg-icon-bt-fav:before {
    content: ";";
}

.selected .cg-icon-bt-fav:before {
    content: ";";
}

.cg-icon-bt-fav.selected:before {
    content: ";";
}

.cg-icon-bt-location:before {
    content: "j";
}

.cg-icon-bt-location:active:before {
    content: "J";
}

.cg-icon-bt-link:active:before {
    content: "K";
}

.cg-icon-bt-link:before {
    content: "k";
}

.cg-icon-bt-link.selected:before {
    content: "K";
}

.cg-icon-bt-download:before {
    content: "h";
}

.cg-icon-bt-download.selected:before {
    content: "H";
}

.cg-icon-feedback:before {
    content: "v";
}

.cg-icon-questionnaire:before {
    content: "w";
}

.selected .cg-icon-check:before {
    content: "5";
}

 
.cg-icon-check:before {
    content: "6";
}

.selected .cg-icon-check-circle:before {
    content: "3";
}

.cg-icon-check-circle:before {
    content: "4";
}

.cg-icon-check-filled-circle:before {
    content: "3";
}

.cg-icon-bt-checkbox:before {
    content: "^";
}

.cg-icon-sm-user-circle:before {
    content: "&";
}

.wrong .cg-icon-bt-checkbox:before,
.correct .cg-icon-bt-checkbox:before {
    color: white !important;
}

.selected .cg-icon-bt-checkbox:before {
    content: "_";
    color: white !important;
}

.cg-icon-bt-zoom-in:before {
    content: "m";
}

.cg-icon-day:before {
    content: "z";
}

.cg-icon-refresh:before {
    content: "Z";
}

.cg-icon-bt-zoom-in:active:before {
    content: "M";
    color: white !important;
}

.selected .cg-icon-bt-zoom-in:before {
    content: "M";
    color: white !important;
}

.cg-icon-arrow-toggle:before {
    content: "}";
    color: white !important;
}

.cg-icon-heart-outline:before {
    content: "e";
}

.closed .cg-icon-arrow-toggle:before {
    content:"{";
}

.cg-icon-search-close:before {
    content: "-";
}

.cg-icon-filter-funnel:before {
    content: ",";
}

.cg-icon-edit:before {
    content: "*";
}

.cg-icon-floors:before {
    content: "`";
}

.cg-icon-bt-contacts:before {
    content: "l";
}

.cg-icon-bt-contacts:active:before {
    content: "L";
}

.cg-icon-bt-website:before {
    content: "k";
}

.cg-icon-bt-website:active:before {
    content: "K";
}

.cg-icon-bt-phone:before {
    content: "i";
}

.cg-icon-bt-phone:active:before {
    content: "I";
}

.cg-icon-bt-address:before {
    content: "j";
}

.cg-icon-bt-address:active:before {
    content: "J";
}

.cg-icon-bt-email:before {
    content: "n";
}

.cg-icon-bt-email:active:before {
    content: "N";
}

.cg-icon-logout:before {
    content: "\\";
}

.cg-icon-user-subtitle:before {
    content: "a";
}

.cg-icon-phone:before {
    content: "p";
}

.cg-icon-link:before {
    content: "r";
}

.cg-icon-email:before {
    content: "q";
}

.cg-icon-user-bio:before {
    content: "P";
}

.cg-icon-bt-photo:before {
    content: "8";
}

.cg-icon-bt-photo:active:before {
    content: "9";
}

.cg-icon-bt-gallery:before {
    content: "x";
}


.cg-icon-bt-gallery:active:before {
    content: "y";
}

.cg-icon-gallery:before {
    content: "f";
}

.cg-icon-settings:before {
    content: "~";
}

.cg-icon-home:before {
    content: "F";
}

.cg-icon-password:before {
    content: "[";
}

.cg-icon-code:before {
    content: "3";
}

.loading_sponsor {
    background-color: white;
    border-top-right-radius: 10px;
    padding: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 6px;
    color: black;
    text-align: left;
}

.loading_sponsor td {
    text-align: left;
}

.loading_sponsor img {
    max-height: 20px;
}

.loading_developedby img {
    max-height: 20px;
}

.loading_developedby {
    background-color: white;
    border-top-left-radius: 10px;
    padding: 5px;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 6px;
    color: black;
    text-align: left;
}

.partners_banner {
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.75);
}

/* PHOTO FEED */

.post_temp_img_placeholder {
    background-image: url('../../img/photo_placeholder.png');
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    margin-left: -75px;
    margin-top: -75px;
    top: 50%;
    left: 50%;
    position: absolute;
}

.post_user_info {
    padding: 10px;
    position: relative;
    min-height: 20px;
}

.post_content.image .image_fullscreen {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
    z-index: 5;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, .3);
    background-image: url('../../img/fullscreen.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
}

.post_content.image .image_share {
    position: absolute;
    bottom: 10px;
    right: 50px;
    height: 30px;
    width: 30px;
    z-index: 5;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, .3);
    background-image: url('../../img/share_white.png');
    background-repeat: no-repeat;
    background-position: 3px center;
    background-size: 22px;
}

.post_container {
    margin: 15px;
    margin-top: 15px;
    padding: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
    background-color: #fff;
    position: relative;
}


.post_like_counter,
.post_comment_counter {
    background-image: url('../../img/heart_off.png');
    background-size: 22px;
    background-position: right center;
    background-repeat: no-repeat;
    color: #A3A3A6;
    font-size: 12px;
    height: 22px;
    line-height: 22px;
    padding-right: 25px;
    min-width: 8px;
    text-align: center;
    cursor: pointer;
}

.post_comment_counter {
    background-image: url(../../img/comment.png);
    background-position-y: 1px;
    margin-left: 10px;
}

.post_comment_counter:first-child {
    margin-left: 0px;
}

.post_like_counter.on {
    background-image: url('../../img/heart_on.png');
}


.post_pinned {
    display: none;
}

.pinned .post_pinned {
    display: block;
}

.post_pinned,
.post_options_button {
    position: absolute;
    top: 5px;
    right: 35px;
    padding: 5px;
    padding-right: 25px;
    font-size: 10px;
    height: 16px;
    line-height: 19px;
    color: #A3A3A6;
    z-index: 10
}

.post_options_button {
    width: 20px;
    right: 5px;
    cursor: pointer;
}

.post_pinned::before,
.post_options_button::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 5px;
    bottom: 0;
    width: 18px;
    background-image: url(../../img/pinned.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 17px;
    z-index: 1
}

.post_options_button::before {
    right: 5px;
    background-size: 20px;
    background-image: url('../../img/post_more.png');
}

.post_pinned:nth-child(1),
.post_options_button:nth-child(1),
.post_pinned:nth-child(1)+.post_options_button {
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 4px;
}

.post_pinned:nth-child(1) {
    right: 40px;
}

.post_pinned:nth-child(1)::before,
.post_options_button:nth-child(1)::before,
.post_pinned:nth-child(1)+.post_options_button::before {
    filter: brightness(0) invert(1);
}

.post_user_avatar {
    width: 45px;
    height: 45px;
    border-radius: 60px;
    background-color: #cccccc;
    float: left;
    object-fit: cover;
}

.post_date {
    flex: 1;
    font-size: 10px;
}

.post_user_name {
    font-size: 10px
}

.post_user_subtitle {
    font-size: 10px
}

.post_user_text {
    padding-top: 10px;
    font-size: 16px;
    line-height: 22px;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

.post_user_content {
    width: calc(100% - 120px);
    margin-left: 10px;
    float: left;
}

#post_comments .post_footer {
    display: none;
}

#post_comments .post_container {
    box-shadow: none;
    margin: 0;
}

#post_comments .post_comments {
    padding: 10px;
    padding-bottom: 100px;
}

.post_footer {
    padding: 10px 10px;
}

.post_user_info+.post_footer {
    padding-top: 0;
}

.post_footer_actions {
    display: flex;
    align-items: center;
}


.comments_header {
    box-shadow: 0 0 6px rgba(0, 0, 0, .5);
}

.comments_header .post_user_text {
    padding: 15px;
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 16px;
    line-height: 20px;
}

.comments_header .post_user_text:first-child {
    padding-top: 15px;
}

.comments_header .post_comments_footer {
    display: flex;
    padding: 5px 15px;
    position: relative;
    align-items: center;
    color: grey;
}

.comments_header .post_like_counter {
    margin: 0 5px;
    height: 20px;
    line-height: 20px;
    background-size: 20px;
    padding-right: 24px
}

.comments_container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.comment_card {
    padding: 10px;
    padding-bottom: 7px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.comment_card:nth-child(2) {
    margin-top: 0;
}

.comment_card.reply {
    margin-left: 40px;
}

.comment_card .comment_card_top {
    display: flex;
    align-items: center;
    line-height: 10px;
}

.post_comments .comment_date {
    font-size: 10px;
}

.comment_card .post_like_counter {
    height: 16px;
    line-height: 16px;
    background-size: 16px;
    padding-right: 0px;
    padding-left: 20px;
    background-position-x: left;
}

.comment_card .comment_avatar {
    background-color: #e2e2e2;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-basis: 32px;
    height: 32px;
}

.comment_card .comment_options {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0px;
    font-size: 10px;
    color: silver;

}

.comment_card .comment_options .comment_actions {
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    width: 30px;
    background-image: url('../../img/post_more.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.comment_card .comment_options>div {
    margin-left: 15px;
}

.comment_card .comment_options>div:first-child {
    margin-left: 0;
}

.comment_card.active {
    background-color: #f2f2f2 !important;
}

.comment_card.active .comment_options .reply {
    color: initial;
}

.comment_card .comment_options .reply {
    cursor: pointer;
    text-transform: lowercase;
}

#post_comments .comment_no_comments {
    padding: 40px;
    text-align: center;
    color: silver;
    font-size: 16px;
    display: none;
}

#post_comments .comment_no_comments:last-child {
    display: block;
}

.last_comment {
    font-size: 12px;
    line-height: 14px;
    margin-top: 10px;
}

.view_more_comments {
    font-size: 9px;
    font-family: Text-Bold;
    margin-top: 5px;    
}

.last_comment .comment_user,
.comment_card .comment_user {
    font-size: 10px;
    color: #000;
    font-weight: bold;
}

.last_comment .comment_text {
    font-size: 12px;
    line-height: 14px;
    /*max-width: calc(100% - 120px);*/
    max-height: 50px;
    display: block;
    overflow: hidden;
    line-height: 16px;
}

.comment_card .comment_text {
    font-size: 14px;
    line-height: 18px;
    padding: 3px 0px;
    word-break: break-word;
}


/*TOASTR CONFIG*/

#toast-container.offset-100 {
    bottom: 105px;
    right: 0;
    width: 100%;
}

#toast-container.offset-80 {
    bottom: 80px;
    right: 0;
    width: 100%;
}

#toast-container.offset-50 {
    bottom: 60px;
    right: 0;
    width: 100%;
}

#toast-container.offset-top {
    bottom: unset;
    top: 20px;
    right: 0;
    width: 100%;
}

#toast-container {
    position: absolute;
}

#toast-container>div {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    background-size: 22px;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
}

#toast-container > div:hover {
    box-shadow: none;
}

.toast-message {
    font-family: Text-Regular;
    font-weight: normal;
    font-size: 14px;
}

/*.toast.toast-success {
    background-color: #2ECC40;
}

.toast.toast-warning {
    background-color: #FF851B;
}

.toast.toast-error {
    background-color: #FF4136;    
}
*/

.noTransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.question_card {
    margin: 10px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
    overflow: hidden;
}

.question_card_top {
    padding: 10px;
}

.question_card_top:last-child {
    border-bottom: none;
}

.question_card_bottom {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
}

.question_card_bottom .admin_actions {
    display: flex;
    align-items: center;
    margin-left: 5px;    
    cursor: pointer;
}

.question_card_bottom .admin_action {
    width: 30px;
    font-size: 22px;
    color: #424242;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question_like_button {
    min-width: 12px;
    margin-left: 3px;
    text-align: right;
    display: flex;
    align-items: center;  
    cursor: pointer;
}

.question_like_button i {
    color: grey;
    font-size: 22px;
    margin-right: 10px;
    margin-left: 5px;
}

.question_like_button span {
    padding-top: 2px;
}

.question_like_button.on i {
    color: #78c781;
}

.question_info {
    font-size: 10px;
    line-height: 14px;
    font-style: italic;
    color: silver;
    flex: 1;
    padding: 7px;
    padding-top: 2px;
}

.question_name {
    font-size: 10px;
    padding: 7px 7px 0 7px;
    color: grey;
}

.meeting_time {
    width: 100%;
    text-align: center;
    height: 50px;
}

.meeting_time input,
.meeting_time select {
    height: 40px;
}

.dashboard_list_shortcut {
    width: 100%;
    height: 110px;
    border-bottom: 1px solid white;
    overflow: hidden;
}

.dashboard_list_image {
    display: flex;
    flex-wrap: wrap;
}

.dashboard_list_shortcut.shortcut_image {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex: 1;
    border-bottom: none;

}

.dashboard_list_shortcut.shortcut_image .image_shortcut_title {
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    padding: 15px;
}

.list_shortcut_icon {
    display: inline-block;
    width: 110px;
    height: 100%;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;
    background-color: rgba(0, 0, 0, .2);
}

.list_shortcut_title {
    display: inline-block;
    height: calc(100% - 40px);
    width: calc(100% - 195px);
    vertical-align: top;
    font-size: 22px;
    padding: 20px;
}

.list_shortcut_gotodetail {
    display: inline-block;
    height: 100%;
    width: 45px;
    vertical-align: top;
}

.shortcut_list_area_title {
    vertical-align: middle;
    width: 100%;
    display: inline-block;
}

.placeholder {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.font_color_shortcut {
    color: rgba(0, 0, 0, .2);
}

.top_action {
    display: inline-block;
    width: calc(50% - 5px);
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    vertical-align: top;
    max-width: 220px;
    z-index: 0;
}

.top_action_icon {
    display: inline-block;
    vertical-align: middle;
}

.top_action_text {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    line-height: 14px;
    border-radius: 5px;
    height: 90%;
    background-color: white;
}

.top_action_action {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: white;
    font-size: 12px;
    line-height: 12px;
    width: calc(100% - 35px);
    margin-top: -3px;
}

.option_letter {
    flex-basis: 24px;
    height: 24px;
    width: 24px;
    border-radius: 24px;
    line-height: 25px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
}

.keyboard .keyboard_hides {
    display: none;
}


.chat_room_modal {
    bottom: 84px;
    top: 53px;
    padding-bottom: 15px;
}

.keyboard .chat_room_modal {
    bottom: 42px;
}

.chat_room_message_day {
    text-align: center;
    padding: 1px 6px;
    font-size: 12px;
    margin: auto;
    width: max-content;
    background-color: #f2f2f2;
    border-radius: 4px;
    margin-top: 20px;
}

.chat_room_user_action {
    color: silver;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.keyboard .chat_room_input_container {
    bottom: 0;
    z-index: 200;
}

.keyboard .post_chat_room {
    bottom: 42px;
}


.chat_room_message_detail {
    clear: both;
    text-align: left;
    font-size: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 2px;
}

.chat_room_messages .chat_message.to  div,
.chat_room_message_detail.to  {
    text-align: left;
}

.chat_room_messages .chat_message.from div,
.chat_room_message_detail.from {
    text-align: right;
}

.chat_rooms_notify.selected .cg-icon-bt-checkbox:before {
    color: unset !important;
}

.chat_rooms_participant_card {
    margin: 5px;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

#socket_connection_status {
    background-image: url('../../img/wifi.png');
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 80% 80%;
    background-position: 50% 42%;
    visibility: hidden;
    opacity: 0;
    transition: visibility .5s, opacity .5s;
    z-index: 10;
}

#socket_connection_status.off {
    background-color: red;
    background-image: url('../../img/wifi_off.png');
    animation-name: socketConnect;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    visibility: visible;
    opacity: .7;
}

@keyframes socketConnect {
    0% {
        background-image: url('../../img/wifi.png');
    }

    50% {
        background-image: url('../../img/wifi_off.png');
    }

    100% {
        background-image: url('../../img/wifi.png');
    }
}

.new_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
    color: silver;
    padding: 6px;
    margin: 7px;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 0;
    text-align: center;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, .6);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, .6);
}

.new_post .new_post_extras {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.new_post_extras .extra.image,
.new_post_extras .extra.video {
    display: none;
    height: 60px;
    width: 60px;
    border: 1px solid silver;
    border-radius: 5px;
    position: relative;
    margin-right: 5px;
}

.new_post.has_video .new_post_extras .extra.video {
    display: block;
}

.new_post.has_image .new_post_extras .extra.image {
    display: block;
}

.new_post.has_image #new_post_img {
    display: block;
}

.new_post.has_video #new_post_vid {
    display: block;
}

.new_post_extras .extra.image img,
.new_post_extras .extra.video img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.new_post_extras .extra .full_screen {
    position: absolute;
    bottom: 3px;
    left: 3px;
    height: 22px;
    width: 22px;
    z-index: 10;
    border-radius: 50%;
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../../img/fullscreen.png);
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
}

.new_post_extras .extra .full_screen.video {
    background-image: url(../../img/play_white.png);
}

.new_post_content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.new_post.has_image .new_post_content,
.new_post.has_video .new_post_content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.new_post_actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
}

.new_post_actions .post_action {
    position: relative;
    height: 24px;
    width: 24px;
    line-height: 30px;
    text-align: center;
    margin-right: 7px;
    font-weight: bold;
}

.new_post_actions .post_action::before {
    position: absolute;
    left: -3px;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .3;
}

.new_post_actions .post_action.photo,
.new_post_actions .post_action.gallery,
.new_post_actions .post_action.video {
    width: 32px;
    height: 32px
}

.new_post_actions .post_action.photo::before {
    content: '';
    background-image: url(../../img/camera_black.png);
}

.new_post_actions .post_action.video::before {
    content: '';
    background-image: url(../../img/video_black.png);
}


.new_post_actions .post_action.edit_photo>div,
.new_post_actions .post_action.remove_photo>div,
.new_post_actions .post_action.remove_video>div {
    position: absolute;
    left: 100%;
    width: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: grey;
    font-size: 10px;
    line-height: 10px;
    text-align: left;
}


.new_post_actions .post_action.gallery {
    background-size: 28px;
    background-position: center 0px;
}

.new_post_actions .post_action.gallery::before {
    content: '';
    background-image: url(../../img/photo_black.png);
}

.new_post.has_image .post_action.gallery,
.new_post.has_image .post_action.photo,
.new_post.has_image .post_action.video,
.new_post.has_video .post_action.gallery,
.new_post.has_video .post_action.photo,
.new_post.has_video .post_action.video {
    display: none;
}

.new_post_actions .post_action.remove_photo,
.new_post_actions .post_action.remove_video {
    display: none;
}

.new_post_actions .post_action.remove_photo::before,
.new_post_actions .post_action.remove_video::before {
    content: '';
    background-image: url(../../img/cancel.png);
}

.new_post.has_image .post_action.remove_photo {
    display: block;
    margin-right: 40px;
}

.new_post.has_video .post_action.remove_video {
    display: block;
    margin-right: 40px;
}

.new_post_actions .post_action.edit_photo {
    display: none;
}

.new_post_actions .post_action.edit_photo::before {
    font-family: Icon-Font;
    content: '*';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    color: silver;
    font-size: 20px;
    position: relative;
    top: -3px;
    bottom: unset;
    left: 0px;
    right: unset;
    opacity: 1;
}

.new_post.has_image .post_action.edit_photo {
    display: block;
    margin-right: 40px;
    margin-left: 5px;
}

.new_post_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-end;
}

.new_post_text .text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    max-height: 120px;
}

.new_post_text .text textarea {
    width: 100%;
    border-radius: 5px;
    border: none;
    text-align: left;
    color: #404040;
    padding-top: 5px;
    line-height: 20px;
    line-height: 20px;
    outline: none;
    overflow-y: auto;
    max-height: 120px;
}

.new_post_text .text .shadow_text {
    opacity: 0;
    pointer-events: none;
}

.new_post_text .text textarea.real_text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}


.new_post_send {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url('../../img/input_send.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    -webkit-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    transition: opacity .2s linear;
    pointer-events: none;
}

.new_post_send.active {
    opacity: 1;
    pointer-events: all;
}

.cropper_container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 58px;
}

#cropper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    display: none;
    z-index: 100;
    background-repeat: repeat;
    background-size: initial;
    background-position: left 8px;
    background-color: black;
    /* background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC'); */
    background-position-x: 8px;
}

#cropper .bottom_button,
#cropper_preview .bottom_button {
    border: 1px solid white;
    background-color: rgba(0,0,0,.5);
}

#cropper .session_bottom_actions {
    background-color: rgba(0, 0, 0, .5)
}

#cropper .cropper-face {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: transparent;
}

#cropper .floating_button {
    position: absolute;
    top: 15px;
    background-repeat: no-repeat;
    background-size: 38px;
    background-position: center 2px;
    background-color: rgba(0, 0, 0, .5);
    width: 50px;
    height: 50px;
    border-radius: 7px;
    z-index: 50;
    display: block;
    box-shadow: none;
    transform: translate3d(0,0,0);
    cursor: pointer;
}



#cropper .floating_button.ratio_menu {
    right: 15px;
    height: unset;
    outline:none;
    width: 48px;
    border: 1px solid rgba(0,0,0,.5);;
}

#cropper .floating_button.toggle_frame + .floating_button.ratio_menu {
    right: 75px;
}

#cropper .floating_button.ratio_menu:focus {
    border: 1px solid white;
}

#cropper .floating_button.ratio_menu .ratio_menu_button {
    position: relative;
    top: unset;
    display: none;
    pointer-events: none;
}

#cropper .ratio_menu_button::before,
#cropper .ratio_menu_button::after {
    position: absolute;
    border: 1px solid white;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#cropper .ratio_menu_button.show.active::before {
    background-color: white;
}


#cropper .ratio_menu_button.show.active::after {
    background-color: #e2e2e2;
}

#cropper .ratio_menu_button.ratio_free::before {
    content: '';
    width: 20%;
    height: 20%;
    left: 35%;
    top: 30%;
}

#cropper .ratio_menu_button.ratio_free::after {
    content: '';
    width: 30%;
    height: 30%;
    top: 50%;
    left: 55%;
}

#cropper .ratio_menu_button.ratio_16_9::before {
    content: '';
    width: 50%;
    height: calc(50% * 9 / 16);
}

#cropper .ratio_menu_button.ratio_9_16::before {
    content: '';
    height: 50%;
    width: calc(50% * 9 / 16);
}

#cropper .ratio_menu_button.ratio_4_3::before {
    content: '';
    height: 50%;
    width: calc(50% * 4 / 3);
}
#cropper .ratio_menu_button.ratio_3_4::before {
    content: '';
    height: 50%;
    width: calc(50% * 3 / 4);
}
#cropper .ratio_menu_button.ratio_1_1::before {
    content: '';
    height: 40%;
    width: 40%;
}

#cropper .floating_button.ratio_menu .ratio_menu_button.show {
    display: block;
    pointer-events: all;
    background-color: transparent;
}

#cropper .floating_button.ratio_menu .ratio_menu_button.show + .ratio_menu_button.show {
    margin-top: 10px;
}
#cropper .floating_button.ratio_menu .ratio_menu_button.active {
    display: block;
}

#cropper .floating_button .label {
    position: absolute;
    bottom: 2px;
    left: 0;
    right:0;
    color: white;
    font-size: 8px;
    text-align: center;
}

#cropper .floating_button.rotate_right {
    left: 15px;
    background-image: url(../../img/rotate_right.png);
}

#cropper .floating_button.toggle_frame {
    right: 15px;
    background-size: 34px;
    background-image: url(../../img/frame_white.png);
}

#cropper .cropper-wrap-box {
    overflow: visible;
}

#cropper_preview {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    display: none;
    z-index: 101;
    background-repeat: repeat;
    background-color: black;
    /* background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC'); */
}


/*loading animation*/

.loading-dots-spinner,
.hollow-dots-spinner * {
    box-sizing: border-box;
}

.loading-dots-spinner {
    height: 15px;
}

.loading-dots-spinner .dot {
    width: 15px;
    height: 15px;
    margin: 0 calc(15px / 2);
    /*border: calc(15px / 5) solid silver;*/
    border-radius: 50%;
    display: inline-block;
    transform: scale(0);
    -webkit-transform: scale(0);
    animation: loading-dots-spinner-animation 1000ms ease infinite 0ms;
}

.loading-dots-spinner .dot:nth-child(1) {
    animation-delay: calc(300ms * 1);
}

.loading-dots-spinner .dot:nth-child(2) {
    animation-delay: calc(300ms * 2);
}

.loading-dots-spinner .dot:nth-child(3) {
    animation-delay: calc(300ms * 3);
}

@keyframes loading-dots-spinner-animation {
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.9;
    }

    100% {
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}

.wordcloud_modal {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
}

.wordcloud_modal .wordcloud_prompt {
    padding: 10px 20px 10px 20px;
    flex: 0;
    border-bottom: 1px solid;
}

.wordcloud_modal .words {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 100px;
}

.wordcloud_modal .words.disable {
    pointer-events: none;
}

.wordcloud_modal .word_card {
    position: relative;
    font-size: 16px;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}

.wordcloud_modal .word_card:active {
    background-color: lightgray;
}

#vouchers {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    perspective: 1000px;
    -moz-perspective: 1000px;
    -webkit-perspective: 1000px;
}

.voucher_flip {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.6s;
    transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.voucher_flip.spend {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

#vouchers .vouchers_main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-flow: row wrap;
    z-index: 2;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    align-items: flex-start;
    align-content: flex-start;
    background-color: #fff;
}


.modal_page .vouchers_main {
    padding-bottom: 54px;
}

#vouchers .vouchers_spend {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
    -moz-perspective: 1000px;
    -webkit-perspective: 1000px;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    perspective: 1000px;
}

#vouchers .vouchers_spend .info {
    font-size: 20px;
    font-weight: bold;
    color: silver;
}

#vouchers .vouchers_spend .info div {
    margin-top: 10px;
    color: #404040;
    font-size: 28px;
    line-height: 32px;
}

#vouchers .voucher_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    height: 180px;
    width: 180px;
    transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: all .3s;
}

#vouchers .voucher_button.confirm {
    transform: translateY(-50%) translateX(-50%) rotateX(180deg);
    -webkit-transform: translateY(-50%) translateX(-50%) rotateX(180deg);
}

#vouchers .voucher_spend_button,
#vouchers .voucher_confirm_button {
    position: absolute;
    height: 100%;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

#vouchers .voucher_spend_button {
    z-index: 1;
}

#vouchers .voucher_confirm_button {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}

#vouchers .voucher_spend_button::after,
#vouchers .voucher_confirm_button::after {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    top: -1px;
    z-index: -1;
    z-index: 0;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.4);
}

#vouchers .voucher_spend_button::before,
#vouchers .voucher_confirm_button::before {
    position: absolute;
    content: "";
    display: block;
    z-index: 1;
    padding: 10px;
    background-color: inherit;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.4);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#vouchers .voucher_spend_button span,
#vouchers .voucher_confirm_button span {
    z-index: 3;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#vouchers .vouchers_spend.spent .voucher_button {
    display: none;
}

#vouchers .vouchers_spend .voucher_spent_check {
    display: none;
    font-family: Icon-Font;
    font-size: 70px;
    color: rgba(0, 155, 0, .7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    animation: voucher_pulse .6s linear infinite alternate;
}

#vouchers .vouchers_spend.spent .voucher_spent_check {
    display: inline;
}

@keyframes voucher_pulse {
    0% {
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        color: rgba(0, 175, 0, .7);
    }

    100% {
        transform: translateY(-50%) translateX(-50%) scale(1.1);
        -webkit-transform: translateY(-50%) translateX(-50%) scale(1.1);
        color: rgba(0, 155, 0, .7);
    }
}



.vouchers_spend .info .spent_voucher {
    display: none;
}

.vouchers_spend.spent .info .spending_voucher {
    display: none;
}

.vouchers_spend.spent .info .spent_voucher {
    display: block;
}

.vouchers_spend .voucher_cancel_button .voucher_close {
    display: none;
}

.vouchers_spend.spent .voucher_cancel_button .voucher_cancel {
    display: none;
}

.vouchers_spend.spent .voucher_cancel_button .voucher_close {
    display: block;
}

#vouchers .vouchers_main .voucher {
    position: relative;
    flex: 1 1 100%;
    margin: 5px;
    border: 1px grey dashed;
    padding: 5px;
    background-color: #fff;
    background-clip: padding-box;
}

#vouchers .vouchers_main .voucher .choice:active {
    opacity: .6;
}

#vouchers .vouchers_main .voucher:active {
    background-color: #d2d2d2;
}

#vouchers .vouchers_main .voucher.choose:active {
    background-color: #fff;
}


#vouchers .vouchers_main .voucher .main {
    position: relative;
    display: flex;
    font-weight: bold;
    color: #424242;
    height: 100px;
}

#vouchers .vouchers_main .choice {
    margin: 4px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: calc(33.333% - 10px);
    border: 1px grey solid;
}

#vouchers .vouchers_main .choices.two_per_row .choice {
    flex-basis: calc(50% - 10px);
}

#vouchers .vouchers_main .choice .choice_image {
    width: 100%;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url('../../img/coupon.png');
}

#vouchers .vouchers_main .choice .choice_text {
    width: 100%;
    flex: 1;
    color: grey;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: rgba(0, 0, 0, .8);
    color: white;
    box-sizing: border-box;
    padding: 3px;
}

#vouchers .vouchers_main .voucher .image {
    width: 100px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-image: url('../../img/coupon.png');
}

#vouchers .vouchers_main .voucher .text {
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 24px;
    line-height: 28px;
}

#vouchers .vouchers_main .voucher .count {
    position: absolute;
    top: -2px;
    right: 4px;
    font-size: 20px;
    color: grey;
}

#vouchers .vouchers_main .voucher .has_choices {
    position: absolute;
    bottom: -6px;
    right: 2px;
    font-size: 26px;
    color: grey;
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transition: transform .3s;
    transition: -webkit-transform .3s;
}

#vouchers .vouchers_main .voucher.choose .has_choices {
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
}

#vouchers .vouchers_main .voucher .choices {
    max-height: 0;
    transition: max-height .3s;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
}

#vouchers .vouchers_main .voucher.choose .choices {
    max-height: 450px;
}

#vouchers .empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    display: none;
}

#vouchers .empty:last-child {
    display: block;
}

#vouchers .vouchers_detail {}

.bottom_buttons {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    flex-flow: row wrap;
    transform: translateZ(0);
}

.bottom_buttons.inline {
    display: flex;
    position: relative;
    left: unset;
    bottom: unset;
    right: unset;
    z-index: 99;
    flex-flow: row wrap;
}


.bottom_buttons .bottom_button {
    position: relative;
    flex: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 7px;
    padding: 9px;
    border-radius: 4px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, .3);
    box-sizing: border-box;
    min-height: 42px;
    color: white;
    cursor: pointer;
}

.bottom_buttons .bottom_button.hidden {
    display: none;
}

.bottom_buttons .bottom_button.only_image {
    flex-grow: 0;
    flex-basis: 42px;
    background-position: 300%;
    background-size: 0;
    background-repeat: no-repeat;
}

.bottom_buttons .bottom_button.only_image::before {
    content: '';
    height: 22px;
    width: 22px;
    position: absolute;;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-image: inherit;
    background-position:center;
    background-size: contain;
    background-repeat: no-repeat;    
    filter: brightness(0) invert(1);
}

.bottom_buttons .bottom_button.only_image.has_label .label {
    position: absolute;
    bottom: 0;
    left:0;
    right: 0;
    padding: 2px;
    font-size: 9px;
    text-align: center;
}

.bottom_buttons .bottom_button.only_image img {
    height: 24px;
    position: absolute;;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    filter: brightness(0) invert(1);
}
.bottom_buttons .bottom_button.only_image.has_label img,
.bottom_buttons .bottom_button.only_image.has_label::before {
    top: 4px;
    background-size: 22px;
    transform: translate(-50%,0);
}

.bottom_buttons .bottom_button.has_image {
    background-position: 300%;
    background-size: 0;
    background-repeat: no-repeat;
}

.bottom_buttons .bottom_button.has_image::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: inherit;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.bottom_buttons .bottom_button.no_shadow {
    box-shadow: none;
}

.bottom_buttons .bottom_button.full_width {
    flex: 1;
    flex-basis: 100%;
}

.bottom_buttons .bottom_button.one_third {
    flex: 33.333%;
}

.bottom_buttons .bottom_button.one_quarter {
    flex: 25%;
}

.bottom_buttons .bottom_button.disabled {
    pointer-events: none;
}
.bottom_buttons .bottom_button.disable_opacity {
    pointer-events: none;
    opacity: .5;
}
.bottom_buttons .bottom_button.disabled::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #fff;
    opacity: .3;
}

.bottom_buttons .bottom_button_input {
    position: relative;
    flex: 1;
    flex-basis: 100%;
    margin: 7px;
    margin-bottom: 0;
    overflow: hidden;
    border: none;
    border-radius: 4px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, .3);
    display: flex;
}

.bottom_buttons .bottom_button_input.loading {
    pointer-events: none;
}

.bottom_buttons .bottom_button_input.loading textarea,
.bottom_buttons .bottom_button_input.loading input {
    pointer-events: none;
}

.bottom_button:not(.hidden)+.bottom_button {
    margin-left: 0;
}

.bottom_button.full_width+.bottom_button {
    margin-left: 7px;
}

.bottom_buttons>.bottom_button_input:last-child {
    margin-bottom: 7px;
}

.bottom_buttons .bottom_button_input input,
.bottom_buttons .bottom_button_input textarea {
    border: none;
    padding: 11px;
    flex-basis: 100%;
    height: 100%;
}

.bottom_buttons .bottom_button_input input {
    box-sizing: border-box;
}


.bottom_buttons .bottom_button_input #shadow_text {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    height: auto;
}

.bottom_buttons .bottom_button_input.icon_right input,
.bottom_buttons .bottom_button_input.icon_right textarea {
    padding-right: 42px;
}

.bottom_buttons .bottom_button_input.icon_left input,
.bottom_buttons .bottom_button_input.icon_left textarea {
    padding-left: 42px;
}


.bottom_buttons .bottom_button_input .bottom_input_icon {
    position: absolute;
    top: 0;
    width: 42px;
    height: 42px;
    z-index: 10;
    background-position: center;
    background-size: 26px;
    background-repeat: no-repeat;
    transition: opacity .3s;
    cursor: pointer;
}



.bottom_buttons .bottom_button_input .bottom_input_icon.disabled {
    opacity: 0;
    pointer-events: none;
}

.bottom_buttons .bottom_button_input .bottom_input_icon.right {
    right: 0px;
}

.bottom_buttons .bottom_button_input .bottom_input_icon.left {
    left: 0px;
}

.bottom_buttons .bottom_button_input .bottom_input_icon.send {
    background-image: url('../../img/input_send.png');
}

.bottom_buttons .bottom_button_input.loading .bottom_input_icon.send {
    background-image: url('../../img/loading.svg');
}

.bottom_buttons .bottom_button_input .bottom_input_icon.clear {
    background-image: url('../../img/close_button_a.png');
    background-size: 16px;
}

.bottom_buttons .bottom_button_input .bottom_input_icon.emoji {
    background-image: url('../../img/emojis.png');
    filter: opacity(.5);
}

.bottom_buttons .bottom_button_input .bottom_input_icon.image {
    background-image: url('../../img/camera_black.png');
    filter: opacity(.3);
}

.bottom_buttons.normal_case .bottom_button {
    text-transform: unset;
}

.bottom_buttons.card {
    border-top: 1px solid silver;
}

.bottom_buttons.card .bottom_button {
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.bottom_buttons.card .bottom_button+.bottom_button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    border-left: 1px solid #e2e2e2;
    z-index: 10;
}

.congress_logo {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    top: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
}
.congress_logo img {
    height: 100%;
}

#facebook_checkin .page_content {
    display: flex;
    flex-direction: column;
    color: grey;
    font-size: 20px;
}

#facebook_checkin .text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

#facebook_checkin .share_button {
    flex-basis: 50px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-bottom: 3px solid grey; */
    /* border-right: 3px solid grey; */
    border-radius: 5px;
    font-size: 22px;
    /* font-weight: bold; */
    opacity: .5;
    pointer-events: none;
    color: #fff;
    text-transform: uppercase;
}

#facebook_checkin .share_button.hide {
    display: none;
}

#facebook_checkin .share_button.active {
    opacity: 1;
    pointer-events: all;
}

#facebook_checkin .qr_code {
    display: none;
    flex-basis: 65%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#facebook_checkin .qr_code .code {
    margin-top: 10px;
}
#facebook_checkin .qr_code.show {
    display: flex;
}

#content_available_soon .message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width: 100%;
    padding: 20px;
}

.profile_selection_check::before {
    content: '^';
}

.selected .profile_selection_check::before {
    content: '_';
    margin-left: 6px;
}

.note_card {
    position: relative;
    margin: 6px;
    padding: 10px;
    padding-bottom: 25px;
    font-size: 12px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
    border-radius: 2px;
    overflow: hidden;
    flex: 1;
    height: 74px;
    cursor: pointer;
}

.note_card .note_text {
    margin-top: 2px;
    font-size: 14px; 
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    height: 54px;
    overflow: hidden;
}

.az_slider {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.az_slider .letter {
    color: grey;
    flex: 1;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 14px;
}

.search_header~.slider_container {
    top: 62px;
}

@media screen and (max-height: 400px) {
    .az_slider .letter:nth-child(even) {
        opacity: 0;
    }
}

.az_slider .current_letter {
    display: none;
    position: fixed;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    color: white;
    font-size: 70px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 5px;
}

.az_slider .current_letter.show {
    display: flex;
}

.fake_shadow2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border: 1px #000 solid;
    opacity: .6;
}


.fake_shadow::before {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    z-index: 0;
    border: 1px #000 solid;
    opacity: .1;
    border-radius: inherit;
}

.fake_shadow::after {
    content: '';
    position: absolute;
    left: 3px;
    right: -3px;
    top: 3px;
    bottom: -3px;
    z-index: -1;
    border-bottom: 2px #000 solid;
    border-right: 2px #000 solid;
    opacity: .2;
    border-radius: inherit;
}


.swiper-slide-notes.swiper-slide-active {
    font-weight: bold;
}

.swiper-slide-notes.swiper-slide-prev,
.swiper-slide-notes.swiper-slide-next {
    opacity: .7;
}

.note_card.hide {
    display: none;
}

.list_page .list_page_empty,
.list_page .list_page_search_empty {
    position: absolute;
    left: 50%;
    top: calc(50% - 30px);
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    color: silver;
    font-size: 16px;
    width: 80%;
    text-align: center;
}

.list_page .list_page_empty {
    display: none;
}

.list_page .list_item:not(.hide)~.list_page_search_empty,
.list_page .list_element:not(.hide)~.list_page_search_empty,
.list_page .list_page_search_empty:first-child,
#posters_index .list_page:not(.searching) .list_page_search_empty,
#posters_index .list_page.searching .day_container:not(.closed)~.list_page_search_empty {
    display: none;
}

.list_page .list_page_empty:nth-child(2) {
    display: block;
}

.list_page.searching .day_container.closed {
    display: none;
}

.list_page.searching .day_container .session_index_day_header {
    pointer-events: none;
}

.list_page.searching .day_container .cg-icon-arrow-toggle {
    display: none;
}

div:not(:empty) + .after_filled_list_hides,
.first_child_hides:first-child,
.last_child_hides:last-child,
.not_first_child_hides:not(:first-child),
.not_last_child_hides:not(:last-child),
.only_child_hides:first-child:last-child,
.not_last_child_hides:not(:last-child) {
    display: none;
}

.after_hidden_list_shows {
    display: block;
}

.list_item:not(.hide) ~ .after_hidden_list_shows {
    display: none;
}

.previous_list_empty_shows {
    display: none;
}

div:empty + .info_div.previous_list_empty_shows {
    display: flex;
}

#floorplan_index .floorplan_list {
    display: flex;
    flex-flow: column;
    padding: 10px 10px 10px 10px;
}

.floorplan_card {
    flex: 1;
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
    margin: 5px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}


.floorplan_card .floorplan_image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.floorplan_card .floorplan_image img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.floorplan_card .floorplan_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: .4;
    background-color: #000;
}

.floorplan_card .floorplan_text {
    position: absolute;
    /* left: 0; */
    right: 0;
    /* top: 0; */
    bottom: 0;
    padding: 3px 5px;
    z-index: 2;
    display: flex;
    text-align: right;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}



/*helpers*/

.fontsize12 {
    font-size: 12px !important;
}

.fontsize14 {
    font-size: 14px !important;
}

.fontsize16 {
    font-size: 16px !important;
}

.fontweightbold {
    font-weight: bold !important;
}

.borderradius5 {
    border-radius: 5px !important;
}

.textalignleft {
    text-align: left !important;
}

.textalignright {
    text-align: right !important;
}

.textaligncenter {
    text-align: center !important;
}


.polling_keypad_modal {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
}

.polling_keypad_modal .keypad_options {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    display: flex;
    flex-flow: row wrap;
}

.polling_keypad_modal.answers .keypad_options {
    display: none;
}

.polling_keypad_modal .option {
    flex: 1;
    flex-basis: calc(50% - 12%);
    margin: 4vh 6%;
    border-radius: 50%;
    color: #fff;
    font-size: 70px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3) inset;
    perspective: 1000px;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -webkit-backface-visibility: hidden;
    cursor: pointer;
}

.polling_keypad_modal .option::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.polling_keypad_modal .option::after {
    content: '';
    position: absolute;
    left: -8%;
    right: -8%;
    top: -8%;
    bottom: -8%;
    z-index: -1;
    box-shadow: 0 0 6px rgba(0, 0, 0, .7) inset;
    border-radius: 50%;
}

.polling_keypad_modal .option .symbol {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 72px;
    perspective: 1000px;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -webkit-backface-visibility: hidden;
}

.polling_keypad_modal .option.active.check .symbol {
    animation: keypad_option 1s linear 1;
    animation-fill-mode: forwards;
}

@keyframes keypad_option {
    50% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    51% {
        color: transparent;
    }

    100% {
        background-image: url(../../img/check_white.png);
        color: transparent;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


.polling_keypad_modal .option:active {
    background-color: grey !important;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}

.polling_keypad_modal .option:active::after {
    box-shadow: 0 0 10px rgba(0, 0, 0, .7) inset;
}

.polling_keypad_modal_overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: transparent;
    opacity: .3;
    display: none;
}

.polling_keypad_modal_overlay.active {
    display: block;
}

.polling_keypad_modal_overlay.overlay {
    background-color: #fff;
    opacity: .3;
}

.polling_keypad_modal .option.active {
    background-color: grey !important;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}

.polling_keypad_modal .option.active::after {
    box-shadow: 0 0 10px rgba(0, 0, 0, .7) inset;
}

.polling_keypad_modal .keypad_answers {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.polling_keypad_modal.answers .keypad_options {
    display: none;
}

.polling_keypad_modal.answers .keypad_answers {
    display: block;
}



.app_start_swiper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.app_start_slide {
    position: relative;
}

.app_start_slide .content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app_start_slide .app_login_banner {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 60%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.center_items {
    margin: auto;
    width: 65%;
    max-width: 400px;
    padding: 15px 0;
}

.app_start_slide.custom_field.write .center_items {
    position: absolute;
    top: 0;
    bottom: 50px;
    left: 0;
    right: 0;
    width: unset;
    max-width: unset;
    transform: unset;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.app_start_slide.custom_field.write textarea {
    border: none;
    flex: 1;
    padding-top: 14px;
    margin-top: 5px;
    border-top: 1px solid silver;
    font-size: 16px;
}

.app_start_slide .center_items .button {
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    margin-top: 20px;
}

.app_start_slide .content .access_header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #404040;
}

.app_start_slide .content .description {
    color: #404040;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
}

.app_start_slide.custom_field.write .content .description {
    text-align: left;
}

.app_start_slide .content input,
input.simple_input {
    -webkit-appearance: none;
    border: none;
    border-radius: 0;
    height: 44px;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    font-size: 14px;
    border: 1px solid #404040;
    color: #404040;
    box-sizing: border-box;
    padding: 0 10px;
}

.list_item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.list_item.card {
    margin: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    border-color: silver !important;
    background: #f4f4f4;
}
.list_item.card .list_description .title {
    font-size: 14px;
}

.list_item_group_toggle {
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 15px;
}

.list_item_group {
    margin:  15px;
    border: 1px solid silver;
    overflow: hidden;
    border-radius: 4px;
}

.list_item_group_header {
    margin: 15px;
    margin-bottom: 0;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;    
}

.list_item_group_header + .list_item_group {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
}

.list_item_group_toggle .list_item_group_header,
.list_item_group_toggle .list_item_group {
    margin: 0;
}

.list_item_group_toggle.closed .list_item_group {
    display: none;
}

.list_item_group .list_item {
    margin: 0;
    border-top: 1px solid silver;
    border-bottom: none;
    background: #f4f4f4;
    margin-top: -1px;
}

.list_item_group .list_item .list_description .title {
    font-size: 14px;
}

.list_item.hide {
    display: none;
}

.list_item .list_pic {
    box-sizing: border-box;
    /* margin-left: 4px; */
    position: relative;
}
.list_item .list_pic i.cg-icon {
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_item .list_description {
    flex: 1;
    min-width: 0;
}

.list_item .list_pic + .list_description {
    margin-left: 10px;
}
.list_item .list_description .title {
    font-family: Text-Bold;
    font-size: 16px;
    line-height: 18px;
}

.list_item .list_description .subtitle {
    font-size: 12px;
}

.list_item .list_description > div + div {
    margin-top: 3px;
}

.list_item .list_button {
}

.list_item .list_button .cg-icon {
    height: unset;
    width: unset;
    line-height: unset;
    margin-left: 10px;
}

.list_item.hide_button .list_button {
    display: none;
}

.list_item.shadow {
    margin: 7px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
    border: none !important;
    border-radius: 3px;
}

.list_item.border_bottom:not(last-child) {
    border-bottom: 1px solid var(--color_border);
}

.bookmark {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e2e2;
}

.bookmark[onclick] {
    cursor: pointer;
}

.bookmark i{
    font-size: 22px;
}

.bookmark .fa-star {
    color: white !important;
}

.favorite .bookmark .fa-star {
    color: unset !important;
    color: yellow !important;
    -webkit-text-stroke: 1px #404040;
}

.bookmark .fa-star-o {
    display: none;
}


.list_item.has_bookmark {
    padding-left: 40px;
}

.list_item.shadow.has_bookmark {
    padding-left: 30px;
}

.list_item.has_bookmark .bookmark {
    display: flex;
}

.app_start_slide#user_photo .user_photo {
    display: none;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../../img/defaults/img_user_white.png);
    height: 160px;
    width: 160px;
    border-radius: 50%;
    margin: 30px auto;
    position: relative;
}

.app_start_slide#user_photo .user_photo .rotate {
    position: absolute;
    top: -3px;
    right: -12px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../../img/rotate_right.png);
    height: 30px;
    width: 30px;
    filter: invert(20%);
}

.app_start_slide#user_photo .center_items.has_photo .user_photo {
    display: block;
}

.app_start_slide .user_photo_actions {
    display: flex;
    justify-content: center;
}

.app_start_slide .user_photo_actions>div {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    position: relative;
}

.app_start_slide .user_photo_actions>div::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background-position: center;
    background-size: 30px;
    background-repeat: no-repeat;
    background-image: url(../../img/gallery_black.png);
    filter: invert(100%);
}

.app_start_slide .user_photo_actions .user_photo_upload {
    margin-left: 30px;
}

.app_start_slide .user_photo_actions .user_photo_upload::before {
    background-image: url(../../img/camera_black.png);
}


.app_start_slide .center_items.has_photo .user_photo_upload,
.app_start_slide .center_items.has_photo .user_photo_select {
    display: none;
}

.app_start_slide .center_items .user_photo_clear {
    display: none;
}

.app_start_slide .center_items.has_photo .user_photo_clear {
    display: flex;
}


.app_start_slide .cf_options {
    max-height: 325px;
    overflow-y: auto;
    background-color: unset;
    position: relative;
}

.app_start_slide .cf_option {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid silver;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.app_start_slide .cf_option.selected {
    font-size: 1.2em;
    padding: calc(20px - .1em) 20px;
}

.app_start_slide .cf_option:last-child {
    border-bottom: none;
}

.app_start_slide .next_field_button.disabled {
    pointer-events: none;
}


.app_start_slide .back_to_home_event {
    content: 'F';
    position: absolute;
    left: 20px;
    top: 20px;
}

.app_start_slide .back_to_home_event::before {
    font-family: Icon-Font;
    content: 'F';
    color: #404040;
    font-size: 24px;
}

.app_start_slide .cf_option.selected .text {
    font-weight: bold;
}

.square_button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #fff;
    box-sizing: border-box;
    height: 44px;
    font-size: 14px;
    cursor: pointer;
}

.app_start_slide .square_button {
    height: 44px;
    margin-top: 10px;
}

.app_start_slide .extra_text {
    margin-top: 30px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

.eula {
    margin-top: 20px;
    display: flex;
}


.eula .eula_checkbox {
    font-family: Icon-Font;
    font-size: 24px;
    width: 26px;
    margin-top: -4px;
}

.eula .eula_checkbox::before {
    content: '^';
}

.eula .eula_checkbox.checked::before {
    content: '_';
    pointer-events: none;
}

.eula .eula_text {
    flex: 1;
    font-size: 10px;
    line-height: 14px;
    margin-left: 5px;
    text-align: justify;
}

.action_buttons {
    margin: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
    flex-wrap: wrap;
    box-sizing: border-box;
}


.action_buttons .action_button {
    margin-top: 15px;
    font-size: 10px;
    margin: 0;
    text-transform: uppercase;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
}

#my_events .tab {
    position: absolute;
    top: 0;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 0;
    display: none;
    background: transparent;
}

#my_events.no_tabs .tab {
    bottom: 0px;
    transition: none;
}

#my_events .tab.active {
    display: block;
}

#my_events {
    background-image: url(../../img/appdoevento/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
}

#my_events .tab#code_tab .center_items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 40px));
    width: 100%;
    padding: 20px;
    max-width: 400px;
    max-height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}


#my_events .tab#code_tab .center_items input {
    margin-top: 30px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #cccccc;
    color: #a6a6a6;
    font-size: 20px;
    height: 60px;
    line-height: 60px;
}

#my_events .tab#code_tab .center_items .square_button {
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    height: 60px;
    line-height: 60px;
}

#my_events .tab#code_tab .center_items img {
    width: 60%;
    margin: auto;
    display: block;
}

#my_events .tab#event_list_tab {
    background-color: #fff;
}

.keyboard #my_events .tab {
    bottom: 0;
}

#my_events .tab#code_tab {
    bottom: 0;
}

#my_events .tab_menu {
    position: absolute;
    bottom: 0;
    height: 80px;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    display: flex;
    background-color: #fff;
}

.keyboard #my_events .tab_menu {
    opacity: 0;
    pointer-events: none;
}

#my_events.no_tabs .tab_menu {
    display: none;
}

#my_events .tab_menu .tab_menu_item {
    flex: 1;
    flex-basis: 50%;
    color: grey;
    text-transform: uppercase;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 5px;
    font-size: 12px;
    position: relative;
    background-position: center 10px;
    background-size: 36px;
    background-repeat: no-repeat;
    background-color: #f2f2f2;
    border-top: 3px solid transparent;
}

#my_events .tab_menu .tab_menu_item.active {
    border-top: 3px solid var(--color_bg_division_1);
}

#my_events .tab_menu .tab_menu_item.code {
    background-image: url(../../img/appdoevento/icon-adicionar.png);
}

#my_events .tab_menu .tab_menu_item.list {
    background-image: url(../../img/appdoevento/icon-lista.png);
}

#my_events .tab_menu .tab_menu_item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0px;
    bottom: 0px;
    background-color: #e2e2e2;
    width: 1px;
}

#my_events .tab_menu .tab_menu_item:last-child::before {
    display: none;
}

#event_list_tab {
    overflow-y: auto;
}

#event_list_tab .event_list {
    padding: 20px;
}

.eventListDiv #event_list_tab .event_list {
    padding: 15px;
    padding-top: 25px;
}
#event_list_tab .event_list_item {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, .3);
    margin-bottom: 10px;
    align-items: stretch;
}

#event_list_tab .event_list_item.signup {
    padding-bottom: 30px;
}

#event_list_tab .event_list_item .event_icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 86px;
    width: 86px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    border-radius: 15px;
    position: relative;
}

#event_list_tab .event_list_item .event_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#event_list_tab .event_list_item .event_icon .cancel_bt {
    position: absolute;
    width: calc(100% - 10px);
    font-size: 9px;
    background-color: #777;
    color: white;
    margin: 5px auto 0 auto;
    border-radius: 5px;
    padding: 2px 5px;
    padding-bottom: 3px;
    text-align: center;
    box-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
    top: 100%;
}

#event_list_tab .event_list_item .event_description {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 2px 0 2px 10px;
}

#event_list_tab .event_list_item .event_name {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #404040;
}

#event_list_tab .event_list_item .event_data {
    font-size: 12px;
    line-height: 16px;
    color: #404040;
    transform: translateY(4px);
}

#event_list_tab .event_list_item .event_date {
    color: grey;
}

#event_list_tab .event_list_item .event_location {
    color: silver;
}

#event_list_tab .event_list_item .clear_cache {
    text-transform: uppercase;
    position: absolute;
    padding: 5px;
    bottom: 6px;
    right: 6px;
    border-radius: 3px;
    color: white;
    font-size: 8px;
}

#event_list_tab .event_list_item .enter_text {
    text-transform: uppercase;
    text-align: right;
    color: var(--color_bg_division_1);
    font-size: 12px;
    position: absolute;
    bottom: 6px;
    right: 10px;
}

.event_list_empty {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    color: silver;
    font-size: 16px;
    padding: 50px;
}

.event_list_empty:first-child {
    display: block;
}

/* #exhibitors_index .section_title:nth-last-child(2) {
    display: none;
} */

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

@media screen and (max-width: 350px) {
    #event_list_tab .event_list {
        padding: 15px;
    }
    #event_list_tab .event_list_item .event_icon {
        height: 76px;
        width: 76px;
    }
    #event_list_tab .event_list_item .event_name {
        font-size: 12px;
        line-height: 14px;
    }
    #event_list_tab .event_list_item .event_data {
        font-size: 10px;
        line-height: 14px;
    }
    #event_list_tab .event_list_item .enter_text {
        font-size: 10px;
    }
}

.notifications_header_new {
    display: none;
    font-family: Text-Regular;
    position: absolute;
    top: 22px;
    right: 6px;
    background-color: rgba(255, 0, 0, .7);
    color: white;
    font-size: 8px;
    min-width: 14px;
    line-height: 14px;
    border-radius: 7px;
    border: 0px solid white;
    text-align: center;
}

#tabs .tab .notifications_header_new {
    bottom: 0;
    right: 0;
    top: unset;
}

.notifications_header_new.new {
    -webkit-animation-name: blinker;
    -webkit-animation-iteration-count: 5;
    -webkit-animation-direction: alternate-reverse;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration: .5s;
}

.notifications_header_new.new.reverse {
    -webkit-animation-name: blinker;
    -webkit-animation-iteration-count: 5;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration: .5s;
}


@-webkit-keyframes blinker {
    from {
        opacity: 0.0;
    }

    to {
        opacity: 1.0;
    }
}


.settings_cards_container {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}

.settings_card_container {
    flex: 0 0 50%;
    padding: 5px;
    box-sizing: border-box;
    height: 150px;
}

.settings_card {
    box-sizing: border-box;
    border-bottom: 1px solid silver;
    border-right: 1px solid silver;
    border-top: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 4px;
}

.photofeed .hashtags_container {
    display: flex;
    flex-flow: row wrap;
    margin: 15px;
    margin-bottom: 0;
}

.photofeed .hashtags_container .hashtag {
    position: relative;
    margin-right: 10px;
    height: 18px;
    padding: 0 5px;
    line-height: 18px;
    font-size: 10px;
    border: 1px solid grey;
    border-radius: 4px;
    color: #404040;
    cursor: pointer;
}

.photofeed .hashtags_container .hashtag.selected {
    background-color: grey;
    color: #fff !important;
}

/*.photofeed .hashtags_container .hashtag::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 2px;
    height: 14px;
    width: 14px;
    border: 1px solid grey;
    border-left: none;
    border-bottom: none;
    transform: rotateZ(45deg);
}
*/

#hashtag_selector {
    position: absolute;
    bottom: 86px;
    left: 7px;
    border-radius: 4px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, .3);
    font-size: 12px;
    line-height: 22px;
    padding: 5px 10px;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
    color: #404040;
    background-color: #fff;
}

#hashtag_selector.show {
    z-index: 5;
    pointer-events: all;
    opacity: 1;
}

.header_overflow {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 80%;
}

.action_modal_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    transition: opacity .1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: opacity;
}

.action_modal_overlay.hide {
    opacity: 0;
}

.action_modal_overlay::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    transition: opacity .2s;
    z-index: 1;
}

.action_modal_overlay.show::before {
    opacity: .4;
}

#action_modal .action_modal {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 5;
    overflow: hidden;
    background-color: #fff;
    opacity: 0;
    transform: translateY(100%);
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 5px solid;
    transition: opacity .2s linear, transform .2s ease-out;
    height: auto;
    max-height: 70%;
    color: #404040;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
}

.wideapp #action_modal .action_modal,
#action_modal.popup .action_modal {
    top: 50%;
    left: 50%;
    min-width: 400px;
    max-width: 90%;
    transform: translate(-50%, -50%) scale(.8);
    box-shadow: 0 0 5px rgba(0, 0, 0, .8);
    transition: opacity .2s linear, transform .1s linear;
    border-radius: 2px;
    border: none;
    height: fit-content;
    bottom: unset;
}

#action_modal.show .action_modal {
    opacity: 1;
    transform: translateY(0);
}

.wideapp #action_modal.show .action_modal,
#action_modal.popup.show .action_modal {
    transform: translate(-50%, -50%) scale(1);
}


.action_modal .action_modal_title {
    padding: 15px;
    font-size: 16px;
    line-height: 20px;
    color: #404040;
    font-family: Text-Bold;
}

.action_modal .action_modal_subtitle {
    padding: 15px;
    font-size: 16px;
    line-height: 20px;
    color: #404040;
    overflow-y: auto
     /* font-family: Text-Bold; */
}

.action_modal .action_modal_content {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.action_modal .action_modal_title+.action_modal_subtitle {
    padding-top: 0;
}

.action_modal .action_modal_input {
    display: block;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 18px;
    border-bottom: 1px solid silver;
}

.action_modal .action_modal_options {
    overflow-y: auto;
}

.action_modal .action_modal_option {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 15px;
    position: relative;
    border-bottom: 1px solid #e2e2e2;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.action_modal .action_modal_option i {
    color: silver;
    margin-right: 10px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.action_modal .action_modal_option img {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(100%) invert(.25)
}

.action_modal .action_modal_option:first-child {
    border-top: 1px solid #e2e2e2;
}

.action_modal .action_modal_option.select_one.selected {
    font-family: Text-Bold;
}

.action_modal .action_modal_option.select_many::after {
    color: silver;
    font-size: 20px;
    font-family: Icon-Font;
    content: '^';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.action_modal .action_modal_option.select_many.selected::after {
    content: '_';
    right: 10px;
}

/* .action_modal .action_modal_option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    right: 0px;
    border-top: 1px solid transparent;
    border-color: inherit;
} */

.action_modal .action_modal_buttons {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
}

.action_modal .action_modal_options+.action_modal_buttons,
.action_modal .action_modal_subtitle+.action_modal_buttons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), white);
}


.action_modal .action_modal_buttons:empty {
    display: none;
}

.action_modal .action_modal_button {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    border-radius: 4px;
    /* border-top: 1px solid #e2e2e2; */
    cursor: pointer;
}

.action_modal .action_modal_button.disabled {
    opacity: .5;
    pointer-events: none;
}

.action_modal .close {
    position: absolute;
    top: 0px;
    right: 0px;

    padding: 17px;
    padding-right: 10px;
    font-size: 20px;
}

.photofeed_link {
    display: inline-block;
    color: white !important;
    padding: 4px 6px 3px 5px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 12px;
}

.last_comment .photofeed_link {
    font-size: 10px;
}

.photofeed_link::after {
    padding-left: 7px;
    vertical-align: middle;
    display: inline-block;
    font-family: Icon-Font;
    content: "r";
    margin-top: -4px;
}

.post_nav {
    padding: 5px 40px 5px 10px;
    position: relative;
    color: white !important;
    min-height: 35px;
}

.post_user_text+.post_nav {
    margin-top: 10px;
}

textarea:disabled {
    background-color: inherit;
}

.photos_only {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 10;
}

.photos_only .close {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 30px;
    background-image: url(../../img/close_button_a.png);
    background-position: center;
    background-size: 15px;
    background-repeat: no-repeat;
}

.photos_only .close.show {
    display: block;
}

.feed_hashtag {
    font-family: Text-Bold;
    cursor: pointer;
}

.comment_card .original_poster {
    color: grey;
    font-size: 10px;
}


.photofeed_empty {
    position: absolute;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    padding: 40px;
    color: silver;
    font-size: 16px;
}

.photofeed_subtitle {
    text-transform: none;
    font-size: 15px;
    line-height: 20px;
    color: #404040;
    padding: 15px;
    padding-bottom: 0;
}

.photofeed_subtitle+.hashtags_container {
    margin-top: 5px;
}

.post_container~.photofeed_empty {
    display: none;
}

.news_new {
    border-radius: 3px;
    z-index: 5;
    background-color: red;
    opacity: .7;
    font-size: 8px;
    border-radius: 40px;
    display: flex;
    height: 12px;
    padding: 0px 5px;
    align-items: center;
    padding-bottom: 1px;
    justify-content: center;
}

.news_new.number {
    border-radius: 40px;
    padding: 0;
    width: 13px;
    height: 13px;
}

.last_news {
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

.last_news_timestamp {
    display: flex;
    align-items: center;
    font-size: 10px;
    margin-bottom: 3px;
}

.dashboard_list_shortcut:last-child {
    border-bottom: none;
}

#session_registration_div {
    margin: 20px;
    font-size: 12px;
}

.detail_description {
    /*padding: 10px 20px;*/
    margin: 10px 20px;
    font-size: 12px;
}

.short_description {
    font-size: 12px;
}

#lightbox {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    background-color: transparent;
    z-index: 99;
    opacity: 0;
    transform-style: preserve-3d;
}

#lightbox .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    opacity: .8;
    background-color: #000;
    z-index: -1;
}

#lightbox .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, .8);
    border-radius: 6px;
    background-image: url(../../img/exit_fullscreen.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
    z-index: 500;
    transform: translateZ(0)
}

#lightbox.show {
    opacity: 1;
}

#floorplan_map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: visible;
    background: transparent;
    /*transition: bottom .2s;*/
}

#qrcode_page {
    background-color: #fff !important;
}

#floorplan_map .leaflet-div-icon {
    border: none;
    background: none;
}

#floorplan_map .pin {
    position: relative;
    font-size: 60px;
    line-height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(0, -120%) scale(.5);
    transition: transform .2s, color .2s;
}

#floorplan_map .pin.selected {
    align-items: center;
    transform: translate(0, -260%) scale(1);
}

#floorplan_map .pin::before {
    opacity: .7;
}


#floorplan_map .pin::after {
    position: absolute;
    content: "7";
    color: transparent;
}

#map_info {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    z-index: 1000;
}

body.loading #eventDiv *,
body.loading #eventDiv *::after,
body.loading #eventDiv *::before {
    transition: none !important;
    -webkit-transition: none !important;
}

.custom_input {
    border:none;
    padding: 0 20px;
    margin:auto;
    width:100%;
    height:50px;
    background-color:white;
    box-sizing:border-box;
}

textarea.custom_input {
    height: 100px;
    padding: 15px 20px;
}

.custom_select {
    padding: 0 20px;
    color: #404040;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;

}

.custom_select::before {
    content: '{';
    font-family: Icon-Font;
    position: absolute;
    right: 15px;
    top: calc(50% + 2px);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: silver;
    font-size: 10px;
    z-index: 10;
    pointer-events: none;
}

.capture_photo,
.capture_video,
.select_photo,
.select_video {
    padding-left: 40px;
    height: 30px;
    line-height: 30px;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .5;
}

.select_photo,
.select_video {
    background-image: url(../../img/gallery_black.png);
}

.capture_photo {
    background-image: url(../../img/camera_black.png);
}

.capture_video {
    background-image: url(../../img/video_black.png);
}

#empty_list_participants {
    display: none;
}

#profiles_list:empty+#empty_list_participants {
    display: block;
}

#searchDiv.searching #search_placeholder,
#searchDiv #search_empty,
#searchDiv.has_text #search_placeholder,
#searchDiv #search_searching {
    display: none;
}

#searchDiv.searching #search_results:empty~#search_searching,
#searchDiv.has_text:not(.searching) #search_results:empty~#search_empty {
    display: block;
}

#quests {
}

#quests .quests_container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

#quests .list_page {
    transition: bottom .2s;
}

#quests .quest_list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    padding-top: 0;
    padding-bottom: 50px;
    box-sizing: border-box;
    align-items: baseline;
}

#quests .quests_image {
    display: block;
    width: 100%;
    /* animation-name: quests; */
    animation-duration: 800ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate-reverse;
    transform-origin: 90px 0px;
}

@keyframes quests {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(4);
    }
}

#quests .quests_description {
    margin: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}

#quests .quest_list .quest {
    flex-basis: calc(33% - 9px);
    margin: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#quests .quest_list .quest .quest_image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
    padding-bottom: 95%;
    width: 100%;
    filter: grayscale(100%);
}

#quests .quest_list .quest.completed .quest_image {
    filter: none;
    opacity: 1;
}

#quests .quest_list .quest.selected {
    /* filter: none; */
    opacity: .7;
}

#quests .quest_list .quest .quest_title {
    font-size: 9px;
    text-align: center;
    margin-top: 0px;
    padding: 2px 8px;
    border-radius: 10px;
}

#quests .quest_detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px;
    padding-bottom: 58px;
    transform: translateY(calc(100% + 50px));
    transition: transform .2s;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
}

#quests .quest_detail::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2f2f2;
    bottom: 100%;
    width: 84px;
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
    height: 44px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    z-index: -2;
}

#quests .quest_detail::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2f2f2;
    bottom: calc(100% - 6px);
    width: 88px;
    height: 6px;
    z-index: -1;
}

#quests .quest_detail.show {
    transform: translateY(0);
}

#quests .quest_detail .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    margin-top: 5px;
    font-family: Text-Bold;
}


#quests .quest_detail .text {
    font-size: 12px;
    max-height: 12vh;
    padding-bottom: 20px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

#quests .quest_detail .bottom_buttons::before {
    content: '';
    position: absolute;
    bottom: 58px;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(rgba(255, 255, 255, 0), #f2f2f2);
}

#quests .quest_detail .image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    top: -30px;

}

#quests .divider {
    position: relative;
    width: calc(50% - 50px);
    height: 1px;
    margin: 20px;
    overflow: visible;
}

#quests .divider::before {
    content: 'RRR';
    font-family: Icon-Font;
    position: absolute;
    left: calc(100% + 4px);
    height: 14px;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 5px;
    transform: translateY(-50%);
}

#quests .divider::after {
    content: '';
    position: absolute;
    left: calc(100% + 60px);
    width: calc(100%);
    height: 1px;
    background-color: inherit;
}

#toast-container .quest_toastr {
    background-color: #f2f2f2 !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    background-image: none !important;
    padding: 8px !important;
}

.dial {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 50vw;
    transform: translateY(-50%);
    border-bottom: 2px solid silver;
}

.pointer {
    position: absolute;
    left: calc(50% - 10px);
    bottom: -10px;
    transform: rotate(-90deg);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: visible;
    background-color: black;
    z-index: 1;
    transition: transform .3s;
}

.pointer::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: calc(50vw - 40px) solid black;
    bottom: 10px;
    animation-duration: 100ms;
    animation-iteration-count: infinite;
    transform-origin: center bottom;
    animation-direction: alternate-reverse;
    animation-timing-function: linear;
}

.pointer.active::before {
    animation-name: pointer;
}

@keyframes pointer {
    0% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(4deg);
    }
}

.percent_feedback {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.percent_bar {
    position: relative;
    width: 20%;
    height: 50vh;
    margin: 10px auto;
    border: 2px solid #404040;
    cursor: pointer;
}

.percent_bar::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5) inset;
    pointer-events: none;
    z-index: 2;
}

.percent_bar .slider {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.agree,
.disagree {
    margin: 20px;
    text-align: center;
    font-size: 18px;
}


.point_feedback {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    padding-bottom: 100%;
    transform: translateY(-50%);
    user-select: none;
}

.point_feedback .axis_text {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 7px;
    pointer-events: none;
    font-size: 14px;
    line-height: 16px;
}

.point_feedback .axis_text.bottom {
    top: calc(100% - 40px)
}

.point_feedback .axis_text.left {
    transform: rotateZ(-90deg);
}

.point_feedback .axis_text.right {
    transform: rotateZ(90deg);
}

.point_feedback .graph {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 40px;
    bottom: 40px;
    cursor: pointer;
}

.point_feedback .graph::before,
.point_feedback .graph::after {
    content: '';
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #404040;
    z-index: 5;
}

.point_feedback .graph::after {
    left: 0;
    right: 0;
    top: calc(50% - 1px);
    bottom: unset;
    height: 2px;
    width: unset;
}

.point_feedback .graph .graph_point {
    position: absolute;
    left: 75%;
    top: 25%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    height: 20px;
    width: 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    z-index: 10;
    animation-name: scale_point;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes scale_point {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.point_feedback .graph .graph_lines {
    position: absolute;
    border: 1px dashed grey;
    z-index: 2;
    left: 50%;
    bottom: calc(50% - 1px);
    height: 25%;
    width: 25%;
}

.session_signup_rules {}

.session_signup_rules .rule {
    position: relative;
    font-size: 12px;
    line-height: 30px;
    padding-left: 30px;
}

.session_signup_rules .rule::before {
    content: '×';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    font-size: 28px;
    text-align: center;
    line-height: 32px;
    color: red;
}

.session_signup_rules .rule.true::before {
    content: '5';
    font-family: Icon-Font;
    color: green;
    font-size: 14px;
}

.session_groups_card {
    position: relative;
    margin: 15px;
    padding: 10px;
    padding-bottom: 50px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
}


.session_groups_card .session_groups_card_group,
.session_groups_card .session_groups_card_session {
    display: flex;
    align-items: center
}

.session_signups_remove {
    position: absolute;
    left: 20px;
    top: 67px;
    width: 27px;
    height: 27px;
    line-height: 29px;
    background-color: red;
    border-radius: 50%;
    opacity: .6;
    background-image: url(img/browser_close.png);
    background-size: 19px;
    background-repeat: no-repeat;
    background-position: center;
}

#session_signups_list:empty+.info_div {
    display: flex !important;
}

#qr_reader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.9);
    z-index: 1000;
}

#qr_reader canvas {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%)
}

.warning_container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    font-size: 12px;
    transform: translateY(-100%);
    background-color: #f2f2f2;
    box-shadow: 0 0 3px black;
}

.warning {
    position: relative;
    padding: 15px 20px;
    padding-right: 36px;
}

.warning + .warning {
    border-top: 1px solid #d2d2d2;
}

.warning .close {
    position: absolute;
    top: 23px;
    right: 9px;
    transform: translateY(-50%);
    font-size: 23px;
    line-height: 15px;
    padding: 5px;
    opacity: 1;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.warning .close i {
    font-size: 18px;
}

.photofeed_stories {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    overflow-x: auto;
    padding: 0 10px;
    box-shadow: 0 0 3px rgba(0,0,0,1);
    background-color: #f2f2f2;
    height: 80px;
    display: flex;
    align-items: center;
}
.photofeed_stories + .list_page {
    top: 80px;
}

.photofeed_stories .stories_list {
    display: flex;
    min-width: 0;
}

.photofeed_stories .story_avatar {
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    flex: 0 0 50px;
    min-width: 0;
}


.story_avatar.my_story .add {
    position: absolute;
    top: -2px;
    right: -3px;
    height: 14px;
    width: 14px;
    background-image: url(../../img/plus_white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    border: 1px solid white;
}

.story_avatar .new {
    position: absolute;
    top: -2px;
    right: -9px;
    font-size: 8px;
    height: 13px;
    line-height: 13px;
    color: white;
    background-color: grey;
    border-radius: 8px;
    padding: 0 3px 0px 3px;
    z-index: 10;
    border: 1px solid white;
}

.story_avatar .photo {
    position: relative;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0,0,0,.5);
    background-color: #cccccc;
    object-fit: cover;
    height: 50px;
}

.story_avatar .name {
    font-size: 9px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

.story_container {

    background-color: #000;
}

.swiper-wrapper.stories {
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
}

.story_container .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.story_container .story_content {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #000
}

.story_container .timeline {
    display: flex;
    top: 0;
    bottom: unset;
    position: absolute;
    /* background-color: rgba(0,0,0,.5); */
    z-index: 10;
    transform: translate3d(0,0,0);

}

.story_container .timeline.hidden {
    opacity: 0;
    pointer-events: none;
}

.story_container .timeline .bullet {
    flex: 1;
    margin: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    height: 3px;
    z-index: 10;
    position: relative;
    opacity: 1; 
    overflow: hidden;
}

.story_container .timeline .bullet + .bullet {
    margin-left: 0;

}

.story_container .timeline .bullet.swiper-pagination-bullet-active  {
    background-color: rgba(255, 255, 255, .2);
}
/* .story_container .timeline.auto .bullet.swiper-pagination-bullet-active  {
    background-color: rgba(255, 255, 255, 0.2);
} */
.story_container .timeline .bullet .progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    background-color: #f2f2f2;
    opacity: 0;
    transition: opacity .2s linear, transform 0s linear .2s;
}

.story_container .timeline .bullet.active .progress {
    transform: scaleX(1);
    opacity: 1;
}

.story_container .post_detail {
    position: absolute;
    top: 20px;
    left: 10px;
    border-radius: 7px;
    /* background-color: rgba(0,0,0,.5); */
    color: white;
    font-size: 12px;
    padding: 10px 15px;
    max-width: 40%;
}

.story_container .post_detail .post_data {
    position: relative;
    padding-left: 35px;
    font-size: 10px;
    transform: translateZ(0);
}
.post_data .avatar {
    position: absolute;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 50%;
    left: 0px;
    background-color: #cccccc;
}

.post_data .name {
    margin-left: 5px;
}

.post_data .date {
    margin-left: 5px;
}

.story_container .post_text {
    position: absolute;
    color: white;
    font-size: 10px;
    width: auto;
    white-space: nowrap;
    padding: 8px 10px;
    right: 8px;
    bottom: 60px;
    background-color: rgba(0,0,0,.5);
    border-radius: 4px;
    outline: none;
    transform: translate3d(0,0,0);
    border: none;
    overflow: hidden;
    border: 1px solid transparent;
}

.story_container ::placeholder {
    color: #fff;
    opacity: 1;
}

.story_container .post_text:focus {
    border: 1px solid white;    
}

.stories_modal .close {
    position: absolute;
    top: 20px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    /* background-color: rgba(0,0,0,.5); */
    color: white;
    background-image: url(../../img/close_button.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    z-index: 30;
}

.story_container .gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 77px;
    background: -webkit-linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,0));
}

.story_container .bottom_buttons {
    transform: translate3d(0,0,0);
}
.story_container .bottom_button {
    background-color: rgba(0,0,0,.5);
}

.story_container .bottom_button_input .placeholder {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    color: #f2f2f2;
    z-index: 1;
    padding: 11px;
    font-size: 12px;
}

.story_container .bottom_buttons .bottom_button_input .placeholder.hidden {
    opacity: 0;
}

.story_container .like {
    background-image: url(../../img/heart_off.png);
}
.story_container .like.on {
    background-image: url(../../img/heart_on.png);
}

.story_swiper {
    transform: translate3d(0,0,0)
}

#tabs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    box-shadow: 0 0 3px rgba(0,0,0,.5);
    display: flex;
    background-color: white;
    z-index: 2;
}

#tabs .tab.tab_spacer {
    flex: .5;
    padding: 0;
}

#tabs .tab_header + .tab.tab_spacer {
    flex: 1 !important;
}

#tabs .tab {
    flex: 1;
    position: relative;
    cursor: pointer;
}

#tabs .tab.hide {
    display: none;
}

#tabs .tab:active,
#tabs .tab.active {
    background-color: #f2f2f2;
}
#tabs .tab.tab_spacer:active,
#tabs .tab.tab_spacer.active {
    background-color: transparent;
}


#tabs .tab .icon {
    margin: 5px;
    margin-bottom: 0;
    height: 60%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}

#tabs .tab .name {
    font-size: 9px;
    line-height: 12px;
    text-align: center;
    margin: 4px 5px;
}

#tabs .tab + .tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0px;
    background-color: #e2e2e2;
    width: 1px;
}

.stories_modal, .stories_swiper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.floating_button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 5px rgba(0,0,0,.8);
    border-radius: 50%;
    z-index: 10;
}

.story_content.my_story .post_text {
}

.story_content.my_story .likes {
    background-image: url(../../img/heart_on.png);
}

.story_content.my_story .comments {
    background-image: url(../../img/comment_white.png);
}


.pull_to_refresh {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
}


.pull_to_refresh .refresh_icon {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    will-change: transform;
    animation-duration: 600ms;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.pull_to_refresh .refresh_icon.animate {
    animation-name: rotate_refresh;
}

@keyframes rotate_refresh {
    0% {
        transform: translateX(-50%) rotateZ(0);
    }
    100% {
        transform: translateX(-50%) rotateZ(360deg);
    }
}

.pull_to_refresh .refresh_icon::before {
    content: 'Z';
    font-family: Icon-Font;
    font-size: 30px;
    color: inherit;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.pull_to_refresh .refresh_icon.animate {
    animation-name: rotate_refresh;
}

.pull_to_refresh .message_refresh {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 4px;
    bottom: 0;
    color: grey;
}

.intervention_card{
    margin: 10px;
    padding: 10px;
    border-right: 1px solid silver;
    border-bottom: 1px solid silver;
    border-top: .5px solid #f2f2f2;
    border-left: .5px solid #f2f2f2;
    font-size:10px;
}
.intervention_image{
    flex-shrink: 0;
	flex-basis: 40px;
	height:40px;
    margin-right: 10px;
}
.intervention_image img{ 
    width: 100%; 
}

.intervention_title{ 	
    margin-bottom:5px;
    font-size:12px;
    line-height: 16px;
}

.intervention_button{
    display: inline-block;
    padding: 4px 6px 3px 5px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 12px;
}

.intervention_button::after {
    padding-left: 7px;
    vertical-align: middle;
    display: inline-block;
    font-family: Icon-Font;
    content: "r";
    margin-top: -4px;
}

.intervention_speakers {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
}

.intervention_speaker {
    display: inline-flex;
    align-items: center;
    padding: 3px 5px;
    background-color: #f2f2f2;
    /* border: 1px solid gray; */
    border-radius: 5px;
    margin-right: 3px;
    line-height: 18px;
    white-space: nowrap;
    margin-bottom: 3px;
}

.intervention_speaker img {
    flex-shrink: 0;
    flex-basis: 30px;
    height: 30px;
    margin-right: 5px;
    border-radius:50%;
}

.intervention_speaker_name {
    background-color: #e2e2e2;
    padding: 1px 5px;
    border-radius: 2px;
    margin-right: 3px;
    line-height: 18px;
    white-space: nowrap;
    margin-bottom: 3px;
}

.intervention_speaker::before {
    padding-right: 2px;
    vertical-align: middle;
    display: inline-block;
    font-family: Icon-Font;
    /* content: "u"; */
    margin-top: -3px;
    font-size: 11px;
    opacity:0.6;
}

.custom.description{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.custom.description .content_block{
    grid-column:1/3
}

.component_load{ max-width: 40px; margin: 5px; }
.rating{
    width: 100%;
    height: 100%;
    display:flex;
}
.rating.full_width{
    height: 13vw;
    max-height: 60px;
    margin: 10px 0px;
    max-width: 500px;
    justify-content: space-evenly;
}
.rating .stars{
    background-image: url('../../img/faces_sprite.png');
    height: 100%;
    flex: 0 0 auto;
    background-size: 500%;
    background-repeat: no-repeat;
    cursor: pointer;
}
.star_1{ background-position-x: 0; }
.star_2{ background-position-x: 25%; }
.star_3{ background-position-x: 50%; }
.star_4{ background-position-x: 75%; }
.star_5{ background-position-x: 100%; }
.checkbox_component.center{ justify-content: center; }


#next_sessions{
    margin: 20px 0px 20px 0px;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
}
#next_sessions:empty{
    opacity: 0;
}

.allows_visible_fields{
    display: flex;
    margin: 0px 20px 20px 20px;
    width: 210px;
}
.allows_visible_fields .label{
    align-self: center;
    font-size: 12px;
    line-height: 12px;
    margin-left: -7px;
    width: 160px;
}
.cg-icon-checkbox-no:before { content: "^"; }
.cg-icon-checkbox-yes:before { content: "_"; }

.search_terms{
    display: flex;
    flex-flow: row wrap;
    margin: -5px 15px 0px 15px;
    padding-bottom: 5px;
    margin-bottom: 0;
}
.search_term{
    position: relative;
    margin: 5px 10px 0px 0px;
    height: 18px;
    padding: 0 5px;
    line-height: 18px;
    font-size: 10px;
    border: 1px solid grey;
    border-radius: 4px;
}
.search_label{
    position: relative;
    margin: 5px 5px 0px 0px;
    padding-top: 2px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
}

.checkboxes_modal{ position:absolute;top:0;bottom:0;left:0;right:0; }
.checkboxes_modal .preamble {
    font-size: 12px;
    margin-bottom: 20px;
}

div#ongoing_session { font-size: 9px; }


.ongoing_session_option_button span:first-child,
.ongoing_session_option_button.ongoing span:nth-child(2) {
    display: none;
}

.ongoing_session_option_button.ongoing span:first-child {
    display: block;
}

.ongoing_session_option_button span:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: green;
    margin: 0 8px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.ongoing_session_option_button span:nth-child(2):before {
    background-color: red;
}


.prevent_interaction {
    pointer-events: none;
}

.feedback_questions .answer_icon {
    margin-right: 5px;
    font-size: 18px;
    vertical-align: bottom;
}

.feedback_questions .answer_icon.fa-check {
    color: #78c781
}

.feedback_questions .answer_icon.fa-times {
    color: #ff6f66
}
.feedback_questions .feedback_question .tag {
    display: none;
}

.feedback_questions .feedback_question.answered .list_description {
    opacity: .6;
}

.feedback_questions .feedback_question.answered {
    padding-bottom: 20px;
}
.feedback_questions .feedback_question .tag {
    display: none;
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    background-color: #aaa;
    color: #fff;
}

#feedback_container .tag.score_tag {
    display: none;
    justify-content: space-between;
    width: 70px;
    align-self: center;
    font-size: 12px;
}

.feedback_questions .feedback_question.answered .tag.answer_tag {
    display: block;
}

.feedback_questions.has_score .feedback_question.answered .tag.answer_tag {
    display: none;
}

.feedback_questions.has_score .feedback_question.answered .tag.score_tag {
    display: flex;
}

#feedback_container .sub_header_title {
    font-size: 14px;
    margin-left: 10px;
}

#feedback_container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    padding-bottom: 70px;
}

.feedback_modal {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.feedback_modal::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1px;
    width: 1px;
    background-color: silver;
}

.feedback_modal.placeholder {
    transform: translateX(0);
}

.feedback_modal.placeholder + .feedback_modal {
    transform: translateX(100%);
}

.feedback_modal.placeholder.animate {
    transition: transform .3s ease-out;
    transform: translateX(-100%);
    pointer-events: none;
}

.feedback_modal.placeholder.animate + .feedback_modal {
    transition: transform .3s ease-out;
    transform: translateX(0);
    pointer-events: none;
}

.overflow_ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.content_block .link_element .small_pic {
    background-image: none;
    margin-right: 10px;
}

.tag {
    display: inline-block;
    padding: 4px 9px 5px 9px;
    color: white;
    box-shadow: 4px 3px 5px rgba(0,0,0,.3);
    background-color: grey;
    border-radius: 4px;
}
#recommendations .list_page #recommendation_agenda_list,
#recommendations .list_page #recommendation_day_list,
#recommendations .list_page #recommendation_relevance_list {
    display: none;
}

#recommendations .list_page[type=relevance] #recommendation_relevance_list {
    display: block;
    padding-top: 20px;
}

#recommendations .list_page[type=date] #recommendation_day_list {
    display: block;
}

#recommendations .list_page[type=agenda] #recommendation_agenda_list {
    display: block;
}

#recommendations #recommendation_day_list .day {
    display: none;
}

.recommended_day {
    margin-bottom: 20px;
}

.recommended_day_title {
    margin: 20px;
    margin-bottom: 5px;
    font-family: Text-Bold;
}

.recommendation_list_item .reasons {
    font-style: italic;
    font-size: 10px;
}

.recommendation_list_item .reason:not(:first-child) {
    margin-top: 2px;
}

.recommendation_list_item  .reason_tag {
    padding: 0px 4px;
    background-color: #e2e2e2;
    border-radius: 4px;
    margin: 0 2px;
}


#recommendations #recommendation_day_list:empty + #recommendation_relevance_list:empty + .info_div {
    display: flex;
}

.list_page_header_solid + .list_page {
    top: 45px;
}

.list_page_header_solid.has_terms + .list_page {
    top: 78px;
}

.list_page_header:not(.hide) ~ .list_page {
    top: 45px;
}
.list_page_header_solid {
    height: 45px;
    box-shadow: 0 1px 3px 0px silver;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
}

.filters {
    display: flex;
    overflow-x: auto;
    align-items: center;
    font-size: 10px;
    padding: 0px 20px;
    height: 100%;
}

.filters .filter {
    color: silver;
    padding: 5px 10px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    margin-right: 7px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filters .filter i {
    margin-right: 5px;
}

.filters .filter.selected {
    background-color: #c2c2c2;
    color: white;
}


.inline_divider:before {
    content: ' ● ';
}

.inline_divider {
    font-size: .8em;
}  

.android .inline_divider {
    display: inline-block;
    font-size: .6em;
    transform: translateY(-.2em);
    margin: 0 .4em;
}

.bottom_buttons.icons {
    justify-content: flex-end;
    pointer-events: none;
}

.bottom_buttons.icons .bottom_button {
    flex: 0 0 44px;
    border-radius: 100px;
    justify-self: flex-end;
    font-size: 20px;
    margin: 15px;
    pointer-events: all;
}

.bottom_buttons.icons .bottom_button + .bottom_button {
    margin-left: 0;
}
.paintings {
    padding: 20px;
    background-color: #f2f2f2;
}

.painting {
    flex: 1;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px rgba(0,0,0,.3);
    text-align: center;
    position: relative;
    background-color: white;
    overflow: hidden;
}

.painting .content {
    padding: 10px;
    padding-top: 15px;
    position: relative;
}

.painting .name {
    margin-bottom: 10px;
    padding: 0 20px;
}

.painting .zoom {
    position: absolute;
    color: white;
    bottom: 5px;
    right: 5px;
    height: 18px;
    width: 18px;
    font-size: 12px;
    background-color: rgba(0,0,0,.6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.painting .author {
    padding: 10px;
    padding-bottom: 20px;
    font-style: italic;
}

.painting .text {
    display: none;
    text-align: left;
}

.painting .image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.painting .image .container,
.painting .image .container img {
    position: relative;
    height: 100%;
}

.painting .actions {
    display: flex;
    align-items: stretch;
    background-color: #ddd;
}
.painting .actions > div {
    padding: 5px;
}
.painting .actions .current_bid,
.painting .actions .minimum_bid {
    border-right: 2px solid silver;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} 
.painting .actions .minimum_bid {
    display: none;
    border-right: none;
}

.painting .actions .bid_name {
    font-size: 10px;
} 
.painting .actions .bid_time {
    font-size: 10px;
    color: grey;
} 
.painting .actions .place_bid {
    fleX: 1;    
    display: flex;
    align-items: center;
    justify-content: center;
} 



.action_modal .painting {
    margin-bottom: 5px;
    background-color: #f2f2f2;
}

.action_modal .painting .place_bid {
    display: none;
}
.action_modal .painting .minimum_bid {
    display: flex;
}

.action_modal .painting .zoom,
.modal_page .painting .zoom,
.action_modal .painting .description {
    display: none;
}

.action_modal .painting .container {
    pointer-events: none;
}

.action_modal.euro::before {
    content: '€';
    position: absolute;
    bottom: 68px;
    right: 0;
    padding: 14px;
    font-size: 20px;
    color: #666;
}
.action_modal.euro textarea {
    text-align: right;
    padding-right: 35px;
}

.painting.best .place_bid {
    color: green !important;
    padding: 8px;
    /* pointer-events: none; */
}

.painting .best_bid {
    display: none;
    color: green;
    position: absolute;
    right: 7px;
    top: 7px;
    font-size: 22px;
    opacity: .8;
}

.painting.best .best_bid {
    display: block;
}

.painting .more {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
}

.modal_page .painting .best,
.modal_page .painting .more,
.modal_page .painting .actions {
    display: none;
}

.modal_page .painting {
    box-shadow: none;
    padding: 10px;
}

.modal_page .painting .text {
    display: block;
}

.read_only {
    pointer-events: none;
}

#editprofile .read_only {
    display: none;
}

.custom_select .read_only {
    opacity: .5;
}


.session_index_grid_separator {
    padding: 3px;
    padding-left: 10px;
    font-size: 10px;
}


.page_tabs, .day_tabs {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    height: 50px;
    overflow-x: auto;
    /* box-shadow: 0 0 3px rgba(0,0,0,.5); */
}

.page_tab, .day_tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    background-color: #F2f2f2;
    min-width: 80px;
    cursor: pointer;
}

.page_tab.selected,
.day_tab.selected {
    background-color: white;
}

.session_list_bookmark {
    padding: 3px;
    font-size: 15px;
    background-color: #e2e2e2;
    border-radius: 5px;
}


.session_slide .bookmark {
    width: 22px;
    border-right: 1px solid #e2e2e2!important;
    background-color: #e2e2e2;
}

.session_slide .bookmark i {
    font-size: 17px;
}

.session_slide .bookmark i.fa.fa-star {
    display: block !important;
    color: white !important;
}

.session_slide.favorite .bookmark i.fa.fa-star {
    color: unset !important;
}

.session_slide.no_bookmark .bookmark {
    width: 3px;
    pointer-events: none;
}

.session_slide.no_bookmark .bookmark i.fa.fa-star {
    display: none !important;
}

.session_slide.no_bookmark {
    padding-left: 8px;
}

.session_list_item .list_pic {
    height: 40px;
    width: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.session_list_item .list_pic {
    margin: 0;
}

.session_list_item .list_description .session_time {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.session_list_item .list_description .session_time .live {
    color: #8dc48b;
    font-family: Text-Bold;
    margin-left: 5px;
    display: none;
}

.session_list_item.ongoing .list_description .session_time .live {
    display: block;
}

.session_list_item .list_description .session_title {
    font-size: 14px;
}

.session_list_item .list_description .session_location {
    font-size: 10px;
}

.session_list_item .list_description .session_speakers {
    font-size: 10px;
    font-style: italic;
}

.list_item.shadow .bookmark {
    width: 22px;
}

.list_item.shadow .bookmark i {
    font-size: 17px;
}

.session_list_item .list_description .session_title {
    font-family: Text-Regular;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 1px;
}

.grid .hour_wrapper {
    display: flex;
}

.grid .session_swiper_slide {
    flex: 1 0 auto;
    display: flex;
    height: unset;
}

.grid .session_swiper_slide.hide {
    display: none
}

.grid .session_swiper_slide:not(.shadow) + .session_swiper_slide .session_list_item {
    border-left: 1px solid;
}

.grid .session_list_item {
    flex: 1;
    padding-top: 7px;
    padding-bottom: 7px;
}

.grid .session_list_item.shadow {
    margin: 4px 9px !important;
}

.grid .session_swiper_slide:not(.hide) + .session_swiper_slide .session_list_item.shadow {
    margin-left: 0 !important;
}

#session_index .day_separator {
    padding: 10px 10px 5px 10px;
    border-bottom: 1px solid;
}


#session_index .day_subtitle {
    padding: 5px 10px;
    font-size: 12px;
}
.day_subtitle.color_border.no_border,
.day_separator.color_border.no_border {
    border: none !important;
    padding-bottom: 0 !important;
}

.hour_container {
    overflow: hidden;
    position: relative;
}

#session_index .hour_separator {
    padding: 3px;
    padding-left: 10px;
    font-size: 10px;
    margin-top: 7px;
    border-top: 1px solid;
}

#session_index .hour_container.hide {
    display: none;
}
#session_index .day_separator ~ .hour_container:not(.hide) ~ .hour_container:not(.hide) > .hour_separator {
    border-top: 1px solid;
    margin-top: 10px;
}

#session_index .list .day {
    position: relative;
}

#session_index .grid .day,
#session_index .day_list .day {
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}

#session_index .day .info_div {
    display: none;
}

#session_index .list .day.hide {
    display: none;
}

#session_index .day.hide .info_div {
    display: flex;
}

#session_index .day.active {
    opacity: 1;
    pointer-events: initial;
}

#session_index .day_tab.hide {
    opacity: .5;
    pointer-events: none;
}



.modal_page {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 99;
    color: black;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../../config/background.jpg');
    transform: translateY(100%);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
}

.modal_page.show {
    transition: transform 0.2s ease-out;
    transform: translateY(0);
}


/* .modal_page {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    opacity: 0;
    background-color: transparent;
    transition: opacity 0s linear .2s;
}

.modal_page .modal_content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 99;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transform: translateY(100%) rotateZ(0);
    -webkit-transform: translateY(100%) rotateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform, -webkit-transform;
}

.modal_page .modal_content.partial {
    top: unset;
}

.modal_page.show {
    transition: none;
    opacity: 1;
    pointer-events: all;
}

.modal_page.show .modal_content {
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    transform: translateY(0) rotateZ(0);
    -webkit-transform: translateY(0) rotateZ(0);
}

.modal_page .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    opacity: 0;
    transition: opacity .2s;
}

.modal_page.show .overlay {
    opacity: .5;
} */


.normal_page {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 3;
    background-color: #fff;
    transform: translateX(0) translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    background-size: cover;
    overflow: hidden;
}

.normal_page .page_content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 45px;
    z-index: 5;
    overflow: hidden;
}

.normal_page .page_header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 45px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    z-index: 10;
    box-shadow: 0px -2px 10px #000;
}

.normal_page .page_header .page_header_content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    position: relative;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.normal_page .page_header_buttons {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
}

.normal_page .page_header_buttons .page_header_button {
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.normal_page .page_header_buttons .page_header_button i {
    font-size: 20px;
}

.normal_page .page_header_buttons .page_header_button.back i {
    font-size: 22px;
}

.normal_page .page_header_buttons .page_header_button.menu i {
    font-size: 26px;
}

.normal_page:not(.dashboard) .page_header .page_header_button.menu,
.normal_page.dashboard .page_header .page_header_button.back,
body.no_menu .normal_page .page_header .page_header_button.menu {
    display: none;
}

.normal_page:nth-child(2) {
    z-index: 2;
}

.normal_page.past:nth-child(2) {
    transform: translateZ(0) translateX(-20%);
    z-index: 2;
}

.normal_page.future:nth-child(2) {
    transform: translateZ(0) translateX(100%);
    z-index: 3;
}

#eventDiv.from_past .normal_page:first-child {
    transform: translateZ(0) translateX(100%);
}

#eventDiv.from_past .normal_page.past {
    transform: translateZ(0) translateX(0);
}

#eventDiv.from_future .normal_page:first-child {
    transform: translateZ(0) translateX(-20%);
}

#eventDiv.from_future .normal_page.future {
    transform: translateZ(0) translateX(0);
}

#eventDiv.from_future .normal_page,
#eventDiv.from_past .normal_page {
    transition: transform 300ms cubic-bezier(0.39, 0.58, 0.57, 1);
}

#speakers_index.searching #speaker_slider,
#profiles_index.searching .slider_container {
    opacity: .5;
    pointer-events: none;
}

.filter_action_modal {
    height: 70%;
}

.filter_action_modal .action_modal_content {
    /*flex: 1;*/
    min-height: 0;
}

#filter_popup {
    min-height: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

#filter_popup .filter_header {
    padding: 10px;
    text-align: center;
}

#filter_popup .filter_body {
    display: flex;
    border-bottom: 1px solid;
    border-top: 1px solid;
    align-items: stretch;
    min-height: 0;
    flex: 1;
}

#filter_popup .filter_names {
    flex: .4;
    border-right: 1px solid;
    background-color: #f2f2f2;
}

#filter_popup .filter_name {
    padding: 15px 5px;
    cursor: pointer;
}

#filter_popup .filter_name.selected {
    border-left: 3px solid;
    background-color: white;
}

#filter_popup .filter_name .label {
    font-size: 12px;
    line-height: 14px;
}

#filter_popup .filter_name .subtitle {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

.filter_content {
    flex: .6;
}

.filter_options {
    display: none;
}

.filter_options.selected {
    display: block;
}

.filter_options .filter_option {
    padding: 15px 5px;
    padding-right: 10px;;
    font-size: 12px;
    line-height: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter_options .filter_option::before {
    content: '^';
    font-family: Icon-Font;
    margin: 0 10px;
    font-size: 16px;
    color: grey;
    font-weight: bold;
    width: 16px;
}

.filter_options .filter_option.selected::before {
    content: '_';
}

.filter_number {
    position: absolute;
    bottom: 1px;
    right: 0px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: grey;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter_number:empty {
    display: none;
}

.fa-flex {
    width: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.fa-off:after {
    content: '\f00d';
    position: absolute;
    transform: translate(50%,50%);
    color: red;
    font-size: 18px;
}

.poster_list_item .list_description .title {
    font-size: 12px !important;
    line-height: 16px;
}

.poster_type_list_item .list_description .title {
    font-size: 14px !important;
    line-height: 18px;
}

.poster_type_list_item.group {
    border: none;
}

.poster_type_container.hide {
    display: none;
}

.streamchat_container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.streamchat_container .pointer_events{
    position: absolute; top: 0; right: 0; left: 0; bottom: 0;
    pointer-events: all;
}
.streamchat_container .pointer_events.none{ pointer-events: none; }
.streamchat_container .overlay{
    position: absolute; top: 0; right: 0; left: 0; bottom: 0;
    display: none;
    justify-content: center;
    grid-gap: 10px;
    background-color: rgba(255, 255, 255, 0.7);
}
.streamchat_container .overlay .loading-dots-spinner{
    align-self: end;
    display: flex;
    justify-content: center;
}
.streamchat_container.loading .overlay{ display: grid; }

.streamchat_header {
    font-size: 10px;
    padding: 4px;
    text-align: center;
}
.streamchat_history{
    overflow-y: auto;
    flex: 1;
}
.streamchat_history:empty{
    display: grid;
    justify-content: center;
    align-items: center;
}
.streamchat_history:empty:before{
    content: ' ';
    background-image: url(../../img/chat_bubbles.png);
    background-size: cover;
    width: 200px;
    height: 200px;
    opacity: 0.3;
}
.streamchat_history .item{
    display: flex;
    margin: 15px 5px;
}
.streamchat_history .item .avatar{
    flex: 0 0 38px;
    height: 38px;
    margin-top: 5px;
    background-color: silver;
    border-radius: 50%;
    background-size: cover;
}
.streamchat_history .item .avatar.letters {
    height: 38px;
    border-radius: 50%;
    background-color: transparent;
    /* border: 2px solid; */
    display: grid;
    justify-content: center;
    align-items: center;
}
.streamchat_history .item .content{
    flex-basis: 100%;
    margin-left: 5px;
    font-size: 14px;
}
.streamchat_history .name{
    font-weight: bold;
    font-size: 12px;
}
.streamchat_history .timestamp{
    font-size: 12px;
    padding-left: 5px;
}

.streamchat_history .message {
    word-break: break-word;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

.streamchat_history .message_header {
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

.pinned_message {
    background-color: #f2f2f2;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 1px 0.5px 0.5px rgb(0 0 0 / 20%);
    align-self: center;
}
.streamchat_pinned{
    overflow-y: auto;
    max-height: 35%;
    background-color: #f2f2f2;
    position: relative;
    box-shadow: 0px 3px 6px 0px #c2c2c2;
}
.streamchat_pinned:empty{
    height: 0;
    border: none;
}
.streamchat_pinned .item{
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    position: relative;
}

.streamchat_pinned .item:first-child{
    border-top: none;
}

.streamchat_pinned .item .avatar{
    flex: 0 0 38px;
    height: 38px;
    margin-top: 5px;
    background-color: silver;
    border-radius: 50%;
    background-size: cover;
}
.streamchat_pinned .item .avatar.letters {
    height: 38px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid;
    display: grid;
    justify-content: center;
    align-items: center;
}
.streamchat_pinned .item .content{
    flex-basis: 100%;
    margin-left: 5px;
    font-size: 14px;
}
.streamchat_pinned .name{
    font-size: 10px;
}
.streamchat_pinned .timestamp{
    font-size: 10px;
    padding-left: 5px;
}
.streamchat_pinned .message {
    word-break: break-word;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}
.streamchat_pinned .message_header {
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    font-style: italic;
}
.streamchat_pinned .message_header img {
    position: absolute;
    right: 0;
    top: 0;
    height: 15px;
    z-index: 1;
    padding: 10px;
    cursor: pointer;
}
.streamchat_pinned .message_header img:hover {
    opacity: 0.5;
}


/* .streamchat_interface{
    box-shadow: -3px 0px 3px 0px #000000;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
} */
.streamchat_interface .warning{
    position: absolute;
    top: -20px;
    right: 0px; 
    left: 0px;
    height: 20px;
    font-size: 10px;
    padding: 0px;
    text-align: center;
    box-shadow: -3px 0px 3px 0px #000000;
    opacity: 0;
    transition: all 1s ease-in;
    pointer-events: none;
    z-index: 3;
}
.streamchat_interface .warning.show{ 
    opacity: 1;
    pointer-events: all;
}
.streamchat_interface .new_message{
    position: absolute;
    top: -33px;
    right: 0px;
    left: 0px;
    height: 20px;
    margin: 5px;
    font-size: 14px;
    padding: 0px;
    text-align: center;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, .3);
    opacity: 0;
    transition: all .5s ease-in;
    pointer-events: none;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
}
.streamchat_interface .new_message.show{ 
    opacity: .9;
    pointer-events: all;
}


/* .streamchat_interface .emoji{
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url(../../img/emojis.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 0px 5px;
    opacity: 0.4;
} */
li.emoji-picker__tab.active { background-color: grey; }
.emoji-picker__emoji:focus, .emoji-picker__emoji:hover { background: silver; }
.emoji-picker__emoji { font-size: 1.4rem !important; }
.emoji-picker__emojis { 
    width: 100% !important; 
}
.emoji-picker { 
    background: #f2f2f2 !important; 
    top: unset !important;
    bottom: 100% !important;
    transform: unset !important;
    width: 100% !important;
}
.emoji-picker__tab-body {
    transform: translateX(100%);
    width: 100%;
}
.emoji-picker__preview { height: 1em !important; }
.emoji-picker__preview-emoji { font-size: 1em !important; }

/* .streamchat_interface textarea {
    width: 100%;
    height: 40px;
    padding-top: 10px;
    border: none;
    text-align: left;
    color: #404040;
    max-height: 100px;
    margin: 0px 5px;
    outline: none;
    overflow-y: auto;
} */
/* .streamchat_interface .sends {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url(../../img/input_send.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
} */

.chatrooms_container{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: 24px 1fr;
}

.chatrooms_container .pointer_events{
    position: absolute; top: 0; right: 0; left: 0; bottom: 0;
    pointer-events: all;
}
.chatrooms_container .pointer_events.none{ pointer-events: none; }
.chatrooms_container .overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    grid-gap: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
    text-align: center;
    padding: 40px;
}
.chatrooms_container .overlay .loading-dots-spinner{
    align-self: end;
    display: flex;
    justify-content: center;
}
.chatrooms_container.loading .overlay{ display: grid; }
.chatrooms_header.color_bg_division_section_title.font_color_section_title{
    font-size: 10px;
    padding: 1px 5px;
    display: flex;
    justify-content: space-between;
}
.chatrooms_header .title{
    padding: 5px 0px;
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.chatrooms_header .online{
    display: flex;
}
.chatrooms_header .online .avatar {
    width: 20px;
    height: 20px;
    margin-left: 2px;
    border-radius: 50%;
    background-size: cover;
    display: grid;
    align-items: center;
    justify-content: center;
}
.chatrooms_header .online .avatar.and_more{
    background-color:#404040; 
    color:white;
    font-size:12px;
}
.chatrooms_history{
    overflow-y: auto;
}
.chatrooms_history:empty{
    display: grid;
    justify-content: center;
    align-items: center;
}
.chatrooms_history:empty:before{
    content: ' ';
    background-image: url(../../img/chat_bubbles.png);
    background-size: cover;
    width: 200px;
    height: 200px;
    opacity: 0.3;
}
.chatrooms_history .item{
    display: flex;
    margin: 15px 5px;
}
.chatrooms_history .item .avatar{
    flex: 0 0 38px;
    height: 38px;
    margin-top: 5px;
    background-color: silver;
    border-radius: 50%;
    background-size: cover;
}
.chatrooms_history .item .avatar.letters {
    height: 38px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid;
    display: grid;
    justify-content: center;
    align-items: center;
}
.chatrooms_history .item .content{
    flex-basis: 100%;
    margin-left: 5px;
    font-size: 14px;
}
.chatrooms_history .name{
    font-weight: bold;
    font-size: 12px;
}
.chatrooms_history .timestamp{
    font-size: 12px;
    padding-left: 5px;
}

.chatrooms_history .message {
    word-break: break-word;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

.chatrooms_history .message_header {
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

/* .chatrooms_interface{
    box-shadow: -3px 0px 3px 0px #000000;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
} */
.chatrooms_interface .warning{
    position: absolute;
    top: -20px;
    right: 0px; 
    left: 0px;
    height: 20px;
    font-size: 10px;
    padding: 0px;
    text-align: center;
    box-shadow: -3px 0px 3px 0px #000000;
    opacity: 0;
    transition: all 1s ease-in;
    pointer-events: none;
    z-index: 3;
}
.chatrooms_interface .warning.show{ 
    opacity: 1;
    pointer-events: all;
}
.chatrooms_interface .new_message {
    position: absolute;
    top: -33px;
    right: 0px;
    left: 0px;
    height: 20px;
    margin: 5px;
    font-size: 14px;
    padding: 0px;
    text-align: center;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, .3);
    opacity: 0;
    transition: all .5s ease-in;
    pointer-events: none;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
}

.chatrooms_interface .new_message.show {
    opacity: .9;
    pointer-events: all;
}

/* .chatrooms_interface .emoji{
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url(../../img/emojis.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 0px 5px;
    opacity: 0.4;
} */
/* .chatrooms_interface textarea {
    width: 100%;
    height: 40px;
    padding-top: 10px;
    border: none;
    text-align: left;
    color: #404040;
    max-height: 100px;
    margin: 0px 5px;
    outline: none;
    overflow-y: auto;
}
.chatrooms_interface .send{
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url(../../img/input_send.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
} */


.vjs_recorder {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.vjs_recorder .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    z-index: 100;
    width: 60px;
    display: none;
}

.vjs_recorder.loading .spinner {
    display: block;
}

.vjs_recorder .save,
.vjs_recorder .close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding:  5px;
    background-color: rgba(0,0,0,.5);
    color: white;
    font-size: 20px;
    z-index: 100;
    border-radius: 50%;
    cursor: pointer;
    transform: translate3d(0, 0, 0);
}

.vjs_recorder .save {
    top: unset;
    bottom: 40px;
}

.vjs_recorder .save.hide {
    display: none;
}

.vjs_recorder .capture {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translate3d(-50%, 0, 0);
    border: 1px solid #fff;
    z-index: 100;
    background-clip: content-box;
    background-color: #f2f2f2;
    padding: 4px;
    border-radius: 50%;
    height: 56px;
    width: 56px;
    cursor: pointer;
    transition: border-radius .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}
.vjs_recorder.loading .capture {
    display: none;
}

.vjs_recorder.video .capture {
    background-color: red;
    color: white;
}

.vjs_recorder .capture.recording {
    border-radius: 10px;
    transform: translate3d(-50%, 0, 0) scale(.8);
}


.vjs_recorder .capture.ready {
    pointer-events: none;

}

.vjs_recorder .capture .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    opacity: 0;
}

.vjs_recorder .capture.done .counter {
    opacity: 1;
}

.vjs_recorder .capture.ready.animate .counter {
    animation-name: countdown;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

@keyframes countdown {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;        
    }
    100% {
        opacity: 0;
    }     
}

.vjs_recorder .vjs-record-button,
.vjs_recorder .vjs-device-button {
    display: none !important;
}

.vjs_recorder .video-js .vjs-control:focus:before,
.vjs_recorder .video-js .vjs-control:focus {
	text-shadow: none;
}

.vjs_recorder.photo .vjs-record-canvas {
	width: 100%;
    height: 100%;
}

.vjs_recorder.photo .vjs-record-canvas canvas {
	width: 100%;
    height: 100%;
    object-fit: contain;
}

.post_content {
    position: relative;
}

.post_content .post_img {
    width: 100%;
    display: block;
}

.post_content .post_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.3);
    z-index: 2;
}

.post_content .post_overlay img {
    width: 80px;
    height: 80px;
    display: block;
}

.post_content.square {
    padding-bottom: 100%;
    overflow: hidden;
}

.post_content.square .post_img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


.media {
    height: 100%;
    width: 100%;
    position: relative;
}

.media .video-js,
.media iframe {
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: none;
}

.media.has_aspect_ratio {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.media.image > img {
    height: 90%;
    width: 90%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.media.leaflet-container {
    background-color: transparent;
}

.detail_header {
    padding: 20px;
}

.detail_header .option_buttons {
    margin: 0;
}

.detail_header .top {
    display: flex;
    align-items: center;

}
.detail_header .top .image {
    margin-right: 15px;
    flex: 0 0 auto;
}

.detail_header .top .description .title {
    font-size: 16px;
    line-height: 20px;
    font-family: Text-Bold
}

.detail_header .top .description .subtitle {
    font-size: 14px;
    line-height: 16px;
    margin-top: 5px;  
}

.detail_header .text {
    font-size: 14px;
    margin-top: 20px;
}

.detail_header .bottom {
    margin-top: 20px;
}

.scroll_padding_single {
    padding-bottom: 60px;
}

.scroll_padding_double {
    padding-bottom: 110px;
}

.sub_header {
    display: flex;
    align-items: center;
    background-color: #eee;
    padding: 0 5px;
}

.sub_header > div {
    margin: 0 5px;
}

.sub_header .sub_header_image {
    flex: 0;
    margin-right: 5px;
}

.sub_header .sub_header_image img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    background-color: #ddd;
    border-radius: 50%;
    display: block;
}

.sub_header .sub_header_title {
    flex: 1;  
}

.sub_header .sub_header_button  {
    position: relative;
    align-self: stretch;
    width: 30px; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.sub_header .sub_header_button img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.content_block.read_more{
    height: 300px;
    overflow: hidden;
    position: relative;
}
.content_block.read_more::before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, transparent, white);
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    display: grid;
    align-items: end;
    background-image: -webkit-linear-gradient(-90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    align-content: end;
}
.content_block.read_more:focus{ height: initial; }
.content_block.read_more:focus::before{ display: none; }
.ios .content_block.read_more{ height:initial; overflow: initial; }
.ios .content_block.read_more::before{ display:none; }

.content_block .list_element .small_pic{
    height: 60px;
    width: 60px;
}
.content_block .list_element .small_pic img {
    max-width: 60px;
    max-height: 60px;
}

.exhibitor_profiles .list_item .small_pic{
    height: 60px;
    width: 60px;
}
.exhibitor_profiles .list_item .small_pic img {
    max-width: 60px;
    max-height: 60px;
}


.search {
    height: 100%;
    width: 100%;
}

.search .search_text {
    position: relative;
    height: 100%;
}

.search .search_text input {
    width: 100%;
    padding: 0 20px;
    background-color: #fff;
    box-sizing: border-box;
    border: none;
    height: 100%;
}

.search .search_text #clear,
.search .search_text #load {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    color: #aaa;
    width: 45px;
}

.search .search_text i {
    color: #aaa;
    font-size: 20px;
}

.search.searching input,
.search.has_text input {
    padding-right: 45px;
}

.search.searching #load {
    display: flex;
}

.search.has_text #clear {
    display: flex;
}

.search .terms {
    position: absolute;
    top: calc(100%);
    padding: 6px 15px;
    display: flex;
    align-items: center;
    width: 100%;
}

.search .terms .term {
    padding: 3px 7px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    margin-right: 7px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
}

.search .terms .term .label {
    font-size: 10px;
    margin-right: 5px;
}

.search .terms .term i {
    font-size: 10px;
    transform: translateY(-1px);
}

.comments {
    padding: 20px;
}

.comments .comments_loading {
    display: none;
    align-items: center;
    justify-content: center;
}

.comments .comments_loading img {
    width: 40px;
    height: 40px;
}

.comments.loading .comments_loading {
    display: flex;
}

.comments .list_empty {
    font-size: 10px;
    text-align: center;
    padding:20px;
}

.comments .new_comment {
    position: relative;
}

.comments .new_comment textarea {
    width: 100%;
    padding: 10px 40px 10px 20px;
    border-radius: 20px;
    min-height: 30px;
    line-height: 16px;
    border: none;
    font-size: 12px;
    background-color: #eee;
}

.comments .new_comment textarea#shadow_text {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.comments .new_comment textarea#real_text {
    z-index: 1;
}

.comments .comment_card {
    padding: 0;
    margin: 0;
    margin-top: 15px;
}

.new_comment .send {
    width: 40px;
    height: 38px;
    background-image: url(../../img/input_send.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 2px;
    transform: translateY(-2px);
    cursor: pointer;
}

.new_comment.ready .send {
    opacity: 1;
    pointer-events: all;
}

.comments .reply_container .new_comment {
    margin-top: 10px;

}

.comments .reply_container .new_comment textarea {
    padding: 5px 40px 5px 20px;
    min-height: 20px;
}

.comments .reply_container .new_comment .send {
    height: 31px;
}

.detail_description .custom_field{ margin: 20px 0px; }
.detail_description .custom_field .label{ 
    font-weight: bold;
    font-size: 110%; 
}

body > #stream {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vw * 9 / 16);
    top: constant(safe-area-inset-top);
    top: env(safe-area-inset-top);
    z-index: 10;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}

body.has_stream > #stream {
    opacity: 1;
    pointer-events: auto;
}

body.has_stream #eventDiv {
    top: calc(100vw * 9 / 16);
    top: calc((100vw * 9 / 16) + constant(safe-area-inset-top));
    top: calc((100vw * 9 / 16) + env(safe-area-inset-top));
}

#stream .content_body .buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#stream .content_body .buttons i {
    display: none;
    margin-left: 8px;
    flex: 0 0 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    background-color: rgba(0, 0, 0, .5);
    font-size: 14px;
}

#stream .content_body .buttons i.show {
    display: inline-flex;
}

#stream .content_body {
    display: flex;
    align-items: center;
    background-image: url(../../config/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#stream .stream_container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
}

#stream .stream_body {
    display: flex;
    align-items: center;
    flex: 1;
}

#stream .stream_player {
    width: 100%;
    height: 100%;
    position: relative;
}

#stream .disable {
    display: none;
}

#stream .stream_footer {
    display: none;
    flex: 0 0 70px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.3);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#stream .stream_footer.show {
    display: block;
}

#stream .standby_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-image: url(../../config/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    transition: opacity .2s;
}

#stream .standby_overlay.show {
    opacity: 1;
    pointer-events: all;
}

#stream .standby_overlay .message {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 60%;
    font-size: 1.2em;
    padding: .9em 1.3em;
    text-align: center;
    color: white;
    background-color: rgba(0,0,0,.5);
    border-radius: .6em;
}

#stream .standby_overlay .message:empty {
    display: none;
}

#stream .stream_player.no_stream {
    max-height: unset !important;
    background-image: url(../../config/stream_splash.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#stream .stream_overlays {
    z-index: 10;
}

#stream .stream_overlays,
#stream .stream_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

#stream .stream_overlay {
    opacity: 0;
    transition: opacity .5s;
}

#stream .stream_overlay.show {
    opacity: 1;
}

#stream .stream_overlay.show > * {
    pointer-events: all;
}

#stream .stream_overlay .stream_overlay_position {
    position: absolute;
    left: 1em;
    right: 1em;
    top: 1em;
    bottom: 1em;
}

#stream .stream_overlay .stream_overlay_position.top {
    bottom: unset;
}
#stream .stream_overlay .stream_overlay_position.bottom {
    top: unset;
}
#stream .stream_overlay .stream_overlay_position.left {
    right: unset;
}
#stream .stream_overlay .stream_overlay_position.right {
    left: unset;
}


.flex_h {
    display: flex;
    align-items: center;
}

#session_watch_stream {
    display: none;
}

.ongoing #session_watch_stream {
    display: block;
}

#action_modal .action_modal.slots {
    max-height: 100%;
}

.slot_picker {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

.slot_picker.empty > div {
    opacity: 0;
    pointer-events: none;
}
.slot_picker .info_div {
    opacity: 0;
    pointer-events: none;
}

.slot_picker.empty > .info_div {
    opacity: 1;
    pointer-events: all;
}


.slot_picker .slot_picker_day .day_title {
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-align: center;
    font-size: 18px;
}

.slot_picker .slot_picker_day i {
    font-size: 38px;
}

.slot_picker .slot_picker_day i.disabled {
    opacity: .2;
    pointer-events: none;
}


.slot_picker .slot_picker_day {
    display: flex;
    display:none;
}

.slot_picker .slot_picker_slots {
    overflow: auto;
    min-height: 0;
}

.slot_picker .title {
    padding: 10px;
    text-align: center;
    /* border-top: 1px solid #eee; */
    font-size: 14px;
}

.slot_picker.unavailable .slot_picker_tabs,
.slot_picker.unavailable .slot_picker_day,
.slot_picker.unavailable .title,
.slot_picker.unavailable .slot_picker_slots {
    opacity: .5;
    pointer-events: none;
}

.slot_picker .slot_picker_available {
    margin-left: -20px;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.slot_picker.unavailable .slot_picker_available .cg-icon-checkbox-yes,
.slot_picker .slot_picker_available .cg-icon-checkbox-no {
    display: none;
}

.slot_picker.unavailable .slot_picker_available .cg-icon-checkbox-no {
    display: block;
}

.slot_picker .day_slots {
    display: block;
}

.slot_picker .day_slots.hide {
    display: none;
}

.slot_picker .slot_hour {
    display: flex;
    align-items: center;
}

.slot_picker .slot_hour .slot {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 38px;
    border-right: 1px solid #e2e2e2;
    position: relative;
    cursor: pointer;
}

.slot_picker .slot_hour .slot.select_slot_hour {
    flex: 0;
    padding: 0px 8px;
    font-size: 20px;
}

/* .slot_picker .slot_hour .slot.select_slot_hour.selected {
    background-color: rgba(0, 160, 0, .5);
} */

.slot_picker .slot_hour .slot.select_slot_hour i {
    height: 20px;
    width: 20px;
}

.slot_picker .slot_hour .slot.select_slot_hour.selected .fa-check-square-o,
.slot_picker .slot_hour .slot.select_slot_hour .fa-square-o {
    display: block;
}

.slot_picker .slot_hour .slot.select_slot_hour .fa-check-square-o,
.slot_picker .slot_hour .slot.select_slot_hour.selected .fa-square-o {
    display: none;
}

.slot_picker .slot_hour .slot .slot_title {
    font-size: 12px;
    position: absolute;
    top: 4px;
    left: 6px;
    right: 6px;
    font-family: Text-Mono;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slot_picker .slot_hour .slot .slot_title .end {
    opacity: 0;
}

.slot_picker .slot_hour .slot.disabled .slot_title .end {
    opacity: 0;
}

.slot_picker .slot_hour .slot.has_meeting,
.slot_picker .slot_hour .slot.available {
    background-color: rgba(0,160,0,.5);
}

.slot_picker .slot_hour .slot.disabled {
    pointer-events: none;
}

.slot_picker .slot_hour .slot.disabled:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(255,255,255,.7);
}

.slot_picker .slot_hour .slot:last-child {
    border-right: none;
}

.slot_picker .slot_hour {
    border-top: 1px solid #e2e2e2;
}
.slot_picker .slot_hour:last-child {
    border-bottom: 1px solid #e2e2e2;
}


.slot_hour .slot .icons {
	position: absolute;
	right: 4px;
	bottom: 4px;
	display: flex;
}

#meeting_duration.disabled,
#meeting_start_time.disabled {
    opacity: .5;
    pointer-events: none;
}

.slot_picker .slot .icons > div {
    display: none;
    width: 20px;
    height: 20px;
    margin-left: 2px;
    filter: brightness(1) invert(1);
    opacity: .5;
}

.slot_picker .slot.filled .icons .meeting {
    display: block;
    background-image: url(../../img/icon_white_meeting.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.list_page_header.report div{
    background-color: silver;
    color: white;
}
.scroll.report .odd { background-color: #f8f6f6; }
.scroll.report .even { background-color: #ffffff; }

.profile_list_item.online .list_pic.small_pic.photo:before {
    content: ' ';
    display: block;
    width: 15px;
    height: 15px;
    background-color: #14e914;
    position: absolute;
    border-radius: 50%;
    z-index: 99;
    margin: 10px 0px 0px 65px;
}

.videochat {
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 2em;
    box-sizing: border-box;
}

.videochat * {
    box-sizing: border-box;
}

.videochat .main,
.videochat .main .streams,
.videochat .header,
.videochat .footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videochat .main {
    flex: 1;
    width: 100%;
}

.videochat .main_content {
    display: flex;
    align-items: center;
    width: 100%;
}

.videochat .main .streams {
    width: 100%;
}

.videochat .all_streams {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    flex: 1;
}

.videochat.focus_view {
    display: flex;
    flex-direction: column;
}


.videochat.focus_view .all_streams {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    align-self: stretch;
    flex: 0 0 20%;
    margin-left: 1em;
}

.videochat .active_stream {
    display: none;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.videochat .active_stream video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.videochat.focus_view .active_stream {
    display: block;
}

.videochat .controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 .5em;
}

.videochat .controls > div {
    flex: 1;
    display: flex;
    align-items: center;
}

.videochat .controls > div.center {
    justify-content: center;
}

.videochat .controls > div.right {
    justify-content: flex-end;
}

.videochat .controls .control {
    cursor: pointer;
    position: relative;
}

.videochat .controls .control + .control {
    margin-left: .7em;
}

.desktop .videochat .controls .control i:hover {
    opacity: .7;
}

.control.off i:first-child:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 2px;
    width: 60%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #444;
    border: 2px solid #fff;
}

.videochat .controls .control i:not(.open_control_menu) {
    width: 1.9em;
    height: 1.9em;
    font-size: 1.4em;
    color: #444;
    background-color: #fff;
    border-radius: 50%;
}

.videochat .controls .control.simple i {
    background-color: transparent !important;
    color: #fff !important;
}

.videochat .controls .control.disconnect i {
    width: 2em;
    height: 2em;
    font-size: 1.5em;
    border-radius: 50%;
    color: white;
    background-color: red;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}


.videochat .chat {
    background-color: rgba(255, 255, 255, .5);
    display: none;
    flex-direction: column;
    color: #fff;
    flex: 0 0 25%;
    align-self: stretch;
    margin-right: 1em;
    border-radius: 8px;
    overflow: hidden;
}

.videochat.has_chat .chat {
    display: flex;
}

.videochat .chat .messages {
    flex: 1;
    overflow-y: auto;
    padding: .5em;
    display: flex;
    flex-direction: column;
}

.videochat .chat .messages .message {
    font-size: .8em;
    background-color: rgba(0, 0, 0, .2);
    align-self: flex-start;
    padding: .4em .5em;
    border-radius: 4px;
    margin-bottom: .5em;
}

.videochat .chat .messages .message.from {
    align-self: flex-end;
    text-align: right;
}

.videochat .chat .messages .user_name {
    font-size: .8em;
    opacity: .6;
}


.videochat .chat .message_input {
    position: relative;
}

.videochat .chat .message_input input {
    background-color: rgba(0, 0, 0, .4);
    padding: 0 2em 0 1em;
    box-sizing: border-box;
    width: 100%;
    border: none;
    min-height: 2.2em;
    color: #fff;
}

.videochat .chat .message_input .send {
    position: absolute;
    right: .5em;
    top: 50%;
    transform: translateY(-50%);
}

.videochat .all_streams .client_window {
    position: relative;
    flex: 1;
    margin: .5em;
    overflow: hidden;
    border-radius: 8px;
}

.videochat.focus_view .all_streams .client_window {
    margin: 0;
    margin-bottom: .5em;
}

.videochat .all_streams .client_window .container {
    position: relative;
    width: 100%;
    padding-bottom: calc(100% * 9 / 16);
}

.videochat .all_streams .client_window .client_ui {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.videochat .all_streams .client_window .client_ui .name {
    position: absolute;
    top: .5em;
    right: .5em;
    z-index: 10;
    background-color: rgba(0, 0, 0, .5);
    padding: .2em .4em;
    border-radius: 4px;
    font-size: .8em;
    max-width: 70%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.videochat .all_streams .client_window .client_ui .volume {
    position: absolute;
    left: .5em;
    bottom: .5em;
    width: 30%;
    overflow: hidden;
    height: .5em;
}

.videochat .all_streams .client_window .client_ui .volume .fill {
    height: 100%;
    background-color: grey;
}

.videochat .all_streams .client_window .client_streams {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.videochat.focus_view .all_streams .client_window .client_streams > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
}

.videochat.focus_view .all_streams .client_window .client_streams > div.screen {
    z-index: 10;
}

.videochat .status_overlay {
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: silver;
}

.videochat.disconnected .status_overlay {
    display: flex;
}

.videochat .open_control_menu {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    border-radius: 50%;
    height: 1em;
    width: 1em;
    font-size: .9em;
    color: #444;
    box-shadow: 0 0 3px #444;
}

.videochat .device_menu {
    position: absolute;
    bottom: calc(100% + 1em);
    max-width: 20em;
    background-color: #fff;
    color: #444;
    font-size: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.videochat .device_menu .device_list {
    padding: .2em 0;
}

.videochat .device_menu.hide {
    display: none;
}

.videochat .device_menu .item {
    padding: .5em  1em;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.videochat .device_menu .item .device_name {
    flex: 1;
    margin-right: .5em;
}

.videochat .device_menu .item i {
    font-size: 1.5em;
}

.videochat .device_menu .item i.fa-dot-circle-o {
    display: none;
}

.videochat .device_menu .item.selected i.fa-dot-circle-o {
    display: block;
}

.videochat .device_menu .item.selected i.fa-circle-o {
    display: none;
}

.videochat .device_menu .item.division {
    background-color: #888;
    color: #fff;
}

.videochat .device_menu .item.device_list_empty {
    display: none;
}

.videochat .device_menu .device_list:empty .item.device_list_empty {
    display: flex;
}

.media.app_video > div {
    height: 100% !important;
}

.streamchat_select {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    text-align: center
}

#streamchat_select {
    border: none;
    display: inline-block;
    font-size: 12px;
    padding-right: 20px;
}

.streamchat_select::after {
    content: '{';
    font-family: Icon-Font;
    pointer-events: none;
    font-size: 8px;
    display: inline-block;
    font-size: 6px;
    display: inline-block;
    position: absolute;
    margin: 5px 3px 0px -15px;
}


#reactions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;

}

#reactions-menu {
    pointer-events: initial;
    background: rgba(255, 255, 255, .5);
    position: absolute;
    bottom: 8px;
    right: 16px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 128px !important;
    width: 128px;
    border-radius: 64px;
    align-items: center;
    z-index: 20;
    box-shadow: 0 0 16px rgba(128, 128, 128, .2);

}

#reactions-btn {
    /* toggle expand */
    display: flex;
    width: 128px;
    height: 128px;
    border-radius: 64px;
    z-index: 10;
}

#reactions-list {
    display: flex;
    flex: 1;
    flex-direction: row-reverse;
    align-items: center;
    width: 320px;
    overflow-y: hidden;
    height: 128px;
    border-radius: 64px;
    background: rgba(255, 255, 255, .5);
    transition: all .4s;
}

.reaction-btn {
    display: flex;
    width: 128px;
    min-width: 128px;
    height: 128px;
    min-height: 128px;
    transition: all .5s;
    transform: scale(.75);
}

.reaction-btn:hover {
    transform: scale(1);
}

.myreaction {
    position: absolute;
    display: block;
    width: 128px;
    min-width: 128px;
    height: 128px;
    min-height: 128px;
    z-index: 30;
    /*background: url('reactions.png') top left / 256px 256px no-repeat;*/
    transform: scale(.75) translate(-128px, 128px);
    transform-origin: center;
    /*animation: slide-out-top 4s cubic-bezier(.77,0.000,.175,1.000) forwards;*/
    animation: myreaction 4s linear forwards;
}


/* animations */
@keyframes myreaction {
    0% {
        transform: scale(.25) translate(-128px, 128px);
        opacity: 1
    }

    5% {
        transform: scale(.5) translate(-64px, 32px);
        opacity: 1
    }

    15% {
        transform: scale(.5) translate(0px, 0px);
        opacity: 1
    }

    30% {
        transform: scale(.5) translate(32px, -32px);
        opacity: 1
    }

    80% {
        opacity: 1
    }

    100% {
        transform: scale(.25) translate(32px, -840px);
        opacity: 0
    }
}

@keyframes reaction {
    0% {
        transform: scale(.0625) translate(-128px, 128px);
        opacity: 1
    }

    8% {
        transform: scale(.125) translate(-64px, 0);
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        transform: scale(.125) translate(-64px, -2048px);
        opacity: 0
    }
}


#reactions-overlay {
    user-select: none;
    -webkit-user-select: none;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    pointer-events: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#reactions-list::-webkit-scrollbar {
    display: none
}

/* Hide scrollbar for IE, Edge and Firefox */
#reactions-list {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

#reactions-btn,
.reaction-btn,
.myreaction,
.reaction {
    background-repeat: no-repeat;
}

#reactions-btn,
.reaction-btn {
    cursor: pointer;
}

.reactions-halt {
    opacity: .5;
    transition: all .2s;
}

.reactions-halt .reaction-btn {
    transform: scale(.75);
    transition: all 1.5s;
}

.reactions-halt #reactions-btn {
    opacity: .5;
    transform: scale(.8) rotate(180deg);
    transition: all .2s;
}

/* importante! isto passou para o this.create : #reactions-btn, .reaction-btn, .myreaction{ background: url('reactions.png') top left no-repeat } */
/* for overlay */

.reaction {
    opacity: 0;
    position: absolute;
    display: block;
    right: 0;
    left: auto;
    bottom: -128px;
    /* bottom -128px  = começar de baixo */
    width: 128px;
    min-width: 128px;
    height: 128px;
    min-height: 128px;
    z-index: 30;
    transform: scale(.001) translate(-128px, 128px);
    animation: reaction 4s linear forwards;
    display: flex;
    width: 128px;
    min-width: 128px;
    height: 128px;
    min-height: 128px;
}

.stream_error {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10%;
    text-align: center;
    background-color: #000;
    box-sizing: border-box;
}

.zoom_webinar {
    height: 100%;
    position: relative;
}

.zoom_webinar .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.zoom_webinar .overlay.hide {
    opacity: 0;
    pointer-events: none;
}
.zoom_webinar .overlay .message {
    font-weight: bold;
}

.zoom_webinar .overlay_content {
    background-color: rgba(0, 0, 0, .5);
    padding: 15px 15px;
    border-radius: 10px;
    text-align: center;
    margin: 0 100px;
}

.zoom_webinar .overlay i {
    margin-top: 15px;
    color: white;
}

.zoom_webinar .start_webinar {
    margin-top: 15px;
    background-color: white;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    cursor: pointer;
    color: #444;
    font-size: .8em;
    font-weight: bold;
}
.zoom_webinar .leave_webinar {
    margin-top: 15px;
    background-color: #FF4136;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    cursor: pointer;
    color: #fff;
    font-size: .8em;
    font-weight: bold;
}

.zoom_webinar iframe {
    height: 100%;
    width: 100%;
    border: none;
}


.meetings_new .page_tabs {
    background-color: #fff;
}

.meetings_new .page_tabs .page_tab {
    background-color: #fff;
}

.meetings_new .page_tabs .page_tab.selected {
    background-color: #f2f2f2;
}

.meetings_new .list_page {
    background-color: #f2f2f2;
}

.meetings_new .meetings_day.hide {
    display: none;
}

.meetings_new .meetings_day_title {
    margin: 7px;
    margin-top: 20px;
    font-size: 12px;
}

.meetings_new .meeting_list_item {
    margin: 10px;
}

.meetings_new .meeting_list_item .title {
    font-size: 14px;
}

.meetings_new .participants {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, 36px);
    margin-top: 15px !important;
}

.meetings_new .participants .meeting_participant {
    width: 100%;
    display: grid;
    place-items: center;
    height: 36px;
    color: white;
    font-size: 14px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.meetings_new  .meeting_participant i {
    position: absolute;
    bottom: -3px;
    right: -3px;
    font-size: 18px;
    filter: drop-shadow(0 0 0 white);
}

.meetings_new .meeting_icon_status:after {
    content: '';
    position: absolute;
    left: 10%;
    top: 10%;
    bottom: 10%;
    right: 10%;
    border-radius: 50%;
    background-color: white;
    z-index: -1;
}

.meeting_icon_status.fa-check-circle,
.meeting_icon_status.fa-user-circle {
    color: green;
}

.meeting_icon_status.fa-times-circle {
    color: red;
}

.meeting_icon_status.fa-question-circle {
    color: orange;
}

.list_item.has_buttons {
    padding-bottom: 50px;
}

.list_item_buttons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    display: flex;
    align-items: stretch;
}

.list_item_buttons .list_item_button {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
}

.meetings_new .meeting_list_item .meeting_status {
    position: absolute;
    top: 4px;
    right: 4px;
}

.list_item .list_item_buttons {
    display:none;
}

.list_item.has_buttons .list_item_buttons {
    display: flex;
}

.meetings_new .meeting_list_item .meeting_status {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
}


.meeting_participants .meeting_list_item .meeting_icon_status {
    position: absolute;
    right: -4px;
    bottom: 0px;
    font-size: 24px;
    background-color: white;
    border-radius: 50%;
    z-index: 10;
}

#exhibition_layout .content_body {
    background-color: #f2f2f2 !important;
}

.exhibitor_grid_container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}


.exhibitor_type_block.hide {
    display: none;
}

.speaker_type_block.hide {
    display: none;
}


.exhibitor_grid_blocks {
    display: grid;
    grid-auto-flow: dense;
}

.exhibitor_grid_blocks .exhibitor_block {
    cursor: pointer;
    min-height: 0;
    transition: transform .2s;
}

.exhibitor_grid_blocks .exhibitor_block.hide {
    display: none;
}

.exhibitor_grid_blocks .exhibitor_block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 3px solid #fff;
    box-shadow: 0.1vmin .1vmin 1vmin 0px rgb(0 0 0 / 40%);
    background-color: white;
    box-sizing: border-box;
}

.exhibitor_grid_blocks .exhibitor_block.medium {
    grid-column: span 2;
}

.exhibitor_grid_blocks .exhibitor_block.large {
    grid-column: span 2;
    grid-row: span 2;
}

.exhibitor_grid_blocks.single .exhibitor_block.small {
    grid-column: 2;
}

.exhibitor_grid_blocks.single .exhibitor_block.medium,
.exhibitor_grid_blocks.single .exhibitor_block.large {
    grid-column: 2 / 4;
}
.conversation_list_item
 .title,
.conversation_list_item .subtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px !important;
}

.conversation_list_item .title .name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.conversation_list_item .title .date {
    color: silver;
    font-size: 10px;
    font-family: Text-Regular;
    white-space: nowrap;
    margin-left: 5px;
    
}

.conversation_list_item .last_message {
    font-size: 12px;
}

.conversation_list_item.has_image .last_message:before {
    content: '';
    display: inline-block;
    height: 16px;
    width: 16px;
    background-image: url('../../img/photo_black.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 4px;
    opacity: .3;
    vertical-align: middle;
    transform: translateY(-1px);
}

.conversation_list_item.unread .last_message {
    font-weight: bold;
}

.conversation_list_item .unread_count {
    width: 16px;
    height: 16px;
    font-size: 9px;
    line-height: 16px;
    background-color: green;
    color: white;
    font-family: Text-Bold;
    border-radius: 50%;
    text-align: center;
}

.conversation_list_item .title .date:empty,
.conversation_list_item:not(.unread) .subtitle .unread_count {
    display: none;
}

.new_message_actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.new_message_actions .message_action {
    position: relative;
    height: 24px;
    width: 24px;
    line-height: 30px;
    text-align: center;
    margin-left: 7px;
    font-weight: bold;
}
.new_message_actions .message_action::before {
    position: absolute;
    left: -3px;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .3;
}
.new_message_actions .message_action.photo,
.new_message_actions .message_action.gallery,
.new_message_actions .message_action.video {
    width: 32px;
    height: 32px
}
.new_message_actions .message_action.photo::before {
    content: '';
    background-image: url(../../img/camera_black.png);
}
.new_message_actions .message_action.video::before {
    content: '';
    background-image: url(../../img/video_black.png);
}
.new_message_actions .message_action.edit_photo>div,
.new_message_actions .message_action.remove_photo>div,
.new_message_actions .message_action.remove_video>div {
    position: absolute;
    left: 100%;
    width: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: grey;
    font-size: 10px;
    line-height: 10px;
    text-align: left;
}
.new_message_actions .message_action.gallery {
    background-size: 28px;
    background-position: center 0px;
}
.new_message_actions .message_action.gallery::before {
    content: '';
    background-image: url(../../img/photo_black.png);
}
.new_message.has_image .message_action.gallery,
.new_message.has_image .message_action.photo,
.new_message.has_image .message_action.video,
.new_message.has_video .message_action.gallery,
.new_message.has_video .message_action.photo,
.new_message.has_video .message_action.video { display: none; }
.new_message_actions .message_action.remove_photo,
.new_message_actions .message_action.remove_video { display: none; }
.new_message_actions .message_action.remove_photo::before,
.new_message_actions .message_action.remove_video::before {
    content: '';
    background-image: url(../../img/cancel.png);
}
.new_message.has_image .message_action.remove_photo {
    display: block;
    margin-right: 40px;
}
.new_message.has_video .message_action.remove_video {
    display: block;
    margin-right: 40px;
}
.new_message_actions .message_action.edit_photo { display: none; }
.new_message_actions .message_action.edit_photo::before {
    font-family: Icon-Font;
    content: '*';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    color: silver;
    font-size: 20px;
    position: relative;
    top: -3px;
    bottom: unset;
    left: 0px;
    right: unset;
    opacity: 1;
}
.new_message.has_image .message_action.edit_photo {
    display: block;
    margin-right: 40px;
    margin-left: 5px;
}
.new_message_extras {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.new_message_extras .extra.image,
.new_message_extras .extra.video {
    display: none;
    height: 42px;
    width: 42px;
    border: 1px solid silver;
    border-radius: 5px;
    position: relative;
    margin-right: 5px;
}
.new_message.has_video .new_message_extras .extra.video { display: block; }
.new_message.has_image .new_message_extras .extra.image { display: block; }
.new_message.has_image #new_message_img { display: block; }
.new_message.has_video #new_message_vid { display: block; }
.new_message_extras .extra.image img,
.new_message_extras .extra.video img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.new_message_extras .extra .full_screen {
    position: absolute;
    bottom: 3px;
    left: 3px;
    height: 22px;
    width: 22px;
    z-index: 10;
    border-radius: 50%;
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../../img/fullscreen.png);
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
}
.new_message_extras .extra .full_screen.video { background-image: url(../../img/play_white.png); }

.user_conversation .highlight_span {
    background-color: #aaa;
}
.user_conversation .highlight_span.selected {
    background-color: #666;
}
.user_conversation .bottom_button_input .bottom_input_icon.emoji {
    left: 30px;
}
.user_conversation #search_count {
    position: absolute;
    bottom: 4px;
    right: -5px;
    height: 14px;
    width: 14px;
    color: white;
    background-color: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    border-radius: 50%;
}

.user_conversation .search_count:empty {
    display: none;
}

.bottom_buttons .photo_preview {
    position: absolute;
    top: -80px;
    left: 8px;
    height: 80px;
    width: 80px;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 4px;
}

.bottom_buttons .photo_preview.hide {
    display: none;
}

.bottom_buttons .photo_preview i {
    color: white;
    font-size: 14px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,.5);
    border-radius: 50%;
    position: absolute;
    right: 4px;
    top: 4px;
}

.bottom_buttons#searching_buttons #search_text {
    flex: 1;
    font-size: 12px;
    justify-content: flex-start;
    padding: 0 20px;
    margin-right: 10px;
    opacity: .8;
}

.modal_page .moderation.list_page_header{
    display: grid;
    justify-content: center;
    align-items: center;
}
.modal_page .moderation.list_page_header div{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0px 10px;
}

.grid_center{
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.color_cancel_bt_1{
    border: 2px solid var(--color_bg_division_1);
    color: var(--color_bg_division_1);
}

#modal_page .cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 100;
}

#modal_page .feedback_description {
    text-align: center;
    max-width: 90%;
    display: grid;
    grid-gap: 20px;
    margin: auto;
    height: 100%;
    align-content: center;
    min-width: 200px;
}

.vjs-control-bar {
    margin: 10px !important;
    width: calc(100% - 20px) !important;
    border-radius: 5px !important;
}


.message_box {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.message_box.lock {
    pointer-events: none;
}

.message_box .message_buttons {
    display: flex;
    height: 42px;
}

.message_box .message_buttons.buttons_left {
    align-self: flex-start;
}

.message_box .message_buttons.buttons_right {
    align-self: flex-end;
}

.message_box .message {
    flex: 1;
    padding: 11px 0;
    word-break: break-word;
    min-height: 100%;
    border: none;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    background: transparent;
}

.message_box .preview,
.message_box .autocomplete {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 8px;
    height: 80px;
    width: 80px;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 4px;
    background-color: #fff;
    font-size: 12px;
    color: var(--color_font_dark)
}

.message_box .autocomplete {
    max-height: 120px;
    min-height: 80px;
    min-width: 80px;    
    height: auto;
    width: auto;
    overflow-y: auto;
    z-index: 2;
    padding: 5px;
}

.message_box .autocomplete div {
    cursor: pointer;
}

.message_box .autocomplete div + div {
    margin-top: 5px;
}

.message_box .preview.hide, 
.message_box .autocomplete.hide {
    display: none;
}

.message_box .preview i {
    color: white;
    font-size: 14px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    position: absolute;
    right: 4px;
    top: 4px;
}

.message_box .message_action {
    width: 42px;
    background-position: center calc(100% - 8px);
    background-size: 26px;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 100%;
    overflow: hidden;
}

.message_box .message_action.send {
    background-image: url('../../img/input_send.png');
    transition: opacity 150ms ease-in-out;
}

.message_box.lock .message_action.send {
    background-image: url('../../img/loading.svg');
}

.message_box .message_action.camera {
    background-image: url('../../img/camera_black.png');
    opacity: .3;
    background-position: 9px calc(100% - 8px);
}

.message_box .message_action.emoji {
    background-image: url('../../img/emojis.png');
    opacity: .5;
    background-position: 5px calc(100% - 8px);
}

.message_box .buttons_left .message_action {
    width: 38px;
}

.message_box .message_action.hide {
    width: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease-in-out, width 0ms linear 150ms;
}

.bottom_buttons .bottom_button_message {
    cursor: initial;
    padding: 0;
    background: white;
}
