:root {
    --color-icon-clickable: #19608a;
    --color-icon-clickable-light: #f2f2f2;
}

* {
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: Regular;
    src: url(fonts/source/SourceSansPro-Regular.ttf);
}
@font-face {
    font-family: Bold;
    src: url(fonts/source/SourceSansPro-SemiBold.ttf);
}
@font-face {
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-display: block;
    src: url(fonts/material-icons-outlined.otf);
}

i.mi {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

i.mi.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

div {
    scrollbar-width: thin;
}
div::-webkit-scrollbar { height: 8px; width: 8px; }
div::-webkit-scrollbar-track { background-color: silver; }
div::-webkit-scrollbar-thumb { background-color: var(--color-icon-clickable); }

html {
    overflow: hidden;
    -webkit-text-size-adjust: none;
}

body {
    font-family: Regular;
    font-size: 16px;
    height: 100%;
    width:100%;
    margin: 0;
    overflow: hidden;
    position: fixed; top: 0; left: 0; right:0; bottom: 0;
    /* touch-action: none; */
}

a:-webkit-any-link {
    color: var(--color-icon-clickable);
}

.wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 10px;
    display: flex;
    flex-direction: column;     
    display: none;
}

.session.hide, .time.hide {
    display: none;
}
.day.hide {
    height: 0;
    overflow: hidden;
}
input, select {
    width: 100%;
    height: 100%;
    padding: 0;
    display: block;
    height: 40px;
    box-sizing: border-box;
    outline: none;
    padding: 10px 10px;
    border: none;
}

.filter_search input {
    padding-right: 35px;
}
.filter_search {
    position: relative;
    border: 1px solid silver;
    border-radius: 4px;
    overflow: hidden;
}
.filter_search .icon {
    content: '';
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    width: 24px;
    z-index: 10;
    opacity: .5;
    background-image: url(img/search.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon.searching {
    background-image: url(img/close.png);
    background-size: 18px;
    cursor: pointer;
}

.filter_types select,
.filter_locations select,
.filter_sessions select {
    border: none;
    width: calc(100% + 20px);
    padding-right: 30px;
    line-height: 1.2em;
}

.login,
.filter_types,
.filter_locations,
.filter_sessions {
    position: relative;
    overflow: hidden;
    border: 1px solid silver;
    border-radius: 4px;
}

body:not(.has_agenda) .login {
    display: none;
}

body.has_login .login .logged_out,
body:not(.has_login) .login .logged_in {
    display: none;
}

.login > div {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
}



.filter_types::before,
.filter_locations::before,
.filter_sessions::before {
    content: '';
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    width: 22px;
    z-index: 10;
    opacity: .5;
    background-image: url(img/chevron_down.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}


.header_top {
    display: flex;
}

.header_top>div {
    flex: 1;
    margin-right: .5%;
}

.header_top>div:last-child {
    margin: 0;
}

.header_top>.filter_search {
    flex: 3;
}

.header_bottom {
    display: flex;
}

.header_bottom {
    display: flex;
    margin-top: 20px;
}

.header_bottom>div {
    flex: 1;
    display: flex;
    border-radius: 4px;
    min-width: 0;
}

.header_bottom .select_type {
    flex: 0 0 25%;
    margin-right: 15px;
    text-transform: uppercase;
    border: 1px solid silver;
}

.header_bottom .filter_day {
    flex: 1;
    border: 1px solid silver;
    position: relative;
    overflow: hidden;
}


.toggle_filter {
    border-right: 1px solid silver;
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: .8em;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 10;
}

.toggle_filter:last-child {
    border-right: none;
}

.toggle_filter.selected {
    color: white;
    background-color: var(--color-icon-clickable);
}
.disabled {
    opacity: .5;
    pointer-events: none;
}
.toggle_filter.disabled {
    opacity: 1;
    color: rgba(64,64,64,.5);
    background-color: white;
}

.content {
    display: flex;
    flex: 1;
    min-height: 0;
    margin-top: 10px;
}

.content>div {
    min-width: 0;
}

.content_left {
    flex: 0 0 25%;
    margin-right: 15px;
    overflow-y: auto;
    margin-top: 10px;
}

#posters .content_left {
    /* flex: 0 0 auto; */
    max-width: 25%;
}

.content_right {
    position: relative;
    height: 100%;
    flex: 1;
}

#session_list {
    width: calc(100% - 10px);
}

#session_list, #poster_list {
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 10px;
    overflow-y: auto;
    padding: 0 5px;
    -webkit-overflow-scrolling: touch;
}

#session_list {
    width: calc(100% - 10px);
}

#poster_list {
    display: block;
}

#session_list, .session_timeline {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
}

body.list #session_list,
body.timeline .session_timeline {
    opacity: 1;
    pointer-events: all;
}

.day_title, .poster_type_title, .fixed_title {
    font-size: 1.5em;
    color: var(--color-icon-clickable);
    font-family: Bold;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: white;
    position: relative;
    z-index: 100;
    margin-left: -5px;
    margin-right: -5px;
    padding: 0 5px;
    position: sticky;
    top: 0;
}

.day_title::after, .poster_type_title::after, .fixed_title::after  {
    content: '';
    margin-left: 5px;
    border-bottom: 2px solid var(--color-icon-clickable);
    flex:1;
}
.session, .poster {
    position: relative;
    padding: 15px;
    padding-left: 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px rgba(0,0,0,.3);
    margin-bottom: 17px;
}

.poster {
    padding: 15px;
}

.session.has_type_color {
    border-left: 8px solid transparent;    
}
.session {
background-color: #fff;
}

.session .card-top {
    display: flex;
}

.card .card-info {
    position: relative;
    flex: 1;
    display: grid;
    gap: 4px;
}

.timeline_session .session-info {
    flex: unset;
    will-change: transform;
    flex: 1;
}

.card.has-detail .card-info {
    padding-right: 0%;
    cursor: pointer;
}

#modal .card.has-detail .card-info {
    cursor: initial;
}

.session .card-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 15px;
    margin-left: 5px;
}

body.timeline .session .card-controls {
    display: none;
}

.info .session .card-controls {
    display: none;
}

.has_agenda.has_login .session .card-controls {
    justify-content: end;
}


.card.has-detail .handle {
    width: 26px;
    height: 10px;
    z-index: 10;
    opacity: .3;
    background-image: url(img/chevron_down.png);
    background-position: center;
    background-size: 26px;
    background-repeat: no-repeat;
    transition: transform .15s linear;
    transform-origin: center;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    right: 10px;
}

.card.has-detail.open .handle {
    transform: rotateZ(180deg);
}

/* body:not(.has_login) .session i.session_favorite {
    display: none;
} */

.session i.session_favorite {
    margin-bottom: auto;
    font-size: 26px;
    color: #ccc;
    cursor: pointer;
}

.timeline_session .session i.session_favorite {
    font-size: 20px;
}

.session.favorite i.session_favorite {
    color: #e9d700;
}

.card .card-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.session .session_title {
    color: var(--color-icon-clickable);
    font-family: Bold;
}

.session .session_footer {
    margin: -5px 0px 5px 0px;
    font-size: 0.8em;
}

.timeline_session .session_header, .timeline_session .session_footer {
    display: none;
}
.session_speakers {
    font-size: .8em;
    color: #a2a2a2;;
    margin-bottom: 5px;
    line-height: 1.8em;
}

.session .session_start_time {
    color: grey;
    font-size: .8em;
}

.session .session_start_time .start_time_separator {
    margin: 0 3px;
}

body.timeline .timeline_session .session .session_start_time .start_time_separator,
body.timeline .timeline_session .session .session_start_time .end_time {
    display: none;
}
.session_timeline .pdf_session_detail_button {
    display: none;
}
.pdf_session_detail_button {
    font-size: .9rem;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 15px;
    z-index: 11;
}
.pdf_session_detail_button .icon {
    content: '';
    position: relative;
    right: -2px;
    top: 0;
    bottom: 0;
    width: 22px;
    height: 22px;
    z-index: 10;
    opacity: .6;
    background-image: url(img/pdf.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.modal_session .pdf_session_detail_button {
    padding: 5px 0 0 0;
    position: relative;
    display: flex;
    justify-content: end;
}
.pdf_session_detail_button i {
    color: #666666;
}
.pdf-content .pdf_session_detail_button,
.pdf-content .buttons,
.pdf-content .card-controls {
    display: none !important;
}
.pdf-content .session_card_speaker{
    font-size: 1em !important;
    color: black !important;
}
.pdf-content .card-detail {
    height: auto !important;
}
.pdf-content .session_intervention {
    break-inside: avoid !important;
}

.session .session_location {
    font-size: .7em;
    color: #404040;
    font-family: Bold;
    text-transform: uppercase;
}

.card .card-detail {
    height: 0;
    overflow: hidden;
    transition: height .15s ease;
    margin-right: 15px;
}
.card .card-detail:before {
    content: '';
    display: block;
    height: 10px;
}

.card-detail .card-detail-content {
}

.session .session_description {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e2e2;
    font-size: .9em;
}

.session_card_speaker {
    border: 1px solid #d2d2d2;
    padding: 1px 3px;
    border-radius: 2px;
    white-space: nowrap;
    margin-right: 1px;
}

.session_card_speaker {
    border: none;
    padding: 1px 6px;
    background-color: #f2f2f2;
    font-size: .8em;
}

.session_card_speaker:hover {
    color: #404040;
    cursor: pointer;
}

.session_intervention {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e2e2;
}

.session_intervention:first-child {
    margin-top: 0;
}

.session_intervention>div:first-child {
    margin-top: 0;
}

.intervention_info>div:first-child {
    margin-top: 0;
}

.session_intervention .intervention_image {
    width: 50px;
    flex-shrink: 0;
    padding-bottom: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    display: none;
}

.session_intervention .intervention_image.round {
    border-radius: 50%;
}

.session_intervention .intervention_header {
    font-size: .8em;
    line-height: 1em;   
}

.session_intervention .intervention_title {
    color: var(--color-icon-clickable);
    font-size: .8em;
    line-height: 1em;
    font-family: Bold;
    margin-top: 2px;
}

.session_intervention.poster{
    margin-right: 10px;
}

.session_intervention .intervention_subtitle {
    font-size: .75em;
    line-height: 1em;
    margin-top: 3px;
}

.session_intervention .intervention_speakers {
    font-size: .7em;
    line-height: 1em;
    margin-top: 2px;
    color: #a2a2a2;
    line-height: 1.8em;
}

.hour {
    font-size: .9em;
    font-family: Bold;
    margin-bottom: 10px;
    position: relative;
}

.hour::before {
    content: '';
    position: absolute;
    right: 0;
    top: 54%;
    border-bottom: 1px solid silver;
    left: 41px; 
}

.content_left {
    font-size: .8em;
    line-height: 1.6em;
}

.content_left .title {
    text-transform: uppercase;
    color: var(--color-icon-clickable);
    margin-top: 15px;
    font-family: Bold;
}

.room_list, .type_list {
    color: #666666;   
}


.type_el {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: none;
}

.type_el.show {
    display: block;
}

.type_color {
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    flex-shrink: 0;
}

.room_el {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: none;
}

.room_el.show {
    display: flex;
    align-items: center;
}

.room_el i {
    font-size: 16px;
}

.empty_message {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding: 40px;
    transform: translateY(-50%);
    color: silver;
    font-size: 1.4em;
    text-align: center;
}

.empty .empty_message {
    display: block;
}

.empty + .fixed_title {
    display: none;
}

#modal {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal.show {
    opacity: 1;
    pointer-events: all;
    
}

#modal .content {
    position: relative;
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,.5);
    border-radius: 4px;
    text-align: center;
    max-width: 75%;
    max-height: 75%;
    overflow-y: auto;
    flex: 0 0 auto;
    margin: 0;
    min-width: 300px;
}

#modal .content .close {
    position: absolute;
    top: 0; 
    right: 0;
    padding: 20px;
    background-image: url(img/close.png);
    background-position: center;
    background-size: 18px;
    background-repeat: no-repeat;
    cursor: pointer;
    text-align: center
}

#modal .content .info {
    overflow-y: auto;
    width: 100%;
    padding: 30px;
}

.speaker_container {
    text-align: left;
}

.speaker_container .speaker_info {
    display: flex;
    align-items: center;
}
.speaker_container .speaker_details {
    margin-left: 10px;
}
.speaker_container .speaker_photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d2d2d2;
}

.speaker_container .speaker_name {
    font-family: Bold;
    font-weight: 1.2em;
}

.speaker_container .speaker_subtitle {
    margin-top: 5px;
}

.speaker_container .speaker_description {
    margin-top: 20px;
}
/* .session_timeline {
    opacity: 0;
    pointer-events: none;
} */

body.timeline .session_timeline {
    opacity: 1;
    pointer-events: all;
}

body.timeline #program .content_left {
    display: none;
}

.room {
    display: flex;
}


.session_intervention .buttons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: 40px;
}

.session_intervention .buttons_empty {
    margin-left: 0;
}

.button {
    flex: 0 0 35px;
    background-color: var(--color-icon-clickable);
    padding: 5px 10px;
    padding-left: 35px;
    border-radius: 3px;
    color: white;
    font-size: .6em;
    background-position: 2px center;
    background-size: 32px;
    background-repeat: no-repeat;
    background-image: url(img/intervention.png);
    cursor: pointer;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.session_intervention.poster .button {
    background-image: url(img/poster.png);
}

.poster_container {
    text-align: left;
    flex: 1;
}

.poster_container .poster_title {
    font-family: Bold;
    color: var(--color-icon-clickable);
    /* padding-bottom: 10px; */
    /* margin-bottom: 10px; */
    /* border-bottom: 1px solid #e2e2e2; */
}

.poster_container .poster_sessions {
    font-size: .8em;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
}

.poster_container .poster_sessions .poster_session {
    margin-bottom: 5px;
}

.poster_container .poster_sessions .poster_session_title {
    font-weight: bold;
}

.poster_container .poster_description {
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* border-bottom: 1px solid #e2e2e2; */
}

.poster_field:empty {
    display: none;
}


.poster_field_name {
    font-weight: bold;
}

.poster_field {
    margin-bottom: .5em;
}

.poster_field_content {
    font-size: .9em;
}

.poster_buttons {
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* border-bottom: 1px solid #e2e2e2; */
}

.poster_buttons .button {
    margin-right: 10px;
    background-image: url(img/download.png);
    background-size: 20px;
    background-position: 8px;
}

.poster_container>div:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: 0px solid #e2e2e2;
}

.session.in_timeline {
    margin-bottom: 0;
    background-color: #fff;
    margin: 5px;
    margin-left: 6px;
    margin-right: 5px;
    width: 100%;
    padding: 0px;
    overflow: hidden;
}

.session.in_timeline.hidden {
    opacity: .4;
}

.session.in_timeline .card-top {
    margin: 8px;
}
.session.in_timeline .handle {
    display: none;
}
.session.in_timeline .session_start_time {
    font-size: .9em;
}
.session.in_timeline .session_title {
    max-height: 72px;
    overflow: hidden;
    margin-bottom: 0;
}
.session.in_timeline .session_speakers {
    display: none;
}
.session.in_timeline .session_location {
    display: none;
}
.session.in_timeline .card-image {
    display: none;
}

/* .session.in_timeline .session_location {
    background-color: var(--color-icon-clickable);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
} */

.session_timeline {
    height: 100%;
    font-size: 14px;
    overflow: hidden;  
    opacity: 0;
    pointer-events: none;  
}

#session_timeline {
    display: flex;
    height: 100%;
    transform: translateX(0);
    /* transition: transform .4s ease-out; */
}

body.list #session_timeline  {
    transition: none;
}

.day_timeline {
    height: 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.day_timeline .day_timeline_content {
    transform-origin: 150% 150%;
    width: auto !important;
    position: relative;
    padding-top: 30px;
    margin-top: -30px;
}

.day_timeline .day_timeline_content::before {
    /* content: ''; */
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 100vh;
    background-color: white;
}
.day_timeline .day_timeline_content.grey::before {
    background-color: rgba(100,100,100,.1);
}

.day_timeline .day_timeline_container {
    position: relative;
    height: calc(100% - 40px);
    /* overflow: hidden; */
    /* cursor: move; */
    user-select: none;
    -webkit-user-select: none;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}



.day_timeline .day_timeline_container::after,
.day_timeline .day_timeline_container::before {
    content: '';
    position: absolute;
    left: var(--guideline-left);
    top: 0;
    bottom: 0;
    width: 0px;
    border-right: 1px dashed #aaa;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.day_timeline.has_guidelines .day_timeline_container::after,
.day_timeline.has_guidelines .day_timeline_container::before  {
    opacity: 1;

}

.day_timeline .day_timeline_container::after {
    left: var(--guideline-right);
}

.day_timeline.show {
    display: block;
}

.timeline_room {
    width: 100%;
    display: flex;
    margin: 0px 0px;
    padding: 5px 0;
    padding-top: 20px;
    position: relative;
    z-index: 5;
}

.timeline_room:nth-child(even) {
    background-color: rgba(100,100,100,.1);;
}

.timeline_session {
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    position: relative;
    transition: transform .2s, opacity .2s;
    cursor: pointer;
}

.timeline_session.group {
    cursor: pointer;
}

.timeline_session.group .session {
    cursor: pointer;
    margin: 5px;
    margin-left: 6px;
    width: 100%;
}

.timeline_session.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(0) !important;
}


body.timeline #program .content_right {
    width: 100%;
}

.offset {
    flex-grow: 0;
    flex-shrink: 0;
}

#filter_day, #filter_day_timeline {
    display: none;
}
body.list #filter_day,
body.timeline #filter_day_timeline {
    display: flex;
}

/* body.timeline #program .header_top>div:not(.toggle, .login) {
    opacity: .5;
    pointer-events: none;
} */

.hour_line {
    position: absolute;
    top:0;
    bottom: -0;
    width:1px;
    background-color: #e2e2e2;
    z-index: -1;
}

.day_timeline_nav {
    position: relative;
    overflow: hidden;
    /* margin-bottom: 10px; */
    flex: 0 0 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 0;
    background: linear-gradient(180deg, #e6f7f9 50%, transparent);
}

.day_timeline_nav::before {
        /* content: ''; */
        position: absolute;
        left: 0;
        right:0;
        top: 0;
        bottom: 0;
        z-index: 10;
        box-shadow: 0 0 5px rgba(0,0,0,.3) inset;
        pointer-events: none; 
    }

.day_timeline_hours {
    position: relative;
    width: 100%;
    height: 60%;
    will-change: transform;
    width: auto !important;
    transform: none !important;
}
.day_timeline_hours::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 22%;
    height: 2px;
    background-color: var(--color-icon-clickable);
}

.day_timeline_hours .hour_line{
    width: 2px;
    background-color: var(--color-icon-clickable);
}

.day_timeline_hours .hour_line.half{
    top: 22%;
    bottom: 20%;
    transform: translateX(-50%);
}

.day_timeline_hours .hour_line:first-child {
    transform: translateX(0);
}
.day_timeline_hours .hour_line:last-child {
    transform: translateX(-100%);
}
.day_timeline_hours .hour_text {
    color: #404040;
    font-size: 1em;
    font-family: Bold;
    position: absolute;
    top: 25%;
    margin-left: 4px;
}

.timeline_room_name {
    position: absolute;
    top: 0;
    font-size: 13px;
    font-family: Bold;
    color: grey;
    padding: 4px 8px;
    will-change: transform;
}

.session.modal_session {
    border: none;
    padding: 0;
    margin: 0;
    text-align: left;
    box-shadow: none;
}

.session.modal_session .card-detail {
    height: auto;
}

.session.modal_session .handle {
    display: none;
}

.wrapper#program,
.wrapper#posters,
.wrapper#speakers {
    display: none;
}

body.program #program,
body.posters #posters,
body.speakers #speakers
 {
    display: flex;
}

#posters .filter_search {
    flex: 3;
}

#poster_list .empty_message:last-child {
    display: none;
}

#poster_list {
    margin-top: 0;
}

#poster_list  .poster_type_title {
    color: var(--color-icon-clickable);
    font-family: Bold;
}

.active_poster_session {
    width: calc(100% - 20px);
}

.active_poster_session>div:hover {
    background-color: transparent !important;
}

.poster {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.poster .poster_title {
    font-size: .9em;
    font-family: bold;
}

.poster .poster_session_card {
    font-size: .8em;
    line-height: 1.4em;
    margin-top: 5px;
}

.poster .poster_session_card .poster_session_title,
    .poster .poster_session_card .poster_session_info {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.poster_more {
    margin-left: 15px;
    color: var(--color-icon-clickable);
    font-size: .8em;
    cursor: pointer;
    font-weight: bold;
    flex: 0 0 auto;
}

#filter_poster_type .poster_filter {
    display: flex;
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 10px;
    cursor: pointer;
    align-items: center;
}



#filter_poster_type .poster_filter::before {
    content: attr(count);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: grey;
    margin-right: 5px;
    margin-top: 2px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    line-height: 10px;
    color: white;
    font-weight: normal;
}

#filter_poster_type .poster_filter.selected,
#filter_poster_type .poster_filter:hover {
    color: var(--color-icon-clickable);
    font-weight: bold;
}

#filter_poster_type .poster_filter.selected::before {
    background-color: var(--color-icon-clickable);
}
#filter_poster_type .poster_filter.selected.disabled {
    color: initial;
    font-weight: normal;
}
#filter_poster_type .poster_filter.selected.disabled::before {
    background-color: silver;
}

#posters .filter_types {
    display: block;
}

#posters .header_bottom {
    margin-top: 5px;
    display: none;
}
.fixed_title {
    padding: 0 5px 5px 5px;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 10;
    background-color: white;
    margin-bottom: 0;
}

#posters .content_right {
    display: flex;
}

.search_result {
    background-color: var(--color-icon-clickable);
    color: white;
    border-radius: 2px;
    padding: 0 3px;
    font-weight: normal;
}

.header_top .filter_sessions {
    flex: 0 0 40%;
}

#select_poster_sessions {
    overflow: visible;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    display: flex;
    align-items: center;
    padding: 0 10px;
    outline: none;
    max-width: 40%;
    flex: 1;
}

.select_poster_sessions {
    display: none;
    position: absolute;
    top: calc(100% - 5px);
    left: -1px;
    right: -1px;
    z-index: 150;
    background-color: white;
    padding: 5px 0;
    padding-top: 8px;
    border: 1px solid silver;
    border-radius: 4px;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

#select_poster_sessions.active .select_poster_sessions {
    display: block;
}

.poster_day_title {
    font-size: .8em;
    font-family: Bold;
    padding: 0 10px;
    margin-bottom: 3px;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter_sessions .poster_session {
    font-size: .8em;
    padding: 3px 10px;
    padding-left: 20px;
    cursor: default;
    display: flex;
}

.filter_sessions .active_poster_session .poster_session,
.filter_sessions .active_poster_session .poster_session_all {
    padding: 0;
}

.filter_sessions .poster_session_time{
    font-family: Bold;
    flex: 0 0 auto;
    margin-right: 3px;
}
.filter_sessions .poster_session_title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 3px;
}
.filter_sessions .poster_session:hover,
.poster_session_all:hover, 
.filter_sessions .poster_session.selected {
    background-color: silver;
}

.filter_sessions .poster_session_all {
    padding-left: 10px;
    font-size: .8em;
    font-family: Bold;
}

#modal .session_interventions {
    padding-right: 0;
}

.filter_day #slider{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--color-icon-clickable);
    opacity: .3;
    transform-origin: 0 0;
    z-index: 11;
    will-change: transform;
    pointer-events: none;
}

.timeline_session .session.narrow:not(.extended)::before,
.timeline_session.open_ended::before {
    content: '';
    position: absolute;
    right: -0;
    top: -0;
    bottom: -0;
    width: 50%;
    z-index: 20;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.timeline_room:nth-child(odd) .timeline_session.open_ended::before {
    width: 30%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #e6f7f9 80%, #e6f7f9 100%);
}

.timeline_room:nth-child(even) .timeline_session.open_ended::before {
    width: 30%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #d9e8ea 80%, #d9e8ea 100%);
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
        line-height: 18px;
    }
    .content_left {
        display: none;
    }
    .toggle_filter {
        /* height: 20px; */
        padding: 5px;
    }

    .header input,.header select {
        height: 30px;
        padding: 0 5px;
        font-size: .7em;
        padding-right: 25px;
    }
    .header_bottom .select_type {
        display: none;
    }

    .filter_types::before, .filter_locations::before {
        right: 1px;
    }

    .header_bottom {
        margin-top: 10px;
    }

    #modal .content {
        max-width: unset;
        max-height: unset;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .pdf_session_detail_button {
        padding: 10px;
    }
    .session {
        padding: 10px;
        background-color: #fff;
    }
    .card .card-image {
        width: 60px;
        height: 60px;
    }
    .toggle_filter {
        line-height: 1.2em;
    }

    #posters .header_bottom {
        display: flex;
    }
    .filter_search .icon {
        right: 2px;
        background-size: 18px;
    }
    .icon.searching {
        right: 0;
    }
    .select_poster_sessions {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 300;
        border: none;
        border-radius: 0;
        padding-top: 15px;
    }
    .speaker_container {
        width: auto;
    }
}

.kiosk_portrait .content_left,
.kiosk_portrait .header_bottom,
.kiosk_portrait .filter_search,
.kiosk_portrait .filter_types,
.kiosk_portrait .hour,
.kiosk_portrait div::-webkit-scrollbar,
.kiosk_portrait .session .session_location,
.kiosk_portrait .header_bottom .select_type {
    display: none;
}

.kiosk_portrait #select_location {
    font-size: 1.6em;
    background-color: var(--color-icon-clickable);
    color: white;
    font-family: Bold;
    padding: 0 10px;
    height: 3em;
}


.kiosk_portrait .header_bottom .filter_day {
    border: none;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.kiosk_portrait .session, .kiosk_portrait .poster {
    box-shadow: none;
}

.kiosk_portrait .toggle_filter {
    border-right: 1px solid #eee;
}

.kiosk_portrait .session_card_speaker {
    border: none;
    padding: 1px 6px;
    background-color: #f2f2f2;
    font-size: .8em;
}


.kiosk_portrait .filter_locations {
    border: none;
    border-radius: 0;
}

.kiosk_portrait .header_top>div {
    margin-right: 0;
}
.kiosk_portrait .header_top {
    margin: -10px;
    margin-bottom: 0;
}
.kiosk_portrait .content {
    margin-top: 10px;
}

.kiosk_portrait .filter_types::before, .kiosk_portrait .filter_locations::before, .kiosk_portrait .filter_sessions::before {
    right: 20px;
    width: 30px;
    opacity: 1;
    filter: invert(1);
}

body.kiosk_portrait {
    font-size: 2vw;
}

.font_color_text {
    color: #3f3f3f;
}

.font_color_main {
    color: var(--color-icon-clickable);
}

.bg_color_main {
    background-color: var(--color-icon-clickable);
}

.bg_color_body {
    background-color: var(--color-icon-clickable-light);
}

.bg_color_clickable {
    background-color: #fff;
}

#hand {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    bottom: 25%;
    left: 50%;
    width: 20%;
    transform: translateX(-50%);
    animation-name: hand;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-direction: alternate;
    transform: opacity .5s;
    z-index: 100;
}

#hand.show {
    opacity: .5;
}

.no_touch #hand.show {
    opacity: 0;
}

.no_touch .filter_locations::before {
    background-image: none;
}

.no_touch .session.has-detail .handle {
    opacity: 0;
}

@keyframes hand {
    from {
        transform: translate(-50%, -100%);
    }
    to {
        transform: translate(-50%, 0%);
    }
}

.info.group_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    grid-gap: 10px;
}

.timeline_session.in_modal {
    margin: 0 !important;
    width: auto !important;
}

.timeline_session.in_modal .session_start_time {
    display: none
}

.timeline_session.in_modal .card-top {
    justify-content: center;
    align-items: center;
}

body.loading:before
{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    /* background-color: rgba(255,255,255,.7); */
    background-color: var(--color-icon-clickable-light);
    background-image: url('img/loading.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10vmin;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 3vmin;
    color: #d50303;
}

body.error:before {
    --error-message: 'Error loading data';
    content: var(--error-message);
    background-image: none;
}

body .wrapper {
    transition: opacity .2s ease-out;
}

body.error .wrapper,
body.loading .wrapper {
    opacity: 0;
}


.toggle {
    flex: 0 0 25% !important;
    display: flex;
    border: 1px solid silver;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    font-size: .8em;
    -webkit-user-select: none;
    user-select: none;
    z-index: 10;
    text-transform: uppercase;
    margin-right: 15px !important;
}

.toggle > div {
    background-color: #fff;
    padding: 10px; 
    flex: 1;  
}

body:not(.show_toggle) .toggle {
    display: none;
}
body:not(.show_pdf_session_detail) .pdf_session_detail_button {
    display: none;
}
.session:not(.has-detail) .pdf_session_detail_button {
    display:none;
}

body.posters .toggle_posters,
body.program .toggle_program {
    color: white;
    background-color: var(--color-icon-clickable);
}

.toggle_program {
    border-right: 1px solid silver;
}

button.swal2-confirm.swal2-styled {
    background-color: var(--color-icon-clickable);
}

#vanilla-toast {
  border-radius: 4px;
}

#vanilla-toast.success {
  background: rgba(92, 184, 92, 1);
}

#vanilla-toast.info {
  background: rgba(91, 192, 222, 1);
}

#vanilla-toast.warning {
  background: rgba(236, 151, 31, 1);
}

#vanilla-toast.error {
  background: rgba(201, 48, 44, 1);
}


@media print {
    html {
        overflow: initial;
    }
    body, .wrapper, .content, .content_right {
        position: unset;
        height: auto;
        display: block;
        margin: 0;
    }
    .header, .content_left {
        display: none !important;
    }
    #session_list {
        position: unset;
        height: auto;
        margin: 0;
        z-index: 1000;
        background-color: #fff;
    }
    #session_list .day {
        display: table;
    }    
    .day_title {
        display: table-header-group;
        position: relative;
        background-color: transparent;
    }
    .hour {
        margin-bottom: 0;
    }
    .session {
        break-inside: avoid;
        transform: translateY(5px);
    }
    .session .card-controls {
        display: none;
    }
}

