/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.agenda-sessions-archive-wrap {
     background-color: #fff;
    position: relative;
}
section.agenda-archive-wrapper.wide {
    padding-top: 30px;
}
.agenda-sessions-archive-wrap.wide,
section.agenda-archive-wrapper.wide .content-title,
section.agenda-archive-wrapper.wide .breadcrumbs-wrapper{
    width: calc(100vw - 40px);
    margin-left: calc(-50vw + 50% + 20px);
}
section.agenda-archive-wrapper.wide .breadcrumbs-wrapper{
    margin-bottom: 20px;
}
section.agenda-archive-wrapper.wide .event-website-btn {
    display: none!important;
}
.agenda-sessions-archive-wrap.wide header.page-header {
    position: absolute;
    right: 0;
    top: -94px;
    width: 660px;
    max-width: 50%;
    z-index: 1;
}
@media screen and (max-width: 996px) {
    .agenda-sessions-archive-wrap.wide header.page-header {
        display: none;
    }
}

.agenda-archive-wrapper .content-title {
    margin-bottom: 40px;
}

.agenda-archive-wrapper .breadcrumbs-wrapper {
    margin-bottom: 38px;
}

header.page-header {
    margin-bottom: 40px;
}

.agenda-sessions-sessions ul.days-tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}
.agenda-sessions-sessions ul.days-tabs li {
    margin: 0;
    position: relative;
}

.agenda-sessions-sessions ul.days-tabs li span.num-sessions-day {
    position: absolute;
    font-size: 13px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0063d3;
    color: #f1bc0d;
    display: block;
    right: -4px;
    top: -4px;
    text-align: center;
    line-height: 18px;
    z-index: 3;
}

.agenda-sessions-sessions ul.days-tabs li a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 16px 40px;
    background-color: transparent;
    text-align: center;
    will-change: tranform;
    transition: .25s;
    text-transform: uppercase;
}
.agenda-sessions-sessions ul.days-tabs li a:hover {
    background-color: #ffc917;
}

.agenda-sessions-sessions ul.days-tabs li.active a{
    background-color: #ffc917;
}
.agenda-sessions-sessions ul.days-tabs li.active a:hover {
    background-color: #0063d3;
    color: #fff;
}
.agenda-sessions-sessions .sessions-panes{
    padding-top: 20px;
    border-top: 1px solid #dae0eb;
}
.agenda-sessions-sessions .sessions-panes >.s-pane {
    transition: opacity .25s ease-in;
    display: none;
}
.agenda-sessions-sessions .sessions-panes >.s-pane.active{
    display: block;
    animation: fadeInFromNone 0.5s ease-out;
}

.agenda-category-buttons {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agenda-category-buttons a {
    background: #cad3e5;
    padding: 10px 40px;
    display: inline-block;
    transition: .25s;
    will-change: auto;
    text-align: center;
    text-decoration: none;
    color: #000;
}
.agenda-category-buttons a + a {
    margin-left: 10px;

    @media only screen and (max-width: 576px) {
        margin-left: 0;
    }

}
.agenda-category-buttons a.active {
    background: #22317f;
    color: #fff;
}

.category-panes {
    position: relative;
    min-height: 500px;
}

.grid-loader {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .05);
    left: 0;
    top: 0;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* ZT:: The CSS Loader */

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
    box-sizing: border-box;
}
.lds-spinner {
    color: currentColor;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3.2px;
    left: 36.8px;
    width: 6.4px;
    height: 17.6px;
    border-radius: 20%;
    background: currentColor;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* ZT:: The CSS Loader END */

.category-panes .c-pane{
    transition: opacity .25s ease-in;
    display: none;
    position: relative;
}

.category-panes .c-pane.active{
    display: block;
    animation: fadeInFromNone 0.5s ease-out;
}

.agenda-sessions-sessions .session-item,
.speaker-sessions-items .session-item{
    background-color: #f8f8f9;
    border-bottom: 1px solid #e3e3e8;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: center;
    padding: 25px 35px;
    position: relative;
}

.agenda-sessions-sessions .session-item .session-permalink-arrow,
.speaker-sessions-items .session-item .session-permalink-arrow {
    display: flex;
    max-width: 20px;
    justify-content: end;
}
.agenda-sessions-sessions .session-item .session-permalink-arrow img,
.speaker-sessions-items .session-item .session-permalink-arrow img{
    transform: scale(1.5);
}

.agenda-sessions-sessions .session-item a.session-title,
.speaker-sessions-items .session-item a.session-title{
    color: #070721;
    text-decoration: none;
    overflow-wrap: break-word;
}
.agenda-sessions-sessions .session-item  .session-times,
.speaker-sessions-items .session-item .session-times{
    min-width: 135px;
}
.agenda-sessions-sessions .session-item .room-and-channel,
.speaker-sessions-items .session-item  .room-and-channel{
    margin-left: auto;
    width: 20%;
}
.agenda-sessions-sessions .session-item .title-and-type,
.speaker-sessions-items .session-item .title-and-type{
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.agenda-sessions-sessions .session-item .title-and-type .session-type,
.speaker-sessions-items .session-item .title-and-type .session-type{
    color: #95a1b9;
    font-size: 15px;
}
.agenda-sessions-sessions .session-item .title-and-type .session-color,
.speaker-sessions-items .session-item .title-and-type .session-color{
    display: block;
    position: absolute;
    width: 4px;
    background-color: #ccc;
    margin-left: -16px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
}
.agenda-sessions-archive-wrap.wide .searchFieldWrap {
    width: 100%;
}
.agenda-sessions-archive-wrap .searchFieldWrap,
.agenda-speakers-wrap .search-form{
    display: inline-flex;
    position: relative;
    width: 50%;
}
.agenda-sessions-archive-wrap .searchFieldWrap .clear-search{
    position: absolute;
    right: 42px;
    line-height: 1;
    background-color: #f1f3f9;
    color: #a4acbc;
    padding: 4px 14px 4px 26px;
    cursor: pointer;
    transition: all .2s ease-in;
}
.agenda-sessions-archive-wrap .searchFieldWrap .clear-search i {
    font-style: normal;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.agenda-sessions-archive-wrap .searchFieldWrap .clear-search:hover,
.agenda-sessions-archive-wrap .searchFieldWrap .clear-search:focus{
    background-color: #22317f;
    color: #fff;
}

.agenda-sessions-archive-wrap.wide .search-form {
    text-align: right;
}
.agenda-sessions-archive-wrap .search-form input.search-field,
.agenda-speakers-wrap .search-form input.search-field{
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #22317f;
    width: auto;
    min-width: 100%;
    outline: none;
    font-size: 18px;
    color: #8794ad;
    transition: color .3s ease-in;
}
.agenda-sessions-archive-wrap .search-form button,
.agenda-speakers-wrap .search-form button{
    padding: .4em .8em;
    margin-left: -35px;
    background: transparent;
    border: none;
}

.days-and-filters .tabs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filters-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(165, 165, 165, .8);
    z-index: 4;
    display: none;
}

.filters-overlay.shown {
    display: block;
    animation: fadeInFromNone 0.5s ease-out;
}
.sess-filters {
    position: relative;
    z-index: 5;
}
.sess-filters ul.filter-buttons{
    list-style: none;
    margin:0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.sess-filters ul.filter-buttons li {
    margin: 0;
}
.sess-filters ul.filter-buttons .filter-toggle a,
.speakers-filters .sf-filters a.sf-toggle{
    display: flex;
    height: 40px;
    width: 45px;
    background-color: #ffc917;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .25s ease-in;
}
.sess-filters ul.filter-buttons .filter-toggle a .num-filters,
.speakers-filters .sf-filters a.sf-toggle .num-filters{
    position: absolute;
    font-size: 13px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #22317f;
    color: #f1bc0d;
    display: block;
    right: -9px;
    top: -9px;
    text-align: center;
    line-height: 18px;
}
.sess-filters ul.filter-buttons .filter-toggle a >img,
.speakers-filters .sf-filters a.sf-toggle >img {
    width: 20px;
    height: 20px;
    /*filter: invert(18%) sepia(53%) saturate(2410%) hue-rotate(212deg) brightness(85%) contrast(91%);*/
}
.sess-filters ul.filter-buttons .filter-toggle a:hover,
.sess-filters ul.filter-buttons .filter-toggle a.active,
.speakers-filters .sf-filters a.sf-toggle:hover,
.speakers-filters .sf-filters a.sf-toggle.active{
    background-color: #22317f;
}
.sess-filters ul.filter-buttons .filter-toggle a:hover img,
.sess-filters ul.filter-buttons .filter-toggle a.active img,
.speakers-filters .sf-filters a.sf-toggle:hover img,
.speakers-filters .sf-filters a.sf-toggle.active img{
    /* filter: invert(86%) sepia(34%) saturate(2828%) hue-rotate(339deg) brightness(104%) contrast(111%); */
    filter: brightness(0) saturate(100%) invert(90%) sepia(90%)
}

.sess-filters ul.filter-buttons .filter-toggle a:hover .num-filters,
.sess-filters ul.filter-buttons .filter-toggle a.active .num-filters {
    background: #f1bc0d;
    color: #22317f;
}

.agenda-filters {
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 10;
    background: #22317f;
    padding: 30px;
    min-width: 290px;
    max-width: 90%;
    font-size: 15px;
    overflow-x: hidden;
    display: none;
}
.agenda-filters.open {
    display: block;
    animation: fadeInFromNone 0.5s ease-out;
}

.agenda-filters select {
    width: 100%;
    margin-bottom: 5px;
}
.agenda-filters select[name^=speakers] {
    margin-bottom: 30px;
}
.agenda-filters .apply-btn{
    background: #cad3e5;
    padding: 10px 40px;
    display: block;
    transition: .25s;
    will-change: auto;
    text-align: center;
    text-decoration: none;
    color: #000;
    width: 100%;
    margin-bottom: 10px;
    border:none;
    margin-top: 26px;
    font-size: 16px;
}
.agenda-filters .clear-btn {
    padding: 10px 40px;
    display: block;
    transition: .25s;
    will-change: auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #22317f;
    width: 100%;
    border: 1px solid #cad3e5;
    font-size: 16px;
}

/* Select 2 */
.select2-container {
    margin-bottom: 10px;
    display: block;
}
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single{
    border:none;
    position: relative;
}

.select2-selection.select2-selection--multiple:after{
    content: "";
    width: 20px;
    height: 13px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform:translateY(-50%) rotate(90deg);
    background-image: url("../svg/arrow-dark.svg");
    background-repeat:  no-repeat;
    background-size: contain;
}
.select2-selection.select2-selection--single:not(.view-toggle-selector):not(.onsite-online-selector):after{
    content: "";
    width: 12px;
    height: 10px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background-image: url(../svg/arrow-dark.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.select2-selection.select2-selection--single:not(.view-toggle-selector):not(.onsite-online-selector) .select2-selection__clear {
    padding-right: 10px;
}
.select2-selection.select2-selection--multiple[aria-expanded=true]:after,
.select2-selection.select2-selection--single[aria-expanded=true]:after{
    transform:translateY(-50%) rotate(270deg);
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single{
    border-radius: 0;
    padding: 0;
    border: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered{
    display: inline-flex;
    gap: 3px;
    flex-wrap: wrap;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--single .select2-selection__choice{
    font-size: 11px;
    background-color: #cad3e5;
    border-radius: 0;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection--single .select2-selection__choice__remove{
    position: relative;
    border-top-left-radius:0;
    border-bottom-left-radius:0;
    border-right: none;
    color: #5d5d5e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}
.select2-container--default .select2-selection--multiple{
    display: flex;
    padding: 10px 20px 10px 10px!important;
}
.select2-container--default .select2-search--inline .select2-search__field::placeholder {
    color: #070721;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear{
    display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display,
.select2-container--default .select2-selection--single .select2-selection__choice__display{
    padding-left: 5px;
}

.select2-container .select2-search--inline .select2-search__field {
    font-family: PFHighwaySansPro, sans-serif;
    font-size: 16px;
}
.select2-container--default .select2-results__option--selectable,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    font-size: 16px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

/* Onsite Online Select2 */
.select2-container .select2-selection--single.onsite-online-selector {
    border: none;
    border-radius: 0;
    background-color: #ffc917;
    height: 40px;
    width: 76px;
    transition: background-color .2s ease-in;
}
.select2-container .select2-selection--single.onsite-online-selector:hover {
    background-color: #22317f;
}
.select2-container .select2-selection--single.onsite-online-selector:hover span{
    color: #fff;
}

.select2-container .select2-selection--single.onsite-online-selector .select2-selection__arrow {
    display: none;
}
.select2-container .select2-selection--single.onsite-online-selector .select2-selection__rendered {
    padding: 0;
    text-align: center;
    line-height: 40px;
}
.select2-container .select2-selection--single.onsite-online-selector .select2-search__field {
    display: none;
}
.select2-dropdown.onsite-online-options .select2-results__option.select2-results__option--selectable {
    background-color: #cad3e5;
    color: #000;
    font-size: 18px;
}
.select2-dropdown.onsite-online-options .select2-results__option {
    text-align: center;
}
.select2-dropdown.onsite-online-options .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #cad3e5;
    color: #000;
    font-size: 18px;
}
.select2-dropdown.onsite-online-options .select2-results__option--selected {
    background-color: #22317f!important;
    color: #fff!important;
}
.select2-dropdown.onsite-online-options.select2-dropdown--below {
    border: none;
    border-radius: 0;
}

/* View Toggle Select2 */
.select2-container .select2-selection--single.view-toggle-selector {
    border: none;
    border-radius: 0;
    background-color: #ffc917;
    height: 40px;
    width: 140px;
    transition: background-color .2s ease-in;
}
.select2-container .select2-selection--single.view-toggle-selector:hover {
    color: #fff;
    background-color: #22317f;
}
.select2-container .select2-selection--single.view-toggle-selector:hover > span.select2-selection__rendered {
    color: #fff;
}
.select2-container .select2-selection--single.view-toggle-selector:hover > span.select2-selection__rendered:before {
    filter: brightness(0) saturate(100%) invert(90%) sepia(90%);
}
.select2-container .select2-selection--single.view-toggle-selector .select2-selection__arrow {
    display: none;
}
.select2-container .select2-selection--single.view-toggle-selector .select2-selection__rendered {
    padding: 0;
    text-align: center;
    line-height: 40px;
}
.select2-container .select2-selection--single.view-toggle-selector .select2-search__field {
    display: none;
}
.select2-dropdown.view-toggle-options .select2-results__option.select2-results__option--selectable {
    background-color: #cad3e5;
    color: #000;
    font-size: 18px;
}
.select2-dropdown.view-toggle-options .select2-results__option {
    text-align: center;
}
.select2-dropdown.view-toggle-options .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #cad3e5;
    color: #000;
    font-size: 18px;
}
.select2-dropdown.view-toggle-options .select2-results__option--selected {
    background-color: #22317f!important;
    color: #fff!important;
}
.select2-dropdown.view-toggle-options.select2-dropdown--below {
    border: none;
    border-radius: 0;
}
#select2-view_toggle-container{
    position: relative;
    padding-left: 20px;
}
#select2-view_toggle-container:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform:translateY(-50%);
}
#select2-view_toggle-container.option-selected-detailed:before {
    background-image: url("../svg/icons8_list_1.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
#select2-view_toggle-container.option-selected-synoptic:before {
    background-image: url("../svg/icons8_video_skimming_3.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

    /* Single Session */
.agenda-session-single h1.programme-heading{
    color: #22317f;
    font-weight: 400;
    font-size: 80px;
    line-height: 84px;
}
.agenda-session-single .session-dates {
    color: #22317f;
    margin-bottom: 10px;
}
.agenda-session-single .timezone{
    color: #adbbd6;
}
.agenda-session-single .session_terms {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    align-items: flex-start;
}
.agenda-session-single .session_terms span {
    background: #dae1ed;
    display: block;
    color: #000;
    padding: 10px 13px 10px 36px;
    font-size: 15px;
    position: relative;
}
.agenda-session-single .session_terms span:before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    transform:translateY(-50%);
}

.agenda-session-single .session_terms span.session_hall:before {
    background-image: url("../svg/location_fixed.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.agenda-session-single .session_terms span.session_livetrack:before {
    background-image: url("../svg/channel.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.agenda-session-single .session_terms span.session_type:before {
    background-image: url("../svg/session_type.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.agenda-session-single .session_terms .join-session-btn {
    margin-left: auto;
    position: relative;
    padding: 14px 62px;
    background-color: #22317f;
    color: #fff;
    transition: background-color .2s ease-in;
    font-weight: 300;
}
.agenda-session-single .session_terms .join-session-btn:before{
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform:translateY(-50%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(39deg) brightness(111%) contrast(101%);
}
.agenda-session-single .session_terms .join-session-btn.started:before {
    background-image: url("../svg/icons8_live_video_on_3.svg");
}

.agenda-session-single .session_terms .join-session-btn.not-started:before {
    background-image: url("../svg/icons8_time_3.svg");
}

.agenda-session-single .session_terms .join-session-btn.on-demand:before {
    background-image: url("../svg/vod_b50a52aa96.svg");
}

.agenda-session-single .session_terms .join-session-btn:after {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.25586' y1='11.9968' x2='21.445' y2='11.9968' stroke='%23FFFFFF' stroke-width='1.5'/%3E%3Cpath d='M13.7812 3.86926L21.8921 11.9802L13.7812 20.0911' stroke='%23FFFFFF' stroke-width='1.5'/%3E%3C/svg%3E%0A");
    top: 50%;
    right: 20px;
    width: 24px;
    height: 24px;
    pointer-events: none;
    transform:translateY(-50%);
}
.agenda-session-single .session_terms .join-session-btn:hover {
    background-color: #0063D3;
}

.agenda-session-single h2.session-title{
    font-size: 28px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
}
.agenda-session-single .subsessions {
    margin-bottom: 45px;
}
.agenda-session-single .subsessions .subsession-item {
    display: flex;
    background: #f8f8f9;
    padding: 30px 35px;
    position: relative;
}
.agenda-session-single .subsessions .subsession-item + .subsession-item {
    border-top: 1px solid #e3e3e8;
}
.agenda-session-single .subsessions .subsession-item .start-time {
    min-width: 10%;
    display: flex;
    flex-direction: column;
}
.agenda-session-single .subsessions .subsession-item .start-time .pres-date {
    /*...*/
}
.agenda-session-single .subsessions .subsession-item .start-time .pres-ref {
    font-size: 13px;
    padding-left: 2px;
    color: #22317f;
}
.agenda-session-single .subsessions .subsession-item .sub-speakers,
.agenda-session-single .subsessions .subsession-item .sub-speakers a{
   color: #22317f;
    font-size: 15px;
}

.agenda-session-single .session-speakers {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px;
}

.agenda-session-single .session-speakers .speaker-card,
.agenda-speaker-single .speaker-card{
    max-width: 150px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    animation: fadeInFromNone 0.2s ease-out;
}
.agenda-speaker-single .speaker-card.speaker-single{
    max-width: 250px;
}
.agenda-session-single .session-speakers .speaker-card .speaker-img,
.agenda-speaker-single .speaker-card .speaker-img{
    margin-bottom: 16px;
    font-weight: 600;
}
.agenda-session-single .session-speakers .speaker-card .speaker-img {
    max-height: 150px;
    overflow-y: hidden;
}
.agenda-session-single .session-speakers .speaker-card .speaker-img img,
.agenda-speaker-single .speaker-card .speaker-img img,
.speakers-grid .speaker-card .speaker-img img{
    width: 100%;
    height: auto;
}
.agenda-session-single .session-speakers .speaker-card .speaker-name,
.agenda-speaker-single .speaker-card .speaker-name,
.speakers-grid .speaker-card .speaker-name {
    margin-bottom:0;
    font-weight: 500;
    line-height: 1.2;
}
.agenda-speaker-single .speaker-card .speaker-name {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}

.agenda-session-single .session-speakers .speaker-card .speaker-country,
.agenda-speaker-single .speaker-card .speaker-country,
.speakers-grid .speaker-card .speaker-country {
    margin-bottom:  36px;
}
.agenda-session-single .session-speakers .speaker-card  .speaker-country,
.agenda-speaker-single .speaker-card .speaker-country,
.speakers-grid .speaker-card .speaker-country {
    font-size: 15px;
    font-weight: 300;
}

.agenda-speaker-single .speaker-card .speaker-country {
    font-size: 18px;
}

.agenda-session-single .speakers-heading {
    font-size: 1.4rem;
    font-weight: 400;
    color: #22317f;
    margin-bottom: 20px;
}

.agenda-speaker-single h1.speaker-heading {
    color: #22317f;
    font-weight: 400;
    font-size: 80px;
    line-height: 84px;
}

.agenda-speaker-single h2.speakers-session-heading{
    font-size: 28px;
    font-weight: 400;
    color: #22317f;
}

.agenda-speaker-single .session-day {
    font-weight: 400;
    font-size: 17px;
    padding: 20px 0;
}

.single-agenda-session .local-times {
    font-size: 16px;
    color: #adbbd6;
    min-height: 16px;
    display: inline-block;
}
.single-agenda-session .local-times em{
    font-style: normal;
}

.agenda-speakers-wrap .page-title {
    color: #22317f;
    font-weight: 400;
    font-size: 80px;
    line-height: 84px;
}

.speakers-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
}

.speakers-grid .speaker-card {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.agenda-speakers-wrap .search-form {
    margin-bottom: 20px;
}
.agenda-single-session-wrap .content-title h1,
.agenda-single-speaker .content-title h1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.agenda-back-btn {
    transition: .25s;
    width:86px;
    height: 40px;
    line-height: 1;
    background-color: #ffc917;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 18px;
    position: relative;
}

.agenda-back-btn:before {
    display: block;
    content: "";
    position: absolute;
    width: 8px;
    height: 13px;
    left: 11px;
    background-image: url("../svg/arrow-dark.svg");
    background-repeat:  no-repeat;
    transform:  translateY(-50%) rotate(180deg);
    top: 50%;
}

.agenda-back-btn:hover,
.agenda-back-btn:focus {
    background-color: #0063d3;
    color: #fff;
}

h1.agenda-event-title,
.content-title h1.agenda-event-title{
    font-size: 44px;
    font-weight: 500;
}

.agenda-archive-wrapper .event-meta {
    display: flex;
    gap: 40px;
}
.agenda-archive-wrapper .event-meta span {
    padding-left: 30px;
    position: relative;
}
.agenda-archive-wrapper .event-meta span:before {
    content: '';
    display: block;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);

}
.agenda-archive-wrapper .event-meta .event_duration:before {
    background-image: url("../svg/date.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
}

.agenda-archive-wrapper .event-meta .event_location:before {
    background-image: url("../svg/location_fixed.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
}

.agenda-archive-wrapper .content-title .title-wrap {
    display: flex;
    justify-content: space-between;
}
.agenda-archive-wrapper .content-title .title-wrap .event-reg-and-website {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media only screen and (max-width: 991.99px){
    .agenda-archive-wrapper .content-title .title-wrap .event-reg-and-website .event-reg-button {
        margin-bottom: 30px;
    }
}
.agenda-archive-wrapper .content-title .title-wrap .event-reg-and-website .event-reg-button {
    background-color: #22317f;
    color: #fff;
    padding: 15px 30px;
    position: relative;
    line-height: 1;
    display: flex;
    align-items: center;
}
.agenda-archive-wrapper .content-title .title-wrap .event-reg-and-website .event-reg-button:hover,
.agenda-archive-wrapper .content-title .title-wrap .event-reg-and-website .event-reg-button:focus {
    background-color: #0063d3;
}
.agenda-archive-wrapper .content-title .title-wrap  .event-website-btn {
    min-width: 180px;
    color: #4d5887;
    background-color: #e4e8ef;
    text-align: left;
    padding: 15px 70px 15px 30px;
    position: relative;
    line-height: 1;
    display: flex;
    align-items: center;
}
.agenda-archive-wrapper .content-title .title-wrap  .event-website-btn:hover,
.agenda-archive-wrapper .content-title .title-wrap  .event-website-btn:focus {
    background-color: #22317f;
    color: #fff;
}

.agenda-archive-wrapper .content-title .title-wrap  .event-website-btn:after {
    content: '';
    display: block;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background-image: url("../svg/event_website_info.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.agenda-archive-wrapper .content-title .title-wrap  .event-website-btn:hover:after,
.agenda-archive-wrapper .content-title .title-wrap  .event-website-btn:focus:after {
    filter: brightness(0) invert(1);
}

.content-description.speakers h2 {
    margin-bottom: 40px;
}

@media only screen and (max-width: 991.9999px){
    .agenda-archive-wrapper .content-title {
        display: flex;
        flex-direction: column;
    }
    .agenda-archive-wrapper .content-title .title-wrap {
        flex-direction: column;
    }
    .agenda-archive-wrapper .content-title .title-wrap .event-website-btn {
        max-width: 220px;
        margin-bottom: 30px;
    }

    .agenda-sessions-archive-wrap .search-form input.search-field, .agenda-speakers-wrap .search-form input.search-field {
        min-width: 100%;
    }

    .agenda-archive-wrapper .content-title .title-wrap {
        padding-bottom: 20px;
    }
    .agenda-session-single .subsessions .subsession-item .start-time {
        min-width: 20%;
    }

    .agenda-sessions-archive-wrap .searchFieldWrap, .agenda-speakers-wrap .search-form {
        width: 80%;
    }

}
@media only screen and (max-width:767px){
    .days-and-filters .tabs-header {
        flex-direction: row;
        align-items: flex-start;
    }
    .agenda-sessions-sessions ul.days-tabs li a {
        padding: 14px 24px;
    }
    .category-panes .c-pane .session-item {
        padding-left: 0;
        padding-right: 0;
    }
    .agenda-sessions-sessions .session-item .session-times, .speaker-sessions-items .session-item .session-times {
        min-width: 60px;
        text-align: center;
    }

    .agenda-sessions-archive-wrap .search-form input.search-field, .agenda-speakers-wrap .search-form input.search-field {
        min-width: 100%;
    }
    .agenda-single-speaker .content-title .title-wrap h1 {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        flex-flow: column;
        gap: 20px;
    }

    .agenda-session-single .session-speakers .speaker-card .speaker-img, .agenda-speaker-single .speaker-card .speaker-img {
        margin-bottom: 30px;
    }

    .agenda-sessions-archive-wrap .searchFieldWrap, .agenda-speakers-wrap .search-form {
        width: 100%;
    }

}
.agenda-session-single .subsessions .subsession-item.has-abstract {
    padding-right: 180px;
}
.abstract-btn {
    background: #cad3e5;
    padding: 10px 25px;
    display: inline-block;
    transition: .25s;
    will-change: auto;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    position: absolute;
    right: 38px;
    top: 50%;
    transform: translateY(-50%);
}

.abstract-btn-small {
    padding: 5px 15px;
    display: inline-block;
    background: #cad3e5;
    margin-top: 5px;
    margin-bottom: 5px;
}

.agenda-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.agenda-modal .modal-content {
    position: absolute;
    background-color: #fefefe;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    overflow-y: scroll;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.agenda-modal .modal-content ::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.agenda-modal .modal-content {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.agenda-modal .close {
    color: #aaa;
    position: sticky;
    left: 99%;
    top: 0;
    font-size: 28px;
    font-weight: bold;
}

.agenda-modal .close:hover,
.agenda-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#abstractsModal #modalContent .abstract-title{
    color: #22317F;
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 1.2;
}
#abstractsModal #modalContent .abstract-authors,
#abstractsModal #modalContent .abstract-authors-string {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #22317F;
}
#abstractsModal #modalContent .abstract-section {
    margin-bottom: 20px;
}

#abstractsModal #modalContent .abstract-section .abstract-section-title {
    font-size: 22px;
    line-height: 30px;
}

#abstractsModal #modalContent .abstract-section .abstract-section-content {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
}
#abstractsModal #modalContent .abstract-section .abstract-section-content p {
    margin-bottom: 15px;
}

div.session-objectives {
    margin-bottom: 40px;
    font-weight: 300;
}

div.session-objectives h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
}
div.session-objectives ol {
    counter-reset: list-counter;
}
div.session-objectives ul li,
div.session-objectives ol li{
    padding-left: 20px;
    position: relative;
}
div.session-objectives ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #070721;
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
div.session-objectives p {
    margin-bottom: 10px;
}
div.session-objectives ol li::before {
    counter-increment: list-counter;
    content: counter(list-counter) ".";
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: #070721;
    position: absolute;
    left: 0;
}

@media only screen and (max-width:991px){
    .agenda-session-single .subsessions .subsession-item.has-abstract {
        padding-right: 35px;
    }

    .agenda-session-single .subsessions .subsession-item.has-abstract .abstract-btn {
        display: none;
    }

    .agenda-session-single .subsessions .subsession-item.has-abstract .abstract-btn-below {
        display: inline-block!important;
        background: #cad3e5;
        padding: 10px 25px;
        transition: .25s;
        will-change: auto;
        text-align: center;
        text-decoration: none;
        color: #000;
        margin-top: 10px;
    }
}

@media only screen and (max-width:644px){
    .agenda-sessions-sessions ul.days-tabs li a {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media only screen and (max-width:574px){
    .days-and-filters .tabs-header {
        flex-direction: column-reverse;
        align-items: end;
        justify-content: normal;
        gap: 10px;
    }
}

@media only screen and (max-width: 467px){
    .agenda-archive-wrapper .content-title .title-wrap .event-website-btn {
        /*max-width: 100%!important;*/
        /*width: 100%!important;*/
        /*margin-bottom: 30px;*/
        display: none;
    }
    .agenda-archive-wrapper .event-meta {
        flex-direction: column;
        gap: 15px;
    }
    .agenda-sessions-sessions .session-item .session-permalink-arrow, .speaker-sessions-items .session-item .session-permalink-arrow{
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .agenda-sessions-sessions .session-item, .speaker-sessions-items .session-item{
        flex-direction: column;
        align-items: flex-start;
        padding: 40px!important;
    }
    .agenda-sessions-sessions .session-item .room-and-channel, .speaker-sessions-items .session-item .room-and-channel{
        width: auto;
        margin-left: 0;
        padding-left: 16px;
    }

    .agenda-sessions-sessions .session-item .title-and-type .session-color,
    .speaker-sessions-items .session-item .title-and-type .session-color{
        height: 80%;
        margin-left: 0;
        left: 0;
    }
    .agenda-sessions-sessions .session-item .title-and-type, .speaker-sessions-items .session-item .title-and-type {
        padding-left: 15px;
        width: 95%;
    }

    .agenda-category-buttons {
        display: flex;
        justify-content: space-evenly;
    }

    .agenda-speaker-single .speaker-card.speaker-single {
        max-width: 100%;
    }

    .agenda-session-single .subsessions .subsession-item {
        display: flex;
        background: #f8f8f9;
        padding: 15px 25px;
        flex-direction: column;
        gap: 5px;
    }
    .agenda-session-single .session-speakers .speaker-card {
        max-width: unset;
        width: 45%;
    }
    h1.agenda-event-title, .content-title h1.agenda-event-title {
        line-height: 45px;
    }

    .agenda-sessions-sessions .session-item .session-times, .speaker-sessions-items .session-item .session-times {
        padding-left: 16px;
    }

}


@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@keyframes fadeInFromNoneFlex {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: flex;
        opacity: 0;
    }

    100% {
        display: flex;
        opacity: 1;
    }
}

[x-cloak] { display: none !important; }

/* Synoptic Layouts */
.sessions-grid {
    position: relative;
    width: 100%;
    overflow: auto;
    will-change: transform;
    user-select: none;
    animation: fadeInFromNone 0.2s ease-out;
    /*background-color: #f8f8f9;*/
    /*padding-top: 2px;*/
}
.sessions-grid.active{
    cursor: grabbing;
}
.sessions-grid table {
    white-space: nowrap;
    margin: 0;
    border: none;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
    border-top: 3px solid #f8f8f9;
    background-color: #f8f8f9;
}
.sessions-grid table tbody th{
    border-bottom: 1px solid #ebebef;
    border-right: 1px solid #ebebef;
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f8f8f9;
    font-weight: 300;
    text-align: center;
    font-size: 15px;
}
.sessions-grid table tbody th.time span.halfHour{
    font-size: x-small;
    right: 10px;
    position: absolute;
    top: 5px;
    display: block;
    line-height: 1;
}
.sessions-grid table tbody th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
}
.sessions-grid table tbody th:first-child span[x-html^="hall"] {
    display: block;
    width: 98%;
    margin: auto;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}
.sessions-grid table thead th.tools {
    width: 80px;
    position: sticky;
    left: 0;
    z-index: 3;
    background: #f8f8f9;
    text-align: left;
    border-bottom: 1px solid #ebebef;
}
.sessions-grid table thead th.tools select {
    background: #e4e8ef;
    border: none;
    padding: 8px;
    position: relative;
    color: #787f9f;
    width: 86px;
}
.sessions-grid table thead th:not(.tools) {
    font-weight: 500;
    border-bottom: 2px solid #ebebef;
    border-right: 1px solid #ebebef;
    font-size: 15px;
}
.sessions-grid table thead th:not(.tools):not(.time) span {
    display: block;
    width: 94%;
    margin: 0 auto;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}
.sessions-grid table td {
    border-bottom: 1px solid #ebebef;
    border-right: 1px solid #ebebef;
    background: #f8f8f9;
    position: relative;
}
.sessions-grid .sessions-panel {
    position: absolute;
    left: 80px;
    top: 24px;
    right: 0;
    background: rgba(64, 72, 68, .5);
}
.session-item-synoptic {
    position: absolute;
    left: 1px;
    width: calc(100% - 2px);
    /*min-height: 40px;*/
    text-align: center;
    white-space: normal;
    z-index: 1;
    background: #fff;
    padding: 10px;
    border: 1px solid #e6e6f4;
    line-height: 1;
    font-size: 15px;
    font-weight: 300;
    overflow: hidden;
    animation: fadeInFromNone 0.5s ease-out;
}
.session-item-synoptic >a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
}
.session-item-synoptic >a >span.session-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: contents;
}
.synoptic-scroll-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #cad3e5;
    z-index: 2;
    height: 110px;
    width: 50px;
    display: flex;
    justify-content: center;
    animation: fadeInFromNoneFlex 0.5s ease-out;
}
.synoptic-scroll-handle img {
    width: 20px;
    height: auto;
}
.synoptic-scroll-handle.synoptic-left-handle {
    left: 108px;
}
.synoptic-scroll-handle.synoptic-right-handle {
    right: 0;
}
.synoptic-scroll-handle.synoptic-left-handle img {
    transform: rotate(-180deg);
}
.sessions-grid table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
}
.sessions-grid table thead th.tools .tools-wrap{
  padding: 10px;
}
/* Rooms Syniptic Layout */
.c-pane.rooms .sessions-grid table thead th.tools .tools-wrap {
    display: flex;
    gap: 5px;
    padding: 10px;
    justify-content: space-between;
}
.c-pane.rooms .sessions-grid table thead th:not(.tools) {
    text-align: left;
    padding-left: 10px;
}
.c-pane.rooms .synoptic-scroll-handle.synoptic-left-handle {
    left: 185px;
}
.c-pane.rooms .zoomers {
    display: flex;
    gap: 5px;
}
.c-pane.rooms .zoomers  a.times-zoom {
    width: 33px;
    background: #e4e8ef;
    display: flex;
    justify-content: center;
    align-content: center;
}
.c-pane.rooms .zoomers  a.times-zoom:hover,
.c-pane.rooms .zoomers  a.times-zoom:focus {
    background: #22317f;
}
.c-pane.rooms .zoomers  a.times-zoom.btn-disabled {
    pointer-events: none;
    cursor:none;
}
.c-pane.rooms .zoomers a.times-zoom img {
    width: 16px;
    max-width: 90%;
    height: auto;
}

.c-pane.rooms .zoomers  a.times-zoom:hover img,
.c-pane.rooms .zoomers  a.times-zoom:focus img {
    filter:  brightness(0) invert(1);
}
.c-pane.rooms thead th.time span {
    font-size: 15px;
    font-weight: 500;
}
.c-pane.rooms thead th.time span em {
    font-weight: 300;
    font-style: normal;
    position: absolute;
    display: inline-flex;
    padding-left: 10px;
    top:0;
    bottom: 0;
    align-items: center;
}
.c-pane.rooms .sessions-grid table.table-t-level-2 thead th.time span em:before {
    content: "";
    width: 1px;
    background: #e8e8e8;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.c-pane.rooms .sessions-grid table.table-t-level-1 td.time.rooms-time:before {
    content: "";
    width: 1px;
    background: #e8e8e8;
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
}
.c-pane.rooms .sessions-grid table.table-t-level-1 thead th:not(.tools):before{
    content: "";
    width: 1px;
    background: #e8e8e8;
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
}

.c-pane.rooms .sessions-grid table td span.zoom-borders{
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    height: 100%;
    right: 0;
}
.c-pane.rooms .sessions-grid table td span.zoom-border {
    width: 1px;
    display: block;
    background: #e8e8e8;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.c-pane.rooms .sessions-grid table td span.zoom-border.zoom-border-1 {
    left: calc(100% / 6);
}
.c-pane.rooms .sessions-grid table td span.zoom-border.zoom-border-2 {
    left: calc( (100% / 6) * 2);
}
.c-pane.rooms .sessions-grid table td span.zoom-border.zoom-border-3 {
    left: calc( (100% / 6) * 3);
}
.c-pane.rooms .sessions-grid table td span.zoom-border.zoom-border-4 {
    left: calc( (100% / 6) * 4);
}
.c-pane.rooms .sessions-grid table td span.zoom-border.zoom-border-5 {
    left: calc( (100% / 6) * 5);
}

/* Fullscreen Toggle Btn */
.fullscreen-toggle a{
    display: flex;
    height: 40px;
    width: 45px;
    background-color: #ffc917;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .25s ease-in;
}
.fullscreen-toggle a > img {
    width: 20px;
    height: 20px;
}
.fullscreen-toggle a:hover,
.fullscreen-toggle a.active{
    background-color: #22317f;
}
.fullscreen-toggle a:hover img,
.fullscreen-toggle a.active img{
    filter: brightness(0) saturate(100%) invert(90%) sepia(90%)
}

.sessions-grid table thead th.dummy-th {
    width: auto;
}
/* Top Scroller */
.top-scroller {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 20px;
    margin-bottom: 10px;
}

/* Speakers Filters */
.speakers-filters {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-flow: wrap;
    position: relative;
    z-index: 5;
}
.speakers-filters .sf-buttons {
    display: flex;
    gap: 10px;
}
.speakers-filters .sf-buttons a {
    background: #cad3e5;
    padding: 10px 40px;
    display: inline-block;
    transition: .25s;
    will-change: auto;
    text-align: center;
    text-decoration: none;
    color: #000;
}
.speakers-filters .sf-buttons a + a {
    margin-left: 10px;
}
.speakers-filters .sf-buttons a.active {
    background: #22317f;
    color: #fff;
}
.speakers-filters .sf-filters {
    position: relative;
}
.agenda-speakers-filters {
    position: absolute;
    right: 0;
    z-index: 10;
    background: #22317f;
    padding: 30px;
    min-width: 290px;
    max-width: 90%;
    font-size: 15px;
    overflow-x: hidden;
    display: none;
}
.agenda-speakers-filters.open {
    display: block;
    animation: fadeInFromNone 0.5s ease-out;
}

/* Dashboard */
.agenda-dashboard-content-title {
    display: flex!important;
    flex-wrap: wrap;
}
.agenda-dashboard-content-title h1 {
    flex: 1 0 50%;
}

.agenda-dashboard-content-title p {
    flex: 1 0 50%;
}
.agenda-dashboard-section .event-programe-link {
    will-change: tranform;
    color: #22317F;
}
.agenda-dashboard-section .event-programe-link span {
    margin-right: 25px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    transition: 0.3s;
}
.agenda-dashboard-section .event-programe-link span:after {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.25586' y1='11.9968' x2='21.445' y2='11.9968' stroke='%2322317F' stroke-width='1.5'/%3E%3Cpath d='M13.7812 3.86926L21.8921 11.9802L13.7812 20.0911' stroke='%2322317F' stroke-width='1.5'/%3E%3C/svg%3E%0A");
    top: 0;
    right: -44px;
    width: 24px;
    height: 24px;
    pointer-events: none;
}
.agenda-dashboard-section .event-programe-link:hover span::after {
    animation: cardButtonArrowRotation 1s cubic-bezier(0.16, 1, 0.3, 1);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.25586' y1='11.9968' x2='21.445' y2='11.9968' stroke='%230065db' stroke-width='1.5'/%3E%3Cpath d='M13.7812 3.86926L21.8921 11.9802L13.7812 20.0911' stroke='%230065db' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.agenda-dashboard-section .event-programe-link:hover span {
    color: #0065db;
}
.agenda-dashboard-section .event-logos-and-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    height: 100%;
}
.agenda-dashboard-section .event-logos-and-title img {
    width: 120px;
    height: auto;
}
.agenda-dashboard-section .event-logos-and-title h2 {
    width: 100%;
}
.agenda-dashboard-section .event-logos-and-title h2 a{
    color: #22317f;
    display: block;
}
.agenda-dashboard-section .event-nums-wrap {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
}
.agenda-dashboard-section .event-nums a {
    display: flex;
    flex-direction: column;
    width: 145px;
    background-color: #e4e8ef;
    padding: 20px;
    align-items: center;
    color: #22317f;
    gap: 10px;
    transition: background-color .2s ease-in;
}
.agenda-dashboard-section .event-nums a:hover,
.agenda-dashboard-section .event-nums a:focus{
    background-color: #22317f;
    color: #fff;
}
.agenda-dashboard-section .event-nums a:hover .ic img,
.agenda-dashboard-section .event-nums a:focus .ic img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(39deg) brightness(111%) contrast(101%);
}

.agenda-dashboard-section .event-nums .ic {
    display: block;
    line-height: 1;
}
.agenda-dashboard-section .event-nums .ic span {
    color: #22317f;
}
.agenda-dashboard-section .event-nums .ic img {
    max-width: 40px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(14%) sepia(39%) saturate(4109%) hue-rotate(222deg) brightness(98%) contrast(94%);
}
.agenda-dashboard-section .event-nums .num {
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
}
.agenda-dashboard-section .event-nums .tit {
    font-size: 15px;
    line-height: 1;
}
.agenda-dashboard-section .event-row {
    background-color: #fff;
    margin-bottom: 13px;
    padding: 30px;
}
.agenda-dashboard-section .pl-wrap {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    padding: 20px;
}
.agenda-dashboard-section .event-logos-and-title h2 .ev-info-wrap {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.agenda-dashboard-section .event-logos-and-title h2 .ev-info {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
}
.agenda-dashboard-section .event-logos-and-title h2 .ev-info.duration:before {
    background-image: url(../svg/date.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    content: '';
    display: block;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.agenda-dashboard-section .event-logos-and-title h2 .ev-info.location:before {
    background-image: url("../svg/location_fixed.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    content: '';
    display: block;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.agenda-dashboard-section .event_type_btns {
    display: flex;
    margin-bottom: 35px;
    gap: 10px;
}
.agenda-dashboard-section .event_type_btns a {
    display: block;
    padding: 8px 16px;
    color: #070721;
    font-size: 16px;
}
.agenda-dashboard-section .event_type_btns a:hover,
.agenda-dashboard-section .event_type_btns a.active {
    background-color: #ffc917;
}

.agenda-dashboard-section .events_pane{
    transition: opacity .25s ease-in;
    display: none;
}
.agenda-dashboard-section .events_pane.active{
    display: block;
    animation: fadeInFromNone 0.5s ease-out;
}

/* Share btn */


.share-btn-wrap {
    padding: 0;
    margin-left: auto;
}

@media only screen and (max-width: 576px) {
    .share-btn-wrap .button--bg span {
        font-size: 0;
    }
}

/* Notifications */
.agenda-notification{
    width: 340px;
    /*min-height: 360px;*/
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 5;
    display: none;
}
.agenda-notification .notif-inner {
    background: #fff;
    border: 1px solid #e4e8ef;
}
.agenda-notification .notif-content {
    padding: 20px;
}
.agenda-notification .notif-close {
    position: absolute;
    right: 0;
    top: -24px;
    display: flex;
    border: 1px solid #e4e8ef;
    background: #fff;
    line-height: 1;
    font-size: 16px;
    height: 25px;
    align-items: center;
    color: #414141;
    padding: 0 10px;
}
.agenda-notification .notif-close:before{
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12'%3E%3Cpath d='M4.7070312 3.2929688L3.2929688 4.7070312L10.585938 12L3.2929688 19.292969L4.7070312 20.707031L12 13.414062L19.292969 20.707031L20.707031 19.292969L13.414062 12L20.707031 4.7070312L19.292969 3.2929688L12 10.585938L4.7070312 3.2929688 z' fill='%235B5B5B' /%3E%3C/svg%3E");
    width: 12px;
    height: 12px;
    margin-right: 6px;
}
.agenda-notification .notif-banner img {
    width: 100%;
    height: auto;
}
.agenda-notification .notif-header {
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
}
.agenda-notification .notif-logo img{
    max-width: 84px;
    height: auto;
}
.agenda-notification .notif-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}
.agenda-notification .notif-descr {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 24px;
}
.agenda-notification .notif-action > a {
    display: inline-flex;
    padding: 14px 60px 14px 20px;
    background: #cad3e5;
    font-size: 16px;
    color: #22317f;
    transition: 0.3s;
    position: relative;
}
.agenda-notification .notif-action > a:after {
    content: "";
    position: absolute;
    background-image: url(../svg/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    right: 22px;
    width: 18px;
    height: 18px;
    pointer-events: none;
    transform: translateY(-50%);
}
.agenda-notification .notif-action > a:hover {
    background: #22317f;
    color: #fff;
}
.agenda-notification .notif-action > a:hover:after{
    background-image: url(../svg/arrow-white.svg);
}

/* PDF Export */
#select2-pdf_export_select-container {
    height: 40px;
    position: relative;
    background: #ffc917;
    transition: background-color .2s ease-in;
}
#select2-pdf_export_select-container:hover {
    background: #22317f;
}

#select2-pdf_export_select-container:before {
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../svg/export_pdf.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
}
#select2-pdf_export_select-container:hover:before {
    filter: brightness(0) saturate(100%) invert(90%) sepia(90%)
}

.pdf-export-options .select2-selection.select2-selection--single.pdf-export-selector:after {
    display: none;
}
.select2-dropdown.pdf-export-options.select2-dropdown--below {
    border: none;
}
.select2-selection.select2-selection--single.pdf-export-selector {
    height: 40px;
}
.pdf-export-options .select2-results {
    width: 226px;
}
.pdf-export-options .select2-results__options li.select2-results__option {
    padding-left: 14px;
}
.select2-dropdown.pdf-export-options.select2-dropdown--below .select2-results__option.select2-results__option--selectable.select2-results__option--highlighted {
    background-color: #22317f!important;
    color: #fff;
    font-size: 18px;
}
.select2-dropdown.pdf-export-options.select2-dropdown--below  .select2-results__option.select2-results__option--selectable {
    background-color: #cad3e5;
    color: #000;
    font-size: 18px;
}
#select2-pdf_export_select-container.select2-selection__rendered {
    color: #ffc917;
}

/* Tooltips tour */
.shepherd-content {
    border-radius: 0;
}
.shepherd-element {
    border-radius: 0;
    max-width: 250px;
}
.shepherd-has-title .shepherd-content .shepherd-header {
    border-radius: 0;
}
.shepherd-has-title .shepherd-content .shepherd-header {
    background: #fff;
    padding: 20px 20px 5px 20px;
}
.shepherd-footer {
    border-radius: 0!important;
    position: relative;
}
.agenda-category-buttons .cat-buttons {
    display: inline-flex;
}
.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
    font-size: 0;
    position: absolute;
    top: 10px;
    right: 10px;
}
.shepherd-has-title .shepherd-content .shepherd-cancel-icon:before {
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12'%3E%3Cpath d='M4.7070312 3.2929688L3.2929688 4.7070312L10.585938 12L3.2929688 19.292969L4.7070312 20.707031L12 13.414062L19.292969 20.707031L20.707031 19.292969L13.414062 12L20.707031 4.7070312L19.292969 3.2929688L12 10.585938L4.7070312 3.2929688 z' fill='%235B5B5B' /%3E%3C/svg%3E");
    width: 12px;
    height: 12px;
}
.shepherd-title {
    line-height: 1.2;
    font-size: 17px;
    font-weight: 500;
}
.shepherd-text {
    padding: 5px 20px 40px;
    font-size: 15px;
    line-height: 1.3;
}
.shepherd-progress {
    font-size: 14px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.shepherd-button {
    background: #cad3e5;
    color: #000;
    border-radius: 0;
    padding: 8px 18px;
}
.shepherd-element.search-field-tip,
.shepherd-element.categories-tip{
    margin-left: 34px;
}

.shepherd-element.filters-tip,
.shepherd-element.view-tip,
.shepherd-element.onsite-online-tip,
.shepherd-element.pdf-tip{
    margin-top: -34px;
}

/* Last updated stamp */
.last-update-stamp {
    color: #95a1b9;
    font-size: 15px;
    padding: 15px 0 0;
    line-height: 1.1;
}

/* Hide specific rooms in synoptic layout */
.sessions-grid thead th.to-hide,
.sessions-grid tr.to-hide,
.sessions-grid td.to-hide{
    display: none;
}

@media only screen and (max-width: 991px) {
    .shepherd-element.search-field-tip,
    .shepherd-element.categories-tip{
        margin-left: 0;
        margin-top: -34px;
    }
    .shepherd-element.filters-tip {
        margin-top:0;
        margin-right: 34px;
    }
}

@media only screen and (max-width: 640px) {
    .shepherd-element.pdf-tip {
        margin-top:0;
        margin-left: 34px;
    }
}

@media only screen and (max-width: 991px) {
    .agenda-dashboard-content-title h1,
    .agenda-dashboard-content-title p {
        flex: 0 0 100%;
    }
}

